diff --git a/code/game/gamemodes/colonialmarines/colonialmarines.dm b/code/game/gamemodes/colonialmarines/colonialmarines.dm index 7b1c695ade2b..dc68b3186060 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..3449f1b07ca3 100644 --- a/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm +++ b/code/game/objects/effects/landmarks/structure_spawners/setup_distress.dm @@ -3,29 +3,107 @@ 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(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 = ..() + if(!xeno_item) + return + 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_membrane +/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 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_door +/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 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/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/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, ...) + . = ..() + 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) + return + 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" + path_to_spawn = /obj/effect/alien/weeds/node/hardy + weed_strength_required = SEMI_WEEDABLE + +/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/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 + var/turf/tunnel_tile = loc + if(tunnel_tile.can_dig_xeno_tunnel()) + return + 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" + path_to_spawn = /obj/structure/tunnel/maint_tunnel 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/code/modules/cm_aliens/structures/tunnel.dm b/code/modules/cm_aliens/structures/tunnel.dm index 185bee06c513..f6d16d04ea26 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 736d4f947450..9000d43d8bb0 100644 --- a/code/modules/cm_aliens/weeds.dm +++ b/code/modules/cm_aliens/weeds.dm @@ -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 2cdf06d411c7..d6aa2b515abf 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -347,6 +347,12 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/bigredv2/outside/space_port) +"abd" = ( +/turf/open/floor{ + dir = 4; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/outside/engineering) "abe" = ( /obj/structure/machinery/power/apc{ dir = 8; @@ -1656,10 +1662,6 @@ icon_state = "freezerfloor" }, /area/bigredv2/caves/lambda/xenobiology) -"aeU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) "aeV" = ( /obj/structure/closet/crate/radiation, /turf/open/floor/plating, @@ -1678,13 +1680,6 @@ icon_state = "whiteyellowfull" }, /area/bigredv2/caves/lambda/xenobiology) -"aeY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, -/area/bigredv2/caves/lambda/xenobiology) "aeZ" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor{ @@ -1921,11 +1916,6 @@ icon_state = "whiteyellow" }, /area/bigredv2/caves/lambda/xenobiology) -"afH" = ( -/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) "afI" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, @@ -2033,19 +2023,6 @@ icon_state = "wood" }, /area/bigredv2/outside/marshal_office) -"afY" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/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, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/caves/lambda/xenobiology) "aga" = ( /obj/structure/machinery/iv_drip, /turf/open/floor{ @@ -2100,13 +2077,6 @@ icon_state = "delivery" }, /area/bigredv2/caves/lambda/xenobiology) -"agh" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) "agi" = ( /obj/structure/bed, /obj/item/bedsheet/purple, @@ -2114,12 +2084,6 @@ icon_state = "dark" }, /area/bigredv2/caves/lambda/xenobiology) -"agj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) "agk" = ( /obj/structure/toilet{ dir = 4 @@ -2322,18 +2286,6 @@ icon_state = "delivery" }, /area/bigredv2/caves/lambda/xenobiology) -"agN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/item/shard{ - icon_state = "small" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) "agO" = ( /obj/structure/surface/table/woodentable/fancy, /turf/open/floor{ @@ -2423,12 +2375,6 @@ icon_state = "dark" }, /area/bigredv2/caves/lambda/xenobiology) -"ahb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/caves/lambda/xenobiology) "ahc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -2550,26 +2496,6 @@ /obj/item/paper_bin, /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) -"ahw" = ( -/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, -/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, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/bigredv2/caves_lambda) "ahz" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/scalpel/manager, @@ -2606,16 +2532,6 @@ icon_state = "darkpurple2" }, /area/bigredv2/caves/lambda/xenobiology) -"ahE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -32 - }, -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) "ahF" = ( /obj/structure/closet/hydrant{ pixel_y = -32 @@ -2812,13 +2728,6 @@ icon_state = "delivery" }, /area/bigredv2/outside/marshal_office) -"aij" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) "aik" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/retractor, @@ -2875,13 +2784,6 @@ icon_state = "dark" }, /area/bigredv2/caves/lambda/xenobiology) -"air" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) "ais" = ( /obj/structure/urinal{ pixel_y = 32 @@ -3066,13 +2968,6 @@ icon_state = "darkpurplecorners2" }, /area/bigredv2/caves/lambda/xenobiology) -"aiS" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) "aiT" = ( /obj/structure/pipes/vents/scrubber/on, /turf/open/floor{ @@ -3243,13 +3138,6 @@ icon_state = "delivery" }, /area/bigredv2/caves/lambda/xenobiology) -"ajs" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) "ajt" = ( /obj/structure/bed/stool, /turf/open/floor{ @@ -3268,21 +3156,6 @@ icon_state = "dark" }, /area/bigredv2/caves/lambda/xenobiology) -"ajw" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 - }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/caves/lambda/xenobiology) "ajx" = ( /turf/open/floor{ dir = 1; @@ -3845,14 +3718,6 @@ icon_state = "whitepurple" }, /area/bigredv2/caves/lambda/xenobiology) -"ale" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) "alf" = ( /turf/open/floor{ dir = 8; @@ -3864,13 +3729,6 @@ icon_state = "whitegreenfull" }, /area/bigredv2/caves/lambda/xenobiology) -"alh" = ( -/obj/item/tool/hatchet, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/xenobiology) "ali" = ( /obj/item/reagent_container/spray/plantbgone, /turf/open/floor{ @@ -4050,54 +3908,12 @@ icon_state = "mars_cave_15" }, /area/bigredv2/caves_north) -"alK" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"alL" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/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" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alN" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alO" = ( -/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, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) "alP" = ( /turf/open/floor{ dir = 8; icon_state = "warnwhite" }, /area/bigredv2/caves/lambda/xenobiology) -"alQ" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/xenobiology) "alR" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor{ @@ -4379,11 +4195,6 @@ icon_state = "mars_cave_8" }, /area/bigredv2/caves_lambda) -"amH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) "amI" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -4392,23 +4203,6 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/dorms) -"amJ" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amK" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amL" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) "amM" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4 @@ -4593,10 +4387,6 @@ icon_state = "wood" }, /area/bigredv2/outside/marshal_office) -"anj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) "ank" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -4765,36 +4555,6 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"anN" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anO" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"anP" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"anQ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) "anR" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4 @@ -4868,13 +4628,6 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/library) -"aod" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/xenobiology) "aoe" = ( /obj/item/explosive/grenade/custom/antiweed, /turf/open/floor{ @@ -5050,13 +4803,6 @@ icon_state = "wood" }, /area/bigredv2/outside/dorms) -"aoG" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) "aoH" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/general_store) @@ -5082,16 +4828,6 @@ icon_state = "darkpurple2" }, /area/bigredv2/caves/lambda/breakroom) -"aoL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) "aoM" = ( /obj/item/tool/weedkiller, /turf/open/floor{ @@ -6726,16 +6462,6 @@ icon_state = "dark" }, /area/bigredv2/caves/lambda/breakroom) -"ati" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) "atj" = ( /obj/structure/machinery/vending/coffee{ icon_state = "coffee-broken"; @@ -7167,16 +6893,6 @@ icon_state = "dark" }, /area/bigredv2/caves/lambda/breakroom) -"aup" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) "auq" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -7231,17 +6947,6 @@ icon_state = "darkish" }, /area/bigredv2/caves/lambda/breakroom) -"aux" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) "auy" = ( /turf/open/floor{ icon_state = "delivery" @@ -7451,15 +7156,6 @@ icon_state = "dark" }, /area/bigredv2/caves/lambda/breakroom) -"avc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) "avd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -7488,17 +7184,6 @@ icon_state = "darkish" }, /area/bigredv2/caves/lambda/breakroom) -"avg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) "avh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -7549,17 +7234,6 @@ icon_state = "delivery" }, /area/bigredv2/caves/lambda/breakroom) -"avm" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/breakroom) "avn" = ( /obj/structure/inflatable/door, /turf/open/floor{ @@ -7717,11 +7391,6 @@ }, /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) -"avN" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) "avO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Lambda Lab Relaxation Room" @@ -8252,13 +7921,6 @@ icon_state = "darkgreen2" }, /area/bigredv2/caves/lambda/virology) -"axo" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) "axp" = ( /obj/structure/bed/chair/comfy/lime{ dir = 4 @@ -8473,18 +8135,6 @@ icon_state = "delivery" }, /area/bigredv2/outside/general_offices) -"axT" = ( -/obj/effect/landmark/xeno_spawn, -/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, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) "axV" = ( /obj/effect/glowshroom, /turf/open/mars_cave{ @@ -8918,13 +8568,6 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/general_offices) -"azf" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/caves_lambda) "azg" = ( /obj/structure/surface/table, /obj/structure/machinery/cell_charger, @@ -8968,13 +8611,6 @@ icon_state = "mars_cave_6" }, /area/bigredv2/caves/lambda/research) -"azl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/caves/lambda/research) "azm" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves/lambda/breakroom) @@ -9572,16 +9208,6 @@ icon_state = "dark" }, /area/bigredv2/caves/lambda/research) -"aAW" = ( -/obj/structure/machinery/conveyor{ - dir = 9; - id = "anomalybelt" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/research) "aAX" = ( /obj/structure/machinery/light/small/built{ dir = 1 @@ -9590,12 +9216,6 @@ icon_state = "podhatchfloor" }, /area/bigredv2/caves/lambda/research) -"aAY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/caves/lambda/research) "aAZ" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/floor/plating, @@ -9781,13 +9401,6 @@ /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) -"aBz" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_lambda) "aBA" = ( /turf/closed/wall/solaris, /area/bigredv2/caves/eta/research) @@ -10047,11 +9660,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/hydroponics) -"aCq" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) "aCr" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor{ @@ -10095,13 +9703,6 @@ icon_state = "delivery" }, /area/bigredv2/caves/lambda/research) -"aCw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) "aCx" = ( /obj/structure/machinery/light{ dir = 4 @@ -10233,15 +9834,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/c) -"aCO" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "aCP" = ( /obj/structure/closet/secure_closet/bar, /obj/effect/landmark/objective_landmark/close, @@ -10392,13 +9984,6 @@ /obj/structure/window/framed/solaris, /turf/open/floor/plating, /area/bigredv2/caves/eta/xenobiology) -"aDk" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, -/area/bigredv2/caves/lambda/research) "aDl" = ( /obj/structure/ore_box, /turf/open/floor{ @@ -10800,13 +10385,6 @@ icon_state = "whitepurple" }, /area/bigredv2/caves/lambda/research) -"aEn" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/research) "aEo" = ( /turf/open/floor{ icon_state = "whitepurplecorner" @@ -10834,13 +10412,6 @@ /obj/structure/surface/table/holotable/wood, /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) -"aEt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) "aEu" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/outside) @@ -11104,29 +10675,6 @@ icon_state = "whitepurple" }, /area/bigredv2/caves/lambda/research) -"aFj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aFk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 32 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) "aFl" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, @@ -11147,13 +10695,6 @@ icon_state = "purplecorner" }, /area/bigredv2/caves/lambda/research) -"aFn" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/research) "aFo" = ( /turf/open/floor{ icon_state = "purplecorner" @@ -11526,16 +11067,6 @@ icon_state = "whitegreen" }, /area/bigredv2/caves/lambda/virology) -"aGl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/bigredv2/caves/lambda/virology) "aGm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -12411,37 +11942,12 @@ icon_state = "darkpurple2" }, /area/bigredv2/caves/lambda/research) -"aIL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aIM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) "aIN" = ( /turf/open/floor{ dir = 1; icon_state = "darkpurplecorners2" }, /area/bigredv2/caves/lambda/research) -"aIO" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/research) "aIP" = ( /obj/structure/machinery/light{ dir = 1 @@ -12456,15 +11962,6 @@ icon_state = "damaged5" }, /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/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/bluegrid{ - icon_state = "damaged4" - }, -/area/bigredv2/caves/lambda/research) "aIS" = ( /obj/structure/pipes/vents/pump, /turf/open/floor{ @@ -12480,15 +11977,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/cargo) -"aIU" = ( -/obj/structure/pipes/vents/scrubber/on, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) "aIV" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -12535,22 +12023,6 @@ icon_state = "whitegreen" }, /area/bigredv2/caves/lambda/virology) -"aJa" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/machinery/door/window{ - dir = 8 - }, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) "aJb" = ( /obj/structure/surface/table, /obj/item/ashtray/bronze, @@ -12562,21 +12034,6 @@ icon_state = "carpet15-15" }, /area/bigredv2/outside/admin_building) -"aJc" = ( -/obj/effect/landmark/monkey_spawn, -/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, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/lambda/virology) "aJe" = ( /obj/structure/window/reinforced/toughened{ dir = 1; @@ -12779,25 +12236,11 @@ icon_state = "darkpurplecorners2" }, /area/bigredv2/caves/lambda/research) -"aJF" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) "aJG" = ( /turf/open/floor{ icon_state = "darkpurple2" }, /area/bigredv2/caves/lambda/research) -"aJH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) "aJI" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tech_supply, @@ -12815,16 +12258,6 @@ icon_state = "darkpurple2" }, /area/bigredv2/caves/lambda/research) -"aJL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) "aJM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -12903,15 +12336,6 @@ icon_state = "whitegreen" }, /area/bigredv2/caves/lambda/virology) -"aJV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/caves/lambda/virology) "aJW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -12978,16 +12402,6 @@ icon_state = "darkish" }, /area/bigredv2/caves/lambda/virology) -"aKc" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 8 - }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/virology) "aKd" = ( /turf/open/floor{ icon_state = "darkgreencorners2" @@ -13003,16 +12417,6 @@ icon_state = "darkgreen2" }, /area/bigredv2/caves/lambda/virology) -"aKf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) "aKg" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor{ @@ -13246,23 +12650,6 @@ icon_state = "whitegreen" }, /area/bigredv2/caves/lambda/virology) -"aKU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) "aKV" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-in" @@ -13550,14 +12937,6 @@ "aLI" = ( /turf/open/floor/greengrid, /area/bigredv2/caves/lambda/research) -"aLJ" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "aLM" = ( /obj/structure/machinery/shower{ dir = 1 @@ -13587,14 +12966,6 @@ icon_state = "whitegreen" }, /area/bigredv2/caves/lambda/virology) -"aLP" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "aLQ" = ( /obj/structure/window/reinforced/toughened{ icon_state = "fwindow" @@ -13802,11 +13173,6 @@ "aMs" = ( /turf/open/floor/bluegrid, /area/bigredv2/caves/lambda/research) -"aMt" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/bluegrid, -/area/bigredv2/caves/lambda/research) "aMu" = ( /obj/structure/cryofeed/right{ name = "\improper coolant feed" @@ -13844,16 +13210,6 @@ icon_state = "whitegreen" }, /area/bigredv2/caves/lambda/virology) -"aMx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) "aMy" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" @@ -13868,15 +13224,6 @@ icon_state = "whitegreen" }, /area/bigredv2/caves/lambda/virology) -"aMB" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/pen, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "aMC" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/floor/plating, @@ -14010,13 +13357,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/caves_lambda) -"aMW" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/caves/lambda/research) "aMX" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Lambda Lab Virology Quarantine" @@ -14044,13 +13384,6 @@ icon_state = "white" }, /area/bigredv2/outside/virology) -"aNb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) "aNc" = ( /turf/open/floor{ icon_state = "white" @@ -14264,6 +13597,14 @@ icon_state = "warnwhite" }, /area/bigredv2/outside/admin_building) +"aNF" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 10; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "aNG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -14565,13 +13906,6 @@ icon_state = "warnwhite" }, /area/bigredv2/outside/virology) -"aOt" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/virology) "aOu" = ( /obj/structure/machinery/camera/autoname{ dir = 8 @@ -14955,17 +14289,6 @@ icon_state = "whitegreenfull" }, /area/bigredv2/caves/lambda/virology) -"aPs" = ( -/obj/structure/machinery/light/small/built{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/virology) "aPt" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/research/colony{ @@ -15397,13 +14720,14 @@ icon_state = "podhatch" }, /area/bigredv2/caves/lambda/research) -"aQw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"aQx" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor{ - dir = 5; - icon_state = "podhatch" + dir = 1; + icon_state = "darkyellow2" }, -/area/bigredv2/caves/lambda/research) +/area/bigredv2/outside/engineering) "aQy" = ( /obj/structure/surface/table, /obj/item/tool/pen, @@ -15780,13 +15104,6 @@ icon_state = "mars_cave_22" }, /area/bigredv2/outside/lambda_cave_cas) -"aRw" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/outside/lambda_cave_cas) "aRx" = ( /obj/structure/machinery/teleport/station, /turf/open/floor{ @@ -15860,12 +15177,6 @@ "aRE" = ( /turf/open/floor/plating, /area/bigredv2/outside/virology) -"aRF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) "aRG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -16066,13 +15377,6 @@ icon_state = "asteroidwarning" }, /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, -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, -/area/bigredv2/outside/lambda_cave_cas) "aSl" = ( /obj/structure/machinery/light{ dir = 8 @@ -16088,12 +15392,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/caves_lambda) -"aSn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/caves_lambda) "aSo" = ( /obj/structure/curtain/medical, /turf/open/floor{ @@ -16596,14 +15894,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/caves_lambda) -"aTz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/lambda_cave_cas) "aTC" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -16955,16 +16245,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/caves_lambda) -"aUA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/lambda_cave_cas) "aUD" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -17005,16 +16285,6 @@ icon_state = "darkgreen2" }, /area/bigredv2/caves/lambda/virology) -"aUJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/landmark/objective_landmark/science, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) "aUM" = ( /obj/structure/machinery/computer/operating, /turf/open/floor{ @@ -17029,13 +16299,6 @@ icon_state = "white" }, /area/bigredv2/outside/virology) -"aUP" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) "aUQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -17525,15 +16788,6 @@ icon_state = "white" }, /area/bigredv2/outside/virology) -"aWf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) "aWg" = ( /obj/structure/machinery/computer/pandemic, /turf/open/floor{ @@ -17712,14 +16966,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/e) -"aWN" = ( -/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, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) "aWO" = ( /obj/structure/reagent_dispensers/virusfood{ pixel_x = -32 @@ -17938,12 +17184,6 @@ icon_state = "delivery" }, /area/bigredv2/outside/virology) -"aXy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/virology) "aXz" = ( /obj/structure/toilet{ dir = 8 @@ -18449,15 +17689,6 @@ icon_state = "delivery" }, /area/bigredv2/outside/chapel) -"aZj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) "aZk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -18601,13 +17832,6 @@ icon_state = "dark" }, /area/bigredv2/outside/chapel) -"aZJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "aZK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -18678,15 +17902,6 @@ }, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"aZV" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "aZW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -18949,12 +18164,6 @@ icon_state = "white" }, /area/bigredv2/outside/office_complex) -"baN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/bigredv2/caves_sw) "baO" = ( /obj/structure/machinery/light{ dir = 4 @@ -19409,13 +18618,6 @@ icon_state = "white" }, /area/bigredv2/outside/office_complex) -"bcg" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "bch" = ( /obj/structure/surface/table, /obj/item/clipboard, @@ -20102,13 +19304,6 @@ "bes" = ( /turf/open/mars, /area/bigredv2/outside/se) -"bet" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_east) "beu" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor{ @@ -21147,12 +20342,6 @@ /obj/effect/landmark/crap_item, /turf/open/mars, /area/bigredv2/outside/se) -"bhs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/caves_east) "bhu" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor{ @@ -21277,15 +20466,6 @@ icon_state = "mars_dirt_12" }, /area/bigredv2/outside/c) -"bhT" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) "bhU" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -21899,36 +21079,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/s) -"bku" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/filtration_plant) -"bkw" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/filtration_plant) -"bkx" = ( -/obj/effect/spawner/gibspawner/human, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/filtration_plant) "bky" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_7" @@ -21958,36 +21108,6 @@ icon_state = "mars_dirt_13" }, /area/bigredv2/outside/s) -"bkD" = ( -/obj/structure/machinery/vending/sovietsoda{ - icon_state = "sovietsoda-broken"; - stat = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bkE" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bkG" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bkH" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "bkI" = ( /obj/structure/cryofeed/right{ name = "\improper coolant feed" @@ -22002,68 +21122,6 @@ icon_state = "bcircuitoff" }, /area/bigredv2/outside/filtration_plant) -"bkK" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/filtration_plant) -"bkL" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/tank/air, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bkM" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bkN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bkO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bkP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Storage" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/filtration_plant) -"bkS" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "bkT" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, /turf/open/floor/plating, @@ -22209,1450 +21267,204 @@ icon_state = "mars_dirt_14" }, /area/bigredv2/outside/s) -"blx" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/item/tool/extinguisher, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bly" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +"blF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Air Filtration" }, +/turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"blA" = ( -/obj/structure/dispenser/oxygen, +"blG" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"blO" = ( +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering) +"bme" = ( +/turf/open/mars, +/area/bigredv2/outside/sw) +"bmn" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"bmA" = ( +/obj/structure/barricade/wooden, /turf/open/floor{ dir = 4; - icon_state = "darkyellow2" + icon_state = "asteroidwarning" }, -/area/bigredv2/outside/filtration_plant) -"blB" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/area/bigredv2/outside/s) +"bmB" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" }, -/obj/structure/machinery/alarm{ +/area/bigredv2/outside/s) +"bmM" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"bmN" = ( +/turf/open/floor{ dir = 4; - pixel_x = -30 + icon_state = "asteroidwarning" }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +/area/bigredv2/outside/space_port_lz2) +"bmQ" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/bigredv2/outside/filtration_plant) -"blC" = ( -/obj/structure/closet/firecloset/full, /turf/open/floor{ - icon_state = "darkyellow2" + icon_state = "freezerfloor" }, -/area/bigredv2/outside/filtration_plant) -"blD" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/firealarm, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/area/bigredv2/outside/engineering) +"bmT" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) -"blE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"bmU" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) -"blF" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Air Filtration" +/obj/structure/machinery/power/terminal{ + dir = 1 }, /turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"blG" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +/area/bigredv2/outside/engineering) +"bmV" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, /turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"blT" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/area/bigredv2/outside/engineering) +"bne" = ( +/obj/structure/cryofeed, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/bluegrid{ + icon_state = "bcircuitoff" }, /area/bigredv2/outside/filtration_plant) -"blV" = ( -/obj/structure/bed/chair/office/light{ +"bny" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/window/reinforced/toughened{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/surface/table/reinforced, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_id = "Virology" }, /turf/open/floor{ - icon_state = "dark" + dir = 5; + icon_state = "darkgreen2" }, -/area/bigredv2/outside/filtration_plant) -"blW" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump{ +/area/bigredv2/caves/lambda/virology) +"bnR" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, /turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" + icon_state = "freezerfloor" }, -/area/bigredv2/outside/filtration_plant) -"blX" = ( +/area/bigredv2/outside/engineering) +"boA" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bpc" = ( +/obj/structure/barricade/handrail, /turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" + icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_plant) -"blY" = ( -/obj/structure/bed/chair{ +"bpu" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"blZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 8; + icon_state = "asteroidwarning" }, +/area/bigredv2/outside/space_port_lz2) +"bpv" = ( /turf/open/floor{ - icon_state = "dark" + dir = 1; + icon_state = "asteroidfloor" }, -/area/bigredv2/outside/filtration_plant) -"bma" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/area/bigredv2/outside/sw) +"bpx" = ( +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" }, -/turf/open/floor{ - icon_state = "dark" +/area/bigredv2/outside/sw) +"bpy" = ( +/turf/open/mars{ + icon_state = "mars_dirt_12" }, -/area/bigredv2/outside/filtration_plant) -"bmb" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/area/bigredv2/outside/sw) +"bpT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/area/bigredv2/outside/c) +"bpX" = ( /turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" + dir = 1; + icon_state = "asteroidwarning" }, -/area/bigredv2/outside/filtration_plant) -"bme" = ( -/turf/open/mars, -/area/bigredv2/outside/sw) -"bmf" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/bigredv2/outside/se) +"bpY" = ( +/turf/open/floor{ + dir = 8; + icon_state = "asteroidwarning" }, -/area/bigredv2/outside/engineering) -"bmg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/area/bigredv2/outside/se) +"bpZ" = ( +/obj/structure/fence, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" }, +/area/bigredv2/outside/filtration_cave_cas) +"bqa" = ( /turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" + dir = 1; + icon_state = "asteroidfloor" }, -/area/bigredv2/outside/engineering) -"bmh" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/pipes/standard/simple/hidden/green, +/area/bigredv2/outside/se) +"bqb" = ( +/obj/effect/landmark/crap_item, /turf/open/floor{ dir = 4; - icon_state = "darkyellow2" + icon_state = "asteroidwarning" }, -/area/bigredv2/outside/engineering) -"bmi" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/curtain/red, -/turf/open/floor{ - icon_state = "freezerfloor" +/area/bigredv2/outside/filtration_cave_cas) +"bqc" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 }, -/area/bigredv2/outside/engineering) -"bmj" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/engineering) -"bml" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bmm" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bmn" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"bmp" = ( -/obj/structure/machinery/mill, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bmq" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bms" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bmt" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bmu" = ( -/obj/structure/machinery/computer/station_alert, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bmw" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bmx" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bmy" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bmz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bmA" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"bmB" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/s) -"bmC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bmD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bmF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bmG" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bmH" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bmJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bmM" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"bmN" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bmO" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bmP" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bmQ" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/engineering) -"bmR" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bmS" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bmT" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"bmU" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"bmV" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"bmW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bmX" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bmZ" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bna" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bnb" = ( -/obj/structure/machinery/door_control{ - id = "Filtration Plant"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bnd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/computer3/server, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bne" = ( -/obj/structure/cryofeed, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/outside/filtration_plant) -"bnf" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bng" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bnh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bnj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Storage" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/filtration_plant) -"bnl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bnm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bnn" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bno" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/headset, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bnp" = ( -/obj/structure/machinery/computer/area_atmos/area, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bnq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bnr" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bns" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering SMES" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"bnt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/welding, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bnu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bnw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bnx" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/meson, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bny" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_id = "Virology" - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"bnz" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/zippo, -/obj/item/tool/lighter/zippo, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bnA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/filtration_plant) -"bnB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bnE" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bnF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bnH" = ( -/obj/structure/machinery/computer/general_air_control, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bnI" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bnK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bnL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bnM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bnN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bnO" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bnQ" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"bnR" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/engineering) -"bnS" = ( -/obj/item/trash/eat, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bnT" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engineering Secure Storage" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"bnV" = ( -/obj/structure/sign/safety/electronics{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bnW" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/engineering) -"bnX" = ( -/obj/item/folder/yellow, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bnY" = ( -/obj/structure/machinery/photocopier, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bnZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"boa" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bob" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"boc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"boe" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bof" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"boj" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"bok" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"boq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bor" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bos" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bou" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bov" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/fireaxe, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"box" = ( -/obj/item/frame/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"boy" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_sw) -"boA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"boD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"boG" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"boH" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/engineering) -"boI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"boK" = ( -/obj/item/trash/pistachios, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"boL" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"boM" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"boN" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"boR" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"boS" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"boU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Chief Engineer's Office" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"boV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"boW" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/filtration_plant) -"boX" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"boY" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/transmitter/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "yellow"; - phone_id = "Filtration"; - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"boZ" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bpa" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bpc" = ( -/obj/structure/barricade/handrail, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_plant) -"bpe" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bpf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bpi" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bpj" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bpk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Tool Storage" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"bpl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bpm" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/welding, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bpn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bpo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bpp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bpq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bpu" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bpv" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/sw) -"bpx" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/sw) -"bpy" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/sw) -"bpz" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Lockers" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"bpA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Lockers" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"bpC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bpD" = ( -/obj/structure/surface/rack, -/obj/item/device/camera_film, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bpE" = ( -/obj/structure/surface/rack, -/obj/item/device/analyzer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bpF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bpH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bpI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/lightreplacer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bpK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bpL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/engineering) -"bpM" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bpN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bpO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bpP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bpQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bpR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bpS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bpT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) -"bpU" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bpV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bpX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"bpY" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"bpZ" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/filtration_cave_cas) -"bqa" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/se) -"bqb" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) -"bqc" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/caves/mining) -"bqd" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/turf/open/mars_cave{ + icon_state = "mars_cave_17" + }, +/area/bigredv2/caves/mining) +"bqd" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, /turf/open/floor{ @@ -23666,61 +21478,12 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/sw) -"bqf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Break Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) "bqg" = ( /turf/open/floor/plating{ dir = 6; icon_state = "warnplate" }, /area/bigredv2/outside/telecomm/warehouse) -"bqk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bql" = ( -/obj/structure/machinery/door_control{ - id = "Engineering"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bqo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bqv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bqw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) "bqA" = ( /obj/structure/closet/toolcloset, /obj/effect/landmark/objective_landmark/close, @@ -23735,104 +21498,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/space_port_lz2) -"bqI" = ( -/obj/structure/machinery/vending/snack{ - icon_state = "snack-broken"; - stat = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bqJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/engineering) -"bqK" = ( -/obj/item/folder/yellow, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/engineering) -"bqL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Workshop" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"bqM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bqN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bqP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engine Reactor Control" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"bqT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"bqV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/paper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bqX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) "brb" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 @@ -23855,146 +21520,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/sw) -"bre" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"brf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Workshop" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"brg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bri" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"brj" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"brn" = ( -/obj/structure/machinery/power/breakerbox/activated, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bro" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bru" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"brv" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"brw" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"brx" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bry" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"brz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"brA" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/item/tool/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"brB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"brC" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) "brD" = ( /turf/open/floor/plating, /area/bigredv2/outside/filtration_cave_cas) @@ -24007,121 +21532,15 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/sw) -"brI" = ( -/obj/structure/sign/safety/galley{ - pixel_x = -32 - }, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"brJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/glass, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"brK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"brL" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"brM" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"brO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"brP" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"brR" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/outside/engineering) -"brU" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"brV" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"brW" = ( +"brH" = ( /obj/structure/surface/table, -/obj/item/weapon/baton, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, /turf/open/floor{ - dir = 4; + dir = 10; icon_state = "darkyellow2" }, /area/bigredv2/outside/filtration_plant) -"brY" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"brZ" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/filtration_plant) "bsa" = ( /obj/structure/machinery/floodlight/landing/floor, /turf/open/floor{ @@ -24164,16 +21583,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/space_port_lz2) -"bsm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) "bss" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A pipe."; @@ -24183,51 +21592,6 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"bsB" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bsC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bsD" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bsE" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bsF" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/solar_tracker, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"bsG" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/filtration_plant) "bsH" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor, @@ -24237,158 +21601,6 @@ icon_state = "mars_dirt_3" }, /area/bigredv2/outside/sw) -"bsJ" = ( -/obj/structure/machinery/vending/coffee{ - icon_state = "coffee-broken"; - stat = 1 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bsK" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bsL" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bsM" = ( -/obj/structure/machinery/door_control{ - id = "Engineering"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bsN" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stock_parts/smes_coil, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bsP" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"bsX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"bsY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"bsZ" = ( -/obj/structure/janitorialcart, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bta" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"btb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/constructable_frame, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"btc" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"btd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bte" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bti" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"btj" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"btk" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "btn" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -24402,99 +21614,14 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/se) -"btr" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"btt" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"btu" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "btw" = ( /turf/open/floor/plating, /area/bigredv2/outside/lz2_south_cas) -"btA" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"btB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "btD" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_7" }, /area/bigredv2/outside/s) -"btH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"btJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"btK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"btN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bua" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) "bub" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_5" @@ -24544,13 +21671,6 @@ icon_state = "mars_cave_19" }, /area/bigredv2/caves_sw) -"buB" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/n) "buJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -24566,12 +21686,6 @@ icon_state = "mars_dirt_5" }, /area/bigredv2/caves_north) -"buQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves_north) "buR" = ( /obj/effect/landmark/hunter_primary, /turf/open/mars_cave{ @@ -24651,20 +21765,6 @@ "bvP" = ( /turf/open/mars, /area/bigredv2/caves/eta/research) -"bvQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/eta) -"bvR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/bigredv2/caves_se) "bvS" = ( /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/floor/plating, @@ -24676,55 +21776,9 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"bvW" = ( -/obj/effect/landmark/crap_item, -/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, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/eta) "bvY" = ( /turf/open/floor/plating, /area/bigredv2/outside/eta) -"bvZ" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/eta) -"bwa" = ( -/obj/effect/landmark/hunter_primary, -/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, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/eta) -"bwc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/eta) "bwj" = ( /turf/open/mars{ icon_state = "mars_dirt_10" @@ -24919,11 +21973,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/caves/eta/storage) -"bxe" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) "bxf" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, @@ -24962,13 +22011,6 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/storage) -"bxl" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/eta/research) "bxn" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -25014,13 +22056,6 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/storage) -"bxt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/storage) "bxu" = ( /turf/open/floor{ dir = 4; @@ -25063,13 +22098,6 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/research) -"bxA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) "bxB" = ( /obj/structure/largecrate/guns, /obj/effect/decal/cleanable/dirt, @@ -25101,15 +22129,6 @@ icon_state = "darkblue2" }, /area/bigredv2/caves/eta/storage) -"bxG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/storage) "bxH" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, @@ -25163,14 +22182,6 @@ icon_state = "darkyellow2" }, /area/bigredv2/caves/eta/research) -"bxP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) "bxQ" = ( /obj/structure/machinery/light{ dir = 4 @@ -25241,31 +22252,15 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/research) -"byc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/research) "bye" = ( /turf/open/mars_cave{ icon_state = "mars_cave_12" }, /area/bigredv2/caves_research) -"byf" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) "byg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) -"byh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) "byi" = ( /obj/structure/machinery/light{ dir = 8 @@ -25283,14 +22278,6 @@ icon_state = "darkblue2" }, /area/bigredv2/caves/eta/storage) -"byk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) "byl" = ( /obj/structure/machinery/photocopier, /obj/structure/pipes/standard/simple/hidden/green, @@ -25431,13 +22418,6 @@ icon_state = "delivery" }, /area/bigredv2/caves/eta/research) -"byG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/caves_se) "byH" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/pump{ @@ -25617,16 +22597,6 @@ icon_state = "darkgreencorners2" }, /area/bigredv2/caves/eta/research) -"bzd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) "bze" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor{ @@ -25678,16 +22648,6 @@ icon_state = "darkyellow2" }, /area/bigredv2/caves/eta/research) -"bzk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) "bzl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25720,13 +22680,6 @@ icon_state = "darkgreencorners2" }, /area/bigredv2/caves/eta/storage) -"bzq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/storage) "bzr" = ( /obj/structure/machinery/light{ dir = 1 @@ -25793,16 +22746,6 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/storage) -"bzA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/storage) "bzB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green, @@ -25918,13 +22861,6 @@ icon_state = "mars_cave_6" }, /area/bigredv2/caves/eta/research) -"bzP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/bigredv2/caves/eta/research) "bzQ" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; @@ -25951,14 +22887,6 @@ icon_state = "darkgreencorners2" }, /area/bigredv2/caves/eta/research) -"bzU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) "bzW" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -25971,15 +22899,6 @@ icon_state = "darkblue2" }, /area/bigredv2/caves/eta/research) -"bzX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) "bzY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -26010,21 +22929,6 @@ icon_state = "mars_cave_5" }, /area/bigredv2/caves/eta/research) -"bAd" = ( -/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, -/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, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/caves_se) "bAf" = ( /obj/structure/machinery/r_n_d/server, /turf/open/floor{ @@ -26055,23 +22959,6 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/storage) -"bAn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"bAo" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) "bAp" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -26092,14 +22979,6 @@ icon_state = "darkblue2" }, /area/bigredv2/caves/eta/research) -"bAr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/caves/eta/research) "bAs" = ( /obj/structure/machinery/vending/cola, /turf/open/floor{ @@ -26129,13 +23008,6 @@ icon_state = "darkish" }, /area/bigredv2/caves/eta/storage) -"bAx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/eta/storage) "bAy" = ( /obj/structure/machinery/light{ dir = 4 @@ -26228,10 +23100,6 @@ icon_state = "darkyellow2" }, /area/bigredv2/caves/eta/research) -"bAK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) "bAL" = ( /obj/structure/surface/table, /turf/open/floor/plating, @@ -26380,13 +23248,6 @@ icon_state = "darkred2" }, /area/bigredv2/caves/eta/xenobiology) -"bBg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "bBh" = ( /obj/structure/filingcabinet, /turf/open/floor{ @@ -26447,12 +23308,6 @@ icon_state = "darkred2" }, /area/bigredv2/caves/eta/xenobiology) -"bBr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/xenobiology) "bBs" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor{ @@ -26465,10 +23320,6 @@ icon_state = "darkred2" }, /area/bigredv2/caves/eta/xenobiology) -"bBv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) "bBx" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Eta Lab Maintenance Storage" @@ -26477,29 +23328,6 @@ icon_state = "delivery" }, /area/bigredv2/caves/eta/storage) -"bBA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/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, -/turf/open/floor{ - icon_state = "dark" - }, -/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" - }, -/area/bigredv2/caves/eta/research) "bBH" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Eta Lab Cell" @@ -26618,13 +23446,6 @@ icon_state = "darkred2" }, /area/bigredv2/caves/eta/research) -"bBZ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) "bCa" = ( /obj/structure/xenoautopsy/tank, /turf/open/floor{ @@ -26702,15 +23523,6 @@ icon_state = "darkgreen2" }, /area/bigredv2/caves/eta/xenobiology) -"bCl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) "bCm" = ( /obj/structure/surface/table, /obj/structure/machinery/faxmachine, @@ -26745,21 +23557,6 @@ icon_state = "darkgreen2" }, /area/bigredv2/caves/eta/xenobiology) -"bCr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/eta/xenobiology) -"bCs" = ( -/obj/effect/landmark/good_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) "bCt" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, @@ -26818,15 +23615,6 @@ icon_state = "delivery" }, /area/bigredv2/caves/eta/xenobiology) -"bCA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/xenobiology) "bCC" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, @@ -26862,10 +23650,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 @@ -26962,24 +23746,11 @@ icon_state = "darkyellowcorners2" }, /area/bigredv2/caves/eta/living) -"bCY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/living) "bCZ" = ( /turf/open/floor{ icon_state = "darkyellowcorners2" }, /area/bigredv2/caves/eta/living) -"bDa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/research) "bDb" = ( /obj/structure/bed/chair{ dir = 8 @@ -27052,17 +23823,6 @@ }, /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) -"bDl" = ( -/obj/structure/machinery/light{ - 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" - }, -/area/bigredv2/caves/eta/xenobiology) "bDm" = ( /obj/structure/machinery/light{ dir = 8 @@ -27109,18 +23869,6 @@ icon_state = "wood" }, /area/bigredv2/caves/eta/living) -"bDr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/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, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) "bDs" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -27131,14 +23879,6 @@ icon_state = "darkyellowcorners2" }, /area/bigredv2/caves/eta/living) -"bDt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/living) "bDu" = ( /obj/structure/surface/table, /obj/item/book/manual/nuclear, @@ -27187,14 +23927,6 @@ icon_state = "wood" }, /area/bigredv2/caves/eta/living) -"bDC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) "bDD" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -27203,12 +23935,6 @@ icon_state = "wood" }, /area/bigredv2/caves/eta/living) -"bDE" = ( -/obj/item/trash/kepler, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, -/area/bigredv2/caves/eta/living) "bDF" = ( /obj/structure/machinery/vending/cola, /turf/open/floor, @@ -27294,18 +24020,6 @@ icon_state = "freezerfloor" }, /area/bigredv2/caves/eta/living) -"bDS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/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, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) "bDT" = ( /obj/structure/machinery/light{ dir = 8 @@ -27322,13 +24036,6 @@ icon_state = "darkyellowcorners2" }, /area/bigredv2/caves/eta/living) -"bDV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) "bDW" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -27364,17 +24071,6 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/living) -"bEe" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/eta/living) "bEf" = ( /obj/structure/machinery/light{ dir = 8 @@ -27383,27 +24079,12 @@ icon_state = "mars_dirt_7" }, /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" - }, -/area/bigredv2/caves/eta/xenobiology) "bEh" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ icon_state = "darkyellowcorners2" }, /area/bigredv2/caves/eta/living) -"bEi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) "bEj" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Eta Lab Restroom" @@ -27486,21 +24167,6 @@ icon_state = "darkyellowcorners2" }, /area/bigredv2/caves/eta/living) -"bEw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - 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{ @@ -27577,16 +24243,6 @@ icon_state = "delivery" }, /area/bigredv2/caves/eta/living) -"bEI" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, -/area/bigredv2/caves/eta/living) "bEJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -27606,17 +24262,6 @@ icon_state = "darkyellowcorners2" }, /area/bigredv2/caves/eta/living) -"bEL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) "bEM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -27630,12 +24275,6 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor, /area/bigredv2/caves/eta/living) -"bEO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) "bEP" = ( /obj/structure/machinery/light, /turf/open/floor{ @@ -27649,13 +24288,6 @@ icon_state = "darkyellowcorners2" }, /area/bigredv2/caves/eta/living) -"bER" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) "bES" = ( /obj/structure/machinery/light, /turf/open/floor, @@ -27665,9 +24297,22 @@ icon_state = "delivery" }, /area/bigredv2/outside/office_complex) +"bFn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_6" + }, +/area/bigredv2/caves_lambda) "bFw" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm/warehouse) +"bGb" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_18" + }, +/area/bigredv2/caves_lambda) "bGp" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, @@ -27680,13 +24325,19 @@ icon_state = "asteroidfloor" }, /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, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"bIf" = ( +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" }, -/area/bigredv2/caves/mining) +/area/bigredv2/outside/filtration_plant) +"bJi" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/lambda/research) "bJz" = ( /obj/structure/bed/chair{ dir = 8; @@ -27710,13 +24361,6 @@ icon_state = "mars_cave_16" }, /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, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_se) "bMa" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/pistol/mod88, @@ -27731,17 +24375,39 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_plant) +"bMk" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/research) "bMz" = ( /turf/open/floor{ dir = 5; icon_state = "asteroidwarning" }, /area/bigredv2/outside/ne) +"bMP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave, +/area/bigredv2/caves_east) "bNl" = ( /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/caves/lambda/xenobiology) +"bNp" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/landmark/objective_landmark/science, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, +/area/bigredv2/caves/lambda/virology) "bNA" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, @@ -27753,13 +24419,6 @@ icon_state = "dark" }, /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" - }, -/area/bigredv2/caves/mining) "bQb" = ( /turf/open/mars_cave{ icon_state = "mars_cave_18" @@ -27786,6 +24445,13 @@ icon_state = "mars_cave_7" }, /area/bigredv2/outside/lz1_telecomm_cas) +"bRo" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "bRK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/rack, @@ -27801,6 +24467,12 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"bSk" = ( +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "bSw" = ( /obj/structure/cable{ icon_state = "1-4" @@ -27829,6 +24501,18 @@ icon_state = "mars_cave_7" }, /area/bigredv2/caves_se) +"bUt" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"bVc" = ( +/turf/open/floor{ + dir = 6; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "bWk" = ( /turf/open/floor{ dir = 1; @@ -27842,11 +24526,33 @@ icon_state = "asteroidfloor" }, /area/bigred/ground/garage_workshop) +"bWF" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/lambda/breakroom) "bXe" = ( /obj/structure/closet/crate/freezer/rations, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) +"bXH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor{ + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/caves/eta/living) +"bXZ" = ( +/obj/structure/machinery/computer3/server, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "bYa" = ( /obj/item/reagent_container/spray/cleaner, /turf/open/floor, @@ -27858,34 +24564,36 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/telecomm/lz2_cave) -"bYW" = ( -/obj/structure/pipes/vents/pump, +"bYw" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" + icon_state = "dark" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves/lambda/research) "bZp" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/plating, /area/bigredv2/outside/nw/ceiling) -"bZJ" = ( +"bZs" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/caves/eta/research) +"caz" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/radiation, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, /turf/open/floor{ - dir = 8; + dir = 1; icon_state = "darkyellowcorners2" }, /area/bigredv2/outside/engineering) -"bZL" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/research) "caD" = ( /obj/effect/landmark/crap_item, /turf/open/floor{ @@ -27898,15 +24606,22 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"ccP" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"ccG" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor{ - dir = 4; icon_state = "darkyellow2" }, /area/bigredv2/outside/filtration_plant) +"cdo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "cdA" = ( /turf/open/mars_cave{ icon_state = "mars_cave_5" @@ -27925,6 +24640,20 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"ceG" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"cfo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_7" + }, +/area/bigredv2/caves_sw) "cfr" = ( /obj/item/explosive/grenade/baton{ dir = 8 @@ -27933,18 +24662,26 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"cfJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 8; + icon_state = "darkgreencorners2" + }, +/area/bigredv2/caves/eta/research) +"cfQ" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "cgt" = ( /turf/open/floor{ icon_state = "delivery" }, /area/bigredv2/outside/dorms) -"chq" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/caves_lambda) "ciY" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -27953,20 +24690,62 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) -"cla" = ( +"cjk" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/caves_sw) +"cjx" = ( /obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor{ - icon_state = "dark" + dir = 6; + icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"cka" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "white" + }, +/area/bigredv2/outside/virology) +"clm" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_23" + }, +/area/bigredv2/caves_east) "clB" = ( /turf/open/floor{ dir = 1; icon_state = "asteroidfloor" }, /area/bigred/ground/garage_workshop) +"cmc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/research) +"cmt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "cmC" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -1; @@ -28005,6 +24784,12 @@ icon_state = "mars_cave_2" }, /area/space) +"cno" = ( +/turf/open/floor{ + dir = 10; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "cns" = ( /obj/effect/landmark/nightmare{ insert_tag = "se-checkpoint" @@ -28018,13 +24803,14 @@ icon_state = "wood" }, /area/bigredv2/outside/bar) -"cpc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +"cqb" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" }, -/area/bigredv2/caves_se) +/area/bigredv2/outside/eta) "cqj" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -28037,6 +24823,13 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"cru" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/red, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/engineering) "crv" = ( /obj/structure/surface/table, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -28053,6 +24846,14 @@ icon_state = "mars_cave_18" }, /area/bigredv2/caves_virology) +"csi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/research) "csB" = ( /obj/structure/prop/dam/crane/damaged, /turf/open/floor/plating{ @@ -28060,45 +24861,11 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"csC" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) "csE" = ( /turf/open/mars_cave{ icon_state = "mars_cave_6" }, /area/bigredv2/outside/lz1_telecomm_cas) -"ctT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"cud" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"cvi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/tunnel{ - id = "hole2" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/xenobiology) "cwk" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor, @@ -28112,6 +24879,15 @@ icon_state = "grass_impenetrable" }, /area/bigredv2/caves/eta/xenobiology) +"cyk" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "cyv" = ( /obj/structure/machinery/prop/almayer/computer/PC{ pixel_x = 3; @@ -28130,6 +24906,13 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) +"cAm" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_6" + }, +/area/bigredv2/caves_se) "cAs" = ( /turf/open/floor{ dir = 1; @@ -28141,18 +24924,40 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"cCr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +"cCb" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves_sw) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "cCu" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/mars_cave{ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) +"cCI" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 8 + }, +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "darkish" + }, +/area/bigredv2/caves/lambda/virology) +"cCV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_3" + }, +/area/bigredv2/caves/mining) +"cDg" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/c) "cDx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -28170,18 +24975,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/caves) -"cGT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -32; - start_charge = 0 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "cGZ" = ( /turf/open/mars_cave{ icon_state = "mars_cave_20" @@ -28208,6 +25001,12 @@ icon_state = "wood" }, /area/bigredv2/outside/dorms) +"cIa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) "cIq" = ( /obj/structure/machinery/light{ dir = 1 @@ -28216,10 +25015,33 @@ icon_state = "mars_cave_23" }, /area/bigredv2/outside/lambda_cave_cas) +"cIx" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) +"cIz" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/research) "cIP" = ( /obj/item/paper/bigred/smuggling, /turf/open/floor, /area/bigredv2/outside/cargo) +"cIX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/constructable_frame, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "cJa" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -28258,12 +25080,55 @@ icon_state = "mars_cave_20" }, /area/bigredv2/caves_north) -"cKu" = ( +"cKp" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/firealarm, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor{ + dir = 8; icon_state = "darkyellow2" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/filtration_plant) +"cKC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_3" + }, +/area/bigredv2/caves_sw) +"cKE" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_research) +"cKM" = ( +/obj/structure/pipes/vents/scrubber/on, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/research) +"cLd" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/lambda/research) +"cLM" = ( +/obj/item/frame/table, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "cLZ" = ( /obj/structure/closet/secure_closet/brig, /obj/effect/landmark/objective_landmark/close, @@ -28271,11 +25136,8 @@ icon_state = "dark" }, /area/bigredv2/outside/marshal_office) -"cNb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, +"cMy" = ( +/obj/item/stack/sheet/glass, /turf/open/floor{ icon_state = "dark" }, @@ -28286,16 +25148,6 @@ icon_state = "delivery" }, /area/bigredv2/outside/bar) -"cOa" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) "cOl" = ( /turf/open/mars_cave{ icon_state = "mars_cave_18" @@ -28313,6 +25165,15 @@ icon_state = "delivery" }, /area/bigredv2/caves/eta/research) +"cPH" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "cPZ" = ( /obj/structure/window/framed/solaris/reinforced, /obj/effect/decal/cleanable/dirt, @@ -28353,6 +25214,14 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) +"cTg" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "cVd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -28365,13 +25234,6 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"cVL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/bigredv2/caves_se) "cVY" = ( /turf/open/mars, /area/bigredv2/outside/space_port_lz2) @@ -28383,6 +25245,20 @@ icon_state = "wood" }, /area/bigredv2/outside/admin_building) +"cYs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/outside/ne) +"cYF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor{ + dir = 6; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "cYI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -28396,17 +25272,18 @@ icon_state = "mars_cave_2" }, /area/bigredv2/outside/lz2_west_cas) +"cZg" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "cZj" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"cZB" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) "daf" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave{ @@ -28427,6 +25304,13 @@ "dbi" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/outside/telecomm/lz2_cave) +"dcj" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/research) "ddt" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -28435,6 +25319,52 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) +"ddz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/filtration_cave_cas) +"ddT" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/breakroom) +"dep" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"deB" = ( +/turf/open/floor{ + dir = 8; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/outside/engineering) +"dfn" = ( +/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" + }, +/area/bigredv2/caves/mining) "dgy" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -28443,14 +25373,6 @@ icon_state = "delivery" }, /area/bigredv2/outside/c) -"dhN" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/almayer{ - id = "rad_door"; - name = "\improper Radiation Shielding" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) "dhS" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -28476,6 +25398,23 @@ icon_state = "podhatchfloor" }, /area/bigredv2/outside/admin_building) +"djS" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor{ + dir = 8; + icon_state = "darkgreencorners2" + }, +/area/bigredv2/caves/eta/research) +"dkg" = ( +/obj/structure/window/framed/solaris, +/obj/effect/decal/cleanable/molten_item, +/obj/structure/machinery/door/poddoor/almayer{ + id = "rad_door"; + name = "\improper Radiation Shielding" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) "dlr" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/floor, @@ -28484,6 +25423,22 @@ /obj/item/tool/pickaxe, /turf/open/mars, /area/bigredv2/outside/filtration_plant) +"dmH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"dnu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/fireaxe, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "dnV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -28491,6 +25446,13 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_plant) +"doo" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "dot" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; @@ -28499,12 +25461,10 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"dov" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/filtration_cave_cas) +"dqd" = ( +/obj/structure/platform, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) "dqy" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -28542,19 +25502,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"dsm" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"dsy" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) "dtf" = ( /obj/structure/prop/server_equipment/broken, /turf/open/floor{ @@ -28562,6 +25509,12 @@ icon_state = "podhatch" }, /area/bigredv2/caves/lambda/research) +"dtt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/outside/engineering) "dtX" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; @@ -28572,16 +25525,26 @@ icon_state = "mars_cave_14" }, /area/bigredv2/caves_north) +"duc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "duo" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"duA" = ( -/obj/structure/platform{ - dir = 1 +"dut" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor{ + icon_state = "dark" }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/filtration_plant) "dvB" = ( /obj/item/ore/coal{ pixel_x = 9; @@ -28592,12 +25555,6 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) -"dvC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) "dwL" = ( /obj/structure/bed/chair{ buckling_y = 5; @@ -28626,13 +25583,18 @@ "dyv" = ( /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) -"dyH" = ( -/obj/structure/machinery/computer/area_atmos{ - dir = 1 +"dyT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/structure/surface/table, /turf/open/floor{ - dir = 6; + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) +"dzh" = ( +/obj/structure/bed/chair, +/turf/open/floor{ + dir = 8; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) @@ -28680,17 +25642,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"dBU" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "dCb" = ( /obj/effect/landmark/corpsespawner/security/marshal, /obj/effect/decal/cleanable/blood/oil, @@ -28707,24 +25658,40 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"dCt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 10 + }, +/area/bigredv2/caves/lambda/xenobiology) "dCA" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"dCB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/bigredv2/caves/eta/storage) "dEf" = ( /obj/structure/closet/toolcloset, /obj/structure/machinery/light, /obj/effect/landmark/objective_landmark/close, /turf/open/floor, /area/bigred/ground/garage_workshop) -"dEr" = ( +"dEL" = ( /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" + icon_state = "mars_cave_6" }, -/area/bigredv2/caves_se) +/area/bigredv2/caves_east) "dEV" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_7" @@ -28750,6 +25717,15 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves/mining) +"dGo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "dHr" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6"; @@ -28800,6 +25776,20 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"dJU" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"dKe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/xenobiology) "dKo" = ( /obj/item/ore/iron{ pixel_x = 6; @@ -28812,13 +25802,12 @@ /obj/item/ore/iron, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"dKR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +"dKI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/mars_cave{ - icon_state = "mars_cave_5" + icon_state = "mars_dirt_4" }, -/area/bigredv2/caves_lambda) +/area/bigredv2/outside/filtration_plant) "dLe" = ( /turf/open/mars_cave{ icon_state = "mars_cave_5" @@ -28860,20 +25849,20 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"dOz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/living) "dPb" = ( /obj/item/tool/pickaxe/drill, /turf/open/mars_cave{ 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; @@ -28883,26 +25872,29 @@ icon_state = "mars_cave_23" }, /area/bigredv2/caves/mining) -"dQw" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +"dQl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 4; + icon_state = "darkgreencorners2" }, -/area/bigredv2/caves_sw) +/area/bigredv2/caves/eta/storage) +"dQr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "dQF" = ( /obj/effect/spawner/random/tool, /turf/open/mars_cave{ icon_state = "mars_dirt_5" }, /area/bigredv2/caves/mining) -"dQZ" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "dSg" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, @@ -28911,6 +25903,21 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"dSL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/glass, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"dTL" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "dUj" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -8; @@ -28932,9 +25939,18 @@ icon_state = "mars_cave_5" }, /area/bigredv2/outside/lz2_south_cas) -"dWd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"dVD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/caves_north) +"dVF" = ( +/obj/structure/sign/safety/galley{ + pixel_x = -32 + }, +/obj/item/stack/sheet/metal{ + amount = 30 }, /turf/open/floor{ icon_state = "dark" @@ -28946,13 +25962,6 @@ icon_state = "mars_dirt_12" }, /area/bigredv2/outside/c) -"dWl" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "dXs" = ( /obj/item/tool/pickaxe{ pixel_y = 12 @@ -28995,13 +26004,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"ebr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/engineering) "ebZ" = ( /turf/open/floor{ icon_state = "darkgreencorners2" @@ -29042,6 +26044,58 @@ icon_state = "asteroidfloor" }, /area/bigred/ground/garage_workshop) +"edZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) +"eeW" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"egf" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_6" + }, +/area/bigredv2/outside/lambda_cave_cas) +"egj" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/item/tool/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"egH" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) "egI" = ( /obj/item/ore, /obj/item/ore{ @@ -29052,18 +26106,21 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) -"egL" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "egS" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"eiE" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) +"eiW" = ( +/turf/open/floor{ + icon_state = "podhatchfloor" + }, +/area/bigredv2/outside/engineering) "eju" = ( /obj/item/ore{ pixel_x = 9; @@ -29113,6 +26170,23 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"emI" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"emL" = ( +/obj/item/stack/sheet/glass, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "ene" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ @@ -29122,6 +26196,13 @@ /obj/item/reagent_container/food/snacks/cookie, /turf/open/mars_cave, /area/bigredv2/caves/mining) +"eng" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/research) "enD" = ( /obj/item/trash/cigbutt/ucigbutt, /obj/item/trash/cigbutt/cigarbutt{ @@ -29137,6 +26218,22 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"eoq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) +"eoz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_11" + }, +/area/bigredv2/caves/lambda/xenobiology) "eoU" = ( /turf/open/floor/almayer{ dir = 1; @@ -29149,14 +26246,38 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/eta) +"epS" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor{ + icon_state = "darkgreencorners2" + }, +/area/bigredv2/caves/eta/research) "eql" = ( /turf/open/mars_cave{ icon_state = "mars_cave_9" }, /area/bigredv2/caves/mining) +"eqK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor{ + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/lambda_cave_cas) "erf" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/c) +"erp" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "ers" = ( /obj/effect/landmark/nightmare{ insert_tag = "etatunnel" @@ -29189,6 +26310,33 @@ icon_state = "mars_cave_20" }, /area/bigredv2/caves/mining) +"esD" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_east) +"esL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) +"etP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"etY" = ( +/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, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/research) "eup" = ( /obj/structure/bed/chair, /obj/item/trash/cigbutt, @@ -29227,17 +26375,24 @@ icon_state = "bcircuitoff" }, /area/bigredv2/caves/lambda/research) -"evX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"ewT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda"; + name = "Lambda Lockdown" }, -/area/bigredv2/caves/mining) -"ewv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/curtain/red, /turf/open/floor{ - icon_state = "freezerfloor" + icon_state = "delivery" + }, +/area/bigredv2/caves_lambda) +"exb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) "exc" = ( @@ -29246,6 +26401,16 @@ icon_state = "asteroidwarning" }, /area/bigred/ground/garage_workshop) +"ezB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor{ + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/research) "ezQ" = ( /obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/plating{ @@ -29253,12 +26418,26 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"eAK" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "eAU" = ( /turf/open/floor{ dir = 4; icon_state = "asteroidwarning" }, /area/bigredv2/outside/eta) +"eBk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor{ + dir = 10; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "eBn" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 3; @@ -29269,6 +26448,23 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"eBC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"eCK" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 9 + }, +/area/bigredv2/caves/lambda/xenobiology) "eDQ" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/medium, @@ -29285,10 +26481,13 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/xenobiology) -"eEy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/outside/lz2_west_cas) +"eEx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "eER" = ( /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/floor/plating{ @@ -29326,25 +26525,12 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_sw) -"eGM" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/engineering) "eHA" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ icon_state = "dark" }, /area/bigredv2/caves/eta/xenobiology) -"eIN" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "eJE" = ( /turf/open/floor{ dir = 4; @@ -29362,18 +26548,18 @@ icon_state = "freezerfloor" }, /area/bigredv2/outside/general_offices) -"eKU" = ( -/obj/structure/machinery/door_control{ - id = "filtration"; - name = "Filtration Lockdown"; - pixel_x = 30; - throw_range = 15 +"eKj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "darkred2" }, +/area/bigredv2/caves/eta/research) +"eKt" = ( +/obj/structure/closet/radiation, /turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" + icon_state = "delivery" }, -/area/bigredv2/outside/filtration_plant) +/area/bigredv2/outside/engineering) "eLp" = ( /obj/structure/closet/secure_closet/brig, /obj/effect/landmark/objective_landmark/medium, @@ -29390,6 +26576,13 @@ /obj/effect/spawner/random/tool, /turf/open/floor, /area/bigredv2/outside/cargo) +"eLG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "wood" + }, +/area/bigredv2/caves/eta/living) "eLQ" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_5" @@ -29400,6 +26593,24 @@ icon_state = "mars_cave_23" }, /area/bigredv2/caves_lambda) +"eNs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "wood" + }, +/area/bigredv2/caves/eta/living) +"eNt" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor{ + dir = 5; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "eNx" = ( /obj/effect/landmark/nightmare{ insert_tag = "lambda-cave-mushroom" @@ -29413,6 +26624,18 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"eNP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "eOd" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -29423,6 +26646,25 @@ /obj/structure/prop/server_equipment/broken, /turf/open/floor/greengrid, /area/bigredv2/caves/lambda/research) +"eQd" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/meson, +/obj/effect/landmark/crap_item, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"eQU" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "eRc" = ( /turf/open/floor{ dir = 6; @@ -29440,19 +26682,15 @@ }, /turf/closed/wall/solaris, /area/bigredv2/outside/dorms) -"eSm" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"eSk" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor{ dir = 4; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) -"eSu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/caves/mining) "eSN" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -29502,6 +26740,17 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"eVK" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "eWd" = ( /turf/open/floor{ dir = 1; @@ -29536,6 +26785,31 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) +"eXh" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"eXY" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"eYT" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "eZw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -29546,6 +26820,15 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"eZZ" = ( +/obj/structure/machinery/power/geothermal{ + name = "Reactor Turbine"; + power_generation_max = 100000 + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/engineering) "fbF" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -29554,6 +26837,14 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves_north) +"fcg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "fcG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset, @@ -29590,16 +26881,12 @@ icon_state = "delivery" }, /area/bigredv2/caves/lambda/research) -"fgE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/effect/landmark/static_comms/net_two{ - broken_on_spawn = 1 - }, +"fhm" = ( +/obj/structure/bed/chair/office/light, /turf/open/floor{ - icon_state = "podhatchfloor" + icon_state = "darkyellowcorners2" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/filtration_plant) "fhy" = ( /obj/structure/bed/chair/comfy/blue{ dir = 8 @@ -29615,9 +26902,28 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves_north) +"fia" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/tank/air, +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "fin" = ( /turf/open/floor/plating, /area/bigredv2/caves/eta/xenobiology) +"fjy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "fjz" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/objective{ @@ -29627,17 +26933,38 @@ icon_state = "wood" }, /area/bigredv2/caves/eta/living) -"fjF" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars{ - icon_state = "mars_dirt_6" +"fjE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/w) +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "darkgreencorners2" + }, +/area/bigredv2/caves/eta/storage) "fjP" = ( /turf/open/floor{ icon_state = "delivery" }, /area/bigredv2/caves) +"fkk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/outside/lz2_south_cas) +"fkQ" = ( +/obj/structure/machinery/door_control{ + id = "Filtration Plant"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "fmd" = ( /obj/structure/machinery/light{ dir = 1 @@ -29652,6 +26979,12 @@ icon_state = "mars_cave_23" }, /area/bigredv2/caves_virology) +"fmv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_6" + }, +/area/bigredv2/caves_research) "fmL" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/camera/oldcamera, @@ -29660,16 +26993,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"fnh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"fnM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ - icon_state = "darkyellowcorners2" + icon_state = "darkpurple2" }, -/area/bigredv2/caves/eta/living) +/area/bigredv2/caves/lambda/research) "fnO" = ( /turf/open/mars_cave{ icon_state = "mars_cave_13" @@ -29697,6 +27027,48 @@ }, /turf/closed/wall/wood, /area/bigredv2/caves/mining) +"fqF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Tool Storage" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) +"fqI" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/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) +"fsm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "white" + }, +/area/bigredv2/caves/lambda/virology) +"fsW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"ftV" = ( +/obj/item/tool/pickaxe/drill, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_lambda) "fus" = ( /turf/open/mars_cave{ icon_state = "mars_cave_7" @@ -29766,6 +27138,17 @@ icon_state = "warnplate" }, /area/bigredv2/oob) +"fxE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 4; + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/breakroom) "fxK" = ( /turf/open/mars_cave{ icon_state = "mars_cave_10" @@ -29799,11 +27182,6 @@ /obj/structure/pipes/standard/tank/phoron, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"fBo" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) "fCb" = ( /turf/open/floor, /area/bigredv2/outside/filtration_cave_cas) @@ -29813,14 +27191,11 @@ icon_state = "darkred2" }, /area/bigredv2/caves/eta/research) -"fEv" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engine Reactor" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/engineering) +"fDW" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) "fFG" = ( /obj/structure/largecrate/random/barrel, /turf/open/mars_cave{ @@ -29848,12 +27223,31 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) +"fHP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars{ + icon_state = "mars_dirt_12" + }, +/area/bigredv2/outside/c) +"fJs" = ( +/turf/open/floor{ + dir = 5; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "fJH" = ( /turf/open/floor{ dir = 10; icon_state = "asteroidwarning" }, /area/bigredv2/outside/eta) +"fKh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_8" + }, +/area/bigredv2/outside/lambda_cave_cas) "fKW" = ( /obj/structure/machinery/power/apc{ dir = 1 @@ -29868,20 +27262,6 @@ icon_state = "mars_cave_6" }, /area/bigredv2/caves_virology) -"fLl" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"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, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/living) "fLR" = ( /obj/item/tool/pickaxe, /turf/open/mars_cave{ @@ -29950,15 +27330,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/outside/filtration_cave_cas) -"fOK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "fOM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -29970,6 +27341,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) +"fPK" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engine Reactor Control" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "fQv" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -29991,6 +27370,23 @@ icon_state = "mars_cave_20" }, /area/bigredv2/caves/mining) +"fRv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_18" + }, +/area/bigredv2/caves/lambda/xenobiology) +"fRF" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "fRH" = ( /turf/open/mars_cave{ icon_state = "mars_cave_10" @@ -30031,13 +27427,12 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_plant) -"fUp" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - name = "\improper Engine Reactor" - }, +"fVK" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor{ - icon_state = "delivery" + dir = 9; + icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) "fWw" = ( @@ -30046,16 +27441,17 @@ icon_state = "grass_impenetrable" }, /area/bigredv2/caves/eta/xenobiology) -"fXm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"fWQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" + dir = 1; + icon_state = "darkyellowcorners2" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves/eta/living) "fYH" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) @@ -30084,11 +27480,6 @@ icon_state = "mars_dirt_10" }, /area/bigredv2/outside/eta) -"gad" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/filtration_plant) "gan" = ( /obj/structure/platform_decoration/shiva{ dir = 1 @@ -30100,6 +27491,25 @@ icon_state = "bcircuitoff" }, /area/bigredv2/caves/lambda/research) +"gaJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/compressor{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"gcE" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "gcR" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave{ @@ -30109,26 +27519,39 @@ "gda" = ( /turf/open/mars_cave, /area/bigredv2/outside/lz1_telecomm_cas) -"gdx" = ( +"gdz" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, /turf/open/floor{ - dir = 6; + dir = 8; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) -"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" }, /area/bigredv2/outside/lz1_north_cas) -"gfX" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = -32 +"geH" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "white" + }, +/area/bigredv2/outside/virology) +"gfO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor{ + dir = 1; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) @@ -30150,10 +27573,6 @@ "gio" = ( /turf/open/mars_cave, /area/bigredv2/outside/filtration_cave_cas) -"giB" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/caves_sw) "giY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -30165,6 +27584,21 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/outside/s) +"gje" = ( +/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" + }, +/area/bigredv2/caves/mining) +"gjF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor{ + dir = 1; + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/research) "gke" = ( /obj/item/tool/warning_cone, /turf/open/mars_cave{ @@ -30193,15 +27627,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/lz2_south_cas) -"gmm" = ( -/obj/structure/window/framed/solaris, -/obj/effect/decal/cleanable/molten_item, -/obj/structure/machinery/door/poddoor/almayer{ - id = "rad_door"; - name = "\improper Radiation Shielding" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) "gmN" = ( /turf/open/mars_cave{ icon_state = "mars_cave_18" @@ -30215,6 +27640,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"goL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "gpg" = ( /turf/open/mars_cave, /area/bigredv2/caves_east) @@ -30247,6 +27679,40 @@ icon_state = "mars_cave_2" }, /area/bigredv2/outside/lz2_south_cas) +"gqi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Workshop" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) +"gqk" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 1 + }, +/area/bigredv2/caves/lambda/xenobiology) +"gqC" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/welding, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"gqI" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor{ + dir = 5; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "gqS" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, @@ -30263,6 +27729,13 @@ icon_state = "delivery" }, /area/bigredv2/outside/virology) +"gsh" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "gsW" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ @@ -30275,12 +27748,6 @@ "gtX" = ( /turf/open/mars_cave, /area/bigredv2/caves_se) -"guu" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) "guM" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_4" @@ -30308,11 +27775,14 @@ icon_state = "elevatorshaft" }, /area/bigredv2/caves/lambda/breakroom) -"gwg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"gwp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Lockers" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, /area/bigredv2/outside/engineering) "gxJ" = ( @@ -30353,6 +27823,13 @@ icon_state = "mars_cave_14" }, /area/bigredv2/caves/mining) +"gAq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "gAE" = ( /obj/structure/sink{ dir = 1; @@ -30360,14 +27837,12 @@ }, /turf/open/floor, /area/bigredv2/outside/hydroponics) -"gCx" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"gAW" = ( +/obj/effect/landmark/crap_item, /turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" + icon_state = "dark" }, -/area/bigredv2/outside/filtration_plant) +/area/bigredv2/outside/engineering) "gCC" = ( /obj/structure/closet/secure_closet, /obj/item/explosive/plastic{ @@ -30394,13 +27869,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_east) -"gFR" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "gGO" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -30408,16 +27876,34 @@ icon_state = "platingdmg2" }, /area/bigredv2/caves/mining) +"gHu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/mars, +/area/bigredv2/outside/w) "gHH" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"gHV" = ( -/obj/structure/surface/table, +"gHQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/computer3/server, /turf/open/floor{ - dir = 6; + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"gJu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) @@ -30431,20 +27917,6 @@ icon_state = "mars_cave_4" }, /area/bigredv2/caves_virology) -"gML" = ( -/obj/structure/machinery/power/turbine, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"gNz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/bigredv2/caves_se) "gNH" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves) @@ -30452,20 +27924,12 @@ /obj/structure/machinery/power/geothermal, /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) -"gOr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_research) -"gPh" = ( +"gPe" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engine Reactor" - }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor{ - icon_state = "delivery" + dir = 4; + icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) "gPE" = ( @@ -30489,6 +27953,15 @@ }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) +"gTf" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/filtration_plant) "gTJ" = ( /obj/structure/machinery/autolathe, /turf/open/floor/plating, @@ -30511,26 +27984,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"gUD" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"gVl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"gUl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" + icon_state = "dark" }, /area/bigredv2/outside/engineering) "gVm" = ( @@ -30539,6 +27999,13 @@ icon_state = "darkblue2" }, /area/bigredv2/caves/eta/research) +"gWF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "gWU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -30569,57 +28036,34 @@ icon_state = "mars_cave_18" }, /area/bigredv2/caves_virology) -"gYt" = ( -/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/bigredv2/caves_sw) -"gZc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = -32 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"haT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +"gZf" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, /turf/open/floor{ - dir = 4; icon_state = "darkyellow2" }, /area/bigredv2/outside/filtration_plant) -"hcb" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"gZX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/mars{ + icon_state = "mars_dirt_9" }, -/area/bigredv2/outside/lz1_telecomm_cas) -"hcH" = ( +/area/bigredv2/outside/c) +"hbJ" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"hdc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, /turf/open/floor{ dir = 8; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"hcb" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/outside/lz1_telecomm_cas) "heG" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -30633,17 +28077,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"heI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda"; - name = "Lambda Lockdown" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves_lambda) "heU" = ( /turf/open/floor{ dir = 4; @@ -30659,14 +28092,44 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) +"hgA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/paper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"hgE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "hgT" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_7" }, /area/bigredv2/outside/lz1_north_cas) -"hhK" = ( +"hhM" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 8; + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/xenobiology) +"hix" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, /turf/open/floor{ - dir = 1; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) @@ -30699,6 +28162,23 @@ icon_state = "delivery" }, /area/bigredv2/caves/lambda/research) +"hmx" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 9 + }, +/area/bigredv2/caves/lambda/xenobiology) +"hmF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/research) "hmJ" = ( /obj/item/weapon/gun/pistol/holdout, /turf/open/floor/plating, @@ -30753,6 +28233,19 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/lz2_south_cas) +"hqH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "hqO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars, @@ -30765,13 +28258,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/outside/filtration_cave_cas) -"hsF" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "hsJ" = ( /obj/item/ore, /turf/open/floor{ @@ -30779,12 +28265,52 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/filtration_plant) +"hur" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"huV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/caves/eta/living) +"hvg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/outside/engineering) "hvQ" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) +"hvW" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_east) "hwe" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -8; @@ -30794,13 +28320,15 @@ icon_state = "mars_cave_17" }, /area/bigredv2/caves/mining) -"hwy" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"hxq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor{ - icon_state = "dark" + dir = 4; + icon_state = "darkyellow2" }, -/area/bigredv2/caves/lambda/research) +/area/bigredv2/outside/engineering) "hxs" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/effect/landmark/objective_landmark/far, @@ -30808,13 +28336,34 @@ icon_state = "wood" }, /area/bigredv2/outside/admin_building) -"hyv" = ( -/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" +"hxF" = ( +/obj/structure/machinery/door_control{ + id = "Engineering"; + name = "Storm Shutters"; + pixel_y = -32 }, -/area/bigredv2/caves/mining) +/turf/open/floor{ + dir = 6; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"hyj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, +/area/bigredv2/caves/eta/xenobiology) +"hyH" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "whitepurplefull" + }, +/area/bigredv2/caves/lambda/research) "hzg" = ( /obj/structure/cable{ icon_state = "1-6" @@ -30827,6 +28376,12 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"hzs" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "hzy" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -30838,10 +28393,13 @@ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) -"hAj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/caves_research) +"hBg" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "hBD" = ( /obj/structure/bed/chair, /turf/open/floor, @@ -30867,6 +28425,35 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"hCU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"hDG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Storage" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/filtration_plant) +"hEy" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "hEz" = ( /turf/open/mars_cave{ icon_state = "mars_cave_6" @@ -30896,6 +28483,29 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"hGt" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor{ + dir = 5; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"hGv" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) "hHb" = ( /obj/structure/sign/safety/ladder, /turf/closed/wall/solaris/reinforced/hull, @@ -30915,22 +28525,32 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"hKD" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_se) "hKM" = ( /turf/open/mars_cave{ icon_state = "mars_cave_17" }, /area/bigredv2/caves_north) +"hKX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "white" + }, +/area/bigredv2/outside/virology) "hLp" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/mars_cave, /area/bigredv2/caves/mining) +"hLr" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "hLs" = ( /turf/open/floor{ dir = 1; @@ -30941,14 +28561,6 @@ /obj/structure/sign/poster/safety, /turf/closed/wall/wood, /area/bigredv2/caves/mining) -"hNg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) "hOx" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, /turf/open/floor{ @@ -30964,14 +28576,6 @@ icon_state = "whitebluefull" }, /area/bigredv2/outside/general_store) -"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, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_se) "hRy" = ( /obj/structure/surface/rack, /turf/open/floor/plating{ @@ -30979,6 +28583,23 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"hRI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"hRN" = ( +/obj/item/folder/yellow, +/obj/effect/landmark/crap_item, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "hSs" = ( /obj/structure/machinery/light, /turf/open/mars_cave{ @@ -31009,6 +28630,22 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"hUr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves/mining) +"hVJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/bigredv2/caves/lambda/virology) "hWa" = ( /turf/open/floor{ icon_state = "dark" @@ -31022,18 +28659,20 @@ icon_state = "mars_cave_15" }, /area/bigredv2/caves/mining) -"hYB" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 +"hXe" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor{ + dir = 5; + icon_state = "darkyellow2" }, -/turf/open/gm/river, /area/bigredv2/outside/engineering) +"hXf" = ( +/obj/item/tool/hatchet, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, +/area/bigredv2/caves/lambda/xenobiology) "hYI" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -31060,6 +28699,24 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"hZY" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = -32 + }, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"iaf" = ( +/obj/item/folder/yellow, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/outside/engineering) "ian" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/door_control{ @@ -31069,10 +28726,6 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"iaC" = ( -/obj/structure/platform, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) "iaN" = ( /obj/structure/largecrate/random/barrel/red, /obj/effect/decal/cleanable/dirt, @@ -31085,6 +28738,13 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves/mining) +"ibC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "ibP" = ( /turf/open/floor/plating, /area/bigredv2/caves_research) @@ -31093,18 +28753,28 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves_sw) +"icn" = ( +/obj/structure/machinery/vending/snack{ + icon_state = "snack-broken"; + stat = 1 + }, +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "icQ" = ( /turf/open/mars_cave{ icon_state = "mars_cave_6" }, /area/bigredv2/caves_sw) -"idM" = ( -/obj/structure/reagent_dispensers/fueltank, +"idR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" + dir = 5; + icon_state = "podhatch" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves/lambda/research) "iep" = ( /obj/structure/surface/rack, /obj/item/clothing/head/hardhat/dblue{ @@ -31138,6 +28808,15 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"ifb" = ( +/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, +/turf/open/floor/plating{ + dir = 5; + icon_state = "warnplate" + }, +/area/bigredv2/caves/lambda/xenobiology) "ifF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -31173,11 +28852,12 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/outside/eta) -"iig" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) +"iiI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/outside/lz2_west_cas) "ijU" = ( /obj/structure/prop/almayer/cannon_cables{ name = "\improper Cables" @@ -31199,13 +28879,18 @@ icon_state = "mars_cave_20" }, /area/bigredv2/caves/mining) -"iml" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"ilZ" = ( +/turf/open/floor{ + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/outside/engineering) +"imp" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ - icon_state = "mars_cave_2" + icon_state = "mars_dirt_4" }, -/area/bigredv2/caves_research) +/area/bigredv2/caves/mining) "inx" = ( /obj/item/tool/warning_cone, /turf/open/floor{ @@ -31232,6 +28917,16 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"ioB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Chief Engineer's Office" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "ioS" = ( /turf/open/floor{ icon_state = "dark" @@ -31252,6 +28947,13 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"ipU" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "whitepurplefull" + }, +/area/bigredv2/caves/lambda/xenobiology) "iqF" = ( /obj/structure/prop/invuln/minecart_tracks, /turf/open/mars_cave{ @@ -31276,6 +28978,26 @@ icon_state = "mars_cave_19" }, /area/bigredv2/caves_north) +"isB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating{ + dir = 8; + icon_state = "platingdmg2" + }, +/area/bigredv2/caves/lambda/xenobiology) +"itq" = ( +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"itx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_7" + }, +/area/bigredv2/caves_se) "itL" = ( /obj/structure/closet/l3closet/virology, /obj/effect/landmark/objective_landmark/science, @@ -31288,6 +29010,13 @@ icon_state = "mars_cave_16" }, /area/bigredv2/outside/lz1_north_cas) +"ivc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "iwG" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave{ @@ -31308,27 +29037,20 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/lambda_cave_cas) -"iyd" = ( -/obj/structure/machinery/computer/general_air_control, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"iyx" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Lockers" }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "iyY" = ( /turf/open/mars_cave{ icon_state = "mars_cave_13" }, /area/bigredv2/outside/lz1_north_cas) -"izb" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) "izh" = ( /turf/open/mars_cave{ icon_state = "mars_cave_2" @@ -31357,12 +29079,6 @@ icon_state = "mars_cave_11" }, /area/bigredv2/caves_sw) -"iAI" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) "iDJ" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood{ @@ -31396,14 +29112,6 @@ icon_state = "darkredcorners2" }, /area/bigredv2/outside/admin_building) -"iDW" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) "iEj" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, @@ -31412,17 +29120,28 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"iFa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/bananapeel, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"iEZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, /area/bigredv2/outside/engineering) +"iFR" = ( +/turf/open/mars{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/outside/c) "iGK" = ( /turf/open/mars_cave, /area/bigredv2/caves_sw) +"iHl" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "iIp" = ( /obj/effect/landmark/nightmare{ insert_tag = "chapel" @@ -31445,13 +29164,13 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/lambda_cave_cas) -"iLs" = ( -/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" +"iKx" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellowcorners2" }, -/area/bigredv2/caves/mining) +/area/bigredv2/outside/engineering) "iLu" = ( /obj/structure/girder, /turf/open/floor/plating{ @@ -31459,8 +29178,33 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"iNR" = ( -/turf/open/gm/river, +"iLX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) +"iNc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/outside/engineering) +"iNQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) +"iOm" = ( +/turf/closed/wall/mineral/uranium, /area/bigredv2/outside/engineering) "iOL" = ( /obj/effect/landmark/crap_item, @@ -31480,18 +29224,13 @@ /obj/item/ore, /turf/open/gm/river, /area/bigredv2/outside/filtration_plant) -"iQC" = ( -/obj/effect/landmark/crap_item, +"iQP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"iQG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" + icon_state = "darkyellowcorners2" }, -/area/bigredv2/caves_research) +/area/bigredv2/caves/eta/living) "iRf" = ( /obj/structure/fence, /turf/open/floor{ @@ -31514,21 +29253,36 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_research) -"iSz" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 +"iTo" = ( +/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, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" }, -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves_se) "iUe" = ( /turf/open/floor{ dir = 6; icon_state = "darkred2" }, /area/bigredv2/caves/eta/research) +"iUr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"iUC" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/eta) "iVd" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -31545,6 +29299,31 @@ /obj/structure/fence, /turf/open/mars, /area/bigredv2/outside/se) +"iWf" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/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) +"iWk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_lambda) +"iWm" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) "iXp" = ( /turf/open/floor{ dir = 6; @@ -31560,6 +29339,20 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) +"iYs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"iYz" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "iYN" = ( /obj/structure/closet/secure_closet, /obj/effect/landmark/objective_landmark/close, @@ -31599,6 +29392,13 @@ /obj/structure/surface/rack, /turf/open/floor, /area/bigredv2/caves) +"jaa" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves/lambda/xenobiology) "jbU" = ( /obj/effect/decal/cleanable/blood{ base_icon = 'icons/obj/items/weapons/grenade.dmi'; @@ -31617,12 +29417,6 @@ }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"jcR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_research) "jdj" = ( /obj/effect/landmark/nightmare{ insert_tag = "crashlanding-offices" @@ -31643,12 +29437,33 @@ icon_state = "mars_dirt_3" }, /area/bigredv2/outside/s) +"jeX" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor{ + dir = 10; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "jfr" = ( /turf/open/floor{ dir = 5; icon_state = "asteroidwarning" }, /area/bigredv2/outside/se) +"jga" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "jgw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -31658,6 +29473,12 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/xenobiology) +"jgT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/caves/eta/living) "jgW" = ( /turf/open/mars_cave{ icon_state = "mars_cave_10" @@ -31673,6 +29494,15 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"jhH" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "jhM" = ( /obj/effect/decal/cleanable/dirt, /obj/item/paper/bigred/witness, @@ -31681,6 +29511,22 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"jij" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"jiF" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "jiS" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -31688,6 +29534,19 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/general_store) +"jjl" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/jungle{ + bushes_spawn = 0; + icon_state = "grass_impenetrable" + }, +/area/bigredv2/caves/eta/research) +"jkm" = ( +/turf/open/floor{ + dir = 6; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "jkn" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, @@ -31717,6 +29576,46 @@ /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"jmg" = ( +/obj/effect/spawner/gibspawner/human, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/filtration_plant) +"jmC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engine Reactor Control" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) +"jmD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/good_item, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) +"jmM" = ( +/obj/structure/bed/chair, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "jna" = ( /obj/item/prop/alien/hugger, /turf/open/floor{ @@ -31744,6 +29643,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"jnW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "joa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -31757,6 +29663,14 @@ /obj/effect/landmark/static_comms/net_one, /turf/open/floor/plating, /area/bigredv2/outside/telecomm/warehouse) +"jpb" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 4; + icon_state = "darkgreencorners2" + }, +/area/bigredv2/caves/lambda/virology) "jpT" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -31780,6 +29694,13 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_research) +"jrV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "jsL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -31790,6 +29711,32 @@ icon_state = "platingdmg2" }, /area/bigredv2/caves/mining) +"jte" = ( +/obj/structure/machinery/door_control{ + desc = "A remote control-switch for opening the engines blast doors."; + id = "rad_door"; + name = "Reactor Radiation Shielding control"; + pixel_x = 30; + req_access_txt = "7" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 5; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"jtg" = ( +/obj/structure/sign/safety/electronics{ + pixel_y = 32 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "jtL" = ( /turf/open/mars_cave{ icon_state = "mars_cave_7" @@ -31801,6 +29748,20 @@ icon_state = "warnplate" }, /area/bigredv2/outside/telecomm/warehouse) +"juc" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) +"jug" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "juo" = ( /obj/structure/machinery/light{ dir = 8 @@ -31810,6 +29771,21 @@ icon_state = "podhatch" }, /area/bigredv2/caves/lambda/research) +"juB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/eta) +"jvo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_6" + }, +/area/bigredv2/caves_lambda) "jvt" = ( /obj/structure/lz_sign/solaris_sign, /turf/open/mars, @@ -31823,25 +29799,21 @@ icon_state = "bcircuitoff" }, /area/bigredv2/caves/lambda/research) -"jxA" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/engineering) -"jxS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +"jwO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" + icon_state = "darkredcorners2" }, -/area/bigredv2/outside/engineering) -"jzD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/area/bigredv2/caves/eta/xenobiology) +"jxK" = ( +/obj/structure/machinery/computer3/server/rack, /turf/open/floor{ - icon_state = "darkish" + dir = 4; + icon_state = "darkyellow2" }, -/area/bigredv2/caves/lambda/virology) +/area/bigredv2/outside/filtration_plant) "jAm" = ( /obj/structure/coatrack{ pixel_x = -8; @@ -31854,24 +29826,37 @@ icon_state = "wood" }, /area/bigredv2/outside/admin_building) -"jAo" = ( +"jAt" = ( /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_5" +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor{ + dir = 4; + icon_state = "darkgreen2" }, -/area/bigredv2/caves_sw) -"jAJ" = ( +/area/bigredv2/caves/eta/xenobiology) +"jAy" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor{ - icon_state = "podhatchfloor" + dir = 8; + icon_state = "darkyellow2" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/filtration_plant) "jAN" = ( /obj/item/tool/pickaxe, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"jAO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "jBq" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor{ @@ -31921,26 +29906,25 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"jDT" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +"jEa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_11" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves_lambda) "jEx" = ( /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/mars_cave{ icon_state = "mars_cave_16" }, /area/bigredv2/caves/mining) -"jGd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"jEN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor{ + dir = 6; + icon_state = "darkyellow2" }, -/area/bigredv2/caves_se) +/area/bigredv2/outside/engineering) "jGn" = ( /obj/structure/machinery/door_control{ id = "garage"; @@ -31966,6 +29950,18 @@ icon_state = "mars_cave_2" }, /area/bigredv2/outside/filtration_cave_cas) +"jGW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"jHH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_se) "jHS" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/blood/oil/streak, @@ -31996,6 +29992,15 @@ icon_state = "mars_dirt_5" }, /area/bigredv2/caves/mining) +"jKC" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering) "jKI" = ( /obj/structure/platform_decoration/shiva{ dir = 8 @@ -32008,6 +30013,20 @@ icon_state = "bcircuitoff" }, /area/bigredv2/caves/lambda/research) +"jLo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/caves/eta/living) +"jLL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/xenobiology) "jMm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -32016,16 +30035,13 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_sw) -"jMn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, +"jNa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" + icon_state = "dark" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/filtration_plant) "jOc" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; @@ -32036,6 +30052,23 @@ icon_state = "delivery" }, /area/bigredv2/outside/lz2_south_cas) +"jOo" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/queen_spawn, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_lambda) +"jOR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "jOS" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/plasmacutter{ @@ -32057,6 +30090,25 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"jPv" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/turf/open/floor{ + dir = 6; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"jPA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "jPV" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -1; @@ -32087,6 +30139,16 @@ icon_state = "floor5" }, /area/bigredv2/oob) +"jQV" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor, +/area/bigredv2/caves/eta/living) "jRi" = ( /obj/item/ammo_magazine/smg/bizon{ pixel_x = 5; @@ -32109,19 +30171,21 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"jRn" = ( -/obj/structure/machinery/computer3/server, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"jSj" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) -"jTk" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/molten_item, +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 1 + }, +/area/bigredv2/caves/lambda/xenobiology) +"jSB" = ( +/obj/item/trash/pistachios, /turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" + icon_state = "dark" }, /area/bigredv2/outside/engineering) "jUc" = ( @@ -32129,6 +30193,12 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/hydroponics) +"jUv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_5" + }, +/area/bigredv2/caves_east) "jUM" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -32163,13 +30233,16 @@ icon_state = "mars_cave_9" }, /area/bigredv2/caves/mining) -"jVN" = ( -/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" +"jVS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/bigredv2/caves/mining) +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "jVW" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib1" @@ -32204,25 +30277,6 @@ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) -"jXf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"jXJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light_construct{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "jXP" = ( /obj/item/stack/cable_coil/cut, /turf/open/mars_cave{ @@ -32242,12 +30296,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"jYF" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) "jYS" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/miner, @@ -32284,6 +30332,61 @@ icon_state = "mars_cave_6" }, /area/bigredv2/caves/mining) +"jZP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 8; + pixel_x = -32; + start_charge = 0 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"kai" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 1 + }, +/area/bigredv2/caves/lambda/xenobiology) +"kav" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 4; + icon_state = "darkpurplecorners2" + }, +/area/bigredv2/caves/lambda/breakroom) +"kaU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 32 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor{ + dir = 4; + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/research) +"kbK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "kcx" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/broken_bottle, @@ -32296,6 +30399,13 @@ icon_state = "mars_cave_17" }, /area/bigredv2/outside/filtration_cave_cas) +"kde" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "kdf" = ( /obj/item/tool/warning_cone{ pixel_y = 17 @@ -32327,6 +30437,13 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/eta) +"kdG" = ( +/obj/structure/machinery/power/turbine, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "keg" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/lz2_south_cas) @@ -32347,11 +30464,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/mars_cave, /area/bigredv2/caves/mining) -"kfk" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) "kfY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, @@ -32417,6 +30529,13 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) +"kiA" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "kjr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/rack, @@ -32441,21 +30560,12 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) -"kka" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 +"kkc" = ( +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" }, -/turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) -"kli" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, -/area/bigredv2/caves/mining) "klp" = ( /obj/structure/prop/almayer/cannon_cables{ name = "\improper Large Cables"; @@ -32483,11 +30593,11 @@ icon_state = "delivery" }, /area/bigredv2/outside/admin_building) -"kmx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" +"knI" = ( +/obj/structure/platform{ + dir = 8 }, +/turf/open/gm/river, /area/bigredv2/outside/engineering) "knN" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -32497,15 +30607,30 @@ icon_state = "darkyellowcorners2" }, /area/bigredv2/caves/eta/living) -"kok" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +"kox" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/area/bigredv2/outside/filtration_cave_cas) +/area/bigredv2/outside/filtration_plant) "kpf" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves_lambda) +"kqq" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"kqF" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "kqS" = ( /turf/open/floor{ icon_state = "wood" @@ -32526,18 +30651,17 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/lz2_south_cas) +"krG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "white" + }, +/area/bigredv2/caves/lambda/xenobiology) "krW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/writing, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"ksO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) "ktE" = ( /obj/item/tool/wrench{ pixel_x = -7; @@ -32555,13 +30679,16 @@ icon_state = "mars_cave_17" }, /area/bigredv2/outside/filtration_plant) -"ktY" = ( -/obj/effect/landmark/survivor_spawner, +"kua" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" + icon_state = "dark" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves/lambda/breakroom) "kuu" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt, @@ -32591,14 +30718,17 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/se) -"kxi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"kxJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, /turf/open/floor{ - icon_state = "darkredcorners2" + dir = 4; + icon_state = "darkyellowcorners2" }, -/area/bigredv2/caves/eta/xenobiology) +/area/bigredv2/outside/engineering) "kyz" = ( /obj/structure/transmitter/colony_net{ dir = 4; @@ -32613,17 +30743,16 @@ "kBn" = ( /turf/closed/wall/solaris, /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" - }, -/area/bigredv2/caves_lambda) "kBE" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"kBL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_se) "kCe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ @@ -32648,6 +30777,14 @@ icon_state = "asteroidwarning" }, /area/bigred/ground/garage_workshop) +"kFt" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "kGm" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -32658,6 +30795,25 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor, /area/bigredv2/caves/eta/storage) +"kGT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"kHt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/hazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "kHK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -32679,6 +30835,24 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/se) +"kIY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/mars, +/area/bigredv2/outside/n) +"kJH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"kJU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/hunter_primary, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "kKx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/ash, @@ -32730,13 +30904,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_research) -"kNK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) "kNP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -32755,6 +30922,12 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"kPF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_dirt_7" + }, +/area/bigredv2/caves/mining) "kPP" = ( /obj/structure/prop/almayer/cannon_cable_connector{ name = "\improper Control Module"; @@ -32764,11 +30937,14 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) -"kQc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave, -/area/bigredv2/caves_east) +"kPQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/radiation, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/outside/engineering) "kRo" = ( /turf/open/floor/plating, /area/bigredv2/outside/telecomm/warehouse) @@ -32813,18 +30989,26 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor, /area/bigredv2/outside/filtration_cave_cas) +"kUp" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 5; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"kUX" = ( +/turf/open/floor{ + dir = 1; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/outside/filtration_plant) "kVS" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/outside/filtration_cave_cas) -"kVT" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "kVY" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/gold/small_stack, @@ -32842,19 +31026,41 @@ "kYd" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/outside/e) +"kYl" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_research) +"kYA" = ( +/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, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/living) "kZG" = ( /obj/effect/decal/cleanable/dirt, /obj/item/storage/bible/hefa, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"laj" = ( -/obj/structure/tunnel{ - id = "hole5" +"kZX" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellowcorners2" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/area/bigredv2/outside/filtration_plant) +"lao" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/bigredv2/caves_lambda) +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave, +/area/bigredv2/caves/lambda/research) "lbZ" = ( /obj/item/frame/rack, /obj/effect/decal/cleanable/dirt, @@ -32870,13 +31076,6 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"lck" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "lcu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/mask/cigarette, @@ -32897,6 +31096,16 @@ icon_state = "floor1" }, /area/bigredv2/oob) +"lfJ" = ( +/obj/structure/machinery/computer/area_atmos{ + dir = 1 + }, +/obj/structure/surface/table, +/turf/open/floor{ + dir = 6; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "lhh" = ( /obj/structure/fence, /obj/structure/disposalpipe/segment, @@ -32914,6 +31123,21 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"ljv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"llf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_7" + }, +/area/bigredv2/caves_lambda) "llS" = ( /obj/structure/prop/almayer/cannon_cable_connector{ name = "\improper Cable connector" @@ -32935,19 +31159,31 @@ }, /turf/open/floor, /area/bigredv2/outside/lz2_south_cas) -"lmi" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "lms" = ( /turf/open/floor{ dir = 6; icon_state = "asteroidwarning" }, /area/bigredv2/outside/eta) +"lmY" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/engineering) +"lny" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/effect/landmark/static_comms/net_two{ + broken_on_spawn = 1 + }, +/turf/open/floor{ + icon_state = "podhatchfloor" + }, +/area/bigredv2/outside/engineering) "lom" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood{ @@ -32961,16 +31197,16 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) -"lqo" = ( -/obj/item/tool/lighter/random, -/obj/structure/pipes/vents/pump{ - dir = 4 +"lqv" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/surface/table, +/obj/structure/machinery/computer3/server/rack, /turf/open/floor{ - icon_state = "dark" + dir = 8; + icon_state = "darkyellow2" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/filtration_plant) "lrH" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave{ @@ -33001,6 +31237,16 @@ icon_state = "darkblue2" }, /area/bigredv2/caves/eta/research) +"ltl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "ltu" = ( /turf/open/mars_cave{ icon_state = "mars_cave_19" @@ -33013,6 +31259,14 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"luZ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "lvh" = ( /obj/item/weapon/gun/rifle/m4ra, /obj/effect/landmark/corpsespawner/ua_riot, @@ -33031,6 +31285,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/mars, /area/bigredv2/outside/se) +"lvZ" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"lwL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_east) "lwT" = ( /obj/structure/machinery/light{ dir = 8 @@ -33040,12 +31306,12 @@ icon_state = "asteroidfloor" }, /area/bigred/ground/garage_workshop) -"lwX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +"lxd" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/area/bigredv2/caves_sw) +/area/bigredv2/outside/filtration_plant) "lxQ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/paper/bigred/union, @@ -33054,6 +31320,12 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"lyk" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/filtration_plant) "lyx" = ( /obj/structure/surface/table, /obj/structure/machinery/light{ @@ -33063,6 +31335,19 @@ icon_state = "wood" }, /area/bigredv2/outside/dorms) +"lzs" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/lambda/xenobiology) +"lzF" = ( +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "lzI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/reinforced, @@ -33091,6 +31376,14 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"lBR" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table, +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "lCR" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/flask/vacuumflask{ @@ -33107,6 +31400,13 @@ /obj/item/clothing/mask/cigarette/weed, /turf/open/mars_cave, /area/bigredv2/caves/mining) +"lCS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "lDa" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -33122,14 +31422,6 @@ icon_state = "redfull" }, /area/bigredv2/caves/eta/research) -"lEi" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) "lEw" = ( /obj/item/tool/pickaxe{ pixel_y = -3 @@ -33139,6 +31431,23 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"lEB" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_research) +"lEN" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -32 + }, +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/xenobiology) "lGt" = ( /turf/open/floor{ icon_state = "delivery" @@ -33152,10 +31461,30 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"lIr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "lIL" = ( /obj/structure/sign/safety/fire_haz, /turf/closed/wall/wood, /area/bigredv2/caves/mining) +"lJx" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "lKw" = ( /obj/item/paper/bigred/walls, /obj/structure/machinery/light/small{ @@ -33166,6 +31495,22 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"lKE" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) +"lKU" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "lLf" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating{ @@ -33188,6 +31533,13 @@ icon_state = "asteroidfloor" }, /area/bigredv2/caves_lambda) +"lMx" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "lMB" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz1cave" @@ -33267,6 +31619,13 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/telecomm/lz2_cave) +"lSO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_research) "lSS" = ( /obj/item/tool/warning_cone, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -33275,31 +31634,13 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_cave_cas) -"lTi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +"lTd" = ( +/obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor{ - dir = 1; + dir = 8; icon_state = "darkyellow2" }, -/area/bigredv2/outside/filtration_plant) -"lTM" = ( -/obj/item/folder/yellow, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, /area/bigredv2/outside/engineering) -"lUd" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) "lUq" = ( /turf/open/mars_cave{ icon_state = "mars_cave_18" @@ -33311,31 +31652,62 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/telecomm/n_cave) -"lVr" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"lVo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor{ - icon_state = "dark" + dir = 8; + icon_state = "darkpurple2" }, -/area/bigredv2/caves/lambda/breakroom) +/area/bigredv2/caves/lambda/research) +"lVs" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_23" + }, +/area/bigredv2/caves_se) +"lWc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "lWA" = ( /turf/open/mars_cave{ icon_state = "mars_cave_15" }, /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, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +"lXp" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering SMES" }, -/area/bigredv2/caves_sw) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "lYi" = ( /obj/structure/ore_box, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"lYp" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_research) +"lYB" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/spawner/random/tool, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "lYC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/mucus, @@ -33345,12 +31717,6 @@ icon_state = "platingdmg2" }, /area/bigredv2/caves/mining) -"lYH" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "lYZ" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -33362,25 +31728,34 @@ icon_state = "mars_cave_23" }, /area/bigredv2/caves/mining) -"maD" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) "maF" = ( /obj/item/frame/rack, /obj/effect/landmark/good_item, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"maH" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"mdp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32 + }, /turf/open/floor{ dir = 8; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"mdR" = ( +/obj/structure/machinery/vending/coffee{ + icon_state = "coffee-broken"; + stat = 1 + }, +/turf/open/floor{ + dir = 10; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "mdU" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -33402,6 +31777,24 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) +"mfM" = ( +/obj/structure/machinery/computer/area_atmos/area, +/obj/structure/surface/table, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"mhe" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) "mhF" = ( /obj/structure/machinery/light{ dir = 4 @@ -33419,21 +31812,12 @@ }, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) -"mhZ" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"mij" = ( -/obj/item/folder/yellow, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +"mhY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_23" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves_east) "miD" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/security/marshal, @@ -33442,19 +31826,48 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"mjd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_sw) "mji" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ name = "\improper Engineering Workshop" }, /turf/open/floor, /area/bigred/ground/garage_workshop) -"mlV" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"mkJ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - icon_state = "dark" + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/eta) +"mle" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/high_rad{ + pixel_x = -32 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"mlp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "white" + }, +/area/bigredv2/outside/virology) "mmg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip{ @@ -33474,6 +31887,11 @@ icon_state = "mars_cave_9" }, /area/bigredv2/caves_research) +"mpu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) "mqf" = ( /obj/structure/bed/chair{ dir = 8; @@ -33485,18 +31903,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"mqh" = ( -/obj/structure/window/framed/solaris, +"mqS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/engineering) -"mqX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" + dir = 8; + icon_state = "darkblue2" }, -/area/bigredv2/caves/mining) +/area/bigredv2/caves/eta/storage) "mrH" = ( /obj/structure/machinery/computer3/server, /turf/open/floor{ @@ -33548,22 +31961,38 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"mtY" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"mum" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "muP" = ( /turf/closed/wall/wood, /area/bigredv2/caves_research) +"mvd" = ( +/obj/structure/surface/rack, +/obj/item/device/analyzer, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "mxf" = ( /turf/open/floor{ dir = 9; icon_state = "asteroidwarning" }, /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, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/caves_east) "myc" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -33587,6 +32016,13 @@ icon_state = "delivery" }, /area/bigredv2/outside/filtration_cave_cas) +"mzN" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/lambda/xenobiology) "mzV" = ( /turf/open/mars, /area/bigredv2/outside/filtration_plant) @@ -33601,6 +32037,15 @@ /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor, /area/bigred/ground/garage_workshop) +"mBT" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) "mDk" = ( /obj/structure/dispenser/oxygen, /turf/open/floor/plating, @@ -33626,6 +32071,12 @@ icon_state = "darkred2" }, /area/bigredv2/outside/admin_building) +"mFN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "mFT" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/landmark/corpsespawner/russian, @@ -33646,14 +32097,21 @@ icon_state = "podhatchfloor" }, /area/bigredv2/outside/admin_building) -"mHp" = ( -/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, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"mHe" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" }, -/area/bigredv2/caves_se) +/area/bigredv2/outside/filtration_plant) +"mHg" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/lambda/xenobiology) "mIr" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_7" @@ -33701,6 +32159,19 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"mPd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_east) +"mPw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_20" + }, +/area/bigredv2/caves/mining) "mPC" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/fence, @@ -33716,14 +32187,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"mPK" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "mRi" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/mars_cave{ @@ -33742,12 +32205,29 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/c) -"mSS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +"mSs" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, /area/bigredv2/outside/engineering) +"mSC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/lambda/xenobiology) +"mSN" = ( +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate" + }, +/area/bigredv2/caves/lambda/xenobiology) "mST" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -33760,6 +32240,26 @@ icon_state = "darkred2" }, /area/bigredv2/outside/admin_building) +"mTm" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"mTy" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "mUy" = ( /turf/open/mars_cave{ icon_state = "mars_cave_7" @@ -33790,6 +32290,17 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) +"mYz" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "mYW" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -33814,13 +32325,11 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/se) -"nbi" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"nbR" = ( +/turf/open/mars{ + icon_state = "mars_dirt_2" }, -/area/bigredv2/caves_research) +/area/bigredv2/outside/c) "ncv" = ( /obj/effect/landmark/corpsespawner/ua_riot, /obj/effect/decal/cleanable/blood{ @@ -33845,12 +32354,6 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) -"ndw" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/engineering) "ndy" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -3; @@ -33860,27 +32363,42 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"ndV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "neH" = ( /turf/open/floor{ dir = 5; icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_cave_cas) -"ngJ" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +"nfN" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/area/bigredv2/caves/mining) -"niQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/area/bigredv2/outside/engineering) +"ngm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor{ dir = 8; - icon_state = "darkyellowcorners2" + icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"ngJ" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave{ + icon_state = "mars_dirt_6" + }, +/area/bigredv2/caves/mining) "njf" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_6" @@ -33916,12 +32434,6 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) -"nlJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "nlW" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ @@ -33930,13 +32442,23 @@ /obj/structure/platform_decoration/kutjevo/rock, /turf/open/mars, /area/space) -"nmU" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, +"nmh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor{ icon_state = "darkyellow2" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/filtration_plant) +"nms" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "nny" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_7" @@ -33949,23 +32471,13 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/e) -"nnU" = ( -/obj/structure/machinery/door_control{ - desc = "A remote control-switch for opening the engines blast doors."; - id = "rad_door"; - name = "Reactor Radiation Shielding control"; - pixel_x = 30; - req_access_txt = "7" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" +"npy" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves_lambda) "npz" = ( /obj/structure/surface/table, /obj/item/spacecash/c100, @@ -33977,6 +32489,10 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"npC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave, +/area/bigredv2/outside/lz2_west_cas) "nqr" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -33984,6 +32500,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"nrc" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/bigredv2/outside/engineering) "nrj" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -1; @@ -33998,6 +32520,22 @@ icon_state = "mars_cave_6" }, /area/bigredv2/outside/filtration_cave_cas) +"nsE" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + name = "\improper Engine Reactor" + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/engineering) +"ntU" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_lambda) "ntX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -34023,18 +32561,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"nug" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) "nuw" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -34045,19 +32571,25 @@ icon_state = "dark" }, /area/bigredv2/outside/admin_building) -"nuz" = ( +"nvV" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - icon_state = "darkyellow2" + icon_state = "dark" }, -/area/bigredv2/outside/engineering) -"nwB" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/area/bigredv2/caves/eta/xenobiology) +"nwd" = ( +/obj/structure/platform{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) "nwS" = ( /obj/item/ore{ pixel_x = -7; @@ -34075,13 +32607,6 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) -"nzN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "nBb" = ( /obj/item/ammo_magazine/pistol/b92fs, /obj/item/weapon/gun/pistol/b92fs{ @@ -34092,13 +32617,28 @@ icon_state = "mars_dirt_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" +"nCm" = ( +/obj/structure/machinery/power/breakerbox/activated, +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves_se) +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"nCx" = ( +/obj/structure/machinery/door_control{ + id = "filtration"; + name = "Filtration Lockdown"; + pixel_x = 30; + throw_range = 15 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "nCT" = ( /obj/structure/sign/poster/ad, /turf/closed/wall/solaris/reinforced, @@ -34119,14 +32659,6 @@ icon_state = "mars_dirt_5" }, /area/bigredv2/outside/eta) -"nEP" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/filtration_plant) "nEV" = ( /obj/item/weapon/twohanded/folded_metal_chair{ pixel_x = -10; @@ -34146,13 +32678,6 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) -"nFH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/caves_lambda) "nGm" = ( /obj/structure/fence, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -34172,24 +32697,11 @@ icon_state = "asteroidfloor" }, /area/bigredv2/outside/telecomm/lz2_cave) -"nHQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, +"nJJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, /turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/filtration_cave_cas) -"nIi" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - name = "\improper Engine Reactor" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "dark" }, /area/bigredv2/outside/engineering) "nKL" = ( @@ -34205,12 +32717,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"nLw" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"nLP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/headset, +/turf/open/floor{ + icon_state = "dark" }, -/area/bigredv2/outside/sw) +/area/bigredv2/outside/filtration_plant) "nMB" = ( /obj/structure/machinery/door_control{ id = "workshop_br_g"; @@ -34230,12 +32743,11 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"nPz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"nOe" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor{ - dir = 1; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) @@ -34284,13 +32796,6 @@ icon_state = "mars_cave_20" }, /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, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/xenobiology) "nUV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor{ @@ -34298,11 +32803,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_cave_cas) -"nVq" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) "nVw" = ( /turf/open/mars_cave{ icon_state = "mars_cave_23" @@ -34330,19 +32830,21 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"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, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/xenobiology) "nXC" = ( /turf/open/mars_cave{ icon_state = "mars_cave_15" }, /area/bigredv2/caves_research) +"nYA" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "nYC" = ( /obj/structure/surface/table, /obj/item/tool/pickaxe/plasmacutter, @@ -34372,6 +32874,23 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"oaf" = ( +/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/bigredv2/caves_se) +"oaD" = ( +/obj/structure/dispenser/oxygen, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "obf" = ( /obj/effect/landmark/nightmare{ insert_tag = "lambda-graveyard" @@ -34419,13 +32938,20 @@ /obj/structure/bed, /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"oea" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"odH" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor{ - icon_state = "dark" + dir = 8; + icon_state = "darkyellow2" }, -/area/bigredv2/caves/lambda/breakroom) +/area/bigredv2/outside/engineering) +"oeO" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) "ofn" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris, @@ -34455,6 +32981,13 @@ }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/s) +"ogs" = ( +/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_7" + }, +/area/bigredv2/caves_sw) "ogt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -34486,11 +33019,14 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/outside/sw) -"ojD" = ( -/obj/structure/platform_decoration{ - dir = 4 +"okb" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" }, -/turf/open/gm/river, /area/bigredv2/outside/engineering) "okh" = ( /obj/structure/cable{ @@ -34510,12 +33046,29 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"okj" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "ole" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "w-y0" }, /area/bigredv2/outside/admin_building) +"oll" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering) "olT" = ( /obj/effect/landmark/corpsespawner/engineer, /turf/open/shuttle/escapepod{ @@ -34546,6 +33099,13 @@ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) +"omS" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_5" + }, +/area/bigredv2/caves_se) "omX" = ( /obj/item/stack/cable_coil/cut{ pixel_x = -3; @@ -34571,6 +33131,17 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"onB" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate" + }, +/area/bigredv2/caves/lambda/xenobiology) +"onG" = ( +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "onR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/broken, @@ -34586,20 +33157,29 @@ icon_state = "bcircuitoff" }, /area/bigredv2/caves/lambda/research) +"ooq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/xenobiology) "ooD" = ( /turf/open/floor{ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_cave_cas) -"ooP" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/effect/landmark/lv624/xeno_tunnel, +"ooK" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ - icon_state = "freezerfloor" + dir = 4; + icon_state = "darkyellow2" }, -/area/bigredv2/outside/dorms) +/area/bigredv2/outside/engineering) "opz" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave{ @@ -34620,29 +33200,27 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) -"oqM" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"orL" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"orZ" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "darkyellow2" }, /area/bigredv2/outside/filtration_plant) -"otb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +"otA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, -/area/bigredv2/caves_se) +/area/bigredv2/caves_lambda) +"otR" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/mars{ + icon_state = "mars_dirt_10" + }, +/area/bigredv2/caves/eta/xenobiology) "oud" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil/streak, @@ -34651,24 +33229,23 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"ouh" = ( -/obj/item/tool/extinguisher, +"ouB" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" + icon_state = "dark" }, /area/bigredv2/outside/engineering) +"ovo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_research) "ovq" = ( /turf/open/floor{ icon_state = "delivery" }, /area/bigredv2/outside/general_offices) -"ovB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/lz2_west_cas) "ovZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -34737,6 +33314,22 @@ icon_state = "mars_cave_5" }, /area/bigredv2/caves_virology) +"oCB" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"oDe" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_east) "oDB" = ( /obj/structure/closet/l3closet, /obj/effect/landmark/objective_landmark/close, @@ -34755,12 +33348,24 @@ icon_state = "darkred2" }, /area/bigredv2/outside/admin_building) +"oEk" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "oEJ" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/cargo) +"oFe" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) "oFY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/prop/alien/hugger, @@ -34769,6 +33374,17 @@ icon_state = "darkred2" }, /area/bigredv2/outside/admin_building) +"oGc" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"oHG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) "oIc" = ( /obj/effect/decal/cleanable/blood{ base_icon = 'icons/obj/items/weapons/grenade.dmi'; @@ -34781,16 +33397,6 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) -"oIK" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) "oJd" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -34817,14 +33423,6 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) -"oKc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) "oKy" = ( /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating{ @@ -34832,6 +33430,12 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"oLf" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "oMd" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 13 @@ -34845,13 +33449,16 @@ icon_state = "mars_cave_11" }, /area/bigredv2/outside/lz2_west_cas) -"oOk" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"oNS" = ( +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 }, -/area/bigredv2/caves_research) +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "oOr" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo, /turf/open/floor/plating{ @@ -34859,6 +33466,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"oOY" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/curtain/red, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/engineering) "oQz" = ( /obj/structure/machinery/light/double{ dir = 1 @@ -34887,6 +33501,14 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"oSD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "oTf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/handrail{ @@ -34936,6 +33558,14 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) +"oUZ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/lambda_cave_cas) "oWc" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -34957,14 +33587,6 @@ icon_state = "darkblue2" }, /area/bigredv2/outside/admin_building) -"oWp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "oWC" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -35030,6 +33652,13 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"pbc" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor{ + dir = 5; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "pbr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris, @@ -35041,14 +33670,17 @@ icon_state = "grass_impenetrable" }, /area/bigredv2/caves/eta/living) -"pbK" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/queen_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"pbu" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/bigredv2/caves_lambda) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "pbX" = ( /obj/effect/spawner/random/tool, /obj/effect/decal/cleanable/dirt, @@ -35069,6 +33701,11 @@ }, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) +"pco" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) "pcA" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -35108,20 +33745,6 @@ /obj/structure/window_frame/solaris, /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" - }, -/area/bigredv2/caves/mining) -"pgk" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "pgu" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" @@ -35135,6 +33758,41 @@ icon_state = "mars_cave_6" }, /area/bigredv2/caves_research) +"pht" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "podhatchfloor" + }, +/area/bigredv2/caves/lambda/research) +"pio" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"piN" = ( +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"pjO" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"pkl" = ( +/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, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_lambda) "plx" = ( /obj/structure/machinery/power/apc{ dir = 4 @@ -35144,6 +33802,21 @@ icon_state = "darkred2" }, /area/bigredv2/caves/eta/research) +"plN" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/smes_coil, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "pmk" = ( /obj/structure/surface/table, /obj/item/spacecash/c1, @@ -35151,6 +33824,16 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"pmz" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) "pmN" = ( /obj/effect/decal/cleanable/blood{ base_icon = 'icons/obj/items/weapons/grenade.dmi'; @@ -35166,20 +33849,20 @@ "pmS" = ( /turf/open/mars, /area/bigredv2/caves_north) +"pnl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "pnL" = ( /turf/open/mars{ icon_state = "mars_dirt_11" }, /area/bigredv2/caves_north) -"pog" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) "pow" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -35205,6 +33888,17 @@ icon_state = "wood" }, /area/bigredv2/outside/bar) +"ptj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engine Reactor Control" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "ptL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -35217,13 +33911,6 @@ icon_state = "mars_cave_17" }, /area/bigredv2/outside/lz2_south_cas) -"pvg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/xenobiology) "pvk" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "Righty tighty, lefty loosey!"; @@ -35242,6 +33929,35 @@ icon_state = "mars_dirt_13" }, /area/bigredv2/outside/filtration_plant) +"pvZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"pwu" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "white" + }, +/area/bigredv2/caves/lambda/xenobiology) +"pxm" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering) "pxp" = ( /obj/structure/ore_box, /turf/open/floor/plating{ @@ -35270,6 +33986,14 @@ icon_state = "dark" }, /area/bigredv2/outside/admin_building) +"pya" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor{ + icon_state = "darkgreencorners2" + }, +/area/bigredv2/caves/eta/research) "pyU" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -35287,11 +34011,12 @@ icon_state = "dark" }, /area/bigredv2/outside/admin_building) -"pBv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +"pAc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, /area/bigredv2/outside/filtration_plant) "pBD" = ( @@ -35300,6 +34025,14 @@ icon_state = "darkred2" }, /area/bigredv2/caves/eta/research) +"pBP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "pCR" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; @@ -35316,6 +34049,12 @@ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) +"pDM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "darkish" + }, +/area/bigredv2/caves/lambda/virology) "pDV" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, @@ -35324,6 +34063,35 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"pEN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/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, +/turf/open/floor{ + icon_state = "darkredcorners2" + }, +/area/bigredv2/caves/eta/xenobiology) +"pFx" = ( +/obj/structure/machinery/computer/area_atmos{ + dir = 1 + }, +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"pFN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/caves/eta/living) "pGP" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -35333,26 +34101,39 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_plant) -"pHb" = ( -/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_7" +"pHB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellowcorners2" }, -/area/bigredv2/caves_sw) +/area/bigredv2/outside/engineering) "pIh" = ( /obj/structure/machinery/power/geothermal, /turf/open/floor{ icon_state = "white" }, /area/bigredv2/outside/virology) -"pIN" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"pJd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" }, -/area/bigredv2/caves_lambda) +/area/bigredv2/caves/eta/storage) +"pJh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "pJS" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -4; @@ -35368,28 +34149,21 @@ icon_state = "mars_cave_14" }, /area/bigredv2/caves/mining) -"pKP" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"pLh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" + icon_state = "dark" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/filtration_plant) "pLj" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/mars_cave{ icon_state = "mars_cave_19" }, /area/bigredv2/caves/mining) -"pMi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "pMm" = ( /turf/open/floor{ dir = 8; @@ -35407,12 +34181,23 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) +"pMU" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "pNa" = ( /turf/open/floor{ dir = 10; icon_state = "darkred2" }, /area/bigredv2/caves/eta/research) +"pNy" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_cave_7" + }, +/area/bigredv2/caves_sw) "pNU" = ( /obj/structure/bed, /obj/item/prop/alien/hugger, @@ -35423,28 +34208,31 @@ icon_state = "wood" }, /area/bigredv2/outside/admin_building) -"pOg" = ( -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "pOL" = ( /obj/structure/closet/crate/miningcar/yellow, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) -"pPo" = ( +"pOS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_se) +"pPi" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"pPY" = ( +/obj/effect/landmark/good_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, -/area/bigredv2/outside/filtration_plant) +/area/bigredv2/caves/eta/research) "pQv" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, @@ -35461,14 +34249,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave, /area/bigredv2/outside/lz1_telecomm_cas) -"pRG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "pRP" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm/n_cave) @@ -35508,16 +34288,6 @@ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) -"pVv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "pVP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ @@ -35525,13 +34295,12 @@ icon_state = "asteroidfloor" }, /area/bigred/ground/garage_workshop) -"pWs" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 +"pVZ" = ( +/obj/structure/janitorialcart, +/turf/open/floor{ + dir = 10; + icon_state = "darkyellow2" }, -/turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) "pXm" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -35580,6 +34349,14 @@ icon_state = "mars_cave_17" }, /area/bigredv2/caves/mining) +"pYa" = ( +/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, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/xenobiology) "pYt" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_7" @@ -35591,6 +34368,14 @@ icon_state = "floor5" }, /area/bigredv2/oob) +"pZc" = ( +/obj/structure/surface/rack, +/obj/item/device/camera_film, +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "pZe" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/twohanded/folded_metal_chair, @@ -35609,6 +34394,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"qaC" = ( +/obj/structure/machinery/mill, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "qaK" = ( /obj/structure/largecrate, /turf/open/floor{ @@ -35620,19 +34412,44 @@ /obj/vehicle/powerloader/ft, /turf/open/floor/plating, /area/bigredv2/outside/nw/ceiling) +"qcd" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"qcN" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"qcU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "qez" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/caves_north) -"qeK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"qeV" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" + icon_state = "dark" }, /area/bigredv2/outside/filtration_plant) "qeX" = ( @@ -35651,6 +34468,20 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) +"qfv" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_5" + }, +/area/bigredv2/caves_se) +"qgx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/living) "qgY" = ( /turf/open/mars_cave{ icon_state = "mars_cave_17" @@ -35713,6 +34544,11 @@ }, /turf/open/floor/greengrid, /area/space) +"qki" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) "qkw" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Access door" @@ -35737,6 +34573,13 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor, /area/bigred/ground/garage_workshop) +"qlO" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "whitepurplecorner" + }, +/area/bigredv2/caves/lambda/research) "qmm" = ( /obj/structure/cargo_container/hd/right/alt, /turf/open/floor/plating, @@ -35758,6 +34601,12 @@ icon_state = "mars_cave_7" }, /area/bigredv2/caves_north) +"qnl" = ( +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 1 + }, +/area/bigredv2/caves/lambda/xenobiology) "qoj" = ( /turf/open/mars_cave{ icon_state = "mars_cave_23" @@ -35787,24 +34636,65 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_plant) -"qqw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" +"qrT" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" }, -/area/bigredv2/outside/filtration_plant) +/area/bigredv2/outside/sw) "qrZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/fire, /turf/open/floor, /area/bigred/ground/garage_workshop) +"qsh" = ( +/obj/item/folder/yellow, +/obj/effect/landmark/crap_item, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "qsE" = ( /turf/closed/wall/solaris/reinforced, /area/bigred/ground/garage_workshop) +"qte" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"qtp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/bananapeel, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "qtx" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/outside/space_port_lz2) +"qtP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_18" + }, +/area/bigredv2/caves_lambda) +"quw" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/item/tool/extinguisher, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "qux" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 @@ -35827,12 +34717,30 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_lambda) +"qvE" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/caves/eta/living) "qvI" = ( /obj/item/clothing/head/helmet/marine/veteran/ua_riot, /turf/open/mars_cave{ icon_state = "mars_cave_3" }, /area/bigredv2/caves/mining) +"qwr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 4; + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/xenobiology) "qwx" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -35851,6 +34759,35 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"qwP" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) +"qxn" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"qxH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 4; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/eta) +"qxQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) "qyi" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -35871,6 +34808,13 @@ icon_state = "delivery" }, /area/bigredv2/outside/lz2_south_cas) +"qzP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/bigredv2/outside/eta) "qzY" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -1; @@ -35880,17 +34824,67 @@ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) -"qCK" = ( +"qAk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, /turf/open/floor{ - icon_state = "asteroidwarning" + dir = 9; + icon_state = "darkyellow2" }, -/area/bigredv2/outside/lz2_south_cas) -"qEs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/area/bigredv2/outside/engineering) +"qBg" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"qBq" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, +/area/bigredv2/caves_se) +"qCK" = ( +/turf/open/floor{ + icon_state = "asteroidwarning" + }, /area/bigredv2/outside/lz2_south_cas) +"qDw" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/transmitter/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "yellow"; + phone_id = "Filtration"; + pixel_y = 24 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"qEC" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "qEJ" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; @@ -35901,6 +34895,12 @@ icon_state = "delivery" }, /area/bigred/ground/garage_workshop) +"qFe" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) "qFg" = ( /obj/effect/decal/cleanable/blood{ dir = 8; @@ -35940,20 +34940,14 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"qGY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"qHc" = ( +"qGZ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" + dir = 8; + icon_state = "darkgreencorners2" }, -/area/bigredv2/outside/filtration_plant) +/area/bigredv2/caves/eta/research) "qHY" = ( /turf/open/mars_cave{ icon_state = "mars_cave_10" @@ -35981,6 +34975,14 @@ }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/medical) +"qLi" = ( +/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, +/turf/open/mars_cave{ + icon_state = "mars_cave_5" + }, +/area/bigredv2/caves/eta/research) "qLk" = ( /obj/item/device/flashlight/lantern, /turf/open/mars_cave{ @@ -36027,16 +35029,33 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"qOZ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_se) +"qPt" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "qPT" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/eta) -"qQn" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +"qRI" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Break Room" }, -/area/bigredv2/caves_lambda) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "qSj" = ( /obj/structure/cargo_container/hd/mid/alt, /turf/open/floor/plating, @@ -36053,15 +35072,18 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/xenobiology) -"qUF" = ( -/obj/structure/machinery/computer/area_atmos{ - dir = 1 - }, -/obj/structure/surface/table, +"qTT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - icon_state = "darkyellow2" + icon_state = "white" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/virology) +"qUR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/outside/filtration_cave_cas) "qUS" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_6" @@ -36090,6 +35112,28 @@ icon_state = "mars_cave_17" }, /area/bigredv2/caves/mining) +"qWA" = ( +/obj/structure/machinery/compressor{ + dir = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"qWG" = ( +/obj/effect/landmark/good_item, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) +"qXg" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_11" + }, +/area/bigredv2/caves_se) "qXi" = ( /obj/structure/surface/table/woodentable, /obj/item/device/pinpointer, @@ -36097,6 +35141,16 @@ icon_state = "wood" }, /area/bigredv2/outside/admin_building) +"qYf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/bigredv2/caves/lambda/virology) "qYY" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -36115,6 +35169,15 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/research) +"qZH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "qZU" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -36130,6 +35193,14 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"raL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "raQ" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -36160,18 +35231,34 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) +"rcd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, +/area/bigredv2/caves/lambda/virology) "rcN" = ( /turf/open/mars_cave{ icon_state = "mars_cave_16" }, /area/bigredv2/caves_research) -"rdr" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"rdn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves/mining) "rdR" = ( /turf/open/floor, /area/bigredv2/outside/lz2_south_cas) @@ -36206,12 +35293,26 @@ icon_state = "mars_cave_2" }, /area/space) +"rft" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "rgp" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/outside/lz1_north_cas) +"rhi" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) "rhx" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -36222,18 +35323,6 @@ icon_state = "warnplate" }, /area/bigredv2/outside/telecomm/warehouse) -"rhP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/engineering) "rie" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/stack/cable_coil/cut{ @@ -36255,6 +35344,16 @@ }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) +"rjI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "rkS" = ( /obj/structure/cable{ icon_state = "5-6" @@ -36264,6 +35363,25 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"rlQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_5" + }, +/area/bigredv2/caves_se) +"rlZ" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/lambda/breakroom) +"rmf" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_sw) "rml" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor, @@ -36271,12 +35389,20 @@ "rnc" = ( /turf/open/mars_cave, /area/bigredv2/caves_research) -"rnV" = ( -/obj/item/stack/sheet/glass, +"rnr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - icon_state = "dark" + icon_state = "darkyellowcorners2" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves/eta/living) +"rnx" = ( +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "row" = ( /turf/open/floor{ dir = 8; @@ -36308,14 +35434,21 @@ icon_state = "darkred2" }, /area/bigredv2/outside/admin_building) -"rqa" = ( -/obj/structure/tunnel{ - id = "hole4" - }, +"rpX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - icon_state = "whitepurplefull" + dir = 9; + icon_state = "redfull" }, -/area/bigredv2/caves/lambda/xenobiology) +/area/bigredv2/caves/eta/research) +"rqh" = ( +/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/bigredv2/caves_lambda) "rqv" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -36324,6 +35457,14 @@ icon_state = "mars_cave_19" }, /area/bigredv2/caves/mining) +"rqO" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "rrl" = ( /obj/effect/landmark/nightmare{ insert_tag = "filtration" @@ -36381,27 +35522,35 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) -"rvS" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"rvV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" }, -/area/bigredv2/caves_sw) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/filtration_plant) +"rwd" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "rxh" = ( /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"rxJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" +"rym" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + name = "\improper Engine Reactor" }, -/area/bigredv2/caves_east) -"rzb" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, /area/bigredv2/outside/engineering) "rzO" = ( @@ -36416,6 +35565,15 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) +"rAa" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "rAs" = ( /turf/open/mars_cave{ icon_state = "mars_cave_6" @@ -36427,12 +35585,28 @@ icon_state = "mars_dirt_12" }, /area/bigredv2/outside/se) +"rBM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 8; + icon_state = "darkgreencorners2" + }, +/area/bigredv2/caves/eta/research) "rCd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor{ icon_state = "asteroidwarning" }, /area/bigred/ground/garage_workshop) +"rCi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_7" + }, +/area/bigredv2/outside/filtration_cave_cas) "rCA" = ( /turf/open/mars_cave{ icon_state = "mars_cave_7" @@ -36474,6 +35648,14 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_plant) +"rFg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "rGP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -36490,16 +35672,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/river, /area/bigredv2/outside/filtration_plant) -"rHD" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) "rIl" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) +"rIo" = ( +/obj/item/folder/yellow, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/outside/engineering) +"rIM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "rJJ" = ( /turf/open/floor{ dir = 1; @@ -36524,6 +35717,16 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"rKx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "rKP" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/floor/plating{ @@ -36531,13 +35734,6 @@ icon_state = "warnplate" }, /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" - }, -/area/bigredv2/caves_lambda) "rMg" = ( /obj/structure/toilet{ pixel_y = 8 @@ -36580,6 +35776,30 @@ /obj/item/weapon/harpoon, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"rNQ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/bluegrid, +/area/bigredv2/caves/lambda/research) +"rOf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "darkish" + }, +/area/bigredv2/caves/eta/storage) +"rOp" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/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, +/turf/open/floor{ + dir = 8; + icon_state = "darkredcorners2" + }, +/area/bigredv2/caves/eta/xenobiology) "rOK" = ( /obj/effect/landmark/corpsespawner/ua_riot, /obj/item/weapon/baton/loaded, @@ -36614,6 +35834,13 @@ icon_state = "mars_dirt_5" }, /area/bigredv2/caves/mining) +"rPi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/research) "rQs" = ( /obj/structure/bed/sofa/south{ desc = "An old rusty ladder"; @@ -36623,6 +35850,16 @@ }, /turf/open/floor/plating, /area/bigredv2/oob) +"rRu" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "rRO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor{ @@ -36653,12 +35890,6 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"rUN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) "rUZ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -36693,6 +35924,12 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves/mining) +"rWX" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "rXy" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, @@ -36705,6 +35942,16 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"rXT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "rXY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -36714,12 +35961,9 @@ icon_state = "darkpurple2" }, /area/bigredv2/caves/lambda/research) -"rYr" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/ash, -/turf/open/floor{ - icon_state = "dark" - }, +"rYm" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) "rYt" = ( /obj/effect/landmark/crap_item, @@ -36748,23 +35992,14 @@ icon_state = "mars_cave_15" }, /area/bigredv2/caves/mining) -"sap" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +"sah" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"saX" = ( -/obj/structure/machinery/power/turbine, /turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" + icon_state = "dark" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/filtration_plant) "sbk" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood, @@ -36800,6 +36035,13 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/living) +"scM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 10; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "sdP" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating, @@ -36837,6 +36079,20 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"sht" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave{ + icon_state = "mars_cave_11" + }, +/area/bigredv2/caves_lambda) +"shG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor{ + dir = 8; + icon_state = "darkredcorners2" + }, +/area/bigredv2/caves/eta/xenobiology) "shV" = ( /turf/open/floor{ icon_state = "asteroidwarning" @@ -36852,9 +36108,36 @@ icon_state = "mars_cave_18" }, /area/bigredv2/outside/lz1_telecomm_cas) +"sjy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "ski" = ( /turf/open/mars_cave, /area/bigredv2/outside/lz2_west_cas) +"skA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/bigredv2/caves/lambda/virology) +"skC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/lambda/breakroom) "sln" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" @@ -36863,18 +36146,6 @@ icon_state = "mars_dirt_5" }, /area/bigredv2/caves/mining) -"slC" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/engineering) -"slG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) "smh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, @@ -36906,15 +36177,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/outside/filtration_cave_cas) -"snv" = ( -/obj/structure/machinery/light_construct{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "sog" = ( /obj/item/explosive/grenade/slug/baton{ dir = 1; @@ -36943,6 +36205,22 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"soL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"spL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "sqc" = ( /obj/effect/decal/cleanable/blood{ base_icon = 'icons/obj/items/weapons/grenade.dmi'; @@ -36967,6 +36245,16 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"srv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/mars, +/area/bigredv2/outside/ne) +"sse" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/c) "sso" = ( /obj/structure/bed/chair, /turf/open/mars_cave{ @@ -36989,6 +36277,16 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"stn" = ( +/obj/structure/machinery/conveyor{ + dir = 9; + id = "anomalybelt" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/lambda/research) "sus" = ( /turf/open/mars_cave{ icon_state = "mars_cave_23" @@ -37040,6 +36338,12 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/cargo) +"swo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/mars{ + icon_state = "mars_dirt_6" + }, +/area/bigredv2/outside/w) "swJ" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, @@ -37059,6 +36363,13 @@ icon_state = "mars_cave_17" }, /area/bigredv2/caves/mining) +"syd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_11" + }, +/area/bigredv2/caves_lambda) "syi" = ( /obj/structure/surface/table, /obj/item/device/radio{ @@ -37076,6 +36387,12 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves/mining) +"syG" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave{ + icon_state = "mars_cave_5" + }, +/area/bigredv2/caves_sw) "szg" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; @@ -37100,19 +36417,17 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) -"szy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +"sAK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/outside/engineering) -"sAG" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor{ + icon_state = "dark" }, -/area/bigredv2/caves_sw) +/area/bigredv2/outside/filtration_plant) "sAS" = ( /obj/item/toy/prize/fireripley{ pixel_y = 19 @@ -37120,35 +36435,33 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"sBm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"sBl" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" }, +/area/bigredv2/outside/filtration_plant) +"sBC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/welding, /turf/open/floor{ icon_state = "dark" }, /area/bigredv2/outside/engineering) -"sBu" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_east) "sCj" = ( /obj/item/stack/cable_coil/cut, /turf/open/mars_cave{ icon_state = "mars_cave_17" }, /area/bigredv2/caves/mining) -"sCt" = ( +"sCR" = ( +/obj/structure/dispenser/oxygen, /turf/open/floor{ + dir = 5; icon_state = "darkyellow2" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/filtration_plant) "sDs" = ( /obj/structure/closet/crate/miningcar, /obj/item/weapon/gun/smg/nailgun, @@ -37167,28 +36480,22 @@ icon_state = "mars_cave_9" }, /area/bigredv2/caves_sw) -"sDO" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +"sEo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave{ + icon_state = "mars_cave_17" }, -/area/bigredv2/outside/engineering) -"sDZ" = ( +/area/bigredv2/caves/mining) +"sFr" = ( +/obj/effect/decal/cleanable/liquid_fuel, /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/welding, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ - icon_state = "darkyellow2" + dir = 4; + icon_state = "darkyellowcorners2" }, /area/bigredv2/outside/engineering) -"sEi" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) "sFW" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/mars_cave{ @@ -37208,6 +36515,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"sHb" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/filtration_plant) "sHz" = ( /obj/item/ore{ pixel_x = 9; @@ -37217,19 +36531,28 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) +"sHX" = ( +/obj/item/trash/eat, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "sIh" = ( /obj/effect/landmark/nightmare{ insert_tag = "lambda-cave-extratunnel" }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"sIP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +"sIl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_se) +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/caves/eta/living) "sIY" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor{ @@ -37248,22 +36571,46 @@ icon_state = "mars_cave_11" }, /area/bigredv2/caves_se) -"sLy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"sLM" = ( +/obj/structure/machinery/photocopier, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/area/bigredv2/caves_sw) +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "sLS" = ( /obj/structure/machinery/suit_storage_unit/carbon_unit, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) -"sNP" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating{ - icon_state = "panelscorched" +"sMT" = ( +/obj/structure/machinery/door_control{ + id = "Engineering"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/turf/open/floor{ + icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"sNk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"sNO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/lambda/xenobiology) "sNQ" = ( /turf/open/mars_cave{ icon_state = "mars_cave_11" @@ -37287,6 +36634,14 @@ icon_state = "mars_cave_10" }, /area/bigredv2/caves_east) +"sOP" = ( +/obj/structure/machinery/computer/station_alert, +/obj/structure/surface/table, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "sPv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37300,6 +36655,26 @@ icon_state = "mars_cave_23" }, /area/bigredv2/outside/lz1_telecomm_cas) +"sQD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"sQZ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor{ + icon_state = "podhatchfloor" + }, +/area/bigredv2/outside/engineering) "sRy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37316,6 +36691,20 @@ icon_state = "mars_cave_19" }, /area/bigredv2/outside/lz2_south_cas) +"sTH" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"sUz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/framed/solaris, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/bigredv2/outside/engineering) "sWa" = ( /obj/item/ore{ pixel_x = 12; @@ -37343,18 +36732,19 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"sXH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "sYL" = ( /turf/open/mars_cave{ icon_state = "mars_cave_8" }, /area/bigredv2/outside/lambda_cave_cas) -"sYR" = ( -/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" - }, -/area/bigredv2/caves/mining) "sZh" = ( /turf/open/mars_cave{ icon_state = "mars_cave_15" @@ -37371,16 +36761,16 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) -"taf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"sZl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave, +/area/bigredv2/caves_research) +"sZD" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor{ icon_state = "dark" }, -/area/bigredv2/caves/eta/xenobiology) +/area/bigredv2/outside/filtration_plant) "tap" = ( /obj/structure/machinery/message_server, /turf/open/floor{ @@ -37392,16 +36782,27 @@ /obj/item/pizzabox/meat, /turf/open/floor, /area/bigred/ground/garage_workshop) +"tch" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 8; + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/research) "tcq" = ( /obj/item/explosive/grenade/baton, /turf/open/mars_cave{ icon_state = "mars_cave_3" }, /area/bigredv2/caves_research) -"tcP" = ( -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering) +"tcZ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "tdn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -37419,22 +36820,13 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves/mining) -"tdB" = ( -/obj/structure/tunnel{ - id = "hole1" - }, +"tdS" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_se) -"tdN" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" + icon_state = "mars_cave_7" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves_lambda) "tdZ" = ( /obj/item/tool/pickaxe/drill, /obj/structure/machinery/light{ @@ -37472,6 +36864,15 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves/mining) +"tfi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "tfp" = ( /obj/structure/prop/almayer/computers/sensor_computer1{ desc = "An old W-Y systems control computer that manages the air enviorment for a large area. Commonly used in mining operations in order to control O2 levels, alert of any dangerous gases and make the heat slightly more bearable."; @@ -37496,6 +36897,15 @@ /obj/effect/decal/cleanable/ash, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"tfB" = ( +/obj/structure/surface/table, +/obj/item/weapon/baton, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "tgk" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ @@ -37514,6 +36924,18 @@ icon_state = "mars_cave_6" }, /area/bigredv2/caves_se) +"thl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "tiD" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6"; @@ -37525,17 +36947,17 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) -"tju" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, +"tkl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"tks" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - icon_state = "freezerfloor" + icon_state = "whitegreenfull" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves/lambda/xenobiology) "tkN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -37550,6 +36972,14 @@ icon_state = "mars_cave_15" }, /area/bigredv2/outside/lz1_north_cas) +"tly" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engineering Secure Storage" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) "tlP" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/light{ @@ -37575,6 +37005,24 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves_research) +"tnT" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"ton" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "toA" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/alien/hugger, @@ -37596,20 +37044,18 @@ icon_state = "mars_cave_19" }, /area/bigredv2/caves/mining) +"tqo" = ( +/obj/item/tool/extinguisher, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "trk" = ( /turf/open/mars_cave{ icon_state = "mars_cave_13" }, /area/bigredv2/caves_sw) -"trr" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "trW" = ( /obj/item/clothing/suit/storage/hazardvest, /obj/effect/decal/cleanable/blood, @@ -37624,6 +37070,15 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"tsq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engine Reactor" + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/engineering) "tsy" = ( /obj/effect/decal/cleanable/dirt{ pixel_x = 8 @@ -37648,27 +37103,17 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"tsB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_east) "tsK" = ( /turf/open/mars_cave{ icon_state = "mars_cave_14" }, /area/bigredv2/outside/lz2_south_cas) -"tub" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +"ttb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave{ + icon_state = "mars_cave_5" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves_lambda) "tuu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37693,27 +37138,28 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/lz2_south_cas) -"tvH" = ( -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "twS" = ( /turf/open/floor{ dir = 1; icon_state = "asteroidwarning" }, /area/bigredv2/outside/telecomm/lz2_cave) -"tzJ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engine Reactor Control" +"tzi" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/bigredv2/outside/filtration_plant) +"tzo" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 6; + icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) "tAe" = ( @@ -37723,13 +37169,6 @@ icon_state = "wood" }, /area/bigredv2/caves/eta/living) -"tAW" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/ne) "tBb" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -37790,6 +37229,13 @@ /obj/structure/prop/invuln/minecart_tracks, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"tCA" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "tCH" = ( /obj/effect/decal/cleanable/blood{ dir = 8; @@ -37827,6 +37273,13 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves_research) +"tFh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 6; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "tFM" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -37847,19 +37300,6 @@ icon_state = "mars_dirt_10" }, /area/bigredv2/outside/c) -"tIq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_lambda) -"tIv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "tIA" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -37881,23 +37321,6 @@ icon_state = "dark" }, /area/bigredv2/outside/admin_building) -"tJv" = ( -/obj/structure/tunnel{ - id = "hole3" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves/mining) -"tKr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) "tKC" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -37927,6 +37350,28 @@ icon_state = "mars_cave_14" }, /area/bigredv2/caves_north) +"tLU" = ( +/obj/structure/machinery/computer/general_air_control, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"tMs" = ( +/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_5" + }, +/area/bigredv2/caves_sw) +"tNk" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "tNz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -37942,12 +37387,14 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"tPr" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"tPa" = ( +/obj/structure/machinery/computer/general_air_control, +/obj/structure/surface/table, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" }, -/area/bigredv2/outside/ne) +/area/bigredv2/outside/filtration_plant) "tQo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ore/uranium{ @@ -38009,8 +37456,12 @@ icon_state = "bcircuitoff" }, /area/bigredv2/caves/lambda/research) -"tTI" = ( -/obj/effect/decal/cleanable/dirt, +"tTV" = ( +/obj/item/tool/lighter/random, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/surface/table, /turf/open/floor{ icon_state = "dark" }, @@ -38046,6 +37497,18 @@ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) +"tYm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"tZe" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 6; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "tZU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -38061,23 +37524,29 @@ icon_state = "darkpurple2" }, /area/bigredv2/caves/lambda/research) -"uaS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engine Reactor Control" +"ubp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/filtration_plant) "ubY" = ( /obj/structure/barricade/wooden, /turf/open/mars_cave{ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"ucn" = ( +/obj/structure/surface/table, +/turf/open/floor{ + dir = 6; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "ucH" = ( /turf/open/mars_cave, /area/bigredv2/caves_virology) @@ -38086,13 +37555,13 @@ icon_state = "mars_cave_4" }, /area/bigredv2/caves_se) -"ueL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating{ - icon_state = "panelscorched" +"ucT" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves_east) "ufu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, @@ -38101,19 +37570,26 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"ufB" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) "ufD" = ( /turf/open/floor{ dir = 1; icon_state = "asteroidwarning" }, /area/bigredv2/outside/sw) +"ugu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) +"ugQ" = ( +/obj/structure/machinery/power/turbine, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "ugW" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating{ @@ -38121,6 +37597,14 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"uhy" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "uij" = ( /turf/open/floor{ dir = 8; @@ -38136,13 +37620,6 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"ujC" = ( -/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/bigredv2/caves_lambda) "ujD" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; @@ -38182,6 +37659,13 @@ /obj/item/device/flashlight/on, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"umC" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/lambda/xenobiology) "umK" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -8; @@ -38194,17 +37678,43 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves/mining) +"umM" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/tunnelable{ + icon_state = "warnplate"; + dir = 10 + }, +/area/bigredv2/caves/lambda/xenobiology) "unC" = ( /turf/open/floor{ icon_state = "delivery" }, /area/bigredv2/outside/telecomm/lz2_cave) +"unZ" = ( +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "uoj" = ( /obj/effect/decal/remains/human, /turf/open/floor{ icon_state = "asteroidwarning" }, /area/bigredv2/caves_lambda) +"uok" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "wood" + }, +/area/bigredv2/caves/eta/research) +"upD" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "upE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, @@ -38216,14 +37726,6 @@ icon_state = "delivery" }, /area/bigredv2/outside/admin_building) -"urn" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "usg" = ( /obj/item/tool/warning_cone, /turf/open/floor{ @@ -38238,6 +37740,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"usx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering) "usG" = ( /turf/open/mars_cave{ icon_state = "mars_cave_18" @@ -38258,13 +37764,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"uvl" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"uuZ" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/bluegrid{ + icon_state = "bcircuitoff" }, -/area/bigredv2/caves/lambda/xenobiology) +/area/bigredv2/caves/lambda/research) "uvz" = ( /turf/open/floor{ dir = 1; @@ -38285,6 +37791,12 @@ icon_state = "mars_cave_7" }, /area/bigredv2/outside/lz2_west_cas) +"uyD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves/mining) "uzv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -38300,14 +37812,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"uBi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) "uCa" = ( /obj/effect/landmark/corpsespawner/miner, /turf/open/floor/plating{ @@ -38328,12 +37832,6 @@ }, /turf/closed/wall/wood, /area/bigredv2/caves/mining) -"uDA" = ( -/obj/item/stack/sheet/glass, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "uDI" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A pipe."; @@ -38354,6 +37852,13 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) +"uEU" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor{ + dir = 5; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "uFi" = ( /obj/item/paper/bigred/finance{ pixel_x = -9 @@ -38383,20 +37888,33 @@ icon_state = "mars_cave_15" }, /area/bigredv2/caves/mining) -"uGs" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/ash, +"uGd" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, /turf/open/floor{ - icon_state = "darkyellow2" + icon_state = "dark" }, -/area/bigredv2/outside/engineering) -"uGz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/area/bigredv2/outside/filtration_plant) +"uHy" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/machinery/door/window{ + dir = 8 + }, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - icon_state = "darkredcorners2" + dir = 9; + icon_state = "darkgreen2" }, -/area/bigredv2/caves/eta/xenobiology) +/area/bigredv2/caves/lambda/virology) "uHE" = ( /obj/item/tool/warning_cone{ pixel_y = 19 @@ -38425,15 +37943,13 @@ icon_state = "asteroidfloor" }, /area/bigred/ground/garage_workshop) -"uJj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"uIZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" + icon_state = "dark" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/filtration_plant) "uJu" = ( /obj/item/robot_parts/robot_component/diagnosis_unit{ pixel_y = 15 @@ -38468,6 +37984,24 @@ icon_state = "darkred2" }, /area/bigredv2/outside/admin_building) +"uNy" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) +"uNM" = ( +/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" + }, +/area/bigredv2/caves/mining) "uNW" = ( /obj/effect/decal/cleanable/blood{ dir = 8; @@ -38482,6 +38016,28 @@ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) +"uOy" = ( +/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" + }, +/area/bigredv2/caves/mining) +"uOQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) +"uPj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_10" + }, +/area/bigredv2/caves_sw) "uPm" = ( /turf/open/mars_cave{ icon_state = "mars_cave_5" @@ -38495,6 +38051,13 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"uPJ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_7" + }, +/area/bigredv2/caves_sw) "uPK" = ( /obj/structure/platform/shiva{ dir = 1 @@ -38518,6 +38081,12 @@ icon_state = "floor1" }, /area/bigredv2/oob) +"uSs" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "uSt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -38526,18 +38095,28 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/research) +"uSA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "uSC" = ( /turf/open/mars{ icon_state = "mars_dirt_10" }, /area/bigredv2/outside/space_port_lz2) -"uTO" = ( -/obj/structure/machinery/pipedispenser, +"uTZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" + icon_state = "dark" }, -/area/bigredv2/outside/filtration_plant) +/area/bigredv2/caves/eta/research) "uUV" = ( /obj/structure/prop/server_equipment/yutani_server/broken, /turf/open/floor/greengrid, @@ -38548,12 +38127,6 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_cave_cas) -"uVn" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_sw) "uWo" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -38561,6 +38134,20 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/living) +"uXC" = ( +/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/bigredv2/caves_sw) +"uXU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_10" + }, +/area/bigredv2/caves_se) "uXW" = ( /turf/open/mars_cave{ icon_state = "mars_cave_8" @@ -38571,19 +38158,26 @@ icon_state = "mars_cave_3" }, /area/bigredv2/caves_sw) -"vbi" = ( +"uYf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" + icon_state = "freezerfloor" }, -/area/bigredv2/caves/lambda/research) -"vbp" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/area/bigredv2/outside/virology) +"uYI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor{ - dir = 8; + dir = 4; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"vbi" = ( +/turf/open/floor{ + dir = 5; + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/research) "vcm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -38611,17 +38205,29 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"vdl" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"vcJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor{ - dir = 8; + dir = 4; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"vdA" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Workshop" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/engineering) +"vdQ" = ( +/obj/item/trash/kepler, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor, +/area/bigredv2/caves/eta/living) "vdS" = ( /obj/item/explosive/grenade/incendiary/molotov{ pixel_x = -10; @@ -38644,18 +38250,18 @@ "vex" = ( /turf/closed/wall/wood, /area/bigredv2/outside/lz2_south_cas) +"vfA" = ( +/obj/structure/surface/table, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "vfI" = ( /turf/open/mars{ icon_state = "mars_dirt_13" }, /area/bigredv2/outside/eta) -"vfQ" = ( -/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" - }, -/area/bigredv2/caves/mining) "vgZ" = ( /obj/structure/platform/shiva, /obj/structure/platform/shiva{ @@ -38671,14 +38277,6 @@ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) -"vin" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) "vis" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -38779,14 +38377,6 @@ icon_state = "wood" }, /area/bigredv2/outside/library) -"voG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "vpu" = ( /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/mars_cave{ @@ -38816,11 +38406,26 @@ icon_state = "mars_cave_11" }, /area/bigredv2/caves_research) +"vrr" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/almayer{ + id = "rad_door"; + name = "\improper Radiation Shielding" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) "vrt" = ( /turf/open/mars{ icon_state = "mars_dirt_14" }, /area/bigredv2/outside/eta) +"vrF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_se) "vti" = ( /obj/structure/closet/crate, /obj/effect/landmark/objective_landmark/close, @@ -38836,6 +38441,20 @@ icon_state = "delivery" }, /area/bigredv2/caves/eta/xenobiology) +"vtS" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"vuk" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/ash, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "vuz" = ( /obj/structure/machinery/door_control{ id = "eta"; @@ -38882,6 +38501,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"vwi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 4; + icon_state = "purple" + }, +/area/bigredv2/caves/lambda/research) "vwP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -38942,18 +38568,18 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"vCf" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) "vCU" = ( /turf/open/mars_cave{ icon_state = "mars_cave_16" }, /area/bigredv2/outside/lz2_south_cas) +"vEw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/outside/engineering) "vEF" = ( /obj/structure/surface/table, /obj/item/clothing/head/hardhat/orange{ @@ -38970,16 +38596,38 @@ icon_state = "mars_dirt_10" }, /area/bigredv2/outside/s) -"vFS" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" +"vFy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" }, -/area/bigredv2/caves/eta/living) +/area/bigredv2/caves_lambda) "vHw" = ( /turf/closed/wall/wood, /area/bigredv2/caves/mining) +"vHx" = ( +/obj/structure/bed/chair, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"vJb" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/lambda/research) +"vKi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "vKv" = ( /turf/open/floor{ dir = 8; @@ -39003,6 +38651,14 @@ icon_state = "mars_cave_9" }, /area/bigredv2/caves/mining) +"vMS" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "vNh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -39028,6 +38684,35 @@ icon_state = "wood" }, /area/bigredv2/outside/admin_building) +"vOz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"vPm" = ( +/obj/structure/machinery/light/small/built{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, +/area/bigredv2/caves/lambda/virology) +"vPC" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/bigredv2/outside/engineering) "vPP" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 @@ -39057,13 +38742,6 @@ /obj/structure/sign/safety/high_voltage, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"vRK" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/bigredv2/caves/lambda/xenobiology) "vRR" = ( /turf/open/mars_cave{ icon_state = "mars_dirt_7" @@ -39077,10 +38755,19 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"vTt" = ( +"vUU" = ( /obj/structure/surface/table, +/obj/effect/decal/cleanable/ash, /turf/open/floor{ - dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"vVk" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/pen, +/turf/open/floor{ + dir = 4; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) @@ -39093,15 +38780,6 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"vVz" = ( -/obj/structure/machinery/power/geothermal{ - name = "Reactor Turbine"; - power_generation_max = 100000 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/engineering) "vVF" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -5; @@ -39114,12 +38792,26 @@ "vVZ" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/filtration_cave_cas) -"vWm" = ( -/obj/structure/surface/table, +"vWl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"vWz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_10" + }, +/area/bigredv2/caves/eta/research) +"vWI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - icon_state = "darkyellow2" + icon_state = "dark" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves/eta/research) "vXp" = ( /obj/structure/machinery/light{ dir = 8 @@ -39128,19 +38820,20 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/nw) -"vYw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"vYM" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/bigredv2/caves/mining) -"waJ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"vZl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" }, -/area/bigredv2/caves_east) +/area/bigredv2/caves/eta/research) "waN" = ( /obj/structure/surface/table, /obj/item/device/flashlight, @@ -39228,14 +38921,6 @@ icon_state = "mars_cave_16" }, /area/bigredv2/caves/mining) -"wfx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) "wfC" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -39262,13 +38947,17 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/filtration_cave_cas) -"whE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/objective_landmark/close, +"whG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/lightreplacer, /turf/open/floor{ - icon_state = "dark" + dir = 1; + icon_state = "darkyellow2" }, -/area/bigredv2/outside/filtration_plant) +/area/bigredv2/outside/engineering) "whZ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor{ @@ -39284,12 +38973,6 @@ icon_state = "asteroidwarning" }, /area/bigred/ground/garage_workshop) -"wiK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/outside/engineering) "wjW" = ( /obj/structure/platform/shiva{ dir = 1 @@ -39331,21 +39014,41 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves_sw) +"wov" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor{ + icon_state = "panelscorched" + }, +/area/bigredv2/outside/engineering) "wpf" = ( /turf/open/mars_cave{ icon_state = "mars_cave_19" }, /area/bigredv2/caves_north) -"wpn" = ( -/obj/structure/closet/radiation, +"wpp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/hunter_secondary, /turf/open/floor{ - icon_state = "delivery" + dir = 1; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/outside/engineering) +"wqi" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "whitepurplefull" + }, +/area/bigredv2/caves/lambda/research) +"wrq" = ( +/obj/structure/largecrate/random, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) -"wpT" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars, -/area/bigredv2/outside/w) "wry" = ( /obj/structure/surface/table, /obj/structure/transmitter/colony_net/rotary{ @@ -39357,12 +39060,6 @@ icon_state = "dark" }, /area/bigredv2/outside/space_port) -"wrz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/bigredv2/caves_lambda) "wrS" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -39370,24 +39067,14 @@ /obj/structure/plasticflaps, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"wsL" = ( +/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) "wtj" = ( /turf/open/floor/plating, /area/bigredv2/caves/mining) -"wtC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"wtG" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "wtJ" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2"; @@ -39403,6 +39090,13 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"wus" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "wuz" = ( /obj/structure/sink{ dir = 8; @@ -39430,20 +39124,25 @@ icon_state = "mars_cave_2" }, /area/bigredv2/outside/virology) -"wvK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) "wvR" = ( /turf/open/floor{ icon_state = "delivery" }, /area/bigredv2/caves/lambda/virology) -"wwT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, +"wwF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave{ + icon_state = "mars_cave_18" + }, +/area/bigredv2/caves_se) +"wxl" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor{ + dir = 10; + icon_state = "darkyellow2" + }, /area/bigredv2/outside/engineering) "wxo" = ( /obj/effect/decal/cleanable/dirt, @@ -39451,14 +39150,42 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/c) -"wyF" = ( +"wxy" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor{ + dir = 4; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"wxT" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"wyc" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"wzn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 5; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) +"wAM" = ( +/turf/open/gm/river, +/area/bigredv2/outside/engineering) "wBi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -39478,6 +39205,10 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"wCU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) "wDa" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 @@ -39500,14 +39231,12 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves_north) -"wFL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/hazard{ - pixel_x = 8; - pixel_y = -32 +"wEf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, /turf/open/floor{ - icon_state = "darkyellow2" + icon_state = "dark" }, /area/bigredv2/outside/engineering) "wFO" = ( @@ -39515,13 +39244,6 @@ icon_state = "mars_cave_20" }, /area/bigredv2/caves/mining) -"wFP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) "wGr" = ( /obj/structure/closet/firecloset/full, /turf/open/mars, @@ -39550,6 +39272,20 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/se) +"wGM" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "darkish" + }, +/area/bigredv2/caves/lambda/virology) +"wGP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor{ + icon_state = "darkredcorners2" + }, +/area/bigredv2/caves/eta/xenobiology) "wGV" = ( /obj/item/tool/wrench, /turf/open/floor{ @@ -39567,13 +39303,6 @@ icon_state = "darkredcorners2" }, /area/bigredv2/outside/admin_building) -"wIw" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/bigredv2/caves_east) "wJd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -39622,19 +39351,6 @@ icon_state = "mars_cave_9" }, /area/bigredv2/caves_north) -"wMM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "wMQ" = ( /obj/structure/largecrate/random/secure, /turf/open/floor, @@ -39664,6 +39380,15 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/xenobiology) +"wPF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "wQa" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -39679,6 +39404,27 @@ icon_state = "mars_cave_7" }, /area/bigredv2/caves_lambda) +"wQO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"wQU" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"wRi" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) "wRH" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/flashlight, @@ -39693,6 +39439,16 @@ }, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) +"wSt" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/structure/surface/table, +/turf/open/floor{ + dir = 6; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "wUo" = ( /obj/item/stack/sheet/wood{ pixel_y = -8 @@ -39701,45 +39457,23 @@ icon_state = "mars_cave_15" }, /area/bigredv2/caves/mining) -"wUD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/caves_se) "wVd" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/mars_cave{ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) -"wVw" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"wVB" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) "wVQ" = ( /turf/open/mars_cave{ icon_state = "mars_cave_17" }, /area/bigredv2/caves/mining) -"wWK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"wVS" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor{ + icon_state = "dark" }, -/area/bigredv2/caves_east) +/area/bigredv2/outside/engineering) "wWN" = ( /obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, @@ -39764,24 +39498,51 @@ icon_state = "wood" }, /area/bigredv2/outside/bar) -"wYE" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 +"wXR" = ( +/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, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" }, +/area/bigredv2/caves_se) +"wZi" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/zippo, +/obj/item/tool/lighter/zippo, /turf/open/floor{ - dir = 5; + dir = 4; icon_state = "darkyellow2" }, /area/bigredv2/outside/engineering) +"wZw" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave{ + icon_state = "mars_cave_23" + }, +/area/bigredv2/caves_lambda) "wZC" = ( /turf/open/mars{ icon_state = "mars_dirt_11" }, /area/bigredv2/outside/eta) +"wZK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) "xaH" = ( /turf/closed/wall/wood, /area/bigredv2/caves_sw) +"xbM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) "xbV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave{ @@ -39817,12 +39578,6 @@ icon_state = "dark" }, /area/bigredv2/outside/admin_building) -"xeN" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/filtration_plant) "xfx" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -39873,6 +39628,12 @@ icon_state = "mars_cave_9" }, /area/bigredv2/outside/lz2_south_cas) +"xhe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/xenobiology) "xhy" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -39897,6 +39658,19 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"xjw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/bigredv2/outside/eta) +"xjX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_sw) "xkq" = ( /turf/open/mars_cave{ icon_state = "mars_cave_3" @@ -39928,11 +39702,26 @@ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) +"xmv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor{ + dir = 10; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "xmy" = ( /turf/open/mars_cave{ icon_state = "mars_cave_2" }, /area/bigredv2/outside/lz1_telecomm_cas) +"xmK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "xmT" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ @@ -39945,12 +39734,37 @@ icon_state = "mars_cave_2" }, /area/space) +"xmY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/engineering) +"xng" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/welding, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "xpb" = ( /turf/open/floor{ dir = 5; icon_state = "asteroidwarning" }, /area/bigredv2/outside/lz2_south_cas) +"xpf" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "xpl" = ( /turf/open/floor{ icon_state = "dark" @@ -39978,6 +39792,15 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"xrA" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + dir = 10; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "xrO" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; @@ -39993,6 +39816,19 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"xsr" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/filtration_plant) +"xsz" = ( +/turf/open/floor{ + dir = 1; + icon_state = "darkyellowcorners2" + }, +/area/bigredv2/outside/engineering) "xte" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, @@ -40001,6 +39837,13 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"xtx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 1; + icon_state = "asteroidwarning" + }, +/area/bigredv2/caves_lambda) "xtB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -40013,6 +39856,14 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/outside/s) +"xuu" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/solar_tracker, +/turf/open/floor{ + dir = 6; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/filtration_plant) "xuP" = ( /obj/item/trash/cigbutt/cigarbutt{ pixel_x = 16; @@ -40027,13 +39878,14 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"xuU" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"xvY" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" }, -/area/bigredv2/caves_east) +/area/bigredv2/outside/engineering) "xwo" = ( /obj/structure/disposalpipe/junction, /turf/open/mars_cave{ @@ -40098,28 +39950,18 @@ icon_state = "dark" }, /area/bigredv2/caves/eta/living) -"xAh" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"xzx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "podhatchfloor" }, -/area/bigredv2/caves_se) +/area/bigredv2/outside/engineering) "xAv" = ( /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/mars_cave{ icon_state = "mars_cave_15" }, /area/bigredv2/caves/mining) -"xAX" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "xBn" = ( /obj/structure/platform{ dir = 4 @@ -40128,6 +39970,15 @@ icon_state = "dark" }, /area/bigredv2/outside/admin_building) +"xBo" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "xBr" = ( /obj/item/ore{ pixel_x = 9 @@ -40136,24 +39987,44 @@ icon_state = "mars_dirt_6" }, /area/bigredv2/caves/mining) +"xBB" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "xBS" = ( /turf/open/mars_cave{ icon_state = "mars_cave_14" }, /area/bigredv2/outside/lz1_north_cas) +"xBW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) +"xCy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor{ + icon_state = "darkpurple2" + }, +/area/bigredv2/caves/lambda/breakroom) "xDO" = ( /turf/open/floor/plating{ dir = 8; icon_state = "platingdmg3" }, /area/bigredv2/oob) -"xDW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) "xFZ" = ( /turf/open/mars_cave, /area/bigredv2/caves_lambda) @@ -40163,6 +40034,13 @@ icon_state = "asteroidwarning" }, /area/bigredv2/outside/w) +"xHX" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/living) "xIo" = ( /obj/structure/window/framed/solaris/reinforced/hull, /turf/open/floor/plating{ @@ -40190,6 +40068,17 @@ /obj/structure/surface/table, /turf/open/floor, /area/bigredv2/outside/lz2_south_cas) +"xJu" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "xJC" = ( /obj/item/ore, /turf/open/mars, @@ -40221,6 +40110,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/admin_building) +"xKO" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor{ + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "xLM" = ( /obj/structure/machinery/light{ dir = 1 @@ -40231,6 +40128,24 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"xLT" = ( +/obj/effect/landmark/monkey_spawn, +/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, +/turf/open/floor/bluegrid{ + icon_state = "damaged4" + }, +/area/bigredv2/caves/lambda/research) +"xLZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/outside/filtration_plant) "xMr" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/reinforced/hull, @@ -40245,6 +40160,15 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"xMR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/filtration_plant) "xMT" = ( /obj/structure/closet, /obj/item/explosive/grenade/high_explosive/frag, @@ -40288,23 +40212,38 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/caves/mining) +"xRz" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engine Reactor" + }, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/bigredv2/outside/engineering) "xSa" = ( /obj/structure/prop/dam/crane, /turf/open/mars_cave{ icon_state = "mars_cave_13" }, /area/bigredv2/caves/mining) +"xTk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/research) "xTM" = ( /obj/structure/closet/medical_wall, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"xUo" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"xUe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ icon_state = "dark" }, -/area/bigredv2/caves/lambda/research) +/area/bigredv2/caves/eta/storage) "xUS" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave{ @@ -40375,17 +40314,21 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) -"xXq" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, +"xXw" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" + icon_state = "freezerfloor" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/outside/virology) +"xXx" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Storage" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/bigredv2/outside/filtration_plant) "xXP" = ( /obj/structure/prop/invuln/minecart_tracks/bumper, /turf/open/mars_cave{ @@ -40404,6 +40347,15 @@ icon_state = "mars_cave_17" }, /area/bigredv2/caves/mining) +"xYA" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "xZf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -40422,17 +40374,19 @@ icon_state = "mars_dirt_7" }, /area/bigredv2/caves/mining) -"yar" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "ybk" = ( /turf/open/mars_cave{ icon_state = "mars_cave_17" }, /area/bigredv2/caves_research) +"ybQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "ybT" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Machine room" @@ -40442,18 +40396,16 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) +"ycF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) "ycM" = ( /turf/open/mars_cave{ icon_state = "mars_cave_7" }, /area/bigredv2/caves/lambda/xenobiology) -"ycP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) "yda" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -40482,6 +40434,18 @@ icon_state = "mars_dirt_4" }, /area/bigredv2/outside/eta) +"ydV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_dirt_4" + }, +/area/bigredv2/caves/mining) +"yej" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/bigredv2/caves_sw) "yfe" = ( /obj/effect/landmark/nightmare{ insert_tag = "eta" @@ -40498,13 +40462,15 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"yfz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"yfL" = ( +/obj/structure/machinery/compressor{ + dir = 1 }, -/area/bigredv2/caves_research) +/turf/open/floor{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/bigredv2/outside/engineering) "yfN" = ( /obj/structure/closet/hydrant{ pixel_y = 32 @@ -40517,20 +40483,14 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"ygP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, +"ygL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" + icon_state = "dark" }, -/area/bigredv2/outside/engineering) +/area/bigredv2/caves/eta/research) "yha" = ( /obj/structure/surface/table, /obj/item/device/radio{ @@ -40554,12 +40514,10 @@ icon_state = "mars_cave_2" }, /area/bigredv2/caves/mining) -"yhV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"yjA" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor{ + icon_state = "darkyellow2" }, /area/bigredv2/outside/filtration_plant) "yjU" = ( @@ -40569,14 +40527,20 @@ icon_state = "platingdmg3" }, /area/bigredv2/caves/mining) -"yjV" = ( -/obj/structure/platform_decoration{ - dir = 8 +"ykr" = ( +/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" + }, +/area/bigredv2/caves/mining) +"ykC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"ykR" = ( -/turf/closed/wall/mineral/uranium, /area/bigredv2/outside/engineering) "ykW" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -42552,7 +42516,7 @@ aao aao wCo erA -tJv +rdn aao aao aao @@ -42931,7 +42895,7 @@ aao wog wog wog -sLy +xjX wog wog wog @@ -42943,7 +42907,7 @@ aao fdr wog wog -cCr +cKC uYb uYb uYb @@ -43150,12 +43114,12 @@ wog wog wog wog -gYt -gYt +uXC +uXC wog wog -sLy -boy +xjX +mjd wog wog wog @@ -43198,7 +43162,7 @@ nSP nSP wVQ sZh -jVN +ykr wCo tqi owR @@ -43363,16 +43327,16 @@ wog wog wog wog -gYt -gYt +uXC +uXC wog wog -gYt -gYt +uXC +uXC wog wog wog -boy +mjd wog wog wog @@ -43415,9 +43379,9 @@ rWN owR rsv sZh -jVN +ykr wCo -kli +mPw rxh rxh rxh @@ -43568,20 +43532,20 @@ cYJ cYJ cYJ ski -eEy +npC ski cYJ cYJ cYJ -ovB +iiI wog icQ -gYt -gYt +uXC +uXC wog -sLy -gYt -gYt +xjX +uXC +uXC wog wog wog @@ -43589,8 +43553,8 @@ wog wog wog wog -boy -lwX +mjd +cfo wog wog wog @@ -43623,16 +43587,16 @@ cqZ rxh rxh rxh -sYR +uOy rsv rsv -vfQ -vfQ +gje +gje rsv rsv rsv sZh -jVN +ykr wCo wCo wVQ @@ -43793,15 +43757,15 @@ cYJ cYJ wog wog -jAo -gYt +tMs +uXC wog wog wog wog wog wog -sLy +xjX wog wog aao @@ -43843,13 +43807,13 @@ rxh rxh sZh wVQ -vfQ -vfQ +gje +gje rsv rsv -mqX +cCV sZh -iLs +dfn wCo wCo wVQ @@ -43858,7 +43822,7 @@ rxh rxh rxh rxh -evX +hUr rxh rxh vHw @@ -44066,7 +44030,7 @@ fnO fnO fnO pJX -iLs +dfn wCo wCo wVQ @@ -44225,8 +44189,8 @@ bQb ski ski wog -gYt -gYt +uXC +uXC wog wog wog @@ -44283,7 +44247,7 @@ wCo nSP wCo mfw -iLs +dfn wCo wCo wVQ @@ -44294,8 +44258,8 @@ mOZ rxh rxh rxh -pgi -pgi +uyD +uyD aao aao aao @@ -44442,10 +44406,10 @@ aao aao aao kvp -gYt -gYt +uXC +uXC wog -sLy +xjX wog wog icQ @@ -44505,14 +44469,14 @@ uHQ pLj gHH rxh -evX +hUr jtL rxh fnO fnO rxh -pgi -pgi +uyD +uyD aao aao aao @@ -44728,8 +44692,8 @@ sZh wCo wCo wFO -pgi -pgi +uyD +uyD aao aao aao @@ -44824,7 +44788,7 @@ aNa aNc aoD aQz -aRF +qTT aSu arT aUM @@ -44882,7 +44846,7 @@ gxJ wog wog wog -sLy +xjX feS aao aao @@ -44904,7 +44868,7 @@ uYb uYb uYb uYb -cCr +cKC khx nSP czV @@ -44945,8 +44909,8 @@ sZh wCo wCo wCo -bPy -pgi +sEo +uyD aao aao aao @@ -45037,7 +45001,7 @@ aJg aJg aLU aPt -aNb +hKX aOr aPt aQA @@ -45046,12 +45010,12 @@ aSv arT aHa aVD -aWf +cka aRG aNc aoD aYB -aZj +mlp aoD aao aao @@ -45062,7 +45026,7 @@ aao aao aao azR -wpT +gHu aYF aYF aYF @@ -45327,10 +45291,10 @@ aao aao aao aao -lWE -boy -boy -cCr +uPJ +mjd +mjd +cKC uYb uYb uYb @@ -45380,7 +45344,7 @@ uFD ncL wCo wVQ -evX +hUr rxh aao aao @@ -45546,7 +45510,7 @@ icQ icQ wog wog -boy +mjd uYb uYb uYb @@ -45691,7 +45655,7 @@ aoD aoD aoD aoD -aRF +qTT aRH aSw aTK @@ -45751,7 +45715,7 @@ aao aao aao kvp -sLy +xjX feS aao aao @@ -45761,9 +45725,9 @@ aao gxJ wog wog -sLy +xjX wog -boy +mjd uYb uYb uYb @@ -45912,12 +45876,12 @@ aNc aRH aNc aNc -aUP +geH aNc aNc aRH aNc -aRF +qTT aNc aRH aoD @@ -45976,8 +45940,8 @@ aao aao aao wog -pHb -gYt +ogs +uXC wog wog iAF @@ -46193,8 +46157,8 @@ wog aao wog wog -pHb -gYt +ogs +uXC wog feS aao @@ -46356,7 +46320,7 @@ aNc aNc aNc aNc -aRF +qTT aNc bco aNc @@ -46405,11 +46369,11 @@ kvp wog wog wog -sLy +xjX icQ wog wog -baN +uPj wog wog wog @@ -46777,11 +46741,11 @@ aNi aNi aNi aNi -aOt +xXw arT aNc aNc -aRF +qTT aWi aNc aNc @@ -46789,7 +46753,7 @@ aNc aNc aNc aNc -aUP +geH aNc aNc aNc @@ -46991,7 +46955,7 @@ aFv aFv aoD aNi -aOt +xXw aNj aNi aNi @@ -47063,7 +47027,7 @@ wog wog wog wog -sLy +xjX aao aao aao @@ -47107,14 +47071,14 @@ pSa pSa sOi tsc -evX +hUr rxh rsv vHw vHw vTh rsv -mqX +cCV rxh rxh rxh @@ -47275,11 +47239,11 @@ aao aao kvp wog -sLy +xjX wog wog -gYt -gYt +uXC +uXC feS aao aao @@ -47427,7 +47391,7 @@ aoD aNi aNi aNi -aOt +xXw aNj arT aNc @@ -47435,16 +47399,16 @@ aNc aNc asl aWT -aXy +uYf asl aWT -aXy +uYf asl aWT -aXy +uYf asl aWT -aXy +uYf aoD aao aao @@ -47495,8 +47459,8 @@ wog wog iGK wog -gYt -gYt +uXC +uXC wog aao aao @@ -48149,7 +48113,7 @@ aao aao kvp wog -sLy +xjX wog wog wog @@ -48512,7 +48476,7 @@ aEu aEu aEu aEu -fjF +swo aEu aQF aQG @@ -48632,7 +48596,7 @@ fnO fnO fnO pJX -eSu +kPF wCo aao aao @@ -49020,7 +48984,7 @@ iGK iGK wog wog -sLy +xjX wog wog kvp @@ -49062,11 +49026,11 @@ dvB nCX uHQ uHQ -jVN -iLs -jVN -bII -iLs +ykr +dfn +ykr +imp +dfn aao aao aao @@ -49716,7 +49680,7 @@ aao aao rsv rsv -mqX +cCV rsv rsv aao @@ -49855,8 +49819,8 @@ ayf bsa ayf axX -maD -boD +pMU +iEZ axX bpx ufD @@ -49891,7 +49855,7 @@ aao aao fus kgx -qEs +fkk hEE wBi uxx @@ -50072,8 +50036,8 @@ ayf ayf ayf azb -hhK -sCt +bSk +unZ azb bpx ufD @@ -50289,8 +50253,8 @@ aFc aFc aFc azb -hhK -sCt +bSk +unZ azb bpx ufD @@ -50366,8 +50330,8 @@ aao aao pJX wCo -jVN -jVN +ykr +ykr wVQ rsv rsv @@ -50506,8 +50470,8 @@ aFc aFc bme azb -hhK -sCt +bSk +unZ azb bpx ufD @@ -50583,8 +50547,8 @@ aao aao wCo wCo -hyv -jVN +uNM +ykr wFO rsv rsv @@ -50723,8 +50687,8 @@ aFc aFc bme azb -hhK -sCt +bSk +unZ azb bpy ufD @@ -50940,8 +50904,8 @@ aFc aFc bme azb -hhK -sCt +bSk +unZ azb bme bqe @@ -51018,7 +50982,7 @@ aao rsv eql wCo -vYw +ydV tqi rsv aao @@ -51157,8 +51121,8 @@ aFc bme bme azb -hhK -sCt +bSk +unZ axX azB axX @@ -51374,16 +51338,16 @@ bme bme bme azb -hhK -mSS -btr -kVT +bSk +deB +itq +cno azb -bqI -bre -maH -hdc -bsJ +icn +dzh +odH +xYA +mdR axX bsI bme @@ -51591,16 +51555,16 @@ bme bme bme azb -hhK -nVq -nVq -sCt +bSk +iHl +iHl +unZ azb -hhK -nVq -nVq -nVq -sCt +bSk +iHl +iHl +iHl +unZ azb bme bme @@ -51808,16 +51772,16 @@ bme bme bme azb -hhK -nVq -nVq -nVq -bqf -nVq -nVq -tTI -rzb -bsK +bSk +iHl +iHl +iHl +qRI +iHl +iHl +soL +jmM +rqO axX bme bme @@ -52025,16 +51989,16 @@ bme bme bme azb -hhK -nVq -nVq -sCt +bSk +iHl +iHl +unZ azb -hhK -nVq -tTI -rzb -bsL +bSk +iHl +soL +jmM +pjO azb bme bpx @@ -52242,16 +52206,16 @@ bme bme bme azb -fLl -btu -btu -gdx +fJs +kkc +kkc +jkm azb -fLl -nVq -btu -nVq -bsM +fJs +iHl +kkc +iHl +hxF axX bpx bpx @@ -52465,9 +52429,9 @@ azB axX axX axX -brf +vdA ayr -brf +vdA axX axX bpx @@ -52676,15 +52640,15 @@ axX axX axX axX -boj -boG -boj +nfN +qwP +nfN axX -jYF -sap -nVq -brI -sCt +mSs +jVS +iHl +dVF +unZ azb bpx bpx @@ -52889,19 +52853,19 @@ aZu aZu beA axX -bmf -bmf -bmf -bnQ -ygP -cud -bpe +cfQ +cfQ +cfQ +cPH +qAk +ngm +jeX axX -jYF -sap -nVq -tTI -sCt +mSs +jVS +iHl +soL +unZ azb kdh bpx @@ -53105,20 +53069,20 @@ bfz aZO aZu bli -bsX -bmg -bmO -vdl -vdl -rhP -tTI -sCt +fcg +hCU +gdz +emI +emI +hvg +soL +unZ axX ayr ayr -brg -tTI -sCt +cCb +soL +unZ axX axX axX @@ -53322,22 +53286,22 @@ bfB bbe bbe blj -dvC -bmh -bmP -bnq -qGY -qGY -boH -bpf -bpz -lck -bqJ -tTI -brJ -niQ -bsN -bsZ +mFN +ooK +rRu +gJu +sXH +sXH +sFr +cmt +iyx +goL +caz +soL +dSL +iNc +plN +pVZ axX bpx bpx @@ -53540,21 +53504,21 @@ aZu aZu aZr axX -bmi +oOY ayr ayr ayr ayr -boI -bor +duc +rFg ayr -tTI -tTI -tTI -brK -cla -tTI -sCt +soL +soL +soL +kJU +xmY +soL +unZ axX bpx bpx @@ -53757,23 +53721,23 @@ aZO aZu aZr axX -bmj +lmY bmQ -tju +vPC bnR -ewv -bYW -bpO -bpA -eSm -bqK -kNK -slG -bqN -tTI -bta +cru +gsh +wEf +gwp +hgE +iaf +vOz +pvZ +wQO +soL +jiF azb -nLw +qrT bpx bpx aao @@ -53983,14 +53947,14 @@ ayr ayr ayr ayr -nPz -bri -nVq -bsm -nVq -btb +vKi +nJJ +iHl +hur +iHl +cIX azb -nLw +qrT bpx bpx aao @@ -54000,7 +53964,7 @@ wog wog wog wog -sAG +yej wog oQI wog @@ -54191,23 +54155,23 @@ aZu aZu bdN axX -bml -bmR -bnr -bnr -bok -bnr -bpi -kVT +kFt +fRF +wrq +wrq +vMS +wrq +hLr +cno ayr -nPz -nVq -brL -nVq -nVq -btc +vKi +iHl +ceG +iHl +iHl +lYB axX -nLw +qrT bpx bpx aao @@ -54408,36 +54372,36 @@ aZu aZu bll axX -bmm -bmS -tTI -tTI -iQC -boK -nVq -cKu +sTH +cTg +soL +soL +gAW +jSB +iHl +pPi ayr -nPz -brj -brM -aMB -gwg -btd +vKi +dQr +eSk +vVk +gAq +jPv axX -nLw -nLw +qrT +qrT aao aao aao -giB -giB -giB -giB -giB -giB -giB -giB -giB +cjk +cjk +cjk +cjk +cjk +cjk +cjk +cjk +cjk aao aao aao @@ -54625,16 +54589,16 @@ aZu aZu blm axX -mhZ -pgk -btu -bnS -tTI -boL -bpj -bpC +hXe +eXY +kkc +sHX +soL +dTL +dmH +jEN ayr -bqL +gqi ayZ ayZ ayZ @@ -54649,7 +54613,7 @@ axX axX axX axX -wwT +usx axX axX axX @@ -54845,34 +54809,34 @@ axX ayr ayr ayr -bnT -bnT +tly +tly ayr ayr ayr ayr -cla -btr -lck -kVT +xmY +itq +goL +cno ayZ -bsP +juc ayZ -ouh -lck -jXJ -btr -sDO -pOg -saX -pVv -saX -eIN -lck -btr +tqo +goL +rXT +itq +vtS +yfL +ugQ +gaJ +ugQ +lKU +goL +itq ayZ -btr -kVT +itq +cno axX axX aao @@ -55062,35 +55026,35 @@ axX bmn bmT ayr -nzN -tTI -boM +lCS +soL +xBo ayr -bpD -btr -bqM -rnV -nVq -tTI -nIi -bte -nIi -btu -gwg -gwg -gwg -tTI -btu -gwg -gwg -tTI -btu -btu -ndw -fUp -nVq -sCt -wpn +pZc +itq +dGo +cMy +iHl +soL +rym +mdp +rym +kkc +gAq +gAq +gAq +soL +kkc +gAq +gAq +soL +kkc +kkc +abd +nsE +iHl +unZ +eKt axX aao wog @@ -55278,34 +55242,34 @@ asK axX bmn bmU -bns -hhK -tTI -boN +lXp +bSk +soL +rWX ayr -bpE -nVq -cla -nVq -nVq -gfX +mvd +iHl +xmY +iHl +iHl +hZY axX axX axX -iig -iig -iig -mqh -fEv -iig -iig +qxQ +qxQ +qxQ +wov +xRz +qxQ +qxQ ayZ -fEv -ueL -ueL +xRz +sUz +sUz ayZ axX -fEv +xRz ayZ axX axX @@ -55496,34 +55460,34 @@ axX bmn bmV ayr -bnV -tTI -cKu +jtg +soL +pPi ayZ -bpF -slG -bqN -nVq -nVq -uDA -bsP -bsP +fsW +pvZ +wQO +iHl +iHl +emL +juc +juc axX -hYB -iAI -iAI -dsy -iSz -hYB -iAI -wVB -kka -pog -iAI -wVB +nwd +knI +knI +egH +oll +nwd +knI +pmz +jKC +mBT +knI +pmz ayZ -ndw -sCt +abd +unZ axX aao aao @@ -55713,34 +55677,34 @@ axX ayr ayr ayr -xAX -tTI -cKu +oCB +soL +pPi ayZ -nPz -tTI -tTI -tTI -dsm -mSS -mij -kVT -dhN -duA -iNR -ykR -iaC -iSz -duA -iNR -iaC -kka -duA -ykR -iaC +vKi +soL +soL +soL +oLf +deB +hRN +cno +vrr +bUt +wAM +iOm +dqd +oll +bUt +wAM +dqd +jKC +bUt +iOm +dqd ayZ -hhK -sCt +bSk +unZ axX aao wog @@ -55927,37 +55891,37 @@ asK asK asK axX -dWl -btr -btr -bnW -slG -ksO -bpk -bpM -slG -slG -slG -slG -slG -dWd -sCt -dhN -duA -iNR -iNR -iaC -iSz -duA -iNR -iaC -kka -duA -iNR -iaC +rwd +itq +itq +iKx +pvZ +qcU +fqF +ouB +pvZ +pvZ +pvZ +pvZ +pvZ +jug +unZ +vrr +bUt +wAM +wAM +dqd +oll +bUt +wAM +dqd +jKC +bUt +wAM +dqd ayZ -hhK -sCt +bSk +unZ axX aao wog @@ -56144,39 +56108,39 @@ bjx bjx bjw axX -lmi -nVq -tTI -tTI -tTI -cKu +lMx +iHl +soL +soL +soL +pPi ayZ -bpH -kmx -gwg -gwg -brO -gwg -cla -gdx -dhN -nug -yjV -ykR -iaC -iSz -duA -iNR -iaC -kka -duA -ykR -iaC +rKx +dtt +gAq +gAq +rjI +gAq +xmY +jkm +vrr +hGv +vYM +iOm +dqd +oll +bUt +wAM +dqd +jKC +bUt +iOm +dqd ayZ -hhK -sCt +bSk +unZ axX -uVn +pNy wog wog wog @@ -56361,39 +56325,39 @@ bjy bjB blq axX -bmp -nVq -tTI -bnX -tTI -aLP +qaC +iHl +soL +qsh +soL +xKO ayZ -bpI -cKu +whG +pPi axX axX axX axX -uaS +ptj axX axX axX -duA -iNR -iaC -iSz -nug -rUN -oIK -kka -duA -iNR -iaC +bUt +wAM +dqd +oll +hGv +oeO +mhe +jKC +bUt +wAM +dqd ayZ -hhK -sCt +bSk +unZ axX -dQw +syG wog qgY wog @@ -56578,39 +56542,39 @@ bjy bkp blq axX -bmq -nVq -bnt -tTI -nVq -boR +okj +iHl +sBC +soL +iHl +eYT ayr -nPz -sCt +vKi +unZ axX -brn -jDT -vTt -cla -btr -jTk -dhN -duA -ykR -iaC -pWs -vVz -vVz -vVz -jxA -duA -ykR -iaC -ueL -nzN -sCt -tcP -dQw +nCm +iUr +vfA +xmY +itq +wxl +vrr +bUt +iOm +dqd +pxm +eZZ +eZZ +eZZ +rYm +bUt +iOm +dqd +sUz +lCS +unZ +blO +syG wog wog wog @@ -56795,39 +56759,39 @@ bkp bjA blq axX -trr -tTI -tTI -nVq -nVq -wyF +okb +soL +soL +iHl +iHl +nOe ayZ -bpH -cKu +rKx +pPi axX -bro -brP -slG -bqN -btt -uGs -gmm -duA -iNR -iaC -gUD -btr -jxS -btr -oWp -duA -iNR -iaC -ueL -nzN -cKu -tcP -rvS +hEy +pbu +pvZ +wQO +lvZ +vUU +dkg +bUt +wAM +dqd +mYz +itq +exb +itq +xmv +bUt +wAM +dqd +sUz +lCS +pPi +blO +rmf wog wog wog @@ -57012,39 +56976,39 @@ bjA bjA blq axX -bms -gwg -bnu -bnY -hcH -boS +uEU +gAq +hxq +sLM +wxy +tzo ayZ -btK -tTI -bqP -fXm -wMM -gVl -tTI -nVq -qUF -dhN -duA -ykR -iaC -dBU -guu +qte +soL +jmC +spL +mTy +kxJ +soL +iHl +pFx +vrr +bUt +iOm +dqd +eeW +uSs axX -cNb -nuz -duA -ykR -iaC +gUl +ibC +bUt +iOm +dqd ayZ -hhK -cKu +bSk +pPi axX -rvS +rmf wog wog wog @@ -57236,32 +57200,32 @@ ayr ayr ayr ayr -bpK -bqk +gfO +cdo axX -wiK -fgE -sap -tTI -btt -nmU -dhN -duA -iNR -iaC -xXq -btu -uJj -gwg -voG -duA -iNR -iaC +xzx +lny +jVS +soL +lvZ +iYz +vrr +bUt +wAM +dqd +hGt +kkc +vcJ +gAq +cYF +bUt +wAM +dqd ayZ -hhK -sCt +bSk +unZ axX -rvS +rmf wog wog trk @@ -57446,39 +57410,39 @@ bkq bjH blq axX -bmt -btr -fOK -pKP -egL +lBR +itq +hbJ +rft +aNF ayZ -bpl -bpL -cKu +jOR +wpp +pPi axX -jAJ -brR -nnU -nVq -btu -gHV -dhN -duA -ykR -iaC -pWs -vVz -vVz -vVz -jxA -duA -ykR -iaC +eiW +sQZ +jte +iHl +kkc +ucn +vrr +bUt +iOm +dqd +pxm +eZZ +eZZ +eZZ +rYm +bUt +iOm +dqd ayZ -nzN -sCt +lCS +unZ axX -rvS +rmf wog jXX pYt @@ -57509,7 +57473,7 @@ aao aao sqj kNc -jcR +ovo jrD ydd aao @@ -57663,37 +57627,37 @@ bjA bjH blq axX -bmu -nVq -bnw -bnZ -boq +sOP +iHl +hRI +uSA +xBW azE -hhK -cla -bql +bSk +xmY +sMT axX axX axX axX -tzJ +fPK axX axX axX -duA -iNR -iaC -iSz -hYB -iAI -wVB -kka -duA -iNR -iaC +bUt +wAM +dqd +oll +nwd +knI +pmz +jKC +bUt +wAM +dqd ayZ -nzN -sCt +lCS +unZ axX aao aao @@ -57880,37 +57844,37 @@ bjA bjH blr axX -aLJ -bmW -bnx -boa -bor +aQx +wxT +eQd +wyc +rFg ayZ -hhK -cla -bZJ -btr -btr -jMn -btr -tTI -kVT -dhN -hYB -ojD -ykR -iaC -iSz -duA -iNR -iaC -kka -duA -ykR -iaC -iig -nzN -sCt +bSk +xmY +kPQ +itq +itq +kbK +itq +soL +cno +vrr +nwd +qFe +iOm +dqd +oll +bUt +wAM +dqd +jKC +bUt +iOm +dqd +qxQ +lCS +unZ axX aao aao @@ -58097,37 +58061,37 @@ bjA bjH blr axX -bmw -bmX -bAo -tTI -bos -boU -slG -cZB -cOa -lEi -lEi -tTI -nVq -tTI -sCt -dhN -duA -iNR -iNR -iaC -iSz -duA -iNR -iaC -kka -duA -iNR -iaC +xJu +kiA +xvY +soL +jij +ioB +pvZ +hzs +eBC +ykC +ykC +soL +iHl +soL +unZ +vrr +bUt +wAM +wAM +dqd +oll +bUt +wAM +dqd +jKC +bUt +wAM +dqd ayZ -hhK -sCt +bSk +unZ axX aao aao @@ -58314,37 +58278,37 @@ bjA bjH blr axX -bmx -rdr -bnz -bob -gdx +pbc +jAO +wZi +cyk +jkm ayZ -bcg -cla -bpm -izb -rYr -tTI -iQC -nVq -vWm -dhN -duA -iNR -ykR -iaC -iSz -duA -iNR -iaC -kka -duA -ykR -iaC +eXh +xmY +gqC +kqq +vuk +soL +gAW +iHl +piN +vrr +bUt +wAM +iOm +dqd +oll +bUt +wAM +dqd +jKC +bUt +iOm +dqd ayZ -hhK -sCt +bSk +unZ axX aao aao @@ -58443,7 +58407,7 @@ aao aao aao alF -buB +ahS acp afl afR @@ -58537,31 +58501,31 @@ ayZ ayr ayr ayr -ktY -cla -vCf -mlV -lqo -nVq -eGM -btu -dyH +mtY +xmY +bRo +doo +tTV +iHl +ilZ +kkc +lfJ axX -nug -rUN -rUN -oIK -iSz -nug -rUN -oIK -kka -nug -rUN -oIK +hGv +oeO +oeO +mhe +oll +hGv +oeO +mhe +jKC +hGv +oeO +mhe ayZ -slC -sCt +xsz +unZ axX aao aao @@ -58659,7 +58623,7 @@ aao aao aao aao -acP +kIY asc acp afm @@ -58747,20 +58711,20 @@ bkb bkb bks bjw -bsX -bmy -bmZ -bmZ -mPK -lck -boV -slC -bpN -bqo -bqo -sBm -tTI -wFL +fcg +lTd +mum +mum +uhy +goL +edZ +xsz +pnl +kqF +kqF +lJx +soL +kHt axX axX axX @@ -58768,16 +58732,16 @@ ayZ ayZ ayZ ayZ -fEv +xRz ayZ -sNP -ueL -gPh -sNP +nrc +sUz +tsq +nrc ayZ ayZ axX -fEv +xRz ayZ axX axX @@ -58806,13 +58770,13 @@ jrD phi jrD jrD -iQG +fmv phi jrD jrD jrD jrD -iml +cKE oxp jrD jrD @@ -58964,39 +58928,39 @@ bkc bkc bkc blt -xDW -bmz -bna -bmz -boc -bmz -xDW -eSm -jXf -eSm -ebr -bpO -bpf -tTI -nIi -gZc -nIi -btr -lck -lck -lck -tTI -lck -lck -ouh -tTI -btr -btr -slC -fUp -nVq -sCt -wpn +esL +fjy +sQD +fjy +rIM +fjy +esL +hgE +lIr +hgE +pHB +wEf +cmt +soL +rym +mle +rym +itq +goL +goL +goL +soL +goL +goL +tqo +soL +itq +itq +xsz +nsE +iHl +unZ +eKt axX aao aao @@ -59017,7 +58981,7 @@ jrD jrD jrD jrD -jcR +ovo jrD jrD jrD @@ -59037,7 +59001,7 @@ phi phi jrD phi -yfz +lSO phi phi sus @@ -59191,28 +59155,28 @@ axX axX axX axX -wYE -lTM -bqM -pMi +eNt +rIo +dGo +gWF ayZ -bsP +juc ayZ -btu -iFa -snv -btu -gFR -tvH -gML -tvH -gML -gFR -btu -btu +kkc +qtp +qcN +kkc +eQU +qWA +kdG +qWA +kdG +eQU +kkc +kkc ayZ -btu -gdx +kkc +jkm axX axX aao @@ -59409,9 +59373,9 @@ bjx bjw axX axX -bru -bqM -sDZ +mTm +dGo +xng axX axX axX @@ -59467,7 +59431,7 @@ rnc rnc rnc rnc -hAj +sZl rnc rnc jrD @@ -59626,14 +59590,14 @@ bjA blu bjw axX -brv -bos -szy -vbp -vbp -vbp -vbp -tub +kde +jij +vEw +jnW +jnW +jnW +jnW +eBk axX bjY bjA @@ -59663,7 +59627,7 @@ jrD jrD jrD sqj -jcR +ovo jrD jrD rnc @@ -59695,7 +59659,7 @@ vqY aao cOl jrD -jcR +ovo jrD jrD jrD @@ -59843,14 +59807,14 @@ bjA bjA blq axX -brw -btu -pRG -brO -bti -idM -ndw -bor +gqI +kkc +gPe +rjI +uYI +oGc +abd +rFg axX bjY bjA @@ -60066,8 +60030,8 @@ axX axX axX axX -maD -btH +pMU +eNP axX bjY bjA @@ -60281,10 +60245,10 @@ bjx bjx bjw ayr -tdN -maH -slC -bor +fVK +odH +xsz +rFg ayr bjY bkr @@ -60310,8 +60274,8 @@ aAp aAp aAp aAp -byf -byf +wRi +wRi aAp aAp aBy @@ -60498,10 +60462,10 @@ bjH bjy blq ayr -bmq -bqo -nVq -btJ +okj +kqF +iHl +hix ayr bjw bun @@ -60551,7 +60515,7 @@ bCx aCe dyv bDk -dyv +wCU aCe dyv bDk @@ -60714,12 +60678,12 @@ bkr bjy bjy blq -bsX -nVq -nVq -nVq -uBi -bua +fcg +iHl +iHl +iHl +xbM +tfi buo buo buJ @@ -60735,7 +60699,7 @@ qLV qLV qLV qLV -bwc +juB qLV bwG bwL @@ -60756,7 +60720,7 @@ bAh bAg aCe bBc -bBr +xhe bBs aKi bBS @@ -60770,12 +60734,12 @@ dyv dyv dyv aCe -gdN +dyv dyv dyv aCe dyv -bEg +otR bEk bEr phi @@ -60931,12 +60895,12 @@ bjy bjy bjy blq -maD -nVq -nVq -iQC -cla -maD +pMU +iHl +iHl +gAW +xmY +pMU bjw bjw bjx @@ -60946,7 +60910,7 @@ vpY jBq vpY kdr -bvQ +qxH eAU kdr kdr @@ -60961,7 +60925,7 @@ bxd bxC bxc bxV -byh +etP byx byg aBE @@ -60979,7 +60943,7 @@ bBK aCe bCb qTC -pvg +nvV aKi aPZ aCe @@ -60998,7 +60962,7 @@ vvj tRI jrD jrD -jcR +ovo jrD iRG jrD @@ -61149,10 +61113,10 @@ bkb bkb bjw ayr -btj -nVq -nVq -bor +nYA +iHl +iHl +rFg ayr bjw bjY @@ -61173,7 +61137,7 @@ kdr kdr aAp bwN -bxe +rhi bxd bxB bww @@ -61182,7 +61146,7 @@ bxc byy byH aBE -bzq +dQl ebZ aAp aBy @@ -61195,7 +61159,7 @@ aKi bBK aCH bCc -cvi +qTC bCy eHA bCM @@ -61212,7 +61176,7 @@ aCH vty fin vvj -jcR +ovo jrD jrD jrD @@ -61354,8 +61318,8 @@ axr axr axr awp -gad -bnA +kox +xMR awp awp awp @@ -61366,10 +61330,10 @@ awp awp awp ayr -btk -nVq -nVq -bor +vHx +iHl +iHl +rFg ayr bjw bjY @@ -61566,27 +61530,27 @@ aMg aMg aMg awp -bkD -blx -aZV -bmC -bnb -bnB -bmF -bku -bmF -bmF -bpP -fBo -nEP -brx -brU -aCO +oNS +quw +gcE +qcd +fkQ +dyT +qeV +rvV +qeV +qeV +uGd +eAK +kZX +jhH +xpf +xrA ayr -btk -nVq -btA -bor +vHx +iHl +wVS +rFg ayr bjw bjY @@ -61620,7 +61584,7 @@ bzp ebZ aAp bAh -bAx +rOf bAO aCe bBd @@ -61637,11 +61601,11 @@ kyz aKi aKi aKi -bDr +rOp aKi aKi aKi -lUd +shG aKi qTC aKi @@ -61782,28 +61746,28 @@ dzY dWg dWg bke -bku -bmF -wtC -blT -bmD -pPo -bpp -boe +rvV +qeV +raL +eVK +sjy +eEx +iNQ +onG awp awp awp -bpQ -wvK -bqT -wvK -wvK -wvK -bsY -slC -nVq -nVq -bor +thl +sZD +dut +sZD +sZD +sZD +iLX +xsz +iHl +iHl +rFg ayr bjw bjY @@ -61819,7 +61783,7 @@ ydn epe kdr kdr -bvZ +mkJ kdr kdr aAp @@ -61842,23 +61806,23 @@ bAP aCe bBc aKi -bBr +xhe bBK aCH bCf aKi xZf qTC -pvg +nvV bCV qTC qTC qTC -nXw +pYa qTC qTC qTC -nUK +jLL qTC aKi aKi @@ -61869,7 +61833,7 @@ jrD jrD oxp jrD -jcR +ovo jrD jrD jrD @@ -62000,27 +61964,27 @@ aFM aFM aFM awp -bkE -bly -bly -bly -wvK -fBo -boe +bIf +jNa +jNa +jNa +sZD +eAK +onG ayF -boW -lTi -bpR -bnF -bnF -bry -bnF -bof -dvC -eSm -eSm -btB -btN +lyk +ltl +oSD +ndV +ndV +ubp +ndV +uIZ +mFN +hgE +hgE +ybQ +cjx ayr bjw bjY @@ -62042,7 +62006,7 @@ kdr aAp bwP bxh -bxt +mqS bxF bxF bxF @@ -62071,17 +62035,17 @@ bCW bDc qTC bDc -kxi +jwO bDc qTC bDc -bDS +pEN wni aKi bDc fin ibP -jcR +ovo jrD jrD jrD @@ -62217,22 +62181,22 @@ auX erf aHF awp -bkG -wvK -wvK -tKr -vin -fBo -boe +ivc +sZD +sZD +wPF +tcZ +eAK +onG ayF -orZ -lTi -bpS -wvK -wvK -brz -brV -boe +sHb +ltl +jmD +sZD +sZD +pLh +xBB +onG ayr ayr ayr @@ -62280,9 +62244,9 @@ bBt bBL aCH aPg -uGz -taf -uGz +wGP +ooq +wGP bCN aCL bDd @@ -62434,22 +62398,22 @@ gpR auX bkf awp -bkH -blA -wtG -jRn -bnd -wtG -wVw +sCR +oaD +jxK +bXZ +gHQ +jxK +bVc ayF -boW -lTi -bpo -fBo -bqV -brA -brW -urn +lyk +ltl +sah +eAK +hgA +egj +tfB +tZe awp bjw bjx @@ -62467,7 +62431,7 @@ meT vfI wZC ydn -bvW +cqb kdr kdr kdr @@ -62480,7 +62444,7 @@ bDi bDi bxL bDi -byk +pJd bDi byL aAp @@ -62661,8 +62625,8 @@ awM awM awp awp -yhV -bnA +pAc +xMR awp awp awp @@ -62694,7 +62658,7 @@ aAp bwR bxh bxv -bxG +dCB bxF bxF bxv @@ -62702,10 +62666,10 @@ byB byM aBy bzp -bzA +fjE aBE byM -ycP +xUe rTq aBE bww @@ -62723,7 +62687,7 @@ bDe fWw fWw aCe -dPs +bDe fWw fWw aCe @@ -62876,14 +62840,14 @@ bkI bkI bkI awM -boX -bpn -bpp -fBo -bnb -brB -bkN -bsB +pio +pJh +iNQ +eAK +fkQ +ljv +mHe +brH awp bjY bjA @@ -62904,7 +62868,7 @@ ydn epe kdr kdr -bwa +iUC kdr kdr aAp @@ -62926,13 +62890,13 @@ bAA bDi aBE gOf -bBv +vWl bww bBN aCL bCj aKi -bCA +dKe bCG bCP aCe @@ -62958,7 +62922,7 @@ aao aao jrD jrD -jcR +ovo aao aao aao @@ -63093,14 +63057,14 @@ bne bkJ bkJ awM -boY -bpo -bpU -bqv -bpU -wvK -wvK -bsC +qDw +sah +pco +wZK +pco +sZD +sZD +gZf awp bjY bjA @@ -63148,20 +63112,20 @@ bww bBO aCL bCk -bCr -taf -bCr +jAt +ooq +jAt bCQ aCe fWw -bDl +hyj fWw aCe fWw cxi fWw aCe -dPs +bDe cxi bDe aCe @@ -63310,14 +63274,14 @@ awM awM awM awM -uTO -bpo -bpV +qEC +sah +sNk bkU -bqX -wvK -brY -bsD +cIa +sZD +sBl +tNk awp bjY bjA @@ -63519,22 +63483,22 @@ aHF aHF aHF awp -bkK -blB -tIv -nwB -bnf -bnf -bnf -bou -qHc -bpo -bpU +xsr +qBg +wus +rnx +upD +upD +upD +lqv +kUX +sah +pco bkU -bpU -wvK -wvK -bsE +pco +sZD +sZD +oEk awp bjY bjA @@ -63551,7 +63515,7 @@ jBq vpY kdr eAU -bvQ +qxH kdr kdr kdr @@ -63564,7 +63528,7 @@ bwU bwU bwU aBA -oKc +qGZ bxY bxY bxY @@ -63574,14 +63538,14 @@ qZo bzT bzT bAB -sEi +djS bxY bxY xpl bxY bxY bBT -bCl +cfJ bzT qZo bxY @@ -63593,7 +63557,7 @@ bCX bDs bCX bCX -iDW +qvE bDT bDW bDW @@ -63688,7 +63652,7 @@ amn aBm aBW amn -ooP +iWf aEN aFR amn @@ -63736,22 +63700,22 @@ auX erf aHF awp -bkK -bBg -wvK -wvK -wvK -bnE -wvK -wvK -boZ -bpo -bpV +xsr +iYs +sZD +sZD +sZD +cZg +sZD +sZD +eiE +sah +sNk bkU -bqX -fBo -brZ -bsF +cIa +eAK +fhm +xuu azG btn bjA @@ -63772,26 +63736,26 @@ ydn epe kdr kdr -bvZ +mkJ kdr kdr bwI bwV -bxl +bZs bwV bwV bwI -csC -bxA +eng +xTk bxo byP bzb bzb bzD -bzU +vZl bxn bAC -oqM +etY bAZ bzb bzb @@ -63803,20 +63767,20 @@ bzb bzD bxn bCR -bCY +qgx bBU bBU bDn qwx qwx bDG -fLA -bCY +kYA +qgx xzs bEh bEh bEh -bEw +rnr bEA bEh bEJ @@ -63953,22 +63917,22 @@ gpR auX aHF awp -bkL -qHc -fBo -bly -bng -bnF -bof -bov -whE -bpp -bpU -bqw -bpU -brC -nlJ -bsG +fia +kUX +eAK +jNa +jga +ndV +uIZ +dnu +ugu +iNQ +pco +jGW +pco +qWG +ccG +lxd azG btn bjA @@ -63998,7 +63962,7 @@ bwW bxx bwW aBA -ufB +epS bya bya byQ @@ -64008,15 +63972,15 @@ bya bya bya iDL -wfx +pya bBa bxo -bBA +cmc qZo bxo bBV xpl -bCs +pPY xpl xpl lGt @@ -64024,10 +63988,10 @@ ioS ioS ioS ioS -bDt +dOz sbQ ioS -vFS +xHX sbQ bDX aDX @@ -64170,22 +64134,22 @@ gpR auX aHF awp -bkM -fBo -blV -bmF -bnh -wvK -wvK -bly -bpa -bpq -wvK -wvK -fBo -wvK -qqw -bsG +luZ +eAK +uNy +qeV +jrV +sZD +sZD +jNa +tzi +jPA +sZD +sZD +eAK +sZD +xmK +lxd azG bjY bjA @@ -64244,22 +64208,22 @@ bCZ bCZ bDz bDH -ctT +bXH sbQ knN aDv xfW pbs -bEx +xfW xfW aDv bEK -bEO +jgT aDY aao aao jrD -jcR +ovo jrD jrD jrD @@ -64387,22 +64351,22 @@ gpR auX aHF awp -qeK -ccP -blW -ccP -bpo -bnH -yar -box -yar -iyd -iyd -eKU -yar -yar -aZJ -bsG +wzn +rAa +hqH +rAa +sah +tLU +lzF +cLM +lzF +tPa +tPa +nCx +lzF +lzF +tFh +lxd awp bjY bjA @@ -64608,7 +64572,7 @@ awp awp awp awp -bnj +hDG awp awp ayF @@ -64641,7 +64605,7 @@ epe kdr bvY kdr -bwb +qzP kdr aBw bwY @@ -64657,7 +64621,7 @@ bzc aBw bzE xpl -bAn +uTZ xpl bAS aBv @@ -64821,12 +64785,12 @@ auX erf aHF awp -bkO -blC +qZH +yjA awp -bmG -bpo -lYH +hBg +sah +lWc awp bWk bWk @@ -64854,7 +64818,7 @@ meT meT meT fZm -bvX +xjw kdr kdr kdr @@ -64865,12 +64829,12 @@ bwZ bxo bxo xpl -bxP +ygL bxo byp aBw byT -bzd +rBM aBv bzF bEB @@ -64897,7 +64861,7 @@ bDB kqS aDX bDU -fnh +sIl aDX kqS kqS @@ -64912,7 +64876,7 @@ aao jrD jrD jrD -jcR +ovo jrD aao aab @@ -65038,12 +65002,12 @@ jdj aHF aHF awp -bkE -hsF +bIf +tCA awp -bmG -bpo -bnI +hBg +sah +ton awp bWk bWk @@ -65103,14 +65067,14 @@ bBW kfY bxn bzK -hNg +csi xpl xpl kKB aDX bDp bDv -wFP +eLG bDv bDO qwx @@ -65118,7 +65082,7 @@ uWo bDO bDv bDv -wFP +eLG bEC aDX bEK @@ -65250,17 +65214,17 @@ asv asv aHF aHF -aHF +cDg asv awf awf awp -bkE -blC +bIf +yjA awp -bmG -bpo -boe +hBg +sah +onG awp bWk bMf @@ -65291,13 +65255,13 @@ ihW epe kdr ihW -bwb +qzP bvY kdr aBw bxa xpl -bxA +xTk bxo bxo byb @@ -65307,7 +65271,7 @@ byT bzf aBv bzH -bzX +vWI bxn bxn bAT @@ -65466,17 +65430,17 @@ bfe bgI asv aHF -aHF -aHF +cDg +iFR asv bjJ bgx awp -bkP +xXx awp awp awp -bnj +hDG awp awp bWk @@ -65530,7 +65494,7 @@ bAH gVm aBv bBl -bBB +bMk xpl bBP bBX @@ -65682,19 +65646,19 @@ bgd bgd aLf asH -aHF -aHF -aHF +cDg +cDg +iFR asv beI bgx -bkw -blX -blD -cGT -bmH -bnl -pBv +gTf +kJH +cKp +jZP +jAy +xLZ +scM ayF vjc bpc @@ -65772,7 +65736,7 @@ aDX aDX aDX aDX -bEL +fWQ bDN aDY aao @@ -65899,19 +65863,19 @@ bge bgs bfM avr -bhT -aHF -aHF +sse +iFR +iFR asv beI bgx awp -bBg -wvK -blY -wvK -bnm -bnK +iYs +sZD +cIx +sZD +eoq +dep ayF bWk kdf @@ -65996,7 +65960,7 @@ aao aao aao jrD -jcR +ovo jrD jrD aao @@ -66116,19 +66080,19 @@ bgc bgc bgK asH -aHF -aHF -aHF +iFR +nbR +aWJ asv bjK aZF -bkx -bmJ -blE -blZ -bly -bnn -bnL +jmg +pBP +nms +uOQ +jNa +lKE +erp ayF bWk bWk @@ -66190,7 +66154,7 @@ xpl xpl xpl bxo -bDa +eKj xpl aDX kqS @@ -66198,7 +66162,7 @@ kqS kqS kqS aDX -bDV +jLo elM aDX kqS @@ -66333,19 +66297,19 @@ bgc bgt bgL asv -bhU -aHF -rHD +fHP +aKt +gZX asv bjL bkg awp -bBg -bly -bma -pPo -pPo -bnM +iYs +jNa +sAK +eEx +eEx +kGT ayF bWk bWk @@ -66385,15 +66349,15 @@ aao aao aBv bxT -byc +uok byv aBA byT -bzd +rBM aBv bzL bzY -bAr +rpX bAI bAU aBv @@ -66401,7 +66365,7 @@ bBn xpl xpl xpl -bBZ +dcj bxo bxo bxo @@ -66412,14 +66376,14 @@ aBA aDX bDq bDv -bDC +eNs bDv bDO qwx uWo bDO bDv -wFP +eLG bDv bEC aDX @@ -66557,12 +66521,12 @@ asv bjL bgx awp -bkS -bly -bly -wvK -bno -bnN +qxn +jNa +jNa +sZD +nLP +nmh ayF uHE bMf @@ -66649,7 +66613,7 @@ aao jrD jrD jrD -jcR +ovo aao aab aaa @@ -66774,12 +66738,12 @@ aZF bjM bgx awp -dQZ -haT -bmb -gCx -bnp -bnO +kUp +orL +tnT +qPt +mfM +wSt awp bWk bMf @@ -66858,7 +66822,7 @@ bDA bEE aDX bEK -bER +iQP aDY aao aao @@ -67266,10 +67230,10 @@ bAJ bAV aBv bBp -bBC +jjl bBp bBp -bBC +jjl aBv bvP bvP @@ -67280,12 +67244,12 @@ aBv aao aDY bDx -bDE +vdQ fdy bDP ioS bEd -bEi +pFN bEo bEo bEo @@ -67375,7 +67339,7 @@ azc ako aAJ aBu -tPr +cYs anJ aEa aER @@ -67474,12 +67438,12 @@ aao aao aBv wXz -bzk +hmF bxo wXz xpl xpl -bAK +tkl bAW aBv bBp @@ -67490,7 +67454,7 @@ bBp aBv bvP bCE -bCJ +bvP bvP bvP aBv @@ -67507,7 +67471,7 @@ bDN bEv bDN bDN -fnh +sIl bCZ bDz aDY @@ -67663,7 +67627,7 @@ bMf uvZ uvZ aao -dov +qUR fOx fOx fOx @@ -67703,7 +67667,7 @@ bBp bBp bBp bBp -bBC +jjl aBv bvP bvP @@ -67917,7 +67881,7 @@ bAL bAX aBv bBp -bBC +jjl bBI bBp bBp @@ -67935,7 +67899,7 @@ aao aDY bDQ bDQ -bEe +huV bDQ bEp aDX @@ -68158,7 +68122,7 @@ bEq aDX bEz bEF -bEI +jQV bEN fdy aDY @@ -68166,7 +68130,7 @@ aao aao aao jrD -yfz +lSO jrD aao aao @@ -68344,8 +68308,8 @@ aBv aBv aBv aBv -bzP -bAd +vWz +qLi aBv aBv aBv @@ -68533,7 +68497,7 @@ ltu mPC fOx fOx -dov +qUR fOx fOx fOx @@ -68766,7 +68730,7 @@ aao aao aao jrD -jcR +ovo jrD jrD jrD @@ -68792,7 +68756,7 @@ aao aao aao tRI -iml +cKE oxp aao aao @@ -68808,7 +68772,7 @@ aao aao tRI jrD -jcR +ovo jrD jrD vqY @@ -69402,7 +69366,7 @@ aao fOx fOx fOx -kok +rCi fOx fOx fOx @@ -69426,7 +69390,7 @@ jrD jrD jrD jrD -oOk +lEB jrD jrD jrD @@ -69637,7 +69601,7 @@ jrD jrD jrD jrD -jcR +ovo jrD jrD jrD @@ -69685,7 +69649,7 @@ aao aao jrD jrD -jcR +ovo jrD jrD aao @@ -69827,7 +69791,7 @@ bes bes mzV pvp -xeN +dKI aao aao aao @@ -69840,7 +69804,7 @@ ujD ujD ujD ujD -nHQ +ddz ujD kBn aao @@ -69864,7 +69828,7 @@ jrD jrD cOl jrD -iml +cKE jrD jrD oxp @@ -69872,7 +69836,7 @@ jrD jrD jrD jrD -jcR +ovo jrD jrD jrD @@ -70075,7 +70039,7 @@ jrD jrD jrD jrD -jcR +ovo jrD jrD jrD @@ -70110,7 +70074,7 @@ aao aao aao tRI -yfz +lSO oxp aao aao @@ -70503,7 +70467,7 @@ aao oxp jrD jrD -jcR +ovo jrD jrD jrD @@ -70530,7 +70494,7 @@ aao aao aao jrD -hAj +sZl jrD jrD sus @@ -70551,7 +70515,7 @@ aao aao aao aao -jcR +ovo jrD jrD jrD @@ -70771,7 +70735,7 @@ jrD jrD jrD jrD -jcR +ovo jrD aao aab @@ -70973,7 +70937,7 @@ jrD jrD jrD jrD -jcR +ovo jrD jrD rnc @@ -71142,7 +71106,7 @@ fOx fOx kVS fOx -dov +qUR fOx fOx fOx @@ -71166,7 +71130,7 @@ aao tRI jrD jrD -nbi +kYl oxp jrD jrD @@ -71363,13 +71327,13 @@ fOx fOx fOx fOx -dov +qUR fOx -gOr +lYp jrD jrD jrD -jcR +ovo jrD jrD aao @@ -71582,7 +71546,7 @@ fOx fOx fOx fOx -gOr +lYp jrD jrD jrD @@ -71620,7 +71584,7 @@ jrD jrD jrD jrD -jcR +ovo jrD jrD jrD @@ -71799,7 +71763,7 @@ fOx fOx fOx fOx -gOr +lYp jrD jrD jrD @@ -71821,7 +71785,7 @@ jrD jrD jrD jrD -jcR +ovo oxp jrD sqj @@ -71833,7 +71797,7 @@ jrD jrD jrD oxp -jcR +ovo jrD jrD jrD @@ -71853,7 +71817,7 @@ aao jrD jrD jrD -yfz +lSO jrD jrD aao @@ -72012,11 +71976,11 @@ fOx fOx fOx fOx -dov +qUR fOx gio fOx -gOr +lYp jrD aao aao @@ -72062,7 +72026,7 @@ jrD jrD jrD jrD -jcR +ovo jrD jrD aao @@ -72114,7 +72078,7 @@ aao abr alJ akX -buQ +dVD akX hKM aad @@ -72223,7 +72187,7 @@ fOx fOx fOx fOx -dov +qUR fOx fOx fOx @@ -72348,7 +72312,7 @@ aao aao aao aao -tAW +aqa aqa aqa aqa @@ -72479,7 +72443,7 @@ tRI jrD jrD jrD -iml +cKE jrD vqY jrD @@ -72568,7 +72532,7 @@ aao aao aao aao -arD +srv asm arD arD @@ -72653,7 +72617,7 @@ aao aao fOx fOx -dov +qUR fOx kSL fOx @@ -72718,7 +72682,7 @@ jrD jrD jrD jrD -jcR +ovo jrD jrD aao @@ -72858,7 +72822,7 @@ nrw nrw qoj fOx -kok +rCi fOx fOx fOx @@ -72982,7 +72946,7 @@ gNH szg szg szg -heI +ewT szg szg gNH @@ -72993,7 +72957,7 @@ aao aao aao aao -qQn +jvo gXp tQw tQw @@ -73118,7 +73082,7 @@ aao tRI oxp jrD -jcR +ovo jrD jrD aao @@ -73145,7 +73109,7 @@ aao aao aao jrD -jcR +ovo jrD jrD jrD @@ -73210,10 +73174,10 @@ tQw tQw tQw tQw -pIN +otA tQw xFZ -anj +oHG tQw tQw aao @@ -73287,7 +73251,7 @@ aao fOx fOx fOx -dov +qUR fOx fOx fOx @@ -73350,7 +73314,7 @@ jrD jrD jrD jrD -jcR +ovo aao aao aao @@ -73419,15 +73383,15 @@ tQw tQw tQw tQw -pIN +otA tQw tQw tQw wQC tQw -ahx +ntU tQw -pIN +otA eFh tQw tQw @@ -73516,7 +73480,7 @@ aao fOx fOx fOx -dov +qUR fOx fOx fOx @@ -73630,13 +73594,13 @@ aao aao aao tQw -ahw +vFy tQw tQw tQw -ahw +vFy tQw -pIN +otA tQw tQw mRi @@ -73644,7 +73608,7 @@ wQC tQw tQw tQw -kfk +ycF tQw tQw tQw @@ -73779,7 +73743,7 @@ aao aao aao aao -jcR +ovo jrD jrD jrD @@ -73853,9 +73817,9 @@ tQw tQw tQw tQw -pIN +otA tQw -ahw +vFy tQw wQC tQw @@ -73865,7 +73829,7 @@ aao wQC tQw tQw -ahw +vFy tQw tQw tQw @@ -74015,10 +73979,10 @@ aao aao aao aao -gOr -gOr -gOr -gOr +lYp +lYp +lYp +lYp aao aao aao @@ -74067,23 +74031,23 @@ tQw tQw tQw tQw -ujC -ujC +rqh +rqh tQw -pIN +otA tQw qvA tQw wQC tQw -dKR +ttb aao aao gmN tQw tQw -ujC -ujC +rqh +rqh tQw tQw aao @@ -74196,15 +74160,15 @@ aao aao aao aao -gNz -cpc -bLA -bLA -bLA +uXU +cAm +vrF +vrF +vrF aao -dEr -bLA -sIP +itx +vrF +qfv aao aao aao @@ -74213,11 +74177,11 @@ aao aao aao aao -bLA -bLA -bLA -bLA -bLA +vrF +vrF +vrF +vrF +vrF aao aao aao @@ -74287,20 +74251,20 @@ tQw tQw tQw tQw -pIN +otA tQw tQw tQw tQw tQw -rLR +sht aao aao aao gmN tQw -ujC -ujC +rqh +rqh tQw tQw tQw @@ -74415,7 +74379,7 @@ aao aao bTW izh -jGd +kBL izh izh aao @@ -74499,13 +74463,13 @@ tQw tQw tQw tQw -ujC -ujC +rqh +rqh tQw tQw tQw aao -laj +iWk tQw tQw tQw @@ -74519,7 +74483,7 @@ wQC tQw tQw tQw -ahw +vFy tQw tQw aao @@ -74649,7 +74613,7 @@ aao aao izh izh -jGd +kBL izh izh aao @@ -74668,7 +74632,7 @@ aao aao izh izh -jGd +kBL izh aao aao @@ -74713,11 +74677,11 @@ aao aao aao tQw -ahw +vFy tQw tQw -ujC -ujC +rqh +rqh tQw tQw tQw @@ -74727,7 +74691,7 @@ wQC tQw tQw tQw -kBB +wZw aao aao aao @@ -74737,7 +74701,7 @@ tQw tQw tQw tQw -ujC +rqh tQw tQw aao @@ -74808,7 +74772,7 @@ aao aao gCE gCE -wWK +lwL gCE gCE gCE @@ -74935,16 +74899,16 @@ tQw tQw tQw tQw -ahw +vFy tQw aao aao aao wQC -pbK +jOo tQw tQw -rLR +sht aao aao aao @@ -74953,8 +74917,8 @@ wQC tQw eFh tQw -ujC -ujC +rqh +rqh tQw tQw aao @@ -75033,12 +74997,12 @@ gpg gpg gCE gCE -wWK +lwL gCE gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -75172,7 +75136,7 @@ tQw gXp gXp tQw -ahw +vFy tQw tQw tQw @@ -75260,7 +75224,7 @@ gCE gCE gCE gCE -wWK +lwL gCE ecK gCE @@ -75378,22 +75342,22 @@ wQC tQw tQw tQw -qQn +jvo tQw tQw tQw gXp tQw -ahx -ujC -ujC -aij +ntU +rqh +rqh +npy tQw tQw tQw tQw tQw -pIN +otA tQw tQw tQw @@ -75497,7 +75461,7 @@ aao aao bTW izh -hKD +qBq izh aao aao @@ -75595,25 +75559,25 @@ tQw tQw tQw xFZ -pIN +otA tQw -ahw -ujC -ujC +vFy +rqh +rqh tQw tQw -ujC -ujC +rqh +rqh tQw tQw xFZ tQw gXp tQw -pIN +otA tQw tQw -ahw +vFy tQw tQw eMX @@ -75680,7 +75644,7 @@ gCE gCE gCE gCE -rxJ +mhY gCE gCE gCE @@ -75799,7 +75763,7 @@ tQw tQw tQw tQw -ahw +vFy tQw tQw aao @@ -75812,22 +75776,22 @@ tQw tQw eFh aao -chq +qtP tQw tQw -ujC -ujC +rqh +rqh tQw tQw tQw tQw tQw sNQ -ahw +vFy gmN xFZ xFZ -ahy +syd tQw tQw tQw @@ -75940,7 +75904,7 @@ aao izh izh izh -bAe +omS aao aao aao @@ -75951,7 +75915,7 @@ aao izh izh izh -jGd +kBL izh izh aao @@ -76013,7 +75977,7 @@ aao aao tQw tQw -ahw +vFy tQw tQw tQw @@ -76025,7 +75989,7 @@ aao aao aao wQC -ahx +ntU xFZ sNQ aao @@ -76111,7 +76075,7 @@ aao gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -76131,7 +76095,7 @@ aao ecK gCE gCE -wWK +lwL gCE sfI aao @@ -76186,7 +76150,7 @@ aao aao aao izh -jGd +kBL izh izh aao @@ -76240,9 +76204,9 @@ aao aao adZ adZ -afY -uvl -vRK +fqI +jaa +eoz adZ adZ aao @@ -76268,7 +76232,7 @@ aao aao tQw tQw -azf +bGb tQw tQw eMX @@ -76363,7 +76327,7 @@ aao aao aao bTW -xAh +qOZ izh tgL izh @@ -76565,10 +76529,10 @@ aao aao aao aao -bLA -bLA -bLA -bvR +vrF +vrF +vrF +lVs aao aao aao @@ -76587,7 +76551,7 @@ izh izh izh izh -jGd +kBL izh izh izh @@ -76674,7 +76638,7 @@ aao adZ aeS afu -afZ +fRv msf afu afu @@ -76686,7 +76650,7 @@ aao gNH adZ anm -aeU +tYm aev apq adZ @@ -76815,7 +76779,7 @@ aao aao izh izh -jGd +kBL izh izh izh @@ -76928,7 +76892,7 @@ tQw tQw gXp gXp -qQn +jvo gXp gXp gXp @@ -76983,7 +76947,7 @@ aao gCE gCE gCE -wWK +lwL gCE gCE aao @@ -77016,7 +76980,7 @@ bTW izh izh izh -jGd +kBL izh izh izh @@ -77131,9 +77095,9 @@ arF atI aqc auY -avN +oFe ajO -axo +wQU amk aao tQw @@ -77145,7 +77109,7 @@ tQw tQw xFZ xFZ -kfk +ycF tQw xFZ tQw @@ -77212,11 +77176,11 @@ aao aao aao aao -bLA +vrF izh izh izh -jGd +kBL bTW izh izh @@ -77256,7 +77220,7 @@ izh izh izh izh -jGd +kBL izh izh izh @@ -77317,7 +77281,7 @@ aao tQw tQw tQw -ahw +vFy tQw aao aao @@ -77356,15 +77320,15 @@ aao aao tQw tQw -aBz +tdS tQw sNQ tQw -ahw +vFy tQw -pIN +otA tQw -ahw +vFy wQC tQw tQw @@ -77417,9 +77381,9 @@ aao aao aao aao -waJ -waJ -wIw +hvW +hvW +clm aao aao aao @@ -77429,7 +77393,7 @@ aao aao aao gCE -bLA +vrF izh izh izh @@ -77454,10 +77418,10 @@ izh aao aao aao -byG -bLA -bLA -bLA +wwF +vrF +vrF +vrF aao aao aao @@ -77487,7 +77451,7 @@ izh izh izh izh -jGd +kBL izh aao aao @@ -77543,16 +77507,16 @@ aao adZ afw afw -agN +mSC afw afw adZ -aeU +tYm aev aev aev -alK -amH +iWm +mpu aev vyV aev @@ -77579,7 +77543,7 @@ tQw tQw tQw tQw -pIN +otA tQw tQw tQw @@ -77646,7 +77610,7 @@ aao gCE gCE gCE -bLA +vrF izh izh izh @@ -77663,7 +77627,7 @@ aao aao lUq izh -wUD +rlQ izh izh izh @@ -77685,7 +77649,7 @@ izh izh izh izh -jGd +kBL izh izh izh @@ -77694,7 +77658,7 @@ izh izh izh izh -jGd +kBL izh izh izh @@ -77769,7 +77733,7 @@ aev iAw aev aev -amH +mpu aev aev aev @@ -77863,7 +77827,7 @@ gCE gCE gCE gCE -bLA +vrF izh izh gtX @@ -77986,9 +77950,9 @@ aev aev aev aev -amH +mpu aev -anN +qki aev aev aev @@ -78019,7 +77983,7 @@ tQw tQw tQw gmN -ahw +vFy tQw tQw aao @@ -78039,7 +78003,7 @@ gCE gCE gCE gCE -wWK +lwL sfI aao aao @@ -78048,7 +78012,7 @@ aao aao ecK gCE -wWK +lwL gCE gCE sfI @@ -78078,14 +78042,14 @@ gCE gCE gCE gCE -wWK +lwL ecK -bLA +vrF uPm aao aao bTW -jGd +kBL izh uPm izh @@ -78109,12 +78073,12 @@ aao aao aao izh -jGd +kBL izh izh izh izh -jGd +kBL izh izh izh @@ -78133,7 +78097,7 @@ izh izh izh izh -jGd +kBL izh izh izh @@ -78210,7 +78174,7 @@ adZ adZ aev aev -aeU +tYm aev aev adZ @@ -78219,7 +78183,7 @@ agd avO auY aqc -axT +fDW auY amk anI @@ -78242,9 +78206,9 @@ tQw tQw aao aao -aSk -aTz -aUA +fKh +oUZ +eqK aao aao aao @@ -78297,7 +78261,7 @@ gCE gCE sON gCE -bLA +vrF sLr aao aao @@ -78308,7 +78272,7 @@ uPm izh izh izh -jGd +kBL izh izh izh @@ -78408,7 +78372,7 @@ aao aao adZ aev -aeU +tYm aev age agQ @@ -78419,11 +78383,11 @@ aev anM adZ adZ -alL -amJ +eCK +dCt adZ -anO -aoG +hmx +umM adZ aqb aqb @@ -78431,7 +78395,7 @@ anl anl aev adZ -aup +kua agd auy auY @@ -78442,7 +78406,7 @@ amk anI aAN aAO -aCq +dJU aDi anI aao @@ -78458,7 +78422,7 @@ tQw gXp gXp gXp -aRw +egf dLe hLs vcm @@ -78514,7 +78478,7 @@ gCE rAs gCE gCE -cVL +qXg aao aao aao @@ -78529,7 +78493,7 @@ izh fRH tgL izh -jGd +kBL izh izh aao @@ -78555,7 +78519,7 @@ izh izh izh izh -jGd +kBL izh aao aao @@ -78570,7 +78534,7 @@ izh izh izh izh -jGd +kBL izh aao aao @@ -78617,7 +78581,7 @@ aao aao aao tQw -ahw +vFy tQw tQw tQw @@ -78636,11 +78600,11 @@ adZ adZ adZ adZ -alM -amK +gqk +onB adZ -anP -amK +jSj +onB adZ adZ adZ @@ -78716,7 +78680,7 @@ rAs gCE gCE gCE -tsB +mPd gCE gCE gCE @@ -78846,18 +78810,18 @@ aex afA adZ agS -ahE +lEN adZ aao aao aao aao adZ -alN -amL +qnl +mSN adZ -anQ -amK +kai +onB adZ aEs aGh @@ -78903,7 +78867,7 @@ aao aao ecK gCE -xuU +oDe qFY gCE gCE @@ -78920,12 +78884,12 @@ rAs rAs gCE qFY -wWK +lwL gCE gCE gCE gCE -waJ +hvW gCE gCE gCE @@ -78933,13 +78897,13 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE gCE gCE -wWK +lwL ecK gCE gCE @@ -78948,7 +78912,7 @@ gCE gCE gCE gCE -bvR +lVs aao fRH tgL @@ -78956,7 +78920,7 @@ izh izh izh uPm -jGd +kBL fRH kWV izh @@ -79070,7 +79034,7 @@ aao aao adZ adZ -alO +ifb amM adZ anR @@ -79142,7 +79106,7 @@ rAs rAs rAs rAs -mya +dEL rAs gCE gCE @@ -79160,12 +79124,12 @@ gCE ecK gCE gCE -xuU +oDe gCE gCE gCE gCE -bLA +vrF tgL izh izh @@ -79201,7 +79165,7 @@ aao izh izh izh -jGd +kBL izh izh izh @@ -79218,7 +79182,7 @@ aao izh izh izh -jGd +kBL izh izh izh @@ -79312,7 +79276,7 @@ afz xWm xWm xWm -aEn +hyH aFg anI aao @@ -79350,19 +79314,19 @@ gCE gCE gCE gCE -sBu +ucT gCE gCE gCE gCE gCE gCE -xuU +oDe gCE -waJ +hvW gCE gCE -wWK +lwL qFY gCE gCE @@ -79381,12 +79345,12 @@ gCE gCE gCE gCE -sBu -bLA +ucT +vrF izh izh izh -jGd +kBL izh gtX gtX @@ -79504,11 +79468,11 @@ aao adZ aky alb -alQ +ipU alc alc alc -alQ +ipU apw aqd adZ @@ -79517,7 +79481,7 @@ ass aqc atK agd -avc +skC asu awF amk @@ -79528,7 +79492,7 @@ aAk afz aBB aCt -bZL +wqi xWm aFh anI @@ -79549,7 +79513,7 @@ tdn kNP wQC gXp -qQn +jvo tQw gCE gCE @@ -79562,7 +79526,7 @@ foB gCE gCE gCE -bet +esD gCE gCE gCE @@ -79576,7 +79540,7 @@ gCE gCE gCE gCE -kQc +bMP gpg gCE gCE @@ -79599,7 +79563,7 @@ gCE gCE gCE gCE -bLA +vrF izh izh izh @@ -79710,7 +79674,7 @@ tQw aao adZ aez -aeY +isB afE agg agW @@ -79752,7 +79716,7 @@ anI aao anI aIK -aJF +cIz anI anI anI @@ -79766,7 +79730,7 @@ ocR uoj wQC tQw -aWN +pkl tQw gCE ohD @@ -79816,7 +79780,7 @@ gCE gCE gCE gCE -bLA +vrF izh izh izh @@ -79872,7 +79836,7 @@ izh izh izh izh -jGd +kBL aao aao aao @@ -79921,7 +79885,7 @@ aao tQw tQw tQw -ahw +vFy tQw aao aao @@ -79937,11 +79901,11 @@ aao aao adZ aeE -rqa +alc alR alc alc -alQ +ipU alc apx aqf @@ -79962,7 +79926,7 @@ aAm aAl aBC xWm -aDk +qlO aEp anI anI @@ -79975,15 +79939,15 @@ aao aao gXp tQw -ahw +vFy tQw tQw -nFH +xtx aTv aMT tQw tQw -pIN +otA xFZ ohD aao @@ -80033,8 +79997,8 @@ gpg gpg gpg gCE -bLA -jGd +vrF +kBL izh izh sLr @@ -80085,8 +80049,8 @@ aao izh izh izh -otb -otb +oaf +oaf izh izh izh @@ -80156,7 +80120,7 @@ adZ akB alc alS -alQ +ipU alc anV aoI @@ -80185,7 +80149,7 @@ anI aao aao anI -aIL +rPi aJG anI aao @@ -80200,7 +80164,7 @@ lMw aMT tQw xFZ -ahy +syd aao aao aao @@ -80218,7 +80182,7 @@ usG gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -80234,11 +80198,11 @@ ecK qFY gCE gCE -wWK +lwL gCE gCE gCE -bet +esD gCE gCE gCE @@ -80249,8 +80213,8 @@ aao aao aao aao -dEr -bLA +itx +vrF izh izh uPm @@ -80302,8 +80266,8 @@ aao izh izh izh -otb -otb +oaf +oaf izh izh izh @@ -80385,7 +80349,7 @@ amk atg agd aut -avg +fxE agd awG amk @@ -80474,7 +80438,7 @@ sLr izh izh izh -bLA +vrF aao aao aao @@ -80502,7 +80466,7 @@ aao aao izh izh -jGd +kBL izh izh aao @@ -80520,7 +80484,7 @@ izh izh izh izh -jGd +kBL izh izh izh @@ -80619,8 +80583,8 @@ anI anI anI anI -aIM -aJH +gjF +fnM anI aao wQC @@ -80688,10 +80652,10 @@ aao aao aao aao -bLA -bLA -bLA -bLA +vrF +vrF +vrF +vrF izh izh aao @@ -80801,11 +80765,11 @@ aao adZ adZ ahL -aiS +mzN ajp ajV akD -ale +hhM alU alU alU @@ -80829,10 +80793,10 @@ azk aAn uaB aBF -aCw +tch aDn aEq -aFj +lVo uaB uaB uaB @@ -80951,12 +80915,12 @@ aao aao aao izh -otb -otb +oaf +oaf izh izh -otb -otb +oaf +oaf izh aao aao @@ -81027,13 +80991,13 @@ akE amQ anu amQ -aoL +qwr apy aqj arc tFO axs -ati +xCy atN auw avj @@ -81042,18 +81006,18 @@ awI axs tFO ayD -azl +lao aAo aAS rXY aCx poF poF -aFk +kaU aGg aGU xNL -aIO +cLd tkN anI aao @@ -81088,7 +81052,7 @@ aao aao gCE ecK -bhs +jUv gCE gCE gCE @@ -81108,7 +81072,7 @@ gCE gCE gCE gCE -wWK +lwL gCE ohD aao @@ -81129,7 +81093,7 @@ izh izh izh izh -jGd +kBL izh izh izh @@ -81152,8 +81116,8 @@ aao aao aao izh -otb -otb +oaf +oaf izh izh aao @@ -81168,12 +81132,12 @@ aao aao aao izh -otb -otb +oaf +oaf izh izh -otb -otb +oaf +oaf izh aao aao @@ -81225,7 +81189,7 @@ aao aao tQw tQw -ahw +vFy tQw tQw wQC @@ -81250,9 +81214,9 @@ afd adZ amk asw -lVr +rlZ agd -aux +ddT avk agd awJ @@ -81369,8 +81333,8 @@ aao aao aao izh -otb -otb +oaf +oaf izh izh aao @@ -81445,10 +81409,10 @@ tQw tQw tQw tQw -tIq +llf eFh afd -agh +umC agc ahM agc @@ -81471,7 +81435,7 @@ atj agd aoK aoK -oea +bWF awK amk amk @@ -81526,11 +81490,11 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE -wWK +lwL gCE aao aao @@ -81560,14 +81524,14 @@ aao aao izh izh -jGd +kBL izh izh izh izh izh izh -jGd +kBL izh izh izh @@ -81604,7 +81568,7 @@ aao aao izh izh -jGd +kBL izh izh izh @@ -81670,7 +81634,7 @@ qNu adZ aiq agc -ajs +mHg adZ akG alg @@ -81804,7 +81768,7 @@ aao izh izh izh -jGd +kBL izh izh aao @@ -81822,10 +81786,10 @@ aao izh izh izh -otb -otb +oaf +oaf izh -jGd +kBL izh aao aao @@ -81890,11 +81854,11 @@ agc ajt adZ akH -alh +hXf alW amS alW -aod +tks alW alg aqm @@ -82039,8 +82003,8 @@ aao izh izh izh -otb -otb +oaf +oaf izh izh izh @@ -82121,7 +82085,7 @@ aao aao amk auz -avm +kav amk aao aao @@ -82138,8 +82102,8 @@ anI anI aao anI -aIR -aJL +xLT +ezB anI tSI gan @@ -82174,7 +82138,7 @@ aao gCE gCE gCE -wWK +lwL gCE gCE aao @@ -82236,8 +82200,8 @@ aao aao aao izh -otb -otb +oaf +oaf izh izh aao @@ -82315,9 +82279,9 @@ tQw tQw tQw eFh -afH +wsL agc -agh +umC ahM agc agc @@ -82355,7 +82319,7 @@ aFl anI anI anI -aIL +rPi aJM anI hZc @@ -82419,13 +82383,13 @@ gCE gCE gCE gCE -bLA +vrF izh izh izh izh izh -jGd +kBL izh izh izh @@ -82436,11 +82400,11 @@ aao aao aao izh -jGd +kBL izh izh izh -jGd +kBL izh izh izh @@ -82453,8 +82417,8 @@ aao aao izh izh -otb -otb +oaf +oaf izh izh aao @@ -82529,14 +82493,14 @@ aao tQw tQw tQw -ahw +vFy tQw eFh adZ adZ adZ adZ -air +lzs agc ajv adZ @@ -82564,7 +82528,7 @@ gXp eFh anL aAT -aAY +pht aPq aDq hWa @@ -82604,12 +82568,12 @@ aao aao aao aao -waJ -waJ -waJ -waJ -waJ -waJ +hvW +hvW +hvW +hvW +hvW +hvW aao aao aao @@ -82636,7 +82600,7 @@ gCE gCE gCE gCE -bLA +vrF izh izh izh @@ -82689,7 +82653,7 @@ aao aao aao izh -jGd +kBL izh izh izh @@ -82750,11 +82714,11 @@ tQw tQw eFh afd -agj +sNO agc ahM agc -agh +umC agc adZ adZ @@ -82776,7 +82740,7 @@ avp amk arM gXp -axU +ftV tQw eFh anL @@ -82784,7 +82748,7 @@ aAU aAU anL aDq -hwy +bYw hWa aGi awA @@ -82852,8 +82816,8 @@ gCE gCE gCE gCE -wWK -bLA +lwL +vrF izh izh izh @@ -82910,7 +82874,7 @@ izh izh izh izh -jGd +kBL izh aao aao @@ -83011,7 +82975,7 @@ aJO anI aLH aLI -aMW +uuZ aHP anI juo @@ -83063,14 +83027,14 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE gCE gCE gCE -bLA +vrF izh izh izh @@ -83105,7 +83069,7 @@ izh izh izh izh -jGd +kBL izh izh izh @@ -83122,8 +83086,8 @@ aao izh izh izh -otb -otb +oaf +oaf izh izh izh @@ -83218,7 +83182,7 @@ aAV aBG aCz aDq -xUo +vJb hWa hWa aGW @@ -83287,7 +83251,7 @@ gCE gCE gCE gCE -bLA +vrF izh izh izh @@ -83315,7 +83279,7 @@ izh izh izh izh -jGd +kBL izh izh izh @@ -83323,8 +83287,8 @@ izh izh izh izh -otb -otb +oaf +oaf izh aao aao @@ -83333,14 +83297,14 @@ aao aao aao aao -nCp -nCp -nCp +jHH +jHH +jHH izh izh izh -otb -otb +oaf +oaf izh izh izh @@ -83418,7 +83382,7 @@ gXp gXp tQw tQw -wrz +jEa tQw tQw amk @@ -83431,24 +83395,24 @@ wQC axV eFh anL -aAW +stn aBH aCA aDs hWa -aFn +bJi hWa aGW hmm -aIU +cKM aJQ hmm aLH -aMt +rNQ aMs aLI aPq -aQw +idR aRy anI aao @@ -83504,7 +83468,7 @@ aao aao gCE gCE -bLA +vrF izh izh izh @@ -83523,12 +83487,12 @@ izh izh izh izh -jGd +kBL izh izh izh izh -jGd +kBL izh izh izh @@ -83536,12 +83500,12 @@ izh izh izh izh -otb -otb +oaf +oaf izh izh -otb -otb +oaf +oaf izh izh aao @@ -83550,17 +83514,17 @@ aao aao izh izh -nCp -nCp -nCp +jHH +jHH +jHH izh izh izh izh izh izh -otb -otb +oaf +oaf izh aao aao @@ -83619,11 +83583,11 @@ wQC eFh vAs agl -ahb +krG agl aiu bkY -ajw +pwu adZ aao aao @@ -83690,7 +83654,7 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -83708,7 +83672,7 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -83721,9 +83685,9 @@ aao aao aao aao -bLA +vrF izh -jGd +kBL izh izh izh @@ -83753,8 +83717,8 @@ izh izh izh izh -otb -otb +oaf +oaf izh izh izh @@ -83772,12 +83736,12 @@ izh izh izh izh -jGd +kBL izh izh izh -otb -otb +oaf +oaf izh aao aao @@ -83832,7 +83796,7 @@ aao aao tQw tQw -tIq +llf tQw adZ adZ @@ -83952,7 +83916,7 @@ izh izh izh izh -jGd +kBL izh izh izh @@ -84064,7 +84028,7 @@ wQC tQw tQw tQw -ahw +vFy tQw tQw eFh @@ -84082,7 +84046,7 @@ wQC tQw eFh anL -aAY +pht aAU aPq aDq @@ -84188,20 +84152,20 @@ izh izh izh izh -jGd +kBL izh izh izh izh izh -jGd +kBL izh -otb -otb +oaf +oaf izh izh izh -jGd +kBL izh izh izh @@ -84272,7 +84236,7 @@ tQw tQw gXp gXp -aSn +bFn gXp gXp gXp @@ -84303,7 +84267,7 @@ anI aAU anL aDu -aEt +vwi aFp anI anI @@ -84337,7 +84301,7 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -84355,7 +84319,7 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -84372,7 +84336,7 @@ aao aao aao aao -bLA +vrF izh izh izh @@ -84408,13 +84372,13 @@ izh izh izh izh -hPS -otb +iTo +oaf izh izh izh -otb -otb +oaf +oaf izh izh izh @@ -84513,7 +84477,7 @@ aao aao aao gmN -ahw +vFy tQw eMX anI @@ -84526,7 +84490,7 @@ anI aao aob aIX -aJV +fsm aKS aLM aob @@ -84589,13 +84553,13 @@ aao aao gCE gCE -bLA +vrF izh izh izh izh izh -jGd +kBL izh izh izh @@ -84606,7 +84570,7 @@ izh izh izh izh -jGd +kBL izh aao aao @@ -84625,8 +84589,8 @@ aao aao izh izh -otb -otb +oaf +oaf izh izh izh @@ -84712,7 +84676,7 @@ tQw tQw tQw tQw -ahw +vFy tQw tQw tQw @@ -84777,7 +84741,7 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -84806,7 +84770,7 @@ aao gCE gCE gCE -bLA +vrF izh izh izh @@ -84817,7 +84781,7 @@ izh izh izh izh -jGd +kBL izh izh izh @@ -85023,7 +84987,7 @@ gCE gCE gCE gCE -mHp +wXR izh izh izh @@ -85073,7 +85037,7 @@ izh izh izh izh -jGd +kBL izh izh aao @@ -85133,7 +85097,7 @@ tQw tQw tQw tQw -ahw +vFy tQw tQw tQw @@ -85178,7 +85142,7 @@ aob aHS aIZ aJY -aKU +rcd aob aob aao @@ -85240,7 +85204,7 @@ gCE gCE gCE gCE -bLA +vrF izh izh izh @@ -85278,15 +85242,15 @@ aao aao izh izh -jGd +kBL izh izh -otb -otb +oaf +oaf izh -jGd +kBL izh -tdB +pOS izh izh izh @@ -85356,7 +85320,7 @@ tQw tQw tQw tQw -ahw +vFy tQw tQw tQw @@ -85393,7 +85357,7 @@ aob aob aGZ aHT -aJa +uHy aJZ aKV aLO @@ -85418,7 +85382,7 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -85435,7 +85399,7 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -85457,7 +85421,7 @@ gCE gCE gCE gCE -bLA +vrF izh izh izh @@ -85498,8 +85462,8 @@ izh izh izh izh -otb -otb +oaf +oaf izh izh izh @@ -85664,7 +85628,7 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -85674,7 +85638,7 @@ gCE gCE gCE gCE -bLA +vrF izh izh aao @@ -85824,10 +85788,10 @@ aao aao aob aFq -aGl +skA axn aHV -aJc +wGM aKb aKX aLQ @@ -85838,7 +85802,7 @@ aPr aMX aRA aSq -jzD +pDM aUG aVz aHc @@ -85875,7 +85839,7 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -85891,7 +85855,7 @@ gCE gCE gCE gCE -bLA +vrF aao aao aao @@ -85998,7 +85962,7 @@ aao tQw tQw tQw -ahw +vFy tQw tQw ozQ @@ -86027,12 +85991,12 @@ tQw tQw tQw tQw -ahw +vFy tQw tQw tQw tQw -ahw +vFy tQw tQw tQw @@ -86045,13 +86009,13 @@ aGm bny aHW bQi -aKc +cCI aKY aLR -aMx +qYf aMY aOq -aPs +vPm aMY aRB aSr @@ -86064,7 +86028,7 @@ aao aao gCE gCE -wWK +lwL gCE gCE gCE @@ -86103,7 +86067,7 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -86261,7 +86225,7 @@ aob aGn aHd aHX -aJd +jpb aKd aKZ aLa @@ -86438,7 +86402,7 @@ tQw tQw tQw tQw -ahw +vFy tQw tQw tQw @@ -86696,7 +86660,7 @@ aob aob aHY aJf -aKf +hVJ aLb aob aob @@ -86707,7 +86671,7 @@ aao aob aob aTJ -aUJ +bNp aob aob aao @@ -86719,7 +86683,7 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE gCE @@ -86924,8 +86888,8 @@ aao aao aob aob -pIN -pIN +otA +otA tQw tQw tQw @@ -87082,7 +87046,7 @@ aao aao tQw tQw -ahw +vFy tQw tQw tQw @@ -87113,7 +87077,7 @@ tQw tQw tQw tQw -ahw +vFy tQw tQw tQw @@ -87121,7 +87085,7 @@ tQw tQw tQw tQw -ahw +vFy tQw tQw tQw @@ -87304,7 +87268,7 @@ tQw tQw tQw tQw -ahw +vFy tQw tQw tQw @@ -87365,7 +87329,7 @@ tQw tQw gCE gCE -wWK +lwL gCE gCE gCE @@ -87374,7 +87338,7 @@ gCE gCE gCE gCE -wWK +lwL gCE gCE aao @@ -87569,7 +87533,7 @@ tQw tQw tQw tQw -ahw +vFy tQw tQw tQw @@ -87775,7 +87739,7 @@ aao aao tQw tQw -ahw +vFy tQw tQw tQw @@ -87793,7 +87757,7 @@ tQw tQw tQw tQw -ahw +vFy tQw tQw tQw @@ -87997,7 +87961,7 @@ tQw tQw tQw tQw -ahw +vFy tQw tQw tQw @@ -88238,7 +88202,7 @@ aao gCE gCE gCE -wWK +lwL gCE gCE gCE 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/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/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 f3fa4dbcc6e9..165504748870 100644 --- a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm +++ b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm @@ -1,11 +1,4 @@ //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, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/xenobiology) "b" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/eta/xenobiology) @@ -119,34 +112,6 @@ }, /turf/open/ice, /area/bigredv2/caves/eta/xenobiology) -"v" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - 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/plush/farwa, -/turf/open/ice, -/area/bigredv2/caves/eta/xenobiology) -"y" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) "z" = ( /turf/open/mars{ icon_state = "mars_dirt_12" @@ -165,13 +130,6 @@ icon_state = "mars_dirt_7" }, /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" - }, -/area/bigredv2/caves/eta/xenobiology) "D" = ( /turf/open/mars{ icon_state = "mars_dirt_10" @@ -197,6 +155,23 @@ icon_state = "mars_cave_7" }, /area/bigredv2/caves/eta/xenobiology) +"K" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 8; + icon_state = "darkredcorners2" + }, +/area/bigredv2/caves/eta/xenobiology) +"N" = ( +/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,9 +180,40 @@ /obj/effect/decal/cleanable/dirt, /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) +"R" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/mars{ + icon_state = "mars_dirt_10" + }, +/area/bigredv2/caves/eta/xenobiology) +"S" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/mars, +/area/bigredv2/caves/eta/xenobiology) +"U" = ( +/obj/item/toy/plush/farwa, +/turf/open/ice, +/area/bigredv2/caves/eta/xenobiology) +"W" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "darkredcorners2" + }, +/area/bigredv2/caves/eta/xenobiology) "X" = ( /turf/open/floor/plating, /area/bigredv2/caves/eta/xenobiology) +"Z" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/bigredv2/caves/eta/xenobiology) (1,1,1) = {" b @@ -227,8 +233,8 @@ b (2,1,1) = {" b g -p -h +N +S b h p @@ -245,12 +251,12 @@ h g g b -w +g g g b g -C +R E G "} @@ -304,7 +310,7 @@ d d s d -v +K d s d @@ -332,13 +338,13 @@ O (9,1,1) = {" f l -a +Z l l l k l -y +W A r l @@ -412,7 +418,7 @@ o b t u -x +U b o u diff --git a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm index e0c625805375..437d2db1509e 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/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/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_12" - }, -/area/bigredv2/outside/e) -"ak" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/e) -"al" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"am" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/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/lv624/xeno_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{ @@ -550,13 +436,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bR" = ( -/obj/item/shard, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) "bS" = ( /obj/structure/bed/chair{ dir = 1 @@ -945,28 +824,6 @@ icon_state = "whiteyellowfull" }, /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) "da" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris, @@ -1056,17 +913,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 +921,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 +1094,6 @@ 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) "dY" = ( /obj/item/stack/sheet/metal, /turf/open/floor{ @@ -1357,13 +1153,6 @@ icon_state = "platingdmg1" }, /area/bigredv2/outside/office_complex) -"eg" = ( -/obj/item/stack/rods, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) "eh" = ( /obj/item/device/multitool, /turf/open/floor{ @@ -1453,6 +1242,10 @@ icon_state = "rasputin3" }, /area/bigredv2/outside/office_complex) +"nF" = ( +/obj/item/stack/rods, +/turf/template_noop, +/area/template_noop) "oF" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 @@ -1505,6 +1298,9 @@ icon_state = "rasputin3" }, /area/bigredv2/outside/office_complex) +"uh" = ( +/turf/template_noop, +/area/template_noop) "uC" = ( /obj/effect/spawner/gibspawner/human, /obj/item/weapon/gun/rifle/m41a/corporate/no_lock{ @@ -1559,6 +1355,10 @@ icon_state = "rasputin3" }, /area/bigredv2/outside/office_complex) +"Dv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/template_noop, +/area/template_noop) "EE" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 @@ -1577,13 +1377,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 +1395,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 @@ -1617,6 +1404,10 @@ icon_state = "rasputin15" }, /area/bigredv2/outside/office_complex) +"UM" = ( +/obj/item/shard, +/turf/template_noop, +/area/template_noop) "Vg" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/shuttle/dropship{ @@ -1634,36 +1425,36 @@ /area/bigredv2/outside/office_complex) (1,1,1) = {" -ac -ad -ao -aH -aH -aH -aH -bR -aH -aH -aH -aH -aH -aH -aH -bR -aH -eg -aH -cX -cX -cX -cX -cX -cX +uh +uh +uh +uh +uh +uh +uh +UM +uh +uh +uh +uh +uh +uh +uh +UM +uh +nF +uh +uh +uh +uh +uh +uh +uh "} (2,1,1) = {" -ac -ad -ah +uh +uh +uh ap ap ap @@ -1682,15 +1473,15 @@ ax aY ap ap -cX -cX -cX -ap +uh +uh +uh +uh "} (3,1,1) = {" -ac -ad -ah +uh +uh +uh ap aI aR @@ -1709,15 +1500,15 @@ cq ca cH ap -cX -cX -cX -ap +uh +uh +uh +uh "} (4,1,1) = {" -ac -ad -au +uh +uh +uh as aJ aR @@ -1736,15 +1527,15 @@ ck ej cI as -cX -cX -cX -ap +uh +uh +uh +uh "} (5,1,1) = {" -ac -ad -ah +uh +uh +uh as aK bB @@ -1763,15 +1554,15 @@ cs ek cm cR -cY -cX -cX -ap +uh +uh +uh +uh "} (6,1,1) = {" -ac -ad -ah +uh +uh +uh as aL aR @@ -1790,15 +1581,15 @@ eh aS ed as -cX -cX -cX -ap +uh +uh +uh +uh "} (7,1,1) = {" -ac -ad -ah +uh +uh +uh ap aJ aR @@ -1817,15 +1608,15 @@ aS cr cr ap -cZ -cX -aB -ap +uh +uh +uh +uh "} (8,1,1) = {" -ac -ad -ah +uh +uh +uh ap aM aS @@ -1850,9 +1641,9 @@ ap ap "} (9,1,1) = {" -ac -ad -ah +uh +uh +uh ap ap ap @@ -1877,11 +1668,11 @@ dl dr "} (10,1,1) = {" -ac -an -ah -cX -cX +uh +uh +uh +uh +uh ap aC bj @@ -1904,11 +1695,11 @@ bu ar "} (11,1,1) = {" -aH -aH -cX -cX -cX +uh +uh +uh +uh +uh by aN XH @@ -1931,7 +1722,7 @@ bI bI "} (12,1,1) = {" -cX +uh ap ap ap @@ -1955,10 +1746,10 @@ id yS cE dm -dW +uh "} (13,1,1) = {" -cX +uh ap av ar @@ -1982,10 +1773,10 @@ bc dz bc dn -dt +uh "} (14,1,1) = {" -ae +uh aq aw aC @@ -2009,10 +1800,10 @@ bv dT cF do -ds +uh "} (15,1,1) = {" -cX +uh ar bt aD @@ -2035,11 +1826,11 @@ bc bc bc dh -dp -du +uh +uh "} (16,1,1) = {" -aA +uh ba bb aE @@ -2063,10 +1854,10 @@ dS NK cE dm -dv +uh "} (17,1,1) = {" -aA +uh ap az bu @@ -2090,10 +1881,10 @@ dJ dJ dJ dn -dw +uh "} (18,1,1) = {" -aA +uh ap ap ap @@ -2117,14 +1908,14 @@ fv bp cF do -dq +uh "} (19,1,1) = {" -ab -al -aG -aG -aG +uh +uh +uh +uh +uh dY aN fv @@ -2143,15 +1934,15 @@ cN cN cN di -Ha -dq +uh +uh "} (20,1,1) = {" -ai -at -aA -dX -dX +uh +uh +uh +Dv +Dv dZ aE bq @@ -2170,15 +1961,15 @@ cO cU dd dj -Ha -PR +uh +uh "} (21,1,1) = {" -ak -am -aA -aG -dX +uh +uh +uh +uh +Dv dZ dO br @@ -2197,15 +1988,15 @@ dK bd aS dj -Ha -PR +uh +uh "} (22,1,1) = {" -ag -ag -aG -aG -dX +uh +uh +uh +uh +Dv ap by ap @@ -2224,15 +2015,15 @@ bE dU aS by -Ha -PR +uh +uh "} (23,1,1) = {" -al -al -aG -aG -aG +uh +uh +uh +uh +uh ap bQ aS @@ -2251,15 +2042,15 @@ cP bE bd dk -Ha -dq +uh +uh "} (24,1,1) = {" -aj -am -aA -aG -aG +uh +uh +uh +uh +uh bN bf bs @@ -2278,15 +2069,15 @@ el em cA be -Ha -dq +uh +uh "} (25,1,1) = {" -ai -at -aA -aG -bx +uh +uh +uh +uh +UM ap ap ap @@ -2305,6 +2096,6 @@ cA cW de ap -PR -dx +uh +uh "} 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 ab1e9cbaa2fd..0c79eb6e7eba 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -71,12 +71,6 @@ "aan" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/hangar) -"aao" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/binoculars, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) "aap" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/hangar/flightcontrol) @@ -149,13 +143,6 @@ icon_state = "corsat_teleporter_static" }, /area/corsat/gamma/sigmaremote/teleporter) -"aaB" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/bronze, -/obj/item/trash/cigbutt/cigarbutt, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) "aaC" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -1051,12 +1038,6 @@ icon_state = "white" }, /area/corsat/gamma/residential/east) -"adi" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) "adj" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -4104,14 +4085,6 @@ icon_state = "white" }, /area/corsat/sigma/dorms) -"ame" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/glass, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) "amf" = ( /obj/structure/platform{ dir = 4; @@ -4201,12 +4174,6 @@ }, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"ams" = ( -/obj/structure/surface/table/woodentable, -/obj/item/folder/blue, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) "amt" = ( /obj/structure/surface/table/woodentable, /obj/item/toy/deck, @@ -4576,12 +4543,6 @@ icon_state = "officesquares" }, /area/corsat/gamma/airlock/north) -"ans" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/camera, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) "ant" = ( /obj/structure/stairs{ dir = 1 @@ -6312,12 +6273,6 @@ icon_state = "squares" }, /area/corsat/gamma/hangar/cargo) -"asS" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/popcorn, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) "asT" = ( /obj/item/trash/candy, /turf/open/floor/wood, @@ -10947,11 +10902,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"aFh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/corsat/gamma/biodome) "aFi" = ( /obj/structure/toilet, /obj/structure/machinery/light/small{ @@ -13345,6 +13295,16 @@ icon_state = "plate" }, /area/corsat/sigma/airlock/control) +"aLr" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "yellow" + }, +/area/corsat/gamma/engineering) "aLs" = ( /turf/open/floor/corsat{ dir = 1; @@ -14518,11 +14478,6 @@ icon_state = "red" }, /area/corsat/sigma/south/security) -"aOC" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/corsat/sigma/biodome) "aOD" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/green{ @@ -15217,14 +15172,6 @@ icon_state = "mars_cave_2" }, /area/corsat/sigma/biodome) -"aQy" = ( -/obj/structure/tunnel{ - id = "hole4" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome) "aQz" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/emergency_access) @@ -27404,14 +27351,6 @@ icon_state = "yellow" }, /area/corsat/sigma/south/robotics) -"bze" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/robotics) "bzf" = ( /obj/structure/surface/table/almayer, /obj/item/tool/lighter/random, @@ -27651,14 +27590,6 @@ icon_state = "plate" }, /area/corsat/sigma/south/engineering) -"bzF" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) "bzG" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, @@ -31243,6 +31174,16 @@ icon_state = "yellow" }, /area/corsat/omega/maint) +"bLH" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "yellow" + }, +/area/corsat/omega/maint) "bLI" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Custodial Closet"; @@ -31559,15 +31500,6 @@ icon_state = "spiralplate" }, /area/corsat/sigma/southeast/dataoffice) -"bMT" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) "bMU" = ( /obj/structure/flora/pottedplant, /turf/open/floor/corsat{ @@ -31771,17 +31703,6 @@ icon_state = "bluegrey" }, /area/corsat/sigma/south/offices) -"bNy" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) "bNz" = ( /obj/structure/machinery/light{ dir = 8 @@ -31940,6 +31861,16 @@ icon_state = "yellowcorner" }, /area/corsat/gamma/engineering) +"bNV" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat{ + icon_state = "yellow" + }, +/area/corsat/sigma/south/engineering) "bNW" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/corsat{ @@ -36339,17 +36270,6 @@ icon_state = "bluegrey" }, /area/corsat/gamma/hangar/flightcontrol) -"cst" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) "csE" = ( /turf/open/floor/corsat{ icon_state = "plate" @@ -36787,6 +36707,12 @@ }, /turf/open/space/transit/east/shuttlespace_ew10, /area/space) +"cPu" = ( +/obj/structure/surface/table/woodentable, +/obj/item/folder/blue, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) "cPC" = ( /turf/open/floor/corsat{ dir = 8; @@ -36912,12 +36838,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"cWa" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/sigmaremote) "cWf" = ( /turf/open/floor/corsat{ dir = 4; @@ -37492,19 +37412,6 @@ icon_state = "squares" }, /area/corsat/sigma/south/security) -"dsF" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) "dta" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -37628,17 +37535,6 @@ icon_state = "squares" }, /area/corsat/gamma/hangar) -"dwa" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, -/area/corsat/theta/biodome/complex) "dwl" = ( /turf/open/floor/corsat{ dir = 4; @@ -37897,6 +37793,11 @@ icon_state = "yellow" }, /area/corsat/sigma/southeast/generator) +"dFW" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/corsat/omega/biodome) "dGb" = ( /obj/structure/machinery/light{ dir = 8 @@ -38039,16 +37940,14 @@ icon_state = "officesquares" }, /area/corsat/gamma/administration) -"dNs" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, +"dNh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" + dir = 1; + icon_state = "purplewhitecorner" }, -/area/corsat/omega/maint) +/area/corsat/theta/biodome/complex) "dNC" = ( /turf/open/floor/corsat{ dir = 8; @@ -38188,6 +38087,12 @@ icon_state = "bluegreycorner" }, /area/corsat/gamma/hangar/flightcontrol) +"dRR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/mars_cave{ + icon_state = "mars_cave_2" + }, +/area/corsat/sigma/biodome) "dSi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -38664,6 +38569,10 @@ icon_state = "red" }, /area/corsat/omega/hallways) +"eiZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/corsat, +/area/corsat/gamma/freezer) "ejb" = ( /obj/structure/machinery/light{ dir = 1 @@ -39109,14 +39018,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome, /area/corsat/omega/offices) -"exb" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) "exf" = ( /obj/structure/machinery/computer3/server/rack, /turf/open/floor/almayer{ @@ -39159,13 +39060,6 @@ icon_state = "warnplate" }, /area/corsat/omega/hangar) -"eyA" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) "eyK" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat, @@ -39863,11 +39757,6 @@ icon_state = "brown" }, /area/corsat/sigma/cargo) -"feC" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) "feD" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/corsat{ @@ -40160,13 +40049,6 @@ icon_state = "purplewhite" }, /area/corsat/gamma/biodome/virology) -"fmR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/biodome/complex) "fmZ" = ( /turf/open/floor/corsat{ dir = 8; @@ -40200,12 +40082,6 @@ icon_state = "squares" }, /area/corsat/sigma/checkpoint) -"foQ" = ( -/obj/structure/tunnel{ - id = "hole2" - }, -/turf/open/ice, -/area/corsat/gamma/biodome) "fps" = ( /obj/structure/machinery/atm{ pixel_y = -30 @@ -40727,6 +40603,14 @@ icon_state = "sterileplate" }, /area/corsat/gamma/kitchen) +"fLH" = ( +/obj/structure/surface/rack, +/obj/item/toy/plush/farwa, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "red" + }, +/area/corsat/omega/hangar/security) "fMi" = ( /obj/structure/machinery/light{ dir = 4 @@ -41416,6 +41300,11 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) +"glT" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/corsat/omega/control) "gne" = ( /turf/open/floor/corsat{ dir = 1; @@ -42040,6 +41929,10 @@ icon_state = "purple" }, /area/corsat/omega/hallways) +"gIq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/snow, +/area/corsat/gamma/biodome) "gIT" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -42650,6 +42543,13 @@ icon_state = "bluecorner" }, /area/corsat/omega/control) +"hbO" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) "hbX" = ( /turf/open/floor{ dir = 8; @@ -43113,11 +43013,6 @@ icon_state = "tan" }, /area/corsat/gamma/residential/researcher) -"huu" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/ice, -/area/corsat/gamma/biodome) "huv" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/camera/autoname{ @@ -43323,13 +43218,6 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"hzM" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/datamaint) "hzU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -43578,14 +43466,6 @@ icon_state = "redcorner" }, /area/corsat/omega/hangar) -"hHy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/ice, -/area/corsat/gamma/biodome) "hHA" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/almayer/research/containment/floor2{ @@ -43754,13 +43634,6 @@ icon_state = "purplewhitecorner" }, /area/corsat/theta/biodome/hydrowest) -"hNI" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/tunnel{ - id = "hole3" - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) "hOb" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome, @@ -44375,6 +44248,11 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) +"ikW" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) "ill" = ( /obj/structure/machinery/camera/autoname{ dir = 1; @@ -44630,6 +44508,11 @@ icon_state = "retrosquareslight" }, /area/corsat/sigma/south/complex) +"ivk" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/snow, +/area/corsat/gamma/biodome) "ivy" = ( /obj/structure/machinery/camera/autoname{ dir = 1; @@ -44795,13 +44678,6 @@ icon_state = "retrosquares" }, /area/corsat/sigma/north) -"iBs" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) "iBO" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -45286,13 +45162,6 @@ icon_state = "whitetan" }, /area/corsat/gamma/residential/west) -"iWA" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper, -/obj/item/tool/pen, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) "iWH" = ( /obj/structure/machinery/disposal, /turf/open/floor/corsat{ @@ -45710,6 +45579,14 @@ icon_state = "plate" }, /area/corsat/theta/airlock/control) +"jof" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/ice, +/area/corsat/gamma/biodome) "jok" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/skills{ @@ -45720,14 +45597,6 @@ icon_state = "purplewhite" }, /area/corsat/gamma/biodome/complex) -"jpn" = ( -/obj/structure/surface/rack, -/obj/item/toy/plush/farwa, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) "jpB" = ( /turf/open/floor/corsat{ dir = 4; @@ -46427,14 +46296,6 @@ icon_state = "whitetan" }, /area/corsat/gamma/residential/researcher) -"jWB" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) "jWE" = ( /turf/open/floor/corsat{ dir = 8; @@ -47090,6 +46951,12 @@ icon_state = "darkgreen" }, /area/corsat/gamma/rnr) +"kwE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/corsat/omega/biodome) "kwK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -47267,12 +47134,6 @@ icon_state = "squares" }, /area/corsat/sigma/south/engineering) -"kFo" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp/green, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) "kFq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -47800,6 +47661,12 @@ icon_state = "red" }, /area/corsat/gamma/foyer) +"kZo" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) "kZy" = ( /obj/structure/machinery/power/apc/hyper{ dir = 1; @@ -48021,6 +47888,11 @@ icon_state = "white" }, /area/corsat/gamma/hallwaysouth) +"lgT" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/ice, +/area/corsat/gamma/biodome) "lhi" = ( /obj/structure/surface/rack, /obj/item/clothing/shoes/sandal, @@ -48318,10 +48190,6 @@ icon_state = "lightplate" }, /area/corsat/theta/biodome/complex) -"lsu" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat, -/area/corsat/gamma/freezer) "lsB" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -48569,13 +48437,6 @@ icon_state = "darkgreencorner" }, /area/corsat/sigma/hangar/arrivals) -"lCv" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) "lDb" = ( /obj/effect/landmark/corpsespawner/prisoner, /turf/open/floor/corsat{ @@ -48848,6 +48709,15 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) +"lKB" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/corsat{ + dir = 9; + icon_state = "bluegrey" + }, +/area/corsat/sigma/southeast/dataoffice) "lKC" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -50011,6 +49881,12 @@ icon_state = "retrosquareslight" }, /area/corsat/omega/complex) +"mCS" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/binoculars, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) "mCU" = ( /obj/structure/machinery/light{ dir = 8 @@ -50419,12 +50295,6 @@ icon_state = "darkgreen" }, /area/corsat/gamma/foyer) -"mRC" = ( -/obj/effect/alien/weeds/node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/corsat/omega/biodome) "mRI" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -50822,14 +50692,6 @@ icon_state = "red" }, /area/corsat/gamma/hangar/checkpoint) -"njL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) "njP" = ( /obj/structure/closet/wardrobe/virology_white, /obj/structure/machinery/camera/autoname{ @@ -50936,14 +50798,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"nnC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/ice, -/area/corsat/gamma/biodome) "noy" = ( /turf/open/floor/corsat{ dir = 4; @@ -51114,6 +50968,14 @@ icon_state = "carpet13-5" }, /area/corsat/omega/offices) +"nsJ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 6; + icon_state = "purplewhite" + }, +/area/corsat/theta/biodome/complex) "ntg" = ( /turf/open/shuttle/escapepod{ icon_state = "floor5" @@ -52425,6 +52287,13 @@ icon_state = "purplewhite" }, /area/corsat/sigma/south/complex) +"oqW" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "purplewhite" + }, +/area/corsat/theta/biodome/complex) "orz" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -52533,6 +52402,12 @@ icon_state = "mars_cave_11" }, /area/corsat/sigma/biodome) +"owV" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) "oxk" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -53328,6 +53203,13 @@ icon_state = "plate" }, /area/corsat/gamma/biodome/complex) +"pcn" = ( +/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) "pcu" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -53362,6 +53244,11 @@ icon_state = "retrosquares" }, /area/corsat/theta/airlock/west) +"pdu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/corsat/sigma/biodome) "pdw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -53785,6 +53672,14 @@ icon_state = "yellow" }, /area/corsat/gamma/engineering/atmos) +"pwI" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/corsat/sigma/south/engineering) "pwO" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat{ @@ -53890,14 +53785,6 @@ icon_state = "cargo" }, /area/corsat/gamma/cargo) -"pCh" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) "pCi" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/corsat{ @@ -54100,12 +53987,6 @@ icon_state = "purple" }, /area/corsat/omega/hallways) -"pMI" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/south) "pMN" = ( /turf/open/floor/corsat{ dir = 4; @@ -54138,6 +54019,12 @@ icon_state = "plate" }, /area/corsat/gamma/foyer) +"pNo" = ( +/obj/effect/alien/weeds/node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/corsat/omega/biodome) "pOs" = ( /obj/structure/machinery/colony_floodlight{ dir = 4 @@ -54299,6 +54186,13 @@ icon_state = "squares" }, /area/corsat/gamma/security) +"pUR" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper, +/obj/item/tool/pen, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) "pVm" = ( /turf/open/floor/corsat{ dir = 1; @@ -54560,6 +54454,10 @@ icon_state = "retrosquareslight" }, /area/corsat/theta/biodome/hydrowest) +"qbO" = ( +/obj/effect/alien/weeds/node, +/turf/open/snow, +/area/corsat/gamma/biodome) "qbV" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -54576,6 +54474,13 @@ }, /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) +"qcy" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 5; + icon_state = "single_part" + }, +/turf/open/snow, +/area/corsat/gamma/biodome) "qcR" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/cans/beer, @@ -54661,6 +54566,12 @@ }, /turf/open/floor/plating, /area/corsat/omega/offices) +"qfz" = ( +/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, +/turf/open/ice, +/area/corsat/gamma/biodome) "qgg" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") @@ -55666,6 +55577,17 @@ "qSi" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/airlock/east/id) +"qSr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "purplecorner" + }, +/area/corsat/theta/biodome/complex) "qSt" = ( /obj/structure/closet/wardrobe/white, /obj/item/clothing/head/ushanka, @@ -56104,6 +56026,11 @@ icon_state = "squares" }, /area/corsat/gamma/hangar) +"rlf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/corsat/gamma/biodome) "rlh" = ( /obj/structure/machinery/shower{ dir = 4 @@ -56302,6 +56229,13 @@ icon_state = "bluegrey" }, /area/corsat/landing/console2) +"rrM" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) "rrY" = ( /turf/open/floor/corsat{ dir = 8; @@ -56741,6 +56675,12 @@ icon_state = "retrosquares" }, /area/corsat/gamma/hangar/arrivals) +"rJw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/corsat/sigma/airlock/south) "rKa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -57117,6 +57057,12 @@ icon_state = "red" }, /area/corsat/sigma/hangar/security) +"rWC" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/popcorn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) "rWE" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat{ @@ -57183,6 +57129,14 @@ icon_state = "mars_cave_2" }, /area/corsat/sigma/biodome) +"rXU" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) "rYj" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -57252,10 +57206,6 @@ icon_state = "whitetancorner" }, /area/corsat/gamma/residential/researcher) -"sap" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat, -/area/corsat/sigma/southeast/generator) "saV" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -58067,6 +58017,14 @@ icon_state = "plate" }, /area/corsat/gamma/biodome/virology) +"sFE" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) "sFF" = ( /obj/effect/landmark/queen_spawn, /turf/open/ice, @@ -58211,6 +58169,12 @@ icon_state = "purplewhite" }, /area/corsat/gamma/sigmaremote) +"sKz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/corsat/gamma/sigmaremote) "sKQ" = ( /obj/structure/machinery/light{ dir = 4 @@ -58551,11 +58515,6 @@ icon_state = "squares" }, /area/corsat/sigma/southeast/generator) -"sWP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/corsat/omega/biodome) "sXf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; @@ -58941,6 +58900,14 @@ icon_state = "redcorner" }, /area/corsat/sigma/north) +"tmC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "purplewhite" + }, +/area/corsat/theta/biodome/complex) "tnS" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert{ @@ -59296,16 +59263,6 @@ icon_state = "red" }, /area/corsat/sigma/hangar/checkpoint) -"tCi" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) "tCn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -59466,6 +59423,14 @@ icon_state = "purple" }, /area/corsat/sigma/south) +"tIe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "purplewhitecorner" + }, +/area/corsat/theta/biodome/complex) "tIk" = ( /turf/closed/wall/resin/membrane, /area/corsat/sigma/biodome) @@ -59998,6 +59963,9 @@ icon_state = "purplewhite" }, /area/corsat/sigma/south/complex) +"uaH" = ( +/turf/open/snow, +/area/corsat/gamma/biodome) "ubq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/oil, @@ -60197,16 +60165,6 @@ icon_state = "red" }, /area/corsat/sigma/hangar/monorail/control) -"ukQ" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) "ukV" = ( /obj/structure/window_frame/corsat, /turf/open/floor/plating, @@ -60350,6 +60308,13 @@ icon_state = "plate" }, /area/corsat/sigma/south/complex) +"uqa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "yellow" + }, +/area/corsat/sigma/southeast/datamaint) "uqb" = ( /obj/structure/cargo_container/trijent/right, /turf/open/floor/corsat{ @@ -61137,14 +61102,6 @@ icon_state = "bluecorner" }, /area/corsat/sigma/south) -"uST" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) "uTf" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, @@ -61466,12 +61423,6 @@ icon_state = "purplewhite" }, /area/corsat/sigma/south/complex) -"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, -/turf/open/ice, -/area/corsat/gamma/biodome) "vgl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -61580,6 +61531,14 @@ icon_state = "red" }, /area/corsat/omega/control) +"viS" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "purplewhite" + }, +/area/corsat/theta/biodome/complex) "vjb" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/corsat{ @@ -61747,6 +61706,10 @@ icon_state = "red" }, /area/corsat/omega/hangar) +"vpD" = ( +/obj/structure/bed/nest, +/turf/open/snow, +/area/corsat/gamma/biodome) "vpT" = ( /obj/structure/closet/crate/science, /obj/item/storage/fancy/vials/random, @@ -61915,6 +61878,14 @@ icon_state = "floor5" }, /area/corsat/theta/biodome/complex) +"vyc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/ice, +/area/corsat/gamma/biodome) "vyk" = ( /turf/open/floor/corsat{ dir = 1; @@ -62423,6 +62394,13 @@ icon_state = "red" }, /area/corsat/sigma/hangar) +"vPR" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/bronze, +/obj/item/trash/cigbutt/cigarbutt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) "vQg" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/pipes/standard/manifold/hidden/green, @@ -62718,14 +62696,6 @@ icon_state = "whitetancorner" }, /area/corsat/gamma/residential/west) -"wfD" = ( -/obj/structure/tunnel{ - id = "hole0" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/biodome) "wfK" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -62995,6 +62965,19 @@ icon_state = "lightplate" }, /area/corsat/gamma/sigmaremote) +"woE" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/corsat{ + dir = 10; + icon_state = "whitebluefull" + }, +/area/corsat/gamma/residential/lavatory) "wpk" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -63124,6 +63107,14 @@ }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) +"wub" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/corsat/sigma/south/robotics) "wuh" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2; @@ -63184,6 +63175,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) +"wvM" = ( +/obj/structure/ice/thin/single, +/turf/open/snow, +/area/corsat/gamma/biodome) "wvN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -63295,14 +63290,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 @@ -63416,19 +63403,17 @@ icon_state = "purplewhite" }, /area/corsat/gamma/biodome/toxins) +"wEH" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) "wFJ" = ( /turf/open/floor/corsat{ dir = 4; icon_state = "red" }, /area/corsat/gamma/airlock/control) -"wFO" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 5; - icon_state = "single_part" - }, -/turf/open/ice, -/area/corsat/gamma/biodome) "wFU" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -63487,6 +63472,14 @@ icon_state = "purplewhite" }, /area/corsat/gamma/sigmaremote) +"wHg" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) "wHN" = ( /obj/item/weapon/gun/flamer, /obj/item/explosive/grenade/incendiary, @@ -63670,6 +63663,17 @@ icon_state = "purplewhite" }, /area/corsat/theta/biodome/complex) +"wLE" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "bluegrey" + }, +/area/corsat/sigma/south/offices) "wLS" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; @@ -63722,14 +63726,6 @@ icon_state = "retrosquares" }, /area/corsat/gamma/rnr) -"wPz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/complex) "wQd" = ( /obj/structure/filingcabinet/filingcabinet, /turf/open/floor/corsat{ @@ -64081,6 +64077,10 @@ icon_state = "purplewhite" }, /area/corsat/theta/biodome/complex) +"xfB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/corsat, +/area/corsat/sigma/southeast/generator) "xfC" = ( /obj/structure/barricade/handrail{ dir = 8 @@ -64169,6 +64169,13 @@ icon_state = "lightplate" }, /area/corsat/gamma/biodome/toxins) +"xkx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/corsat/theta/biodome/complex) "xkB" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" @@ -64896,6 +64903,12 @@ }, /turf/open/ice, /area/corsat/gamma/biodome) +"xNj" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/camera, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) "xNw" = ( /turf/open/floor/corsat{ icon_state = "purplewhite" @@ -64914,6 +64927,17 @@ icon_state = "arrow_east" }, /area/corsat/sigma/southeast/datalab) +"xOB" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/corsat{ + dir = 10; + icon_state = "whitebluefull" + }, +/area/corsat/gamma/residential/lavatory) "xOJ" = ( /turf/open/floor/corsat{ dir = 9; @@ -64968,11 +64992,6 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"xQF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/corsat/omega/control) "xQH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -65339,14 +65358,6 @@ icon_state = "retrosquareslight" }, /area/corsat/gamma/biodome/toxins) -"ygx" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/complex) "ygy" = ( /obj/structure/pipes/standard/simple/hidden/universal, /turf/open/floor/corsat{ @@ -66086,10 +66097,10 @@ bfc bfc pwp bfG -bfg +wvM nfz -xCy -ims +vpD +ivk nfz aiU aiU @@ -66332,12 +66343,12 @@ bfc bfc bfc bfc -bfc -aEZ -bfc -wFO -wFO -bfc +uaH +qbO +gIq +qcy +qcy +uaH bfc aiU aiU @@ -66574,13 +66585,13 @@ wiF fWM wiF wiF -nnC -huu -bfc +vyc +lgT bfc bfc -bfc -wFO +uaH +uaH +qcy bfc bfc bfc @@ -66741,7 +66752,7 @@ acj acg abN acH -exb +rXU acN aAU adn @@ -66819,10 +66830,10 @@ bfc bfc bfc bfc -hHy -huu +jof +lgT +bfc bfc -foQ bfc bfc bfc @@ -66914,12 +66925,12 @@ azX azX azX azX -sWP -sWP -sWP -sWP -sWP -sWP +dFW +dFW +dFW +dFW +dFW +dFW azX azX azX @@ -67155,20 +67166,20 @@ ylo azX azX azX -sWP -sWP -sWP -sWP -sWP +dFW +dFW +dFW +dFW +dFW avX avX avX avX -sWP -sWP -sWP -sWP -sWP +dFW +dFW +dFW +dFW +dFW azX azX azX @@ -67398,9 +67409,9 @@ ylo ylo azX azX -sWP -sWP -sWP +dFW +dFW +dFW avX aFc avX @@ -67413,9 +67424,9 @@ avX avX avX avX -sWP -sWP -sWP +dFW +dFW +dFW azX azX ylo @@ -67501,7 +67512,7 @@ diP gth uya abP -uST +sFE aGb abO abP @@ -67563,8 +67574,8 @@ bfc bfc bfc bfc -hHy -huu +jof +lgT bfc bfc bfZ @@ -67642,8 +67653,8 @@ ylo azX azX azX -sWP -sWP +dFW +dFW avX avX avX @@ -67660,8 +67671,8 @@ avX avX avX aFc -sWP -sWP +dFW +dFW azX azX azX @@ -67808,8 +67819,8 @@ bfc bfc bfc bfc -hHy -huu +jof +lgT bfc bfc aEZ @@ -67885,9 +67896,9 @@ ylo ylo azX azX -sWP -sWP -sWP +dFW +dFW +dFW avX avX avX @@ -67906,9 +67917,9 @@ avX avX avX avX -sWP -sWP -sWP +dFW +dFW +dFW azX azX ylo @@ -68046,9 +68057,9 @@ jho aIt nri wiF -vfR -vfR -vfR +qfz +qfz +qfz wiF aFd wiF @@ -68129,8 +68140,8 @@ ylo ylo azX azX -sWP -sWP +dFW +dFW qfl avX avX @@ -68138,14 +68149,14 @@ avX aFc avX avX -sWP +dFW vCx vCx hwe hwe vCx vCx -sWP +dFW avX avX avX @@ -68153,8 +68164,8 @@ avX avX aFc qfl -sWP -sWP +dFW +dFW azX azX ylo @@ -68292,7 +68303,7 @@ aIt bfe bfc bfc -huu +lgT bfc bfc bfc @@ -68373,8 +68384,8 @@ ylo ylo azX azX -sWP -sWP +dFW +dFW dWJ avX avX @@ -68399,8 +68410,8 @@ avX avX avX qfl -sWP -sWP +dFW +dFW azX azX ylo @@ -68617,8 +68628,8 @@ ylo ylo ylo azX -sWP -sWP +dFW +dFW qfl avX avX @@ -68645,8 +68656,8 @@ avX avX avX dPH -sWP -sWP +dFW +dFW azX ylo ylo @@ -68862,7 +68873,7 @@ ylo ylo azX azX -sWP +dFW qfl avX aFc @@ -68891,7 +68902,7 @@ hwe hwe aFc qfl -sWP +dFW azX azX ylo @@ -68981,7 +68992,7 @@ abP abO aQG abH -iWA +pUR abG ylo ylo @@ -69106,8 +69117,8 @@ ylo ylo azX azX -sWP -sWP +dFW +dFW avX avX avX @@ -69136,8 +69147,8 @@ hwe hwe avX avX -sWP -sWP +dFW +dFW azX azX ylo @@ -69350,8 +69361,8 @@ ylo ylo ylo azX -sWP -sWP +dFW +dFW avX avX avX @@ -69382,8 +69393,8 @@ avX avX avX avX -sWP -sWP +dFW +dFW azX ylo ylo @@ -69435,7 +69446,7 @@ abH abM abO abP -eyA +hbO abN eTj abP @@ -69534,8 +69545,8 @@ bfc bfd bfc bfc -huu -huu +lgT +lgT aEZ bfc bfc @@ -69595,7 +69606,7 @@ aSa aSa azX azX -sWP +dFW avX avX avX @@ -69628,7 +69639,7 @@ avX avX avX avX -sWP +dFW azX azX ylo @@ -69779,8 +69790,8 @@ bfc bfc bfc bfc -huu -huu +lgT +lgT bfc bfc bfc @@ -69839,8 +69850,8 @@ aSa aSa aSa azX -sWP -sWP +dFW +dFW avX avX aFc @@ -69853,14 +69864,14 @@ avX avX avX aFc -sWP +dFW vCx vCx hwe hwe vCx vCx -sWP +dFW avX avX avX @@ -69873,8 +69884,8 @@ avX aFc avX aFc -sWP -sWP +dFW +dFW azX ylo ylo @@ -70084,7 +70095,7 @@ ylo ylo ylo azX -sWP +dFW avX avX avX @@ -70119,7 +70130,7 @@ avX avX avX avX -sWP +dFW azX ylo ylo @@ -70329,7 +70340,7 @@ ylo ylo ylo azX -sWP +dFW avX avX avX @@ -70364,7 +70375,7 @@ avX avX avX avX -sWP +dFW azX ylo ylo @@ -70441,7 +70452,7 @@ jZA hxc vWM abP -iWA +pUR aGj abN abP @@ -70574,7 +70585,7 @@ ylo ylo azX azX -sWP +dFW avX avX avX @@ -70609,7 +70620,7 @@ avX avX avX avX -sWP +dFW azX azX ylo @@ -70818,8 +70829,8 @@ baU baU baU azX -sWP -sWP +dFW +dFW avX aFc avX @@ -70831,7 +70842,7 @@ avX avX aFc avX -sWP +dFW vCx dWJ dWJ @@ -70842,7 +70853,7 @@ toC dPH jyX vCx -sWP +dFW avX avX avX @@ -70854,8 +70865,8 @@ avX avX avX avX -sWP -sWP +dFW +dFW azX ylo ylo @@ -71072,26 +71083,26 @@ avX avX aFc avX -sWP -sWP +dFW +dFW avX avX -sWP -sWP -sWP -sWP -sWP +dFW +dFW +dFW +dFW +dFW hwe hwe -sWP -sWP -sWP -sWP -sWP +dFW +dFW +dFW +dFW +dFW avX avX -sWP -sWP +dFW +dFW avX avX avX @@ -71100,7 +71111,7 @@ hwe avX avX avX -sWP +dFW azX ylo ylo @@ -71318,11 +71329,11 @@ hwe avX avX avX -sWP +dFW hwe hwe -sWP -sWP +dFW +dFW vCx qfl vZJ @@ -71331,11 +71342,11 @@ avX vCx qfl vCx -sWP -sWP +dFW +dFW hwe hwe -sWP +dFW avX aFc avX @@ -71345,7 +71356,7 @@ hwe avX aFc avX -sWP +dFW azX ylo ylo @@ -71561,13 +71572,13 @@ avX hwe hwe avX -wAz +kwE avX -sWP +dFW avX avX avX -mRC +pNo vCx hwe vCx @@ -71576,13 +71587,13 @@ avX vCx hwe vCx -sWP +dFW avX avX avX -sWP +dFW avX -wfD +kwE avX avX avX @@ -71590,7 +71601,7 @@ avX avX avX avX -sWP +dFW azX ylo ylo @@ -71808,7 +71819,7 @@ avX aFc avX avX -sWP +dFW avX avX aFc @@ -71825,7 +71836,7 @@ aFc avX avX aFc -sWP +dFW avX avX avX @@ -71835,7 +71846,7 @@ avX avX avX avX -sWP +dFW azX ylo ylo @@ -72043,8 +72054,8 @@ baU baU baU azX -sWP -sWP +dFW +dFW avX avX avX @@ -72053,7 +72064,7 @@ avX avX avX avX -sWP +dFW avX avX avX @@ -72070,7 +72081,7 @@ avX avX avX avX -sWP +dFW avX avX avX @@ -72079,8 +72090,8 @@ avX avX avX avX -sWP -sWP +dFW +dFW azX ylo ylo @@ -72289,7 +72300,7 @@ ylo ylo azX azX -sWP +dFW avX avX avX @@ -72298,7 +72309,7 @@ avX avX avX avX -sWP +dFW avX avX avX @@ -72315,7 +72326,7 @@ avX avX avX avX -sWP +dFW avX avX aFc @@ -72324,7 +72335,7 @@ avX avX avX avX -sWP +dFW azX azX ylo @@ -72534,7 +72545,7 @@ ylo ylo ylo azX -sWP +dFW avX avX avX @@ -72569,7 +72580,7 @@ avX avX avX aFc -sWP +dFW azX ylo ylo @@ -72779,7 +72790,7 @@ ylo ylo ylo azX -sWP +dFW avX avX avX @@ -72814,7 +72825,7 @@ aFc avX avX avX -sWP +dFW azX ylo ylo @@ -72965,7 +72976,7 @@ aEX aEP aEP bfd -aFh +rlf aEP aEX bfS @@ -73024,8 +73035,8 @@ aSa aSa aSa azX -sWP -sWP +dFW +dFW aFc avX avX @@ -73033,7 +73044,7 @@ avX avX avX avX -sWP +dFW avX avX avX @@ -73050,7 +73061,7 @@ vCx avX avX avX -sWP +dFW avX avX avX @@ -73058,8 +73069,8 @@ avX avX avX avX -sWP -sWP +dFW +dFW azX ylo ylo @@ -73080,7 +73091,7 @@ ylo ylo ylo abF -cWa +sKz aax aId hlf @@ -73270,7 +73281,7 @@ aSa aSa azX azX -sWP +dFW avX avX avX @@ -73278,7 +73289,7 @@ aFc avX avX avX -sWP +dFW avX avX avX @@ -73295,7 +73306,7 @@ vCx avX avX avX -sWP +dFW aFc avX avX @@ -73303,7 +73314,7 @@ avX avX avX avX -sWP +dFW azX azX ylo @@ -73515,15 +73526,15 @@ ylo ylo ylo azX -sWP -sWP +dFW +dFW avX avX avX avX avX avX -sWP +dFW avX aFc avX @@ -73540,15 +73551,15 @@ vCx avX avX avX -sWP +dFW avX avX avX avX avX avX -sWP -sWP +dFW +dFW azX ylo ylo @@ -73761,14 +73772,14 @@ auG auG azX azX -sWP -sWP +dFW +dFW avX avX avX avX avX -sWP +dFW avX avX avX @@ -73785,14 +73796,14 @@ vCx avX avX aFc -sWP +dFW avX avX avX avX avX -sWP -sWP +dFW +dFW azX azX ylo @@ -74005,19 +74016,19 @@ bzQ bAa bAj auG -sWP -sWP -sWP +dFW +dFW +dFW avX avX avX avX avX -sWP -sWP -sWP -sWP -sWP +dFW +dFW +dFW +dFW +dFW aLh aLh aLh @@ -74026,17 +74037,17 @@ bao aLh aLh aLh -sWP -sWP -sWP -sWP -sWP +dFW +dFW +dFW +dFW +dFW avX avX avX avX avX -sWP +dFW azX azX ylo @@ -74258,7 +74269,7 @@ avX avX avX avX -sWP +dFW aLh aLh aLh @@ -74274,14 +74285,14 @@ aLh aLh aLh aLh -xQF -sWP +glT +dFW avX avX aFc avX -sWP -sWP +dFW +dFW azX ylo ylo @@ -74503,7 +74514,7 @@ avX avX aFc avX -sWP +dFW aLh bEj bZq @@ -74524,8 +74535,8 @@ avX avX avX avX -sWP -sWP +dFW +dFW azX azX ylo @@ -74742,13 +74753,13 @@ aoE auG hwe hwe -sWP -sWP -sWP -sWP +dFW +dFW +dFW +dFW avX avX -sWP +dFW aLh bEk bEm @@ -74768,8 +74779,8 @@ abx avX avX avX -sWP -sWP +dFW +dFW azX azX ylo @@ -74990,10 +75001,10 @@ bCv aoE pDR pDR -sWP -sWP -sWP -sWP +dFW +dFW +dFW +dFW aLh caQ aLl @@ -75009,11 +75020,11 @@ aLh ajN akw aLv -xQF -sWP -sWP -sWP -sWP +glT +dFW +dFW +dFW +dFW azX azX ylo @@ -75237,8 +75248,8 @@ aoE pDR pDR azX -sWP -sWP +dFW +dFW aLh caQ lLc @@ -75255,8 +75266,8 @@ ajp lLc bYU aLh -sWP -sWP +dFW +dFW azX azX azX @@ -75483,7 +75494,7 @@ aoE aoE azX azX -sWP +dFW aLh baf kqm @@ -75500,7 +75511,7 @@ yla dwS bYW aLh -sWP +dFW azX azX ylo @@ -76504,7 +76515,7 @@ ylo ylo ylo aal -aaB +vPR abr ong ach @@ -78043,7 +78054,7 @@ asg aEW asg apP -dsF +woE ahs ylo ylo @@ -78460,7 +78471,7 @@ ylo ylo ylo aal -aao +mCS abr mfN adR @@ -79017,7 +79028,7 @@ aem vbW cWu arW -cst +xOB apP asg nWr @@ -79930,7 +79941,7 @@ ylo ylo ylo aal -aaB +vPR abr ong ach @@ -80205,7 +80216,7 @@ adx mfN abv abD -ame +wHg mfN abv abD @@ -80399,7 +80410,7 @@ bEp aZb pyL aiB -jpn +fLH lWG lWG lWG @@ -82389,7 +82400,7 @@ abs abs abs abD -adi +kZo abv abs abD @@ -83306,7 +83317,7 @@ azE agQ qKN kyQ -dNs +bLH bOK mAt bLO @@ -87592,7 +87603,7 @@ ary thb hhP eyK -lsu +eiZ nAl uZL mIs @@ -91392,9 +91403,9 @@ vxv ntg ntg aKt -ygx +dNh fzy -pCh +viS aKt qVd kQS @@ -92857,7 +92868,7 @@ aKi aKo aKh aKu -fmR +xkx aXR bbV aKJ @@ -93118,7 +93129,7 @@ qAG kOv kOv iqp -lCv +oqW aKu bdZ aJZ @@ -93363,7 +93374,7 @@ cam bQZ bQZ cam -lCv +oqW aKu aJZ bdS @@ -93592,7 +93603,7 @@ aKi rRR aKj aKu -dwa +qSr aKH aOU oKr @@ -94087,7 +94098,7 @@ mJm lIu mqL aKu -jWB +tmC cam bQW aKt @@ -94332,7 +94343,7 @@ aKE aKE srY aKu -ygx +dNh cam bQW aKt @@ -94822,7 +94833,7 @@ aKE aKE nAu aKu -wPz +tIe cam bQW aKu @@ -95067,7 +95078,7 @@ yji ipE wfL aKu -jWB +tmC cam bQW aKt @@ -95075,10 +95086,10 @@ tfP aYs ksk ksk -njL +nsJ aKu lmx -lCv +oqW aKt iOL aKu @@ -95557,7 +95568,7 @@ bji bpz bsX aKu -jWB +tmC cam cZw aKt @@ -95802,7 +95813,7 @@ aKE aKE srY aKu -ygx +dNh cam srY aKt @@ -96177,7 +96188,7 @@ roh mJy aRd aqi -tCi +aLr nxZ bQs aqi @@ -96537,7 +96548,7 @@ aKE aKE nAu aKu -wPz +tIe cam bQW aKt @@ -96782,9 +96793,9 @@ bRc bRd bRe aKu -jWB +tmC fzy -pCh +viS aKt aKt aKu @@ -97537,7 +97548,7 @@ bdQ bdQ bdQ bdQ -hNI +ikW bdP lKy aJZ @@ -102073,7 +102084,7 @@ bhn aPl aPq aPl -aOC +pdu bhn bhn bhn @@ -103412,7 +103423,7 @@ ylo aEw aEw bwr -bzF +pwI bzH bwQ aEw @@ -105256,9 +105267,9 @@ fbe bhc bhc bhn -aOC +pcn aPl -aOC +pcn bhn bhn bhn @@ -105334,7 +105345,7 @@ aBc aCo aCu aCK -pMI +rJw azN aCO aCX @@ -105494,15 +105505,15 @@ bhc bhc bhc bhn -aOC -aOC +pdu +pdu aPl aPq aPl bhn bhn bhn -aQy +dRR bhn bhn bhn @@ -106604,7 +106615,7 @@ xhd auH bxL aCr -ukQ +bNV aEw aEw aEw @@ -107313,7 +107324,7 @@ ahu nJC aDe auB -bNy +wLE bNA bvt bvt @@ -108078,7 +108089,7 @@ aMi aMi aMi byl -bze +wub auR ylo ylo @@ -115367,7 +115378,7 @@ amw anz aUJ amn -iBs +rrM aki ylo ylo @@ -116822,7 +116833,7 @@ aHf ajB aHf ajB -ams +cPu bvQ amw bvx @@ -118068,7 +118079,7 @@ ylo ylo aSa asK -bMT +lKB bMX gZj oOH @@ -119042,7 +119053,7 @@ gBh fWx amk amn -feC +wEH aki ylo ylo @@ -119065,7 +119076,7 @@ bQF fTw atB bQw -hzM +uqa aMW bQC atG @@ -123456,7 +123467,7 @@ alw aCz asX auo -sap +xfB atD aCz aCz @@ -124428,7 +124439,7 @@ amG rXs akl akl -ans +xNj amE bvQ amC @@ -125887,7 +125898,7 @@ ylo ylo ylo apV -kFo +owV bvQ bjm akl @@ -126880,7 +126891,7 @@ apV apV aZw asN -asS +rWC aZB apV apV diff --git a/maps/map_files/CORSAT/standalone/sigma_ice.dmm b/maps/map_files/CORSAT/standalone/sigma_ice.dmm index c3d3c93b9285..858cfbd69ef9 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, @@ -232,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" = ( @@ -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, @@ -620,10 +630,8 @@ /turf/open/ice, /area/corsat/sigma/biodome/ice) "lN" = ( -/obj/structure/tunnel{ - id = "hole4" - }, -/turf/open/ice, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow, /area/corsat/sigma/biodome/ice) "lP" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -798,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 @@ -815,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 @@ -824,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, @@ -1639,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."; @@ -1789,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, @@ -2111,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; @@ -2346,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, @@ -5137,13 +5175,13 @@ Wk Wk Wk gr -lr +pF Zr Zr YN Zr Zr -lr +pF gr Wk Wk @@ -5225,7 +5263,7 @@ YN Zr io fc -gr +qh Wk Wk Wk @@ -5299,14 +5337,14 @@ Wk Wk Wk gx -lr +pF Zr io YN Zr Zr -lr -nI +pF +jr Wk Wk Wk @@ -5379,8 +5417,8 @@ Wk Wk Wk gr -lr -lr +pF +pF Zr Zr YN @@ -5460,7 +5498,7 @@ Wk Wk nI fc -lr +pF Zr Zr Zr @@ -5468,7 +5506,7 @@ kV lB Zr lr -gr +qh Wk Wk Wk @@ -5539,7 +5577,7 @@ Zr Wk Wk Wk -lr +pF io pe Sl @@ -5547,9 +5585,9 @@ Sl Sl pP Zr -Zr -fc -gx +qL +aC +GT Wk Wk Wk @@ -5620,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 @@ -5706,10 +5744,10 @@ Zr YN Zr Zr -Zr -Zr -Zr -Zr +qL +qL +qL +qL Wk Wk Wk @@ -5786,11 +5824,11 @@ fc Zr YN Zr -Zr +qL Wk -dS -fc -dS +Eo +aC +Eo Wk Wk Wk @@ -5862,8 +5900,8 @@ Zr Zr Zr Wk -dS -dS +QM +QM fc gP fc diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index 4b760f41e5c0..2741e2805b43 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -43,12 +43,6 @@ icon_state = "bright_clean" }, /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" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "aah" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/r_wall/chigusa, @@ -65,10 +59,6 @@ /obj/structure/cargo_container/grant/right, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"aal" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/caves/east_caves) "aam" = ( /turf/open/desert/rock/deep{ icon_state = "rock3" @@ -711,12 +701,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"acq" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acr" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow_edge, @@ -888,12 +872,6 @@ icon_state = "cement_sunbleached9" }, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"acT" = ( -/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_west_entrance) "acU" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/prison{ @@ -1093,11 +1071,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) -"adD" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/east_caves) "adE" = ( /obj/structure/platform, /turf/open/gm/river/desert/shallow_edge{ @@ -2456,13 +2429,6 @@ dir = 8 }, /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 - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "ahK" = ( /obj/effect/decal/cleanable/vomit, /turf/open/asphalt, @@ -2632,13 +2598,6 @@ /obj/structure/largecrate/random/case/double, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"ain" = ( -/obj/effect/landmark/xeno_spawn, -/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_central_hallway) "aio" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached19" @@ -2650,12 +2609,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_wilderness) -"aiq" = ( -/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_central_hallway) "air" = ( /turf/open/desert/dirt{ dir = 1; @@ -2711,13 +2664,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_mining) -"aiz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "aiA" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ @@ -2786,37 +2732,11 @@ icon_state = "darkpurple2" }, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"aiJ" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "aiL" = ( /turf/open/desert/rock/deep/transition{ dir = 9 }, /area/desert_dam/interior/caves/central_caves) -"aiM" = ( -/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, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/east_caves) "aiO" = ( /obj/structure/machinery/light{ dir = 8 @@ -2993,13 +2913,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajn" = ( -/obj/effect/landmark/xeno_spawn, -/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_biology) "ajo" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -3733,12 +3646,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/north_valley_dam) -"als" = ( -/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_biology) "alt" = ( /turf/open/floor/prison{ dir = 8; @@ -4182,14 +4089,6 @@ icon_state = "bright_clean" }, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"amF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "amG" = ( /obj/structure/machinery/light{ dir = 8 @@ -4479,12 +4378,6 @@ icon_state = "cement3" }, /area/desert_dam/interior/dam_interior/west_tunnel) -"ant" = ( -/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_hallway) "anu" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" @@ -4599,13 +4492,6 @@ icon_state = "bright_clean" }, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"anL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "anM" = ( /turf/open/floor/prison{ dir = 6; @@ -4767,22 +4653,6 @@ icon_state = "bright_clean2" }, /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, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"aor" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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_central_hallway) "aos" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -5014,13 +4884,6 @@ icon_state = "darkbrown2" }, /area/desert_dam/interior/dam_interior/hanger) -"aoZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "apa" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached4" @@ -7696,14 +7559,6 @@ dir = 1 }, /area/desert_dam/exterior/valley/valley_crashsite) -"awS" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) "awT" = ( /obj/structure/machinery/light{ dir = 4 @@ -8465,13 +8320,6 @@ dir = 10 }, /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, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "azl" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -8833,13 +8681,6 @@ "aAv" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/temple) -"aAw" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_8" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) "aAx" = ( /obj/effect/decal/sand_overlay/sand2/corner2, /turf/open/asphalt/cement{ @@ -9009,12 +8850,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aAV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "aAW" = ( /turf/open/gm/river/desert/shallow_edge{ dir = 8 @@ -10104,22 +9939,6 @@ icon_state = "cell_stripe" }, /area/shuttle/trijent_shuttle/omega) -"aEu" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/omega{ - pixel_y = 32; - shuttleId = "trijentshuttle22" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/exterior/valley/valley_medical) "aEv" = ( /obj/structure/stairs{ dir = 1 @@ -10348,15 +10167,6 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_crashsite) -"aEY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "aEZ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -10521,13 +10331,6 @@ "aFz" = ( /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"aFA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "aFB" = ( /obj/structure/machinery/light, /obj/effect/decal/sand_overlay/sand2/corner2{ @@ -10564,12 +10367,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) -"aFF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "aFG" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt{ @@ -10669,14 +10466,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) -"aFX" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) "aFY" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 @@ -11184,24 +10973,12 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aHD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) "aHE" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aHF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "aHG" = ( /obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, @@ -11236,15 +11013,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_crashsite) -"aHL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/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_west_hallway) "aHM" = ( /obj/structure/stairs, /obj/structure/platform{ @@ -11519,14 +11287,6 @@ dir = 8 }, /area/desert_dam/exterior/valley/valley_crashsite) -"aIH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "aII" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 @@ -11927,12 +11687,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) -"aKc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) "aKd" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/desert/dirt{ @@ -12529,12 +12283,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) -"aLH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "aLI" = ( /obj/effect/decal/cleanable/dirt, /turf/open/desert/dirt, @@ -14387,16 +14135,6 @@ /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"aRB" = ( -/obj/docking_port/stationary/trijent_elevator/occupied{ - id = "trijent_lz2"; - name = "Lz2 Elevator"; - airlock_area = /area/shuttle/trijent_shuttle/lz2; - elevator_network = "B"; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/B - }, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz2) "aRC" = ( /turf/open/floor{ dir = 8; @@ -14798,14 +14536,6 @@ dir = 8 }, /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, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) "aSQ" = ( /turf/open/floor/prison{ dir = 10; @@ -14892,14 +14622,6 @@ icon = 'icons/turf/floors/desert_water_toxic.dmi' }, /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, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) "aTg" = ( /turf/open/floor{ icon_state = "darkyellowcorners2" @@ -15150,14 +14872,6 @@ icon_state = "whitegreenfull" }, /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, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) "aTY" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal, @@ -15425,13 +15139,6 @@ /obj/structure/largecrate/random, /turf/open/floor/prison, /area/desert_dam/building/mining/workshop) -"aUW" = ( -/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) "aUX" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, @@ -20759,18 +20466,6 @@ icon_state = "blue" }, /area/desert_dam/interior/dam_interior/tech_storage) -"bmo" = ( -/obj/structure/safe, -/obj/item/weapon/sword/katana/replica, -/obj/item/reagent_container/food/drinks/bottle/absinthe, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) "bmp" = ( /obj/structure/surface/rack, /obj/structure/closet/fireaxecabinet{ @@ -23536,14 +23231,6 @@ icon_state = "cement1" }, /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, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/mining/workshop) "bvv" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -28202,14 +27889,6 @@ icon_state = "bright_clean" }, /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, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) "bLo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -28892,11 +28571,6 @@ dir = 8 }, /area/desert_dam/exterior/river/riverside_central_north) -"bNu" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/caves/east_caves) "bNv" = ( /turf/open/floor/prison{ dir = 4; @@ -28913,6 +28587,22 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/armory) +"bNA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/omega{ + pixel_y = 32; + shuttleId = "trijentshuttle22" + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "sterile_white" + }, +/area/desert_dam/exterior/valley/valley_medical) "bNC" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -35127,12 +34817,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"chl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, -/area/desert_dam/interior/caves/east_caves) "chm" = ( /obj/structure/platform{ dir = 8 @@ -35611,10 +35295,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/medical/break_room) -"cjc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/east_caves) "cjf" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -40026,14 +39706,6 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_telecoms) -"cxl" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) "cxm" = ( /turf/open/desert/dirt{ icon_state = "desert_transition_edge1" @@ -46901,16 +46573,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cTd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "cTg" = ( /obj/structure/machinery/light, /turf/open/floor/prison{ @@ -47045,10 +46707,6 @@ icon_state = "cement_sunbleached4" }, /area/desert_dam/exterior/valley/valley_cargo) -"cTE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_wilderness) "cTF" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -47541,14 +47199,6 @@ icon_state = "bright_clean" }, /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, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/mining/workshop) "cVM" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 @@ -47591,6 +47241,10 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/hydroponics/hydroponics_breakroom) +"cVW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/caves/east_caves) "cVX" = ( /obj/structure/platform{ dir = 1 @@ -47668,20 +47322,6 @@ icon_state = "kitchen" }, /area/desert_dam/building/cafeteria/cafeteria) -"cWq" = ( -/obj/effect/decal/sand_overlay/sand1, -/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, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_civilian) "cWv" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached{ @@ -48001,17 +47641,6 @@ icon_state = "cement_sunbleached19" }, /area/desert_dam/exterior/valley/valley_civilian) -"cYu" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) "cYv" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /obj/structure/disposalpipe/segment{ @@ -48067,22 +47696,6 @@ icon_state = "bright_clean2" }, /area/desert_dam/building/warehouse/warehouse) -"cYF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, -/area/desert_dam/building/dorms/hallway_northwing) "cYG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -49522,16 +49135,6 @@ icon_state = "floor_marked" }, /area/desert_dam/building/hydroponics/hydroponics_loading) -"deB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) "deC" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison{ @@ -49770,13 +49373,6 @@ icon_state = "sterile_white" }, /area/desert_dam/building/cafeteria/cafeteria) -"dfr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) "dfs" = ( /obj/structure/machinery/light{ dir = 4 @@ -50513,14 +50109,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_south) -"djA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) "djV" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -50846,14 +50434,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"dlN" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) "dlP" = ( /obj/structure/platform{ dir = 4 @@ -50927,6 +50507,15 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) +"dmI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/desert_dam/building/dorms/pool) "dmJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -50985,6 +50574,13 @@ icon_state = "sterile_white" }, /area/desert_dam/building/cafeteria/loading) +"dnv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkpurple2" + }, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "dny" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Break Room" @@ -51095,12 +50691,6 @@ icon_state = "cement_sunbleached13" }, /area/desert_dam/exterior/valley/valley_hydro) -"dps" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_civilian) "dpu" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -52568,14 +52158,6 @@ /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/desert/dirt, /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, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "dzU" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -53816,12 +53398,6 @@ icon_state = "green" }, /area/desert_dam/building/dorms/hallway_westwing) -"dGG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/desert_dam/building/dorms/restroom) "dGI" = ( /obj/structure/disposalpipe/segment, /turf/open/asphalt, @@ -54145,6 +53721,10 @@ icon_state = "8,0" }, /area/desert_dam/exterior/valley/valley_hydro) +"dIb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) "dId" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/floor/coagulation{ @@ -54262,6 +53842,14 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_hydro) +"dIy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) "dIz" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -55423,12 +55011,6 @@ icon_state = "darkbrown2" }, /area/desert_dam/interior/dam_interior/disposals) -"dNC" = ( -/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) "dNF" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, @@ -57036,17 +56618,6 @@ icon_state = "whitegreen" }, /area/desert_dam/building/medical/east_wing_hallway) -"dSq" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) "dSr" = ( /obj/item/frame/table, /obj/effect/decal/cleanable/dirt, @@ -57597,13 +57168,6 @@ icon_state = "yellowcorner" }, /area/desert_dam/building/hydroponics/hydroponics) -"dUz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/central_caves) "dUA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -58349,15 +57913,6 @@ icon_state = "white" }, /area/desert_dam/building/water_treatment_one/breakroom) -"dWO" = ( -/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, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) "dWP" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, @@ -58834,11 +58389,6 @@ icon_state = "cement_sunbleached16" }, /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, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) "dZm" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -58860,13 +58410,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_westwing) -"dZz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_westwing) "dZE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/effect/decal/cleanable/dirt, @@ -58887,16 +58430,6 @@ icon_state = "sterile_white" }, /area/desert_dam/building/dorms/pool) -"dZI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/pool) "dZL" = ( /turf/open/gm/river{ name = "pool" @@ -58947,13 +58480,6 @@ icon_state = "green" }, /area/desert_dam/building/dorms/hallway_westwing) -"dZX" = ( -/obj/item/stool, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/dorms/hallway_westwing) "dZY" = ( /obj/structure/surface/table, /obj/item/trash/plate, @@ -59046,13 +58572,6 @@ icon_state = "wood" }, /area/desert_dam/building/dorms/hallway_westwing) -"eaK" = ( -/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, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) "eaL" = ( /obj/structure/sink{ dir = 8; @@ -59363,12 +58882,6 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/control_room) -"ebT" = ( -/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_west_hallway) "ebU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, /turf/open/floor/prison{ @@ -60314,6 +59827,10 @@ icon_state = "cement_sunbleached9" }, /area/desert_dam/exterior/valley/bar_valley_dam) +"elX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/east_caves) "emt" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -60322,11 +59839,17 @@ icon_state = "tile" }, /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, +"epL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) +/area/desert_dam/exterior/valley/valley_wilderness) +"eqP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, +/area/desert_dam/building/mining/workshop) "erB" = ( /obj/item/tool/surgery/surgicaldrill, /obj/item/tool/surgery/circular_saw, @@ -60339,6 +59862,14 @@ icon_state = "whitered" }, /area/desert_dam/building/medical/surgery_room_one) +"erK" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) "esG" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -60365,6 +59896,10 @@ }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) +"eBo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) "eBZ" = ( /obj/item/storage/fancy/vials/random, /obj/structure/surface/table/reinforced, @@ -60385,6 +59920,10 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/open/asphalt, /area/desert_dam/building/water_treatment_one/garage) +"eDE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "eDQ" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -60402,6 +59941,13 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"eKB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + dir = 1; + icon_state = "green" + }, +/area/desert_dam/building/dorms/hallway_northwing) "eKN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -60409,12 +59955,22 @@ icon_state = "cell_stripe" }, /area/desert_dam/interior/dam_interior/hanger) -"eNU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"ePc" = ( +/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, /turf/open/floor/prison{ - icon_state = "whitepurple" + icon_state = "sterile_white" }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +/area/desert_dam/building/cafeteria/cafeteria) +"eQq" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_8" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) "eRn" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" @@ -60456,13 +60012,6 @@ icon_state = "cement_sunbleached12" }, /area/desert_dam/exterior/valley/valley_hydro) -"eWn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_northwing) "eXM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -60475,12 +60024,6 @@ }, /turf/open/floor/wood, /area/desert_dam/building/medical/CMO) -"eYK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/pool) "eYP" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 @@ -60505,9 +60048,11 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"fbK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, +"fcm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached1" + }, /area/desert_dam/exterior/valley/valley_crashsite) "fcu" = ( /obj/effect/landmark/nightmare{ @@ -60537,6 +60082,16 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"fdD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/desert_dam/building/dorms/pool) "feU" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached15" @@ -60563,6 +60118,24 @@ }, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/interior/caves/temple) +"fjC" = ( +/obj/docking_port/stationary/trijent_elevator/empty{ + id = "trijent_omega"; + name = "Omega Elevator"; + airlock_exit = "east"; + airlock_area = /area/shuttle/trijent_shuttle/omega; + elevator_network = "B" + }, +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/omega) +"fkn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellowcorners2" + }, +/area/desert_dam/building/mining/workshop) "flj" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, @@ -60578,12 +60151,6 @@ icon_state = "whitegreen" }, /area/desert_dam/building/medical/virology_wing) -"flu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "fmP" = ( /turf/open/gm/empty, /area/shuttle/trijent_shuttle/lz1) @@ -60605,19 +60172,26 @@ }, /turf/closed/wall/rock/orange, /area/desert_dam/exterior/rock) +"fpY" = ( +/obj/effect/decal/sand_overlay/sand1, +/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) +"fqr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + icon_state = "green" + }, +/area/desert_dam/building/dorms/hallway_westwing) "fqt" = ( /turf/open/desert/dirt{ dir = 9; icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/telecomm/lz2_storage) -"fqy" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) "fqI" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -60625,20 +60199,23 @@ icon_state = "white" }, /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, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +"fsf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_civilian) -"fsP" = ( -/obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + icon_state = "bright_clean2" }, -/area/desert_dam/building/dorms/hallway_westwing) +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"fup" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) "fxs" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal6" @@ -60658,6 +60235,11 @@ icon_state = "darkyellow2" }, /area/desert_dam/interior/dam_interior/garage) +"fBi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) "fBF" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" @@ -60673,14 +60255,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"fDh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) "fEQ" = ( /obj/structure/desertdam/decals/road_stop{ dir = 4; @@ -60698,21 +60272,17 @@ icon_state = "rock3" }, /area/desert_dam/interior/caves/temple) +"fGv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + dir = 10 + }, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "fHg" = ( /turf/open/desert/dirt{ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/south_valley_dam) -"fHr" = ( -/obj/effect/decal/sand_overlay/sand1{ - 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" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "fHJ" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/medium, @@ -60815,6 +60385,16 @@ icon_state = "whitegreencorner" }, /area/desert_dam/building/medical/emergency_room) +"gal" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz2{ + pixel_x = 32; + shuttleId = "trijentshuttle22" + }, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkbrown2" + }, +/area/desert_dam/building/warehouse/loading) "gca" = ( /obj/structure/fence, /turf/open/desert/dirt, @@ -60830,6 +60410,11 @@ icon_state = "cement_sunbleached15" }, /area/desert_dam/exterior/valley/bar_valley_dam) +"ggh" = ( +/turf/open/mars{ + icon_state = "mars_dirt_10" + }, +/area/desert_dam/interior/lab_northeast/east_lab_containment) "ggn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -60851,13 +60436,11 @@ icon_state = "bright_clean" }, /area/desert_dam/interior/dam_interior/garage) -"gls" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/restroom) +"gjH" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/caves/east_caves) "glx" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -60905,15 +60488,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) -"gnu" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt{ - icon_state = "tile" +"gnO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt{ + dir = 6; + icon_state = "desert_transition_edge1" }, -/area/desert_dam/exterior/valley/valley_civilian) +/area/desert_dam/interior/caves/central_caves) "goq" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 @@ -60922,12 +60503,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/south_valley_dam) -"goY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "gpi" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/desert/dirt, @@ -60957,15 +60532,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"guK" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/central_caves) "gxo" = ( /obj/structure/surface/table, /obj/item/clothing/glasses/welding{ @@ -60985,6 +60551,12 @@ icon_state = "whiteyellow" }, /area/desert_dam/interior/dam_interior/garage) +"gxI" = ( +/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_hallway) "gBV" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, @@ -61003,6 +60575,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"gDk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + icon_state = "whitepurple" + }, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "gEj" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -61026,6 +60604,11 @@ icon_state = "freezerfloor" }, /area/desert_dam/interior/dam_interior/break_room) +"gIF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "gIS" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -61036,18 +60619,19 @@ icon_state = "rock4" }, /area/desert_dam/interior/caves/temple) +"gJF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt{ + dir = 8; + icon_state = "desert_transition_edge1" + }, +/area/desert_dam/exterior/valley/valley_crashsite) "gKm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached1" }, /area/desert_dam/exterior/valley/valley_civilian) -"gKn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/caves/temple) "gKo" = ( /obj/effect/landmark/monkey_spawn, /turf/open/desert/rock/deep{ @@ -61062,14 +60646,6 @@ dir = 10 }, /area/desert_dam/interior/dam_interior/garage) -"gLl" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) "gMN" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -61091,6 +60667,11 @@ }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) +"gPm" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) "gQE" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -61111,13 +60692,6 @@ /obj/item/tool/wrench, /turf/open/asphalt/cement, /area/desert_dam/exterior/telecomm/lz1_south) -"gTW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/interior/caves/central_caves) "gUh" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -61158,12 +60732,14 @@ icon_state = "rock1" }, /area/desert_dam/exterior/valley/valley_crashsite) -"gYP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) +"gXP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/desert_dam/building/mining/workshop) "gYT" = ( /turf/open/floor/prison{ dir = 10; @@ -61183,6 +60759,13 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/south_valley_dam) +"hcW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/desert_dam/building/dorms/restroom) "het" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/objective, @@ -61222,6 +60805,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"hlh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + dir = 10; + icon_state = "darkyellow2" + }, +/area/desert_dam/building/mining/workshop) "hmA" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, @@ -61240,6 +60831,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"hnX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached14" + }, +/area/desert_dam/exterior/valley/valley_civilian) "hoc" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /obj/effect/decal/cleanable/dirt, @@ -61267,6 +60864,16 @@ icon_state = "cement_sunbleached1" }, /area/desert_dam/exterior/valley/south_valley_dam) +"hrx" = ( +/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, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"hui" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) "hvG" = ( /turf/open/desert/dirt{ dir = 4; @@ -61286,18 +60893,6 @@ icon_state = "cement_sunbleached13" }, /area/desert_dam/exterior/valley/valley_hydro) -"hyH" = ( -/obj/structure/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, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "hzC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, @@ -61339,6 +60934,16 @@ "hCf" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/south_valley_dam) +"hCY" = ( +/obj/docking_port/stationary/trijent_elevator/occupied{ + id = "trijent_lz2"; + name = "Lz2 Elevator"; + airlock_area = /area/shuttle/trijent_shuttle/lz2; + elevator_network = "B"; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/B + }, +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz2) "hDT" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_4" @@ -61352,25 +60957,11 @@ }, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_south) -"hIO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) "hMc" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached13" }, /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, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_westwing) "hOA" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -61418,15 +61009,63 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_labs) +"hTO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/desert/dirt{ + icon_state = "rock1" + }, +/area/desert_dam/exterior/valley/valley_hydro) "hVs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"hVF" = ( +/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) +"hVM" = ( +/obj/docking_port/stationary/trijent_elevator/occupied{ + id = "trijent_lz1"; + name = "Lz1 Elevator"; + elevator_network = "A"; + airlock_area = /area/shuttle/trijent_shuttle/lz1; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/A + }, +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz1) +"hVQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) "hWz" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) +"hXm" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached12" + }, +/area/desert_dam/exterior/valley/valley_crashsite) +"hYw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/desert/dirt{ + icon_state = "rock1" + }, +/area/desert_dam/exterior/valley/valley_civilian) "ibg" = ( /obj/structure/machinery/light{ dir = 4 @@ -61459,6 +61098,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"icy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached4" + }, +/area/desert_dam/exterior/valley/valley_civilian) "icM" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -61472,11 +61117,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"idB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "idG" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached14" }, /area/desert_dam/exterior/telecomm/lz2_storage) +"idK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitepurplecorner" + }, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "ieU" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -61511,6 +61167,13 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"igw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/desert/dirt{ + dir = 4; + icon_state = "desert_transition_edge1" + }, +/area/desert_dam/exterior/valley/south_valley_dam) "ihT" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, @@ -61544,16 +61207,6 @@ "ioA" = ( /turf/open/gm/river/desert/shallow, /area/desert_dam/interior/caves/temple) -"ipQ" = ( -/obj/docking_port/stationary/trijent_elevator/empty{ - id = "trijent_omega"; - name = "Omega Elevator"; - airlock_exit = "east"; - airlock_area = /area/shuttle/trijent_shuttle/omega; - elevator_network = "B" - }, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/omega) "iqs" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/liquidfood, @@ -61591,13 +61244,6 @@ icon_state = "bright_clean2" }, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"iuk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "iuY" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, @@ -61644,6 +61290,12 @@ dir = 8 }, /area/desert_dam/interior/caves/temple) +"iwE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached1" + }, +/area/desert_dam/exterior/valley/valley_civilian) "ixe" = ( /obj/structure/machinery/light{ dir = 8 @@ -61664,6 +61316,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"iBp" = ( +/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_workshop) "iCw" = ( /turf/open/floor/prison{ icon_state = "darkyellow2" @@ -61688,6 +61346,14 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) +"iJR" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowcorners2" + }, +/area/desert_dam/building/mining/workshop) "iNg" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2; @@ -61723,14 +61389,6 @@ icon_state = "cement_sunbleached12" }, /area/desert_dam/exterior/valley/valley_civilian) -"iTi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) "iTX" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -61777,6 +61435,20 @@ icon_state = "cement_sunbleached18" }, /area/desert_dam/exterior/valley/bar_valley_dam) +"iYW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/desert/dirt{ + icon_state = "desert_transition_edge1" + }, +/area/desert_dam/exterior/valley/valley_crashsite) +"iZp" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) "jbx" = ( /turf/open/asphalt{ icon_state = "tile" @@ -61794,6 +61466,13 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/telecomm/lz2_storage) +"jdu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + icon_state = "green" + }, +/area/desert_dam/building/dorms/hallway_northwing) "jfA" = ( /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, @@ -61813,6 +61492,14 @@ icon_state = "cement_sunbleached14" }, /area/desert_dam/exterior/valley/valley_hydro) +"jqO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) "jre" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ @@ -61872,12 +61559,6 @@ icon_state = "delivery" }, /area/desert_dam/exterior/telecomm/lz1_south) -"jxN" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "jAr" = ( /obj/structure/closet/crate/hydroponics/prespawned, /obj/effect/landmark/objective_landmark/close, @@ -61886,12 +61567,6 @@ icon_state = "vault" }, /area/desert_dam/building/hydroponics/hydroponics_storage) -"jAS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_civilian) "jBh" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ @@ -61917,11 +61592,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/desert_dam/building/hydroponics/hydroponics_storage) -"jJa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) "jJn" = ( /obj/structure/closet/crate/freezer/rations, /obj/effect/landmark/objective_landmark/close, @@ -61954,11 +61624,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"jNN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) "jOe" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached12" }, /area/desert_dam/exterior/valley/valley_hydro) +"jRP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + icon_state = "whitepurple" + }, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "jSS" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -61973,6 +61653,14 @@ icon_state = "floor_plate" }, /area/desert_dam/interior/dam_interior/hanger) +"jTP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + dir = 1; + icon_state = "green" + }, +/area/desert_dam/building/dorms/hallway_westwing) "jVa" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -61988,25 +61676,12 @@ icon_state = "bright_clean2" }, /area/desert_dam/building/medical/morgue) -"jVv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) "jXv" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" }, /turf/open/asphalt, /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, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_northwing) "jZZ" = ( /turf/open/desert/dirt{ icon_state = "desert_transition_corner1" @@ -62019,20 +61694,19 @@ "kcH" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/telecomm/lz2_containers) -"kee" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"ked" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/rock/deep, +/area/desert_dam/interior/caves/temple) +"kgu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/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" + icon_state = "bright_clean" }, -/area/desert_dam/exterior/valley/valley_crashsite) +/area/desert_dam/interior/lab_northeast/east_lab_containment) "kiy" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -62045,23 +61719,22 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) +"kiU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/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) "kkm" = ( /turf/open/desert/dirt{ dir = 5; icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_hydro) -"kmr" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/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, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) "knm" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, @@ -62069,6 +61742,15 @@ icon_state = "sterile_white" }, /area/desert_dam/building/cafeteria/loading) +"kpN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached2" + }, +/area/desert_dam/exterior/valley/valley_crashsite) "kry" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -62083,6 +61765,16 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/security/detective) +"ksg" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached4" + }, +/area/desert_dam/exterior/valley/valley_crashsite) "ktJ" = ( /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/interior/caves/temple) @@ -62131,21 +61823,29 @@ icon_state = "bright_clean" }, /area/desert_dam/interior/dam_interior/garage) +"kHZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached18" + }, +/area/desert_dam/exterior/valley/valley_civilian) "kIl" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached13" }, /area/desert_dam/exterior/valley/bar_valley_dam) -"kIP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) "kJP" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"kLe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/rock/deep/transition{ + dir = 1 + }, +/area/desert_dam/interior/caves/temple) "kLf" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -62179,12 +61879,14 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"kQd" = ( -/obj/structure/tunnel, -/turf/open/desert/rock/deep{ - icon_state = "rock3" +"kQS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/prison{ + icon_state = "sterile_white" }, -/area/desert_dam/interior/caves/east_caves) +/area/desert_dam/building/cafeteria/cafeteria) "kRX" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, @@ -62232,13 +61934,12 @@ /obj/item/trash/chunk, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"lei" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"lcK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" + icon_state = "bright_clean2" }, -/area/desert_dam/building/mining/workshop_foyer) +/area/desert_dam/building/dorms/restroom) "leJ" = ( /obj/structure/closet/crate/secure, /obj/effect/landmark/objective_landmark/science, @@ -62247,13 +61948,6 @@ icon_state = "floor_marked" }, /area/desert_dam/building/mining/workshop_foyer) -"leZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) "lfM" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement_sunbleached, @@ -62339,6 +62033,12 @@ /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"ltg" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) "ltq" = ( /obj/structure/toilet{ dir = 1 @@ -62349,11 +62049,6 @@ icon_state = "sterile_white" }, /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, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) "ltH" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, @@ -62385,6 +62080,13 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"lzB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt{ + dir = 1; + icon_state = "desert_transition_corner1" + }, +/area/desert_dam/interior/caves/central_caves) "lzZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -62402,6 +62104,13 @@ icon_state = "freezerfloor" }, /area/desert_dam/building/water_treatment_one/breakroom) +"lBA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/desert_dam/building/cafeteria/cafeteria) "lDT" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, @@ -62414,13 +62123,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"lHW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) "lIK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -62430,6 +62132,17 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) +"lJc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/desert_dam/building/dorms/restroom) +"lJB" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "lJM" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 @@ -62459,35 +62172,36 @@ icon_state = "darkred2" }, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"lMc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) "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, /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, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"lPn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +"lOQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" }, -/area/desert_dam/exterior/valley/valley_civilian) +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"lPI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"lQy" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) "lQM" = ( /obj/structure/stairs{ dir = 4 @@ -62497,6 +62211,15 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_labs) +"lRJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt{ + icon_state = "tile" + }, +/area/desert_dam/exterior/valley/valley_civilian) "lUl" = ( /obj/structure/surface/table/woodentable/fancy, /turf/open/floor{ @@ -62516,17 +62239,19 @@ }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) +"lWr" = ( +/obj/effect/decal/cleanable/dirt, +/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) "lYm" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8" }, /turf/open/asphalt, /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, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) "mar" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, @@ -62557,23 +62282,6 @@ icon_state = "cement_sunbleached18" }, /area/desert_dam/exterior/valley/valley_labs) -"mej" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz2{ - pixel_x = 32; - shuttleId = "trijentshuttle22" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/loading) -"meN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) "mfK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -62582,14 +62290,6 @@ icon_state = "cement_sunbleached18" }, /area/desert_dam/exterior/valley/south_valley_dam) -"mgw" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) "mhR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -62603,6 +62303,12 @@ icon_state = "sterile_white" }, /area/desert_dam/interior/dam_interior/workshop) +"mjI" = ( +/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, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) "mkd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -62623,6 +62329,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"mlq" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/desert/dirt{ + dir = 10; + icon_state = "desert_transition_edge1" + }, +/area/desert_dam/exterior/valley/valley_crashsite) "mlK" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -62674,13 +62387,19 @@ icon_state = "multi_tiles" }, /area/desert_dam/interior/caves/temple) -"myx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"mwe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/prison{ dir = 1; - icon_state = "whitepurple" + icon_state = "darkyellow2" }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +/area/desert_dam/building/mining/workshop) +"mys" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) "mAm" = ( /obj/effect/decal/cleanable/dirt, /turf/open/desert/dirt, @@ -62716,14 +62435,12 @@ icon_state = "cement_sunbleached4" }, /area/desert_dam/exterior/valley/valley_hydro) -"mDA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +"mEd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/rock/deep{ + icon_state = "rock4" }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) +/area/desert_dam/interior/caves/temple) "mEC" = ( /obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/prison{ @@ -62745,6 +62462,10 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_hydro) +"mGt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) "mHf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat{ @@ -62777,13 +62498,6 @@ "mNk" = ( /turf/closed/wall/r_wall, /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, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) "mNC" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/science, @@ -62812,6 +62526,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"mTP" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) "mTY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -62836,15 +62558,6 @@ icon_state = "kitchen" }, /area/desert_dam/building/cafeteria/cafeteria) -"mZj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "naF" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, @@ -62898,25 +62611,6 @@ icon_state = "cell_stripe" }, /area/desert_dam/interior/dam_interior/hanger) -"njF" = ( -/obj/effect/decal/sand_overlay/sand1, -/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, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"nlU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_westwing) "nmr" = ( /turf/open/desert/dirt{ dir = 1; @@ -62937,6 +62631,17 @@ icon_state = "sterile_white" }, /area/desert_dam/building/dorms/restroom) +"noc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/mars_cave{ + icon_state = "mars_dirt_5" + }, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"nsb" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "nsf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -62944,6 +62649,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) +"nsF" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/desert_dam/building/cafeteria/cafeteria) "ntt" = ( /obj/structure/closet/l3closet/security, /obj/effect/landmark/objective_landmark/medium, @@ -62967,12 +62683,6 @@ icon_state = "bright_clean2" }, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"nyR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, -/area/desert_dam/interior/caves/temple) "nzB" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, @@ -62981,6 +62691,12 @@ /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"nAy" = ( +/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_west_hallway) "nCi" = ( /obj/item/stack/medical/advanced/ointment/predator, /turf/open/desert/rock/deep/transition, @@ -63003,13 +62719,6 @@ icon_state = "white" }, /area/desert_dam/building/administration/meetingrooom) -"nIz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_northwing) "nJZ" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 @@ -63067,6 +62776,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"nUT" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + icon_state = "green" + }, +/area/desert_dam/building/dorms/hallway_westwing) +"nWP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) "nXu" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -63076,22 +62799,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"nYf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) "nYh" = ( /obj/structure/surface/rack, /obj/item/device/flashlight/lantern, /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) -"nYz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/desert_dam/interior/caves/temple) "nYZ" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/cleanable/dirt, @@ -63113,6 +62825,23 @@ }, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"ocR" = ( +/obj/docking_port/stationary/trijent_elevator/empty{ + id = "trijent_engineering"; + name = "Engineering Elevator"; + airlock_exit = "east"; + airlock_area = /area/shuttle/trijent_shuttle/engi; + elevator_network = "A" + }, +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/engi) +"ode" = ( +/obj/item/stool, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "wood" + }, +/area/desert_dam/building/dorms/hallway_westwing) "odr" = ( /obj/structure/surface/table/reinforced, /obj/item/roller, @@ -63130,38 +62859,25 @@ icon_state = "darkyellow2" }, /area/desert_dam/interior/dam_interior/garage) -"ofB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +"oeI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitepurple" }, -/obj/effect/landmark/structure_spawner/xvx_hive/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, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"oiz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "freezerfloor" }, -/area/desert_dam/exterior/valley/valley_crashsite) +/area/desert_dam/interior/lab_northeast/east_lab_lobby) "olL" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"onA" = ( -/obj/effect/decal/cleanable/dirt, -/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, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) "ooW" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached13" @@ -63216,6 +62932,11 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"oyO" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) "ozu" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) @@ -63246,6 +62967,10 @@ icon_state = "cement_sunbleached2" }, /area/desert_dam/exterior/landing_pad_one) +"oDI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) "oHw" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/close, @@ -63263,6 +62988,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"oIu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) "oIE" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -63270,12 +63002,23 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"oIL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) "oJw" = ( /turf/open/desert/dirt{ dir = 8; icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_hydro) +"oKq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) "oKG" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal5" @@ -63345,10 +63088,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/south_valley_dam) -"oXK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) "oYa" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/bunker, @@ -63364,6 +63103,13 @@ icon_state = "bright_clean" }, /area/desert_dam/exterior/telecomm/lz1_valley) +"oYs" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + icon_state = "darkyellowcorners2" + }, +/area/desert_dam/building/mining/workshop) "pac" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -63381,6 +63127,13 @@ /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) +"pbi" = ( +/obj/structure/surface/table/gamblingtable, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "wood" + }, +/area/desert_dam/building/dorms/hallway_westwing) "pbC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -63400,16 +63153,6 @@ icon_state = "cement_sunbleached4" }, /area/desert_dam/interior/caves/central_caves) -"pif" = ( -/obj/docking_port/stationary/trijent_elevator/empty{ - id = "trijent_engineering"; - name = "Engineering Elevator"; - airlock_exit = "east"; - airlock_area = /area/shuttle/trijent_shuttle/engi; - elevator_network = "A" - }, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/engi) "pij" = ( /turf/open/desert/dirt{ dir = 6; @@ -63424,6 +63167,10 @@ /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz1_xenoflora) +"pod" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) "poi" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, @@ -63442,6 +63189,15 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) +"pps" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt{ + icon_state = "tile" + }, +/area/desert_dam/exterior/valley/valley_civilian) "ppS" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, @@ -63450,14 +63206,6 @@ icon_state = "whitegreen" }, /area/desert_dam/building/medical/virology_isolation) -"puM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) "pva" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -63472,20 +63220,6 @@ icon_state = "desert_transition_corner1" }, /area/desert_dam/exterior/valley/south_valley_dam) -"pvy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/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, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) "pyP" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -63503,6 +63237,16 @@ icon_state = "white" }, /area/desert_dam/interior/dam_interior/garage) +"pzr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/desert_dam/building/cafeteria/cafeteria) "pzv" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" @@ -63522,6 +63266,10 @@ icon_state = "warnplate" }, /area/desert_dam/building/substation/northwest) +"pDf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) "pDW" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 @@ -63531,17 +63279,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_crashsite) -"pEh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) "pFj" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, @@ -63565,14 +63302,6 @@ /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /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, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/mining/workshop) "pIe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63604,15 +63333,6 @@ icon_state = "rock4" }, /area/desert_dam/interior/caves/temple) -"pOE" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_civilian) "pSM" = ( /obj/effect/landmark/nightmare{ insert_tag = "purple-new-bridge" @@ -63629,6 +63349,10 @@ icon_state = "wood" }, /area/desert_dam/building/water_treatment_one/hallway) +"pTf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/east_caves) "pTU" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached14" @@ -63710,16 +63434,6 @@ /obj/structure/surface/rack, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"qmU" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "qoJ" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/asphalt/cement_sunbleached{ @@ -63743,6 +63457,21 @@ icon_state = "cement_sunbleached13" }, /area/desert_dam/exterior/valley/valley_labs) +"quh" = ( +/obj/effect/landmark/xeno_spawn, +/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_central_hallway) +"qvw" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/desert_dam/building/mining/workshop) "qwZ" = ( /obj/structure/bed/chair, /obj/effect/landmark/survivor_spawner, @@ -63780,28 +63509,18 @@ icon_state = "cement_sunbleached19" }, /area/desert_dam/exterior/valley/valley_telecoms) -"qCr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/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, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "qDb" = ( /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached18" }, /area/desert_dam/exterior/valley/south_valley_dam) +"qDo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) "qEJ" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, @@ -63849,6 +63568,15 @@ dir = 1 }, /area/desert_dam/interior/dam_interior/south_tunnel) +"qKy" = ( +/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, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/desert_dam/building/mining/workshop) "qKA" = ( /turf/open/desert/dirt{ dir = 1; @@ -63895,12 +63623,33 @@ icon_state = "bright_clean" }, /area/desert_dam/interior/dam_interior/garage) +"qPV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/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_west_hallway) "qQz" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached18" }, /area/desert_dam/exterior/valley/south_valley_dam) +"qUg" = ( +/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_biology) +"qUi" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison{ + dir = 10 + }, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "qVN" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" @@ -63928,6 +63677,15 @@ icon_state = "dark2" }, /area/desert_dam/building/administration/archives) +"ral" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached1" + }, +/area/desert_dam/exterior/valley/valley_crashsite) "ray" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/desertdam/decals/road_edge{ @@ -63957,12 +63715,6 @@ icon_state = "white" }, /area/desert_dam/interior/dam_interior/garage) -"rfm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) "rfU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -64023,18 +63775,19 @@ icon_state = "bluecorner" }, /area/desert_dam/interior/dam_interior/tech_storage) +"rqP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + dir = 8; + icon_state = "green" + }, +/area/desert_dam/building/dorms/hallway_westwing) "rtW" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/asphalt/cement_sunbleached{ icon_state = "cement_sunbleached18" }, /area/desert_dam/exterior/valley/south_valley_dam) -"ruJ" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/exterior/valley/valley_medical) "ruS" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz1_valley) @@ -64044,16 +63797,6 @@ }, /turf/open/desert/rock/deep, /area/desert_dam/interior/caves/temple) -"rxS" = ( -/obj/docking_port/stationary/trijent_elevator/occupied{ - id = "trijent_lz1"; - name = "Lz1 Elevator"; - elevator_network = "A"; - airlock_area = /area/shuttle/trijent_shuttle/lz1; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/A - }, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz1) "ryG" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/prison{ @@ -64076,15 +63819,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/hydroponics/hydroponics_loading) -"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, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) "rBP" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 @@ -64093,6 +63827,14 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_hydro) +"rBS" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached12" + }, +/area/desert_dam/exterior/valley/valley_crashsite) "rCp" = ( /obj/structure/platform/mineral/sandstone/runed, /obj/effect/decal/cleanable/dirt, @@ -64105,10 +63847,6 @@ icon_state = "wood" }, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"rEa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "rEH" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, @@ -64141,12 +63879,6 @@ "rHw" = ( /turf/open/floor/plating, /area/desert_dam/exterior/telecomm/lz2_containers) -"rIY" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/exterior/valley/valley_hydro) "rJA" = ( /obj/structure/lz_sign/dam_sign, /turf/open/desert/dirt{ @@ -64157,6 +63889,21 @@ /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"rKe" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/asphalt{ + icon_state = "tile" + }, +/area/desert_dam/exterior/valley/valley_crashsite) +"rLj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt{ + dir = 5; + icon_state = "desert_transition_edge1" + }, +/area/desert_dam/exterior/valley/valley_crashsite) "rNg" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -64181,6 +63928,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) +"rPs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) "rQJ" = ( /obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, @@ -64195,6 +63950,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"rSW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/desert_dam/building/dorms/pool) +"rTC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/desert_dam/interior/lab_northeast/east_lab_containment) "rTP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -64230,17 +63999,17 @@ icon_state = "bright_clean" }, /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" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"rYC" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) "rZU" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal5" @@ -64368,14 +64137,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_labs) -"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, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "ssy" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -64391,18 +64152,19 @@ icon_state = "bright_clean2" }, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"stj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt{ + dir = 4; + icon_state = "desert_transition_edge1" + }, +/area/desert_dam/exterior/valley/valley_crashsite) "svy" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"swg" = ( -/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_workshop) "sye" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt/cement, @@ -64416,6 +64178,24 @@ icon_state = "cement_sunbleached4" }, /area/desert_dam/exterior/valley/valley_hydro) +"syn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"szb" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"sBQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/desert_dam/building/mining/workshop_foyer) "sDf" = ( /obj/effect/decal/cleanable/generic, /turf/open/floor/prison{ @@ -64441,6 +64221,14 @@ /obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"sLc" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) "sLx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -64519,6 +64307,14 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_hydro) +"sTP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/dirt{ + dir = 1; + icon_state = "desert_transition_corner1" + }, +/area/desert_dam/exterior/valley/valley_crashsite) "sUe" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -64535,22 +64331,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) -"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" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"sXR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) "sYp" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -64566,14 +64352,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /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, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_westwing) "tai" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/landmark/xeno_hive_spawn, @@ -64656,6 +64434,13 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"tnW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitepurplecorner" + }, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "trP" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/desert/dirt, @@ -64669,6 +64454,18 @@ icon_state = "tile" }, /area/desert_dam/exterior/telecomm/lz2_storage) +"tsP" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/east_caves) +"ttg" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/desert_dam/building/cafeteria/cafeteria) "tuA" = ( /obj/structure/closet/secure_closet/bar, /obj/effect/landmark/objective_landmark/close, @@ -64717,19 +64514,21 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/desert/dirt, /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, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) "tBD" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"tCm" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached3" + }, +/area/desert_dam/exterior/valley/valley_civilian) "tCn" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/objective_landmark/science, @@ -64775,20 +64574,26 @@ /obj/effect/decal/remains/human, /turf/open/desert/rock, /area/desert_dam/interior/caves/temple) +"tGf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached3" + }, +/area/desert_dam/exterior/valley/valley_crashsite) +"tHr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/rock/deep/transition{ + dir = 5 + }, +/area/desert_dam/interior/caves/east_caves) "tKQ" = ( /turf/open/desert/dirt{ icon_state = "rock1" }, /area/desert_dam/exterior/valley/valley_crashsite) -"tKS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/pool) "tLo" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 @@ -64815,6 +64620,12 @@ name = "reinforced metal wall" }, /area/desert_dam/building/mining/workshop) +"tNl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/desert/dirt{ + icon_state = "rock1" + }, +/area/desert_dam/exterior/valley/valley_medical) "tOj" = ( /turf/open/desert/dirt{ dir = 10; @@ -64825,6 +64636,14 @@ /obj/structure/platform, /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz1_valley) +"tQg" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean" + }, +/area/desert_dam/building/mining/workshop) "tQR" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/bunker, @@ -64855,6 +64674,14 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/south_valley_dam) +"tXW" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) "tYS" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, @@ -64883,13 +64710,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"ufP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "ufW" = ( /turf/closed/wall/mineral/sandstone/runed, /area/desert_dam/exterior/rock) @@ -64904,6 +64724,14 @@ icon_state = "cement_sunbleached18" }, /area/desert_dam/exterior/valley/valley_hydro) +"uiv" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + dir = 1; + icon_state = "green" + }, +/area/desert_dam/building/dorms/hallway_northwing) "uiH" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, @@ -65005,23 +64833,42 @@ icon_state = "desert_transition_edge1" }, /area/desert_dam/exterior/valley/valley_hydro) +"uAU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) "uBP" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) +"uDp" = ( +/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) +"uEZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "squareswood" + }, +/area/desert_dam/interior/caves/temple) "uFX" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_hydro) +"uGH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/desert/dirt{ + icon_state = "rock1" + }, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "uGL" = ( /obj/item/stack/sheet/mineral/sandstone/runed/large_stack, /turf/open/desert/rock/deep, /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, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) "uGU" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -65030,6 +64877,18 @@ icon_state = "dirt2" }, /area/desert_dam/exterior/valley/valley_crashsite) +"uHf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"uHt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt{ + dir = 10; + icon_state = "desert_transition_edge1" + }, +/area/desert_dam/exterior/valley/valley_crashsite) "uKo" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 @@ -65044,10 +64903,10 @@ icon_state = "delivery" }, /area/desert_dam/interior/dam_interior/south_tunnel) -"uMk" = ( -/obj/effect/decal/cleanable/dirt, +"uLF" = ( +/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" }, @@ -65074,12 +64933,6 @@ dir = 10 }, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"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, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) "uPS" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -65099,16 +64952,22 @@ /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"uSy" = ( +/obj/effect/decal/sand_overlay/sand2, +/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_crashsite) "uTo" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"uVm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_civilian) +"uVy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "uVK" = ( /obj/item/tool/pickaxe, /obj/effect/decal/remains/human, @@ -65120,13 +64979,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"uXk" = ( -/obj/effect/decal/sand_overlay/sand2, -/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_crashsite) "uYD" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -65179,6 +65031,12 @@ /obj/structure/fence, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"vmP" = ( +/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) "vnf" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -65186,13 +65044,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"vph" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/south_valley_dam) "vpn" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 @@ -65220,6 +65071,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"vqK" = ( +/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) "vqR" = ( /obj/structure/desertdam/decals/road_stop{ dir = 8; @@ -65227,17 +65084,13 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"vqS" = ( -/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, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) +"vsm" = ( +/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, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) "vud" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt{ @@ -65248,6 +65101,12 @@ /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"vuZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/desert/rock/deep{ + icon_state = "rock3" + }, +/area/desert_dam/interior/caves/east_caves) "vvy" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1{ @@ -65285,13 +65144,13 @@ }, /turf/open/asphalt, /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, +"vAp" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/prison{ - icon_state = "green" + icon_state = "bright_clean2" }, -/area/desert_dam/building/dorms/hallway_northwing) +/area/desert_dam/interior/lab_northeast/east_lab_biology) "vBJ" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1{ @@ -65326,6 +65185,13 @@ icon_state = "cement_sunbleached3" }, /area/desert_dam/exterior/telecomm/lz2_storage) +"vHg" = ( +/obj/effect/landmark/xeno_spawn, +/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_west_hallway) "vHj" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -65334,21 +65200,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"vHx" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/exterior/valley/valley_civilian) "vHQ" = ( /turf/open/gm/empty, /area/shuttle/trijent_shuttle/omega) +"vIs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached4" + }, +/area/desert_dam/exterior/valley/valley_crashsite) "vIx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"vJW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached4" + }, +/area/desert_dam/exterior/valley/valley_crashsite) "vLd" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" @@ -65371,12 +65250,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) -"vOv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) "vRc" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 @@ -65401,6 +65274,22 @@ icon_state = "cement_sunbleached19" }, /area/desert_dam/exterior/valley/bar_valley_dam) +"vTs" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/power/apc{ + dir = 1; + pixel_y = 24; + start_charge = 0 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + dir = 4; + icon_state = "greencorner" + }, +/area/desert_dam/building/dorms/hallway_northwing) "vTR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -65415,6 +65304,19 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"vWs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitepurple" + }, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"vYb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + dir = 10 + }, +/area/desert_dam/interior/lab_northeast/east_lab_RND) "vYZ" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/drill, @@ -65450,6 +65352,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"wcF" = ( +/obj/effect/landmark/xeno_spawn, +/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_hallway) +"wfr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) "wgi" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, @@ -65485,6 +65400,18 @@ icon_state = "floor_marked" }, /area/desert_dam/building/cafeteria/loading) +"wjV" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt{ + icon_state = "dirt2" + }, +/area/desert_dam/exterior/valley/valley_crashsite) +"wmL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) "wnE" = ( /obj/structure/closet/crate/hydroponics/prespawned, /obj/effect/landmark/objective_landmark/close, @@ -65493,6 +65420,12 @@ icon_state = "floor_marked" }, /area/desert_dam/building/hydroponics/hydroponics_loading) +"wob" = ( +/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_west_entrance) "woy" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/r_wall/bunker, @@ -65501,6 +65434,14 @@ /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"wql" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/desert_dam/building/cafeteria/cafeteria) "wqM" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -65533,6 +65474,11 @@ icon_state = "white" }, /area/desert_dam/interior/dam_interior/garage) +"wtC" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "wud" = ( /obj/structure/disposalpipe/segment, /turf/open/floor{ @@ -65555,6 +65501,12 @@ dir = 8 }, /area/desert_dam/interior/caves/temple) +"wyD" = ( +/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) "wyR" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -65576,6 +65528,19 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) +"wBa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison{ + icon_state = "green" + }, +/area/desert_dam/building/dorms/hallway_northwing) +"wCy" = ( +/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_central_hallway) "wFv" = ( /obj/structure/surface/table/reinforced, /turf/open/floor/prison{ @@ -65583,6 +65548,15 @@ icon_state = "whitered" }, /area/desert_dam/building/medical/office1) +"wFC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt{ + icon_state = "dirt2" + }, +/area/desert_dam/interior/caves/central_caves) "wIi" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/desert/dirt, @@ -65642,14 +65616,6 @@ icon_state = "tile" }, /area/desert_dam/exterior/valley/valley_hydro) -"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, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "wQS" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 @@ -65683,6 +65649,18 @@ icon_state = "cement_sunbleached2" }, /area/desert_dam/exterior/valley/valley_hydro) +"wSx" = ( +/obj/structure/safe, +/obj/item/weapon/sword/katana/replica, +/obj/item/reagent_container/food/drinks/bottle/absinthe, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue" + }, +/area/desert_dam/interior/dam_interior/tech_storage) "wTP" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/mineral/phoron{ @@ -65701,12 +65679,18 @@ dir = 10 }, /area/desert_dam/interior/dam_interior/atmos_storage) -"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, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) +"wXr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"wXT" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt{ + icon_state = "tile" + }, +/area/desert_dam/exterior/valley/valley_civilian) "wZM" = ( /obj/structure/flora/tree/joshua, /turf/open/desert/dirt{ @@ -65746,11 +65730,6 @@ /obj/structure/flora/grass/desert/lightgrass_5, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"xec" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/obj/structure/tunnel, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) "xgA" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -65769,6 +65748,17 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"xiq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) "xjb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -65798,15 +65788,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall, /area/desert_dam/building/dorms/restroom) -"xkF" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) "xkK" = ( /obj/structure/machinery/power/apc{ dir = 4; @@ -65888,15 +65869,6 @@ icon_state = "cell_stripe" }, /area/shuttle/trijent_shuttle/lz1) -"xsQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "xsS" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -65955,10 +65927,6 @@ /obj/effect/landmark/static_comms/net_two, /turf/open/floor/plating, /area/desert_dam/exterior/telecomm/lz2_containers) -"xEz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "xEP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor{ @@ -65979,6 +65947,13 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) +"xFO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt{ + dir = 1; + icon_state = "desert_transition_edge1" + }, +/area/desert_dam/exterior/valley/valley_wilderness) "xHa" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/desert/dirt, @@ -66082,13 +66057,6 @@ icon_state = "squareswood" }, /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, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/mining/workshop) "xYc" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, /turf/open/floor{ @@ -66117,6 +66085,14 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"ybO" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/desert/dirt{ + dir = 9; + icon_state = "desert_transition_edge1" + }, +/area/desert_dam/exterior/valley/valley_crashsite) "ydw" = ( /obj/structure/window/framed/hangar/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -66138,6 +66114,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) +"ygL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) "yii" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/rock) @@ -66153,6 +66137,13 @@ icon_state = "bright_clean2" }, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"ykO" = ( +/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) "ylf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal6" @@ -66179,6 +66170,15 @@ icon_state = "freezerfloor" }, /area/desert_dam/building/hydroponics/hydroponics_breakroom) +"yly" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/asphalt/cement_sunbleached{ + icon_state = "cement_sunbleached3" + }, +/area/desert_dam/exterior/valley/valley_civilian) "ylS" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -69599,7 +69599,7 @@ ceA aSI chG ceA -hyH +pDf acs aWc aWF @@ -77959,7 +77959,7 @@ fmP fmP fmP fmP -rxS +hVM lcj dTs dTs @@ -79600,7 +79600,7 @@ lcj lcj lcj blZ -bmo +wSx bmG bCU bnT @@ -82102,7 +82102,7 @@ cZx cZx cZx cZx -mej +gal cZx cXa cXa @@ -82576,7 +82576,7 @@ rFi rFi rFi rFi -aRB +hCY nEM acu "} @@ -88756,7 +88756,7 @@ bLr dTs dTs nmr -vph +igw pvs dTs dTs @@ -94164,7 +94164,7 @@ vHQ vHQ vHQ vHQ -ipQ +fjC aDT dTs cft @@ -94210,7 +94210,7 @@ dTs dTs dTs dTs -rIY +hTO cMl dNS dNS @@ -94762,7 +94762,7 @@ dTs dTs dTs dTs -acq +uGH acE acN acS @@ -96032,7 +96032,7 @@ dTs dTs dTs aDT -aEu +bNA chY ceX caH @@ -96637,7 +96637,7 @@ dTs dTs acF acO -acT +wob asx adn aef @@ -97109,11 +97109,11 @@ ayZ ayZ ayZ ayZ -ebT +nAy ayZ ayZ awz -azk +vHg avX axl dTs @@ -98276,14 +98276,14 @@ ajz apD arL arL -swg +iBp atk arL avy arJ ayK ayX -ebT +nAy axh avG avG @@ -99262,7 +99262,7 @@ eyL eyL eyL eyL -pif +ocR bfm dTs dTs @@ -99448,11 +99448,11 @@ arL arL atk auk -aHD +uHf avD arJ ayL -aHL +qPV ayZ azp avG @@ -99666,7 +99666,7 @@ acu acu afG afH -afK +uDp alc afK agI @@ -99697,7 +99697,7 @@ avG aCr ayF ayU -aLH +vYb azo aCr dTs @@ -99900,7 +99900,7 @@ acu acu afG afI -aag +ggh ald alv agL @@ -100142,12 +100142,12 @@ amq afI ana amZ -goY +noc agL afG arH arL -swg +iBp atQ arL aul @@ -100621,7 +100621,7 @@ arJ ajz avG acK -aHF +idK ayX ayZ axr @@ -100842,7 +100842,7 @@ aju agQ amD agQ -aiK +lOQ aju ahr agH @@ -101081,7 +101081,7 @@ aju ahr anO akO -aiq +wCy akO aoP akO @@ -101098,7 +101098,7 @@ ayZ ayZ ayZ ayZ -ebT +nAy ayZ ayZ azx @@ -101306,7 +101306,7 @@ afG ajv ahr aju -aiz +kgu ahr ahr aju @@ -101560,7 +101560,7 @@ ayO ayZ ayZ ayZ -ebT +nAy axQ azc azc @@ -101779,12 +101779,12 @@ afG afG agQ ahr -aiz +kgu aiB afG amr aoP -ain +quh api akL akL @@ -102017,7 +102017,7 @@ ahr agQ agH amr -aor +fsf akO api akL @@ -102739,7 +102739,7 @@ avG avG ayK ayX -azk +vHg azp hVs bij @@ -102948,7 +102948,7 @@ afN amd agH agQ -aiz +kgu ahr agQ agH @@ -103189,7 +103189,7 @@ agH amr aoP akO -eNU +gDk aug aun auq @@ -103420,7 +103420,7 @@ ahr ahr aiB afG -myx +vWs aoP akO api @@ -103675,7 +103675,7 @@ ayj avH ayK ayX -ebT +nAy azp avG dTs @@ -104116,7 +104116,7 @@ aju aju aju aju -amF +rTC aju abx ahr @@ -104787,7 +104787,7 @@ dTs dTs dTs dTs -vHx +hYw cwo cux cmH @@ -104815,7 +104815,7 @@ acu afG afH afK -afK +uDp agI afG afH @@ -105049,13 +105049,13 @@ acu afG afI akW -lNN +akW agL amn afI akW -lNN -agL +akW +vmP afG aqG amr @@ -105104,7 +105104,7 @@ dTs dTs ccJ aFo -uXk +uSy azT azT azT @@ -105340,7 +105340,7 @@ aFd aFo aFV afb -xEz +pod azT azT dTs @@ -105528,7 +105528,7 @@ afG aqI amr aot -aiq +wCy api akL dTs @@ -105591,7 +105591,7 @@ dTs aEV adA adA -kmU +idB adA aCG dTs @@ -105805,8 +105805,8 @@ dTs dTs dTs aFd -qmU -hzg +ksg +hXm azT azT azT @@ -105834,7 +105834,7 @@ dTs dTs aIv aJB -njF +wjV adA dTs dTs @@ -106039,8 +106039,8 @@ dTs dTs dTs aFe -qmU -hzg +ksg +hXm azT azT azT @@ -106048,7 +106048,7 @@ agD adA adA adA -kmU +idB adA adA adA @@ -106416,7 +106416,7 @@ cWa cWa cWa cWa -pOE +yly cWa cWa cWa @@ -106426,7 +106426,7 @@ cWa cWa cWa cWa -pOE +yly cWa cWa cWa @@ -106509,7 +106509,7 @@ dTs azT aFo aFV -xEz +pod azT agD agN @@ -106525,8 +106525,8 @@ aGT aEr aEm adA -eqo -eqo +uVy +uVy aCG aCM dTs @@ -106645,7 +106645,7 @@ crW cmU cod cod -dps +iwE cod cto ddv @@ -106655,7 +106655,7 @@ dbR dbR dbR dcD -kIP +oDI ddv dbR dbR @@ -106665,7 +106665,7 @@ dbR dbR dbR dcD -kIP +oDI cnW cmH ctm @@ -106699,7 +106699,7 @@ anV alD aot akO -aoZ +tnW ajj akL akL @@ -106759,8 +106759,8 @@ aHU aGH aEq adA -eqo -eqo +uVy +uVy aEX azT dTs @@ -106976,8 +106976,8 @@ dTs dTs azT aFp -aFX -uNF +sLc +mjI aEP aEP aGB @@ -107157,7 +107157,7 @@ dTs dTs akL amr -aiq +wCy akO akO akO @@ -107210,8 +107210,8 @@ aET aET azT azT -qmU -srf +ksg +rBS adA adA ajG @@ -107225,7 +107225,7 @@ aGE aGE aGE aGE -flu +fcm aGc aFi adA @@ -107237,7 +107237,7 @@ aJX adA adA adA -kmU +idB adA aCG aCM @@ -107398,7 +107398,7 @@ akO akO akO akO -aiq +wCy akO akO akO @@ -107464,7 +107464,7 @@ aHe aFi adA aJi -kmU +idB adA adA adA @@ -107580,19 +107580,19 @@ cmb cmb cmb cVA -sXR +jNN clZ crW cmN -fsK +fpY cmH duC dvD dwF dxf -jXy -ltE -vAN +uiv +gPm +jdu dBo dZR eaA @@ -107600,9 +107600,9 @@ dFf eaA eaH dBo -sYU -gYP -hOv +jTP +wfr +nUT dFU dFf dJh @@ -107637,12 +107637,12 @@ akO akO akO aph -pvy +oeI apv ajP alE aot -aiq +wCy aqa aqr dTs @@ -107831,12 +107831,12 @@ dBo dZR eaA dFf -dZX +ode eaH dBo dGC ebb -dZz +fqr dBr xzc dEt @@ -107910,7 +107910,7 @@ byY adA adA aCG -oit +uHt adA aEZ aFi @@ -107920,7 +107920,7 @@ dTs dTs agC aKC -xsQ +vJW aFi adA adA @@ -107937,8 +107937,8 @@ adA adA adA adA -eqo -eqo +uVy +uVy adA adA aFr @@ -108060,7 +108060,7 @@ duC duC dym dXy -eWn +wBa dBo dZR eaA @@ -108152,7 +108152,7 @@ dTs dTs dTs dTs -jxN +iYW adA aEZ aFi @@ -108171,12 +108171,12 @@ akr aJW adA adA -eqo -eqo +uVy +uVy aKD aIp adA -ufP +rLj aJV aEV adA @@ -108406,7 +108406,7 @@ aEr aEm adA adA -lYv +nsb aIu aFl aFP @@ -108515,7 +108515,7 @@ dbK cmH cmH cBJ -hIO +szb cpR cET crW @@ -108537,7 +108537,7 @@ dFf dFf dFU dGC -jJa +fBi dHD dFU dFf @@ -108562,11 +108562,11 @@ dTs afP alL aiI -als +qUg alI ajY anH -ahJ +qUi anI aiI afP @@ -108637,8 +108637,8 @@ azU azU aDZ aGH -wQM -eqo +rKe +uVy adA aJS aFl @@ -108733,18 +108733,18 @@ dTs dTs dTs daO -deB -iTi -iTi -tAG -tAG -tAG -tAG -deB -dSq -tAG -tAG -dlN +pzr +kQS +kQS +ttg +ttg +ttg +ttg +pzr +nsF +ttg +ttg +uLF dbK cmH cmH @@ -108800,7 +108800,7 @@ alI alI ajY anH -ahJ +qUi anH aiI afP @@ -108856,7 +108856,7 @@ dTs dTs dTs adA -xsQ +vJW aFi adA ajG @@ -108871,8 +108871,8 @@ aJj azT aEf aGH -wQM -eqo +rKe +uVy adA aFl kiP @@ -108978,7 +108978,7 @@ dgY cWp cWp cWp -tAG +ttg cZu cmH cmH @@ -108999,7 +108999,7 @@ dXJ dAD dBo dZR -dZX +ode dFf eaA eaA @@ -109034,7 +109034,7 @@ alI alI ajY anI -ahJ +qUi anH anZ afP @@ -109212,7 +109212,7 @@ dgY dAk dBd dWB -tAG +ttg cZu cmH cmJ @@ -109221,14 +109221,14 @@ cCH cpR cET crW -jAS +icy cnW cmH duC oVs dwF duC -nIz +eKB dXJ dAD dBo @@ -109268,7 +109268,7 @@ amH alI ahe aln -anL +dnv aln aiE afP @@ -109318,7 +109318,7 @@ aDY adA aEZ aFi -kmU +idB aFr aEV adA @@ -109446,7 +109446,7 @@ dDK dAk cYK dHS -tAG +ttg cZu cmH cmH @@ -109469,7 +109469,7 @@ dBo dZR eaA dFf -fsP +pbi eaC dBo dGC @@ -109507,7 +109507,7 @@ alI alI aoI aoN -rEa +eDE apk apg apy @@ -109575,8 +109575,8 @@ aEf aGH aEq adA -eqo -wYO +uVy +hrx adA aHz aFn @@ -109680,13 +109680,13 @@ dDK dFk dFk dgb -tAG +ttg dbK cmH cmH cBJ cCH -sXR +jNN clZ crW cmN @@ -109708,7 +109708,7 @@ eaA dBo dGC dHk -dZz +fqr dBr xzc dEt @@ -109729,7 +109729,7 @@ acu afP ajY aiI -als +qUg alZ alI amI @@ -109771,7 +109771,7 @@ aJB acZ adA adA -kmU +idB aFN aFr dTs @@ -109788,7 +109788,7 @@ aEZ aFf aEP aEP -fHr +ral aEP aEP aEP @@ -109809,8 +109809,8 @@ aEf aGH aEq adA -eqo -eqo +uVy +uVy adA adA aHz @@ -109914,7 +109914,7 @@ dJW dDK dgY dDK -tAG +ttg cZu cmH cmH @@ -110017,12 +110017,12 @@ dTs agD adA adA -wYO -gLl +hrx +lQy aGn aGq adA -sXh +lJB adA adA aGY @@ -110148,7 +110148,7 @@ dgY dHl dHl dHl -tAG +ttg cZu cmH cmH @@ -110170,7 +110170,7 @@ dYa dBo dZU dZY -nlU +rqP dEu dDJ dDJ @@ -110216,7 +110216,7 @@ afP afP amx are -aoq +wcF apj apW dTs @@ -110236,7 +110236,7 @@ cYx dTs aIv aJB -njF +wjV adA adA adA @@ -110249,14 +110249,14 @@ dTs dTs dTs agD -aEY +kpN aEW -qCr -mDA +kiU +jqO aGn adA aCG -kge +mlq adA aGV adA @@ -110275,13 +110275,13 @@ aJq aJJ aJO aGH -wQM -eqo +rKe +uVy aCG agC adA adA -kmU +idB adA adK aMf @@ -110382,7 +110382,7 @@ dDK dHo dVo cYK -tAG +ttg cZu cmH cUL @@ -110393,7 +110393,7 @@ dXa cFJ cmN cnX -xkF +lRJ cpb cmH dim @@ -110496,7 +110496,7 @@ adA aGZ aEZ aGl -mZj +tGf aHH aHK aHZ @@ -110509,8 +110509,8 @@ azT aJK aJP aGH -wQM -eqo +rKe +uVy aEX akq agC @@ -110616,7 +110616,7 @@ dJi dSr dWA dHo -dWO +ePc dbK dbK cko @@ -110641,13 +110641,13 @@ dYM dYM dFg dYM -eaK +vsm dYM dZp dFg dIn dIn -dZI +fdD dZH dJU ebq @@ -110665,10 +110665,10 @@ acu afP ajZ aiI -ajn +vAp alI alI -als +qUg alI alI alI @@ -110679,7 +110679,7 @@ aoI aoN apg apk -rEa +eDE apy afP amx @@ -110709,7 +110709,7 @@ adA aFT aGr adA -kmU +idB aFr aGi dTs @@ -110793,7 +110793,7 @@ civ cdA cdw aOG -ruJ +tNl dTs dTs dTs @@ -110850,11 +110850,11 @@ dDK dFk dFk dFk -uMk -tAG +wql +ttg cZu cko -uVm +kHZ dWW dXc clZ @@ -110867,7 +110867,7 @@ cmH dim dxi dXy -fDh +dIy dYc dBo dCc @@ -110906,7 +110906,7 @@ alt alt akZ alI -als +qUg alI alI aoI @@ -111085,7 +111085,7 @@ dgY dJV dJi dDK -mNn +lBA dmL cmM dHm @@ -111174,7 +111174,7 @@ adA adA adA adA -kmU +idB adA adA adA @@ -111184,8 +111184,8 @@ dTs dTs agD adA -eqo -cTd +uVy +vIs aFi adA adA @@ -111319,7 +111319,7 @@ dDK dDK dgY dgY -mNn +lBA dcw dvm dHm @@ -111386,7 +111386,7 @@ afP afP amx are -ant +gxI anv aIw asW @@ -111402,7 +111402,7 @@ dTs aPg aOh cov -aiJ +tXW ajh adA adA @@ -111418,8 +111418,8 @@ adA aFr aEV adA -eqo -cTd +uVy +vIs aFi adA aCG @@ -111553,7 +111553,7 @@ dbK dbK dbK dgY -tAG +ttg cZu cko cUc @@ -111561,7 +111561,7 @@ dWW clZ clZ cUP -sXR +jNN crW dvk dXs @@ -111585,7 +111585,7 @@ dIk dIN dJj dIr -eYK +rSW dIr dIr dKF @@ -111655,7 +111655,7 @@ adA adA aEZ aFi -kmU +idB aEX dTs dTs @@ -111787,7 +111787,7 @@ dbK dbK dbK dgY -tAG +ttg cZu cko dWT @@ -111808,7 +111808,7 @@ dAD dBu dBy dwm -gls +hcW dDL dFi bEc @@ -111898,7 +111898,7 @@ dTs dTs agC adA -kmU +idB adA adA adA @@ -112021,7 +112021,7 @@ dDK dgY dDK dgY -mNn +lBA dWQ dvj dHm @@ -112036,7 +112036,7 @@ clW cmH dim dxl -nlH +wXr dzw dAD dBv @@ -112046,7 +112046,7 @@ dDL dYy dFi dFW -dGG +lJc dFW dFW dIk @@ -112117,7 +112117,7 @@ aEf aEr aEm adA -kmU +idB adA aGq adA @@ -112146,14 +112146,14 @@ adA adA adA adA -kmU +idB adA aFr aGi dTs adA aFr -qCR +stj aGi azT azT @@ -112255,10 +112255,10 @@ dDK dDK dDK dDK -iTi +kQS dqt dvm -onA +lWr dWW dWZ dWZ @@ -112335,7 +112335,7 @@ dTs dTs aOg aCh -cYu +xiq cZo cZp cZn @@ -112375,8 +112375,8 @@ adA adA adA aEZ -srf -eqo +rBS +uVy aGZ adA adA @@ -112488,8 +112488,8 @@ dDK dHl cWp cWp -tAG -tAG +ttg +ttg cZu cko cUc @@ -112500,7 +112500,7 @@ cUP clZ crW cUc -fqy +wXT cmH dim dYC @@ -112575,7 +112575,7 @@ cgR dwG adA adA -dZl +wtC ajG alj aAg @@ -112605,12 +112605,12 @@ aFl kiP aHI aHS -kmU +idB adA adA aEZ -srf -eqo +rBS +uVy adA adA adA @@ -112722,7 +112722,7 @@ dDK dVl dAd dHi -dlN +uLF dbK dbK cko @@ -112778,7 +112778,7 @@ apW amx amz alV -ant +gxI amz aiH aiO @@ -112821,8 +112821,8 @@ aEy adA adA adA -eqo -eqo +uVy +uVy adA adA adA @@ -112849,10 +112849,10 @@ adA adA adA adA -eqo -eqo +uVy +uVy adA -kmU +idB aKF aGH aGH @@ -112956,7 +112956,7 @@ dgY dHi dxT dHS -tAG +ttg cZu cmH cup @@ -112978,7 +112978,7 @@ dAF dBy dCd dDb -kee +lcK dCd dFj dFZ @@ -112987,7 +112987,7 @@ dYP dHG dIk dIR -tKS +dmI dJG dZN dZN @@ -113055,8 +113055,8 @@ adA adA adA adA -eqo -eqo +uVy +uVy adA adA adA @@ -113083,8 +113083,8 @@ aJh aJh aJh aJh -ofB -ofB +ygL +ygL aKe adA aKF @@ -113094,7 +113094,7 @@ aLl aLs aGH aLC -jVv +gIF aLQ aLZ aMf @@ -113190,7 +113190,7 @@ dDK dgb dgb dgb -tAG +ttg cZu cmH cup @@ -113198,7 +113198,7 @@ cUc cCH dWZ clZ -mgw +iZp clZ crW cUc @@ -113256,7 +113256,7 @@ amz amz amz amz -ant +gxI amz amz amz @@ -113294,7 +113294,7 @@ adA aFb aFk adA -kmU +idB adA adA aFr @@ -113313,7 +113313,7 @@ aFc aIE aGf aGf -leZ +oIu aGf aGf aGf @@ -113424,10 +113424,10 @@ dJW dgY dgY dgY -tAG +ttg cZu cmH -gnu +pps cUc cCH cpR @@ -113439,9 +113439,9 @@ cUc clX cmX duC -cYF +vTs cZV -pEh +hVQ dAH dBy dCd @@ -113450,7 +113450,7 @@ dYm dYm dYP dYm -kee +lcK dYm dYm dIk @@ -113507,7 +113507,7 @@ aSi aRj coX aOh -dfr +xFO dTs aDY adA @@ -113519,7 +113519,7 @@ aAm aAm aEl aEq -kmU +idB adA adA adA @@ -113533,8 +113533,8 @@ aeo adA adA adA -eqo -eqo +uVy +uVy adA adA aHz @@ -113658,7 +113658,7 @@ dDK cWp cWp cWp -tAG +ttg dbK cmH cup @@ -113673,7 +113673,7 @@ cmN cok cvw dwH -ltE +gPm dwI dax dAD @@ -113734,7 +113734,7 @@ auF avh agn aww -lHW +oKq axb gab aOh @@ -113767,10 +113767,10 @@ aFP aGp adA adA -eqo -wYO +uVy +hrx adA -kmU +idB adA adA adA @@ -113781,8 +113781,8 @@ aGp aFb adA adA -eqo -eqo +uVy +uVy adA adA adA @@ -113892,7 +113892,7 @@ dDK dBc dBf cYK -tAG +ttg cZu cmH cup @@ -113907,7 +113907,7 @@ dbQ duD del dwJ -vOv +ltg dwJ daX dAD @@ -113947,7 +113947,7 @@ dTs apW apW alS -ant +gxI amz anD anP @@ -113981,7 +113981,7 @@ azT agD adA adA -kmU +idB adA adA adA @@ -114001,8 +114001,8 @@ kiP aFP adA adA -eqo -dzO +uVy +ybO agC adA adA @@ -114015,11 +114015,11 @@ aCG agK agC adA -eqo -eqo +uVy +uVy adA adA -kmU +idB aEZ aGl aJh @@ -114034,7 +114034,7 @@ aEW aLT aLZ aMg -fbK +syn aGH ilq cDQ @@ -114126,7 +114126,7 @@ dgY cYK cYK dBb -tAG +ttg cZu cmH cup @@ -114205,7 +114205,7 @@ aww aww axc oUN -cTE +epL aRk afl dTs @@ -114263,7 +114263,7 @@ aLk aLp aLx aLB -leZ +oIu aLJ aLU aMe @@ -114360,12 +114360,12 @@ dgY dgb dgb dgb -tAG +ttg cZu cmH cup cUc -hIO +szb dpI dXf dXo @@ -114424,7 +114424,7 @@ aod aoT aoT aoT -aFA +lPI aoT aqU aoT @@ -114463,7 +114463,7 @@ azT dTs azT akq -oit +uHt adA aGp aGr @@ -114594,7 +114594,7 @@ dfs dcw dvg dcw -dlN +uLF dbK cmH cup @@ -114606,13 +114606,13 @@ dXp cmM cok cto -cWr +tCm cWa uPS cWa bDZ bKk -cxl +mTP cPp cWa cPx @@ -114663,7 +114663,7 @@ aoT aqU aoT aqs -aFA +lPI apI anQ auF @@ -114814,7 +114814,7 @@ clW cmH cmH dbL -uGO +wmL ddn dbN dbK @@ -114889,7 +114889,7 @@ apj anP anT aod -aFA +lPI aoT apH aqd @@ -114934,7 +114934,7 @@ dTs dTs aFz aFz -vte +hui aFz aGI dTs @@ -115048,7 +115048,7 @@ clX cmX cmX dbL -uGO +wmL ddn dbN dbN @@ -115282,7 +115282,7 @@ cok cok cvw dbM -lOY +mys ddn dHM dbN @@ -115307,17 +115307,17 @@ clZ crW cUc tMy -aSP -aTX -aTX +qvw +gXP +gXP brA -aTX -rBr -bLn +gXP +qKy +hlh aQP cko cmN -dNC +vqK cko dTs dTs @@ -115352,7 +115352,7 @@ akK alR amz amz -ant +gxI anD anP anT @@ -115371,13 +115371,13 @@ anP auR avh awx -awS +erK aww axb gab aOh aRk -cWq +rYC bzS dTs dTs @@ -115516,7 +115516,7 @@ cod cod cvx dbN -lOY +mys ddo deh deK @@ -115541,7 +115541,7 @@ cET crW cUc ydw -aTe +mwe aTY aUb wOO @@ -115617,7 +115617,7 @@ dTs beB beM aFz -vte +hui aFz aFz aFz @@ -115641,7 +115641,7 @@ aFz aFz aGI aeT -gTW +lzB aGs aeT aeT @@ -115662,7 +115662,7 @@ aJY aKg aKz aKN -kmU +idB aCG aCM dTs @@ -115750,7 +115750,7 @@ cmc cpY cpY dbL -puM +fup ddn dbN dbN @@ -115772,10 +115772,10 @@ cUc cCH dpI clZ -kmr +qDo cUc ydw -aTe +mwe aUa aUb bvq @@ -115984,7 +115984,7 @@ clW cmH cmH dbL -uGO +wmL ddp dkM dkM @@ -116009,18 +116009,18 @@ clZ crW cUc ydw -aTe +mwe aUb -aUW +ykO aUb aUb aUb bUa brA -cVL -pHU -pHU -pwc +iJR +tQg +tQg +eqP aQP dTs dTs @@ -116048,7 +116048,7 @@ dTs akk ako akK -oXK +dIb akK alG akk @@ -116059,7 +116059,7 @@ apj anQ aoc aoS -aFA +lPI aoT aoT aqs @@ -116067,7 +116067,7 @@ aoT aoT aoT aqs -aFA +lPI aoT atE auT @@ -116121,7 +116121,7 @@ dTs aIv aIv aJB -aIH +sTP aEV adA adA @@ -116323,7 +116323,7 @@ aFz aFz aFz aFz -vte +hui aGI dTs dTs @@ -116338,7 +116338,7 @@ aAW aBg aJQ aKd -vte +hui aFz aFz aFz @@ -116371,7 +116371,7 @@ dTs dTs adA adA -kmU +idB adA aJV dTs @@ -116477,7 +116477,7 @@ clZ crW cUc ydw -aTe +mwe aUb aUb aUb @@ -116485,7 +116485,7 @@ aUb aUb aUb aUb -aUW +ykO aUb aUb cSX @@ -116531,7 +116531,7 @@ aoT aoT aoT aoT -aFA +lPI aoT aoT aoT @@ -116705,13 +116705,13 @@ dIu dmP dgo cUc -hIO +szb dpI clZ crW cUc ydw -aTe +mwe aUt aUt aUb @@ -116755,7 +116755,7 @@ akK alH akk alT -ant +gxI amz apj anP @@ -116814,7 +116814,7 @@ aFz aFz aFz aGI -lMc +mGt aeT azT azT @@ -116945,7 +116945,7 @@ cET crW cUc ydw -aTe +mwe aUP aUt aUb @@ -117019,7 +117019,7 @@ aXY aeE aeE aGQ -dUz +gnO aFz aFz aFz @@ -117043,7 +117043,7 @@ aBe aKd aFz aFz -vte +hui aFz aFz aFz @@ -117061,7 +117061,7 @@ akq agK agK agK -iuk +gJF agK agK agK @@ -117185,7 +117185,7 @@ aUt aUb smJ aUb -rVo +eBo aUt aUt aUb @@ -117243,12 +117243,12 @@ anP aJd aJd awO -aKc +oiz awO awO gab aPg -cTE +epL aWz aeE aeE @@ -117397,9 +117397,9 @@ dgf dhh dhh diN -djA +rPs pIe -uGO +wmL dbL dbL dlR @@ -117413,17 +117413,17 @@ clZ crW cUc ydw -aTe +mwe aUX aUt aUb hRU aUb -rVo +eBo cxL aUt aUb -aUW +ykO cTw cUa aQP @@ -117459,7 +117459,7 @@ akK amz amz amz -aoq +wcF amz amz amz @@ -117497,7 +117497,7 @@ aGL azY aLS aGO -vte +hui aFz aFz aFz @@ -117644,16 +117644,16 @@ cUc cCH dpH cET -kmr +qDo cUc ydw -aTe +mwe aUY -nYf +oIL aUb aUb aUb -rVo +eBo aUt aUt aUb @@ -117698,7 +117698,7 @@ amz amz amz amz -aFF +jRP anP aqx aoT @@ -117881,7 +117881,7 @@ clZ crW cUc ydw -aTe +mwe aVa aUt aUb @@ -117969,7 +117969,7 @@ aFz aFz anu aFz -guK +wFC aAK aAJ aKO @@ -117977,7 +117977,7 @@ aKO aJH aJI aJR -vte +hui aFz aFz aGF @@ -118191,7 +118191,7 @@ aeE dTs dTs aFU -vte +hui aFz aFz aFz @@ -118215,7 +118215,7 @@ aFz aFz aFz aFz -vte +hui aGI aeT aeT @@ -118343,13 +118343,13 @@ csb cmH cmH cBJ -hIO +szb dpH cET crW cUc ydw -aTe +mwe aVb aUt aUb @@ -118357,7 +118357,7 @@ aUb aUb aUb aUb -aUW +ykO aUb aUb cTg @@ -118583,11 +118583,11 @@ clZ crW cUc ydw -aTe +mwe aVa aUt aUb -aUW +ykO aUb aUb aUb @@ -118632,7 +118632,7 @@ app arq aas atK -aAV +fGv axA aas dTs @@ -118664,7 +118664,7 @@ aFz aFz aFz aFz -vte +hui aFz aFz aFz @@ -118675,7 +118675,7 @@ aFz aFz aFz aFz -vte +hui aFz aFz aFz @@ -118817,7 +118817,7 @@ clZ crW cUc ydw -aTe +mwe aUX aUt aUt @@ -118920,7 +118920,7 @@ aFz dTs dTs aeT -lMc +mGt aeT aeT aeT @@ -118931,7 +118931,7 @@ dTs dTs tMi aCk -gKn +kLe aBE aBE aAv @@ -119054,10 +119054,10 @@ tMy aTS aVc aVA -bvu -pHU -pHU -xYb +fkn +tQg +tQg +oYs aVA aVc aVc @@ -119095,7 +119095,7 @@ dTs dTs aas any -aiM +wyD app arq asw @@ -119137,7 +119137,7 @@ bfh beM aFz aFz -aAw +eQq aFz aFz aFz @@ -119415,7 +119415,7 @@ aBS aBL dTs aBE -ooQ +uAU aCk mnc aaD @@ -119519,7 +119519,7 @@ clZ crW cWV xOb -xec +oyO aVd bby bvw @@ -119598,7 +119598,7 @@ dTs aFU aFz aFz -vte +hui aFz dTs dTs @@ -119749,7 +119749,7 @@ cmb cmb cmb cmb -meN +nWP cXx cFE eYP @@ -119758,7 +119758,7 @@ aVe bem bvx blc -vqS +hVF bvx cyx aVd @@ -119824,7 +119824,7 @@ dTs acY bAw add -bNu +gjH acY dTs dTs @@ -119874,7 +119874,7 @@ hoc gCS rQQ qJU -ooQ +uAU aCk aBE aBE @@ -120284,7 +120284,7 @@ dTs dTs dTs acY -kQd +vuZ dTs dTs dTs @@ -120455,7 +120455,7 @@ cmH dIi cWN lfM -lPn +hnX aVu blc blc @@ -120500,7 +120500,7 @@ dTs aat aat aat -aiN +pTf aat aat aat @@ -120756,7 +120756,7 @@ bFc bFc bHE add -cjc +elX add add add @@ -120795,7 +120795,7 @@ dTs dTs dTs dTs -ooQ +uAU aBE dTs dTs @@ -120805,7 +120805,7 @@ ays aCk aBL aBL -ooQ +uAU aBE aBE aBE @@ -120985,7 +120985,7 @@ bFc bFc bFc bHE -cjc +elX add add add @@ -121161,7 +121161,7 @@ cmH aVe bnw bzT -lei +sBQ bFD caj crV @@ -121207,7 +121207,7 @@ aqo aat aat avu -cjc +elX add add add @@ -121237,7 +121237,7 @@ dTs dTs bAw add -cjc +elX bIK acY dTs @@ -121445,7 +121445,7 @@ aRw bGp add add -adD +tsP add bHG btE @@ -121921,7 +121921,7 @@ dTs dTs dTs btE -chl +tHr add add bIK @@ -121970,7 +121970,7 @@ dTs aBE xmH xmH -rfm +ked xmH dTs dTs @@ -121982,7 +121982,7 @@ dTs dTs dTs ayH -nyR +mEd aBU aBL dTs @@ -122171,7 +122171,7 @@ acY abW bHE add -adD +tsP bHG btE dTs @@ -122376,7 +122376,7 @@ aqY asu aat aat -aiN +pTf aat aat aat @@ -122628,7 +122628,7 @@ btE bym add add -aal +cVW acY bAw btE @@ -122671,7 +122671,7 @@ dTs dTs dTs aBL -nYz +uEZ ayH aBV aBU 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/DesertDam/sprinkles/10.damtemple_intact.dmm b/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm index d0ebbc5039d5..5e0b0811cf2a 100644 --- a/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm +++ b/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm @@ -89,6 +89,17 @@ }, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"gd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/dirt{ + dir = 8; + icon_state = "desert_transition_edge1" + }, +/area/desert_dam/exterior/valley/valley_crashsite) +"gh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) "gX" = ( /obj/item/hunting_trap{ desc = "A bizarre alien device used for trapping and killing prey."; @@ -256,30 +267,7 @@ icon_state = "multi_tiles" }, /area/desert_dam/interior/caves/temple) -"qv" = ( -/obj/effect/decal/remains/xeno{ - pixel_x = 31 - }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"qE" = ( -/obj/item/device/flashlight/lantern, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"qV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"re" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"rh" = ( +"qi" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, @@ -309,6 +297,22 @@ icon_state = "squareswood" }, /area/desert_dam/interior/caves/temple) +"qv" = ( +/obj/effect/decal/remains/xeno{ + pixel_x = 31 + }, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"qE" = ( +/obj/item/device/flashlight/lantern, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) +"re" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) "rI" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -398,6 +402,18 @@ "zg" = ( /turf/closed/wall/mineral/sandstone/runed/decor, /area/desert_dam/interior/caves/temple) +"Al" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/weapon/sword{ + pixel_x = 7 + }, +/obj/item/weapon/sword{ + pixel_x = -7 + }, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) "An" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/river/desert/deep, @@ -444,10 +460,6 @@ icon_state = "dirt2" }, /area/desert_dam/exterior/valley/valley_crashsite) -"Dc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) "DL" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -544,18 +556,6 @@ icon_state = "squareswood" }, /area/desert_dam/interior/caves/temple) -"Jh" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/weapon/sword{ - pixel_x = 7 - }, -/obj/item/weapon/sword{ - pixel_x = -7 - }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) "JC" = ( /obj/item/clothing/head/hardhat, /turf/open/desert/rock, @@ -634,10 +634,6 @@ /obj/item/tool/kitchen/utensil/spoon, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"NL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "NV" = ( /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) @@ -735,6 +731,10 @@ /obj/structure/prop/brazier/torch, /turf/closed/wall/mineral/sandstone/runed, /area/desert_dam/interior/caves/temple) +"XD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) "XQ" = ( /obj/effect/decal/cleanable/cobweb2, /obj/item/tool/kitchen/tray{ @@ -761,7 +761,7 @@ ZI mA mA mA -qV +gd mA mA mA @@ -778,7 +778,7 @@ MH (2,1,1) = {" NV NV -NL +XD Co Co Co @@ -880,7 +880,7 @@ tn MH "} (6,1,1) = {" -Dc +gh jl EB EB @@ -1012,7 +1012,7 @@ EB (11,1,1) = {" td td -Dc +gh td td td @@ -1150,7 +1150,7 @@ NB Ps mB WV -Jh +Al mB mB mB @@ -1408,7 +1408,7 @@ MH ik MH MH -rh +qi MH MH MH diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index 7238b5ab66cb..e57a7a83202c 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -7,12 +7,109 @@ }, /turf/open/space, /area/fiorina/oob) +"aac" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"aad" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/prison{ + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"aae" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenfull" + }, +/area/fiorina/tumor/civres) +"aaf" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"aag" = ( +/obj/item/trash/eat, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"aah" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 9; + icon_state = "yellow" + }, +/area/fiorina/station/disco) +"aai" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"aaj" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "green" + }, +/area/fiorina/station/chapel) "aak" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "4" }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) +"aam" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "green" + }, +/area/fiorina/station/transit_hub) +"aan" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"aao" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/tumor/aux_engi) +"aap" = ( +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) "aaq" = ( /obj/structure/machinery/power/apc{ dir = 1 @@ -36,132 +133,104 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"aaR" = ( -/obj/structure/platform_decoration{ - dir = 4 +"aat" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/baton, +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenfull" }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +/area/fiorina/tumor/civres) +"aau" = ( +/obj/structure/inflatable, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"abG" = ( -/obj/item/trash/chunk, +/area/fiorina/station/research_cells) +"aav" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/weapon/baton, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + icon_state = "redfull" }, -/area/fiorina/station/medbay) +/area/fiorina/station/security) +"aaK" = ( +/turf/open/floor/prison{ + dir = 9; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"aaW" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison, +/area/fiorina/station/security) +"abe" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) "abJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ icon = 'icons/obj/structures/doors/2x1prepdoor.dmi' }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"ace" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" +"acx" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ppflowers_2" }, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" }, -/area/fiorina/tumor/aux_engi) -"ach" = ( +/area/fiorina/station/central_ring) +"adk" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ dir = 4; - icon_state = "greenfull" + icon_state = "darkyellowfull2" }, /area/fiorina/tumor/servers) -"aco" = ( +"adl" = ( +/obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/sillycup{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 +/obj/structure/window/reinforced{ + dir = 8 }, /turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"acO" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"adq" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "redfull" - }, /area/fiorina/station/security) -"adE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"aeb" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"aej" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/effect/decal/cleanable/blood, +"adH" = ( +/obj/structure/closet/secure_closet/medical3, /turf/open/floor/prison{ - icon_state = "damaged3" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/security) -"aeo" = ( -/obj/structure/monorail{ - name = "launch track" +/area/fiorina/station/medbay) +"adY" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_tram) -"aeF" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibup1" + dir = 5; + icon_state = "yellow" }, +/area/fiorina/station/disco) +"aee" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"aeI" = ( -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" + dir = 8; + icon_state = "yellow" }, /area/fiorina/station/central_ring) -"aeS" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"aem" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets{ + pixel_x = 5; + pixel_y = 9 }, +/obj/item/storage/box/donkpockets, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "bluefull" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/power_ring) "afk" = ( /turf/open/floor{ desc = "A sophisticated device that captures and converts light from the system's star into energy for the station."; @@ -169,48 +238,6 @@ name = "solarpanel" }, /area/fiorina/oob) -"afq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/fiorina/station/medbay) -"afO" = ( -/obj/structure/bed/sofa/vert/grey/bot{ - pixel_y = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"afW" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"afX" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"aga" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"agh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) "agi" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/servers) @@ -264,15 +291,32 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"ahm" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"aic" = ( +"ahe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' + }, /turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/research_cells) +"ahn" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue" + }, +/area/fiorina/station/chapel) +"ahR" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/platform{ + dir = 8 }, +/turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) "aif" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -281,31 +325,54 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"aik" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +"aiK" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, /turf/open/floor/prison{ icon_state = "darkbrown2" }, +/area/fiorina/station/park) +"aiV" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"aja" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"ajh" = ( +/obj/item/device/flashlight/on, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrowncorners2" + }, /area/fiorina/tumor/aux_engi) -"aiv" = ( -/obj/structure/bed{ - icon_state = "abed" +"aji" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" }, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"aje" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" +/area/fiorina/tumor/servers) +"ajp" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" }, -/obj/structure/platform{ - dir = 4 +/area/fiorina/station/medbay) +"ajr" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "redcorner" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) +/area/fiorina/station/security) "aju" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -314,84 +381,96 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"ajw" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) "ajx" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/space/basic, /area/fiorina/oob) -"ajP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/margherita, +"ajD" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 9; + icon_state = "yellow" }, -/area/fiorina/station/medbay) -"ajZ" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" +/area/fiorina/station/disco) +"ajH" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical{ + pixel_y = -3 }, -/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 1; icon_state = "darkbrown2" }, -/area/fiorina/tumor/aux_engi) -"akp" = ( +/area/fiorina/maintenance) +"ajK" = ( /turf/open/floor/prison{ - icon_state = "green" + icon_state = "darkbrown2" }, -/area/fiorina/station/chapel) -"akM" = ( -/obj/structure/surface/table/reinforced/prison, +/area/fiorina/station/park) +"ajN" = ( +/obj/structure/barricade/wooden, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/research_cells) -"akW" = ( -/obj/structure/bed/chair/janicart, -/turf/open/floor/prison, /area/fiorina/station/medbay) -"akZ" = ( -/obj/structure/machinery/light/double/blue{ +"ajX" = ( +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/structure/sink{ dir = 8; - pixel_x = -10; - pixel_y = -3 + pixel_x = -12; + pixel_y = 2 }, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + icon_state = "sterile_white" }, -/area/fiorina/station/telecomm/lz1_tram) -"alC" = ( -/obj/structure/inflatable/popped, +/area/fiorina/station/civres_blue) +"akc" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ icon_state = "floor_plate" }, +/area/fiorina/station/telecomm/lz1_cargo) +"akw" = ( +/turf/open/floor/prison{ + dir = 5; + icon_state = "green" + }, /area/fiorina/station/transit_hub) -"alK" = ( -/obj/item/trash/cigbutt/cigarbutt, +"akE" = ( /turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/tumor/servers) +"alr" = ( +/obj/structure/stairs/perspective{ dir = 8; - icon_state = "darkyellow2" + icon_state = "p_stair_ew_full_cap" }, -/area/fiorina/station/flight_deck) -"alP" = ( -/obj/effect/spawner/random/gun/rifle/midchance, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"alu" = ( /turf/open/floor/prison{ - icon_state = "darkbrown2" + dir = 8; + icon_state = "cell_stripe" }, -/area/fiorina/station/park) +/area/fiorina/oob) +"alJ" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/servers) "alX" = ( /obj/item/paper/crumpled/bloody, /turf/open/floor/prison/chapel_carpet{ @@ -399,13 +478,6 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"alY" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, -/area/fiorina/station/security) "amd" = ( /obj/effect/decal/hefa_cult_decals/d96, /obj/item/paper/crumpled/bloody, @@ -417,39 +489,36 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"amn" = ( +"ami" = ( +/obj/item/stack/sandbags/large_stack, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" + dir = 8; + icon_state = "darkyellow2" }, -/area/fiorina/station/research_cells) -"amF" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/tumor/aux_engi) -"amZ" = ( -/obj/structure/barricade/wooden{ - dir = 4 +/area/fiorina/station/telecomm/lz1_cargo) +"amj" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" }, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/research_cells) +/area/fiorina/tumor/aux_engi) +"amx" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"amF" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/tumor/aux_engi) "ane" = ( /obj/item/weapon/unathiknife{ name = "ceremonial knife" }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"anl" = ( -/obj/item/pamphlet/engineer, -/obj/structure/closet, -/obj/item/handcuffs, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/lowsec) "anm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -474,13 +543,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"ann" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) "anq" = ( /turf/closed/shuttle/ert{ icon_state = "stan9" @@ -493,12 +555,13 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"any" = ( -/obj/item/stack/cable_coil/random, -/turf/open/floor/prison{ - icon_state = "redfull" +"anG" = ( +/obj/structure/largecrate/supply, +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/station/security) +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/medbay) "anJ" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -512,149 +575,125 @@ }, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"anR" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"anT" = ( -/obj/item/reagent_container/food/snacks/meat, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"anW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +"aoa" = ( +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + name = "\improper Null Hatch REPLACE ME"; + req_access = null; + req_one_access = null }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"aoH" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ - dir = 8; - icon_state = "green" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/chapel) -"aoo" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, +/area/fiorina/tumor/ice_lab) +"apf" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"app" = ( +/obj/item/trash/pistachios, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/flight_deck) -"aoZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_y = 11 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"ape" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/fiorina/maintenance) -"apf" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"apu" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/fiorina/station/power_ring) +/area/fiorina/tumor/ice_lab) "apw" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/tumor/civres) -"apO" = ( -/obj/structure/platform_decoration, +"apy" = ( +/obj/structure/bed/sofa/vert/grey/bot{ + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"aqI" = ( /turf/open/floor/prison{ - icon_state = "whitegreen" + icon_state = "red" }, -/area/fiorina/tumor/ice_lab) -"aqj" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +/area/fiorina/station/security) +"aqJ" = ( +/obj/structure/monorail{ + dir = 6; + name = "launch track" }, -/obj/structure/platform/stair_cut/alt, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"aqo" = ( -/obj/item/shard{ - icon_state = "large" - }, +"aqS" = ( +/obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/tumor/servers) +"aqW" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 }, -/area/fiorina/station/medbay) -"aqw" = ( -/obj/item/stool, -/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/power_ring) "arl" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) +"arm" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "arn" = ( /obj/effect/landmark/nightmare{ insert_tag = "researchprestine" }, /turf/closed/wall/prison, /area/fiorina/station/research_cells) -"art" = ( -/obj/structure/platform{ - dir = 8 +"arq" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/item/stack/sheet/metal{ + amount = 5 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "greenblue" + icon_state = "floor_plate" }, -/area/fiorina/station/botany) -"arG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +/area/fiorina/lz/near_lzI) +"aru" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison{ + dir = 9; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"arS" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" }, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) -"arT" = ( +/area/fiorina/tumor/servers) +"arY" = ( /obj/structure/stairs/perspective{ + dir = 4; icon_state = "p_stair_full" }, +/obj/structure/platform, /turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"arW" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/oob) -"asf" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/disco) +/area/fiorina/station/central_ring) "ask" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -666,48 +705,12 @@ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) -"aso" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) "ast" = ( /obj/structure/machinery/power/apc{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"asz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/central_ring) -"asE" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"asI" = ( -/obj/item/toy/deck, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"atd" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "atl" = ( /obj/structure/platform{ dir = 1 @@ -726,6 +729,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"atm" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/station/telecomm/lz1_tram) "atp" = ( /obj/item/book/manual/security_space_law{ pixel_x = 3; @@ -733,26 +743,31 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"atw" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"atx" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" }, -/area/fiorina/station/medbay) -"atY" = ( -/obj/structure/bedsheetbin, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"atE" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" + dir = 1; + icon_state = "cell_stripe" + }, +/area/fiorina/station/power_ring) +"auH" = ( +/obj/item/bodybag, +/obj/item/bodybag{ + pixel_y = 2 + }, +/obj/item/bodybag{ + pixel_y = 4 }, -/area/fiorina/station/lowsec) -"auj" = ( -/obj/item/frame/rack, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/medbay) "auQ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -768,65 +783,87 @@ name = "astroturf" }, /area/fiorina/station/park) -"auS" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/clothing/under/color/orange, +"avf" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) -"avc" = ( -/obj/structure/stairs/perspective{ +/area/fiorina/tumor/aux_engi) +"avl" = ( +/turf/open/floor/prison{ dir = 5; - icon_state = "p_stair_full" + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"avs" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison{ + icon_state = "darkredfull2" }, -/turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/research_cells) -"avJ" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"avT" = ( -/obj/item/trash/semki, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) +"avI" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/research_cells) +"avX" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/fiorina/station/medbay) "avY" = ( /obj/item/clothing/head/soft/rainbow, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"awL" = ( -/obj/structure/monorail{ - name = "launch track" +"awh" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"awU" = ( -/obj/structure/machinery/iv_drip{ - pixel_y = 19 +/obj/item/storage/toolbox, +/obj/item/storage/toolbox, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/tumor/servers) +"awo" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" + dir = 10; + icon_state = "yellow" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/lowsec) +"awx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"awF" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/tumor/aux_engi) "axb" = ( /obj/item/clothing/suit/storage/marine/specialist, /turf/open/floor/plating/prison, /area/fiorina/oob) -"axn" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"axx" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +"axi" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "blue" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) +/area/fiorina/station/chapel) "axA" = ( /obj/structure/prop/almayer/computers/mission_planning_system{ density = 0; @@ -837,62 +874,45 @@ }, /turf/closed/wall/prison, /area/fiorina/station/security) -"aye" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"ayo" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/security) -"ayB" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = -5 - }, +"ayv" = ( +/obj/item/trash/pistachios, /turf/open/floor/prison{ - dir = 10; icon_state = "whitegreen" }, -/area/fiorina/station/medbay) -"ayG" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, +/area/fiorina/tumor/ice_lab) +"ayA" = ( +/obj/structure/platform, /turf/open/floor/prison{ dir = 9; - icon_state = "yellow" + icon_state = "greenfull" }, -/area/fiorina/station/disco) -"ayH" = ( +/area/fiorina/station/transit_hub) +"ayK" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 }, /turf/open/floor/prison{ dir = 4; - icon_state = "darkyellowfull2" + icon_state = "redcorner" }, -/area/fiorina/station/flight_deck) -"ayW" = ( -/obj/structure/bed{ - icon_state = "abed" +/area/fiorina/station/power_ring) +"ayM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/pistol/heavy{ + pixel_y = 7 + }, +/obj/item/ammo_magazine/pistol/heavy{ + pixel_y = 12 }, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10; - icon_state = "yellow" + icon_state = "whitegreenfull" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/medbay) "ayX" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -900,6 +920,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"azg" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) "azs" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -916,23 +942,60 @@ /obj/structure/girder, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"azK" = ( -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_y = 5 +"azy" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "Holy shit"; - pixel_y = 18 +/obj/structure/platform/kutjevo/smooth{ + dir = 4 }, -/obj/item/storage/pill_bottle/kelotane/skillless{ - desc = "Don't touch -Dr. O"; - pixel_x = 6; - pixel_y = 31 +/obj/structure/platform/kutjevo/smooth, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) +/turf/open/space/basic, +/area/fiorina/oob) +"azI" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue" + }, +/area/fiorina/station/chapel) +"azJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/security) +"azN" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"azT" = ( +/obj/item/inflatable, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) "azZ" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/ice_lab) @@ -944,18 +1007,17 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"aAk" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"aAA" = ( +"aAH" = ( +/obj/item/device/multitool, /turf/open/floor/prison{ - dir = 1; - icon_state = "green" + icon_state = "floor_plate" }, -/area/fiorina/station/transit_hub) -"aAJ" = ( -/obj/structure/bed/sofa/vert/grey, +/area/fiorina/station/telecomm/lz1_cargo) +"aAM" = ( +/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ + layer = 2.6 + }, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ icon_state = "floor_plate" }, @@ -968,6 +1030,21 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) +"aBk" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/tumor/aux_engi) +"aBm" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) "aBs" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -983,18 +1060,6 @@ name = "astroturf" }, /area/fiorina/station/civres_blue) -"aBD" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) "aBJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/chef_recipes{ @@ -1002,10 +1067,39 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"aBZ" = ( -/obj/effect/landmark/yautja_teleport, +"aBO" = ( +/obj/item/ammo_magazine/rifle/m16, /turf/open/floor/prison, -/area/fiorina/station/park) +/area/fiorina/station/security) +"aBX" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/surface/rack, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) +"aCi" = ( +/obj/structure/prop/invuln{ + desc = "Floating cells are reserved for highly dangerous criminals. Whoever is out there is probably best left out there."; + icon = 'icons/obj/structures/doors/celldoor.dmi'; + icon_state = "door_closed"; + layer = 2.5; + name = "cell door" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/servers) +"aCn" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) "aCC" = ( /obj/item/tool/soap{ pixel_x = 2; @@ -1013,56 +1107,129 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"aCZ" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"aDc" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, +"aCT" = ( +/obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "redfull" }, -/area/fiorina/tumor/servers) -"aDx" = ( -/turf/open/floor/prison{ - icon_state = "yellow" +/area/fiorina/station/security) +"aCV" = ( +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = -9; + pixel_y = -8 }, -/area/fiorina/station/central_ring) -"aEi" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"aEB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/obj/item/explosive/grenade/high_explosive/frag{ + pixel_x = 6; + pixel_y = 3 }, -/area/fiorina/station/security/wardens) -"aEC" = ( -/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/station/power_ring) -"aEG" = ( -/obj/structure/largecrate/random/secure, +/area/fiorina/tumor/servers) +"aDh" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, +/area/fiorina/oob) +"aDi" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison, /area/fiorina/station/medbay) -"aEQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"aDl" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 }, -/area/fiorina/station/telecomm/lz1_cargo) -"aFp" = ( -/obj/structure/machinery/defenses/tesla_coil{ - faction_group = list("CLF") +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkbrown2" }, -/turf/open/floor/plating/plating_catwalk, +/area/fiorina/station/park) +"aDr" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"aDs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/obj/item/storage/syringe_case/burn{ + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) +"aDw" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/platform_decoration, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/disco) +"aDC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/security_space_law{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/book/manual/security_space_law{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/security_space_law{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) +"aEi" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"aFg" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/security/wardens) +"aFh" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison{ + dir = 9; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"aFn" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"aFp" = ( +/obj/structure/machinery/defenses/tesla_coil{ + faction_group = list("CLF") + }, +/turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) +"aFJ" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison{ + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) "aFK" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -1073,40 +1240,35 @@ icon_state = "plate" }, /area/fiorina/station/telecomm/lz1_cargo) -"aFQ" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibmid3" - }, +"aFV" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "whitepurple" }, -/area/fiorina/station/medbay) +/area/fiorina/station/research_cells) "aFZ" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/medbay) -"aGF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/frame/firstaid_arm_assembly, -/obj/item/stack/nanopaste{ - pixel_x = 11; - pixel_y = 6 +"aGs" = ( +/obj/structure/window/framed/prison/reinforced{ + opacity = 1 }, +/obj/structure/machinery/door/poddoor/shutters/almayer, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security/wardens) -"aGR" = ( -/obj/structure/largecrate/random, -/obj/effect/spawner/random/powercell, -/obj/item/device/camera/oldcamera{ - pixel_y = 11 +/area/fiorina/station/chapel) +"aGS" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison{ + icon_state = "whitegreen" }, +/area/fiorina/station/medbay) +"aGV" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/prison, -/area/fiorina/station/power_ring) +/area/fiorina/station/security) "aHg" = ( /obj/structure/prop/resin_prop, /turf/open/floor/plating/prison, @@ -1115,76 +1277,151 @@ /obj/item/tool/crowbar, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzI) -"aHH" = ( -/obj/item/tool/shovel/etool, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"aHJ" = ( -/obj/structure/machinery/vending/cola, +"aHs" = ( +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"aHK" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" + icon_state = "darkredfull2" }, +/area/fiorina/station/research_cells) +"aHx" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"aId" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/hypospray, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/area/fiorina/station/transit_hub) +"aHA" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" }, -/area/fiorina/station/botany) -"aIm" = ( -/obj/structure/barricade/deployable{ - dir = 4 +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"aHY" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/storage/pill_bottle/alkysine, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "redfull" }, /area/fiorina/station/security) -"aIB" = ( -/obj/structure/largecrate/random/case/double, +"aIf" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"aIh" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/station/park) -"aJk" = ( +/area/fiorina/lz/near_lzI) +"aIp" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"aIv" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/box/holobadge{ + pixel_y = 3 + }, +/turf/open/floor/prison{ + dir = 6; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"aIE" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/atmos_alert, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 6 + }, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "kitchen" }, -/area/fiorina/tumor/ice_lab) -"aJo" = ( -/obj/structure/bed/chair{ +/area/fiorina/station/power_ring) +"aIK" = ( +/obj/structure/surface/rack, +/obj/item/tool/plantspray/weeds, +/turf/open/floor/prison{ dir = 4; - pixel_x = -5 + icon_state = "blue_plate" }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +/area/fiorina/station/botany) +"aIR" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison{ + icon_state = "bluefull" }, +/area/fiorina/station/power_ring) +"aIX" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" + icon_state = "yellowfull" + }, +/area/fiorina/station/central_ring) +"aIZ" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" }, -/area/fiorina/station/medbay) -"aJv" = ( /turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" + icon_state = "floor_plate" + }, +/area/fiorina/tumor/servers) +"aJf" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, /area/fiorina/tumor/aux_engi) +"aJg" = ( +/turf/open/floor/prison{ + icon_state = "platingdmg3" + }, +/area/fiorina/maintenance) +"aJK" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/meat/human, +/obj/item/reagent_container/food/snacks/meat/human, +/obj/structure/machinery/light/double/blue, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, +/area/fiorina/station/civres_blue) +"aJU" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" + }, +/area/fiorina/station/central_ring) "aJX" = ( /obj/structure/bed/chair{ dir = 8 @@ -1196,32 +1433,43 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"aKb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, +"aKc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" + dir = 1; + icon_state = "darkyellow2" }, -/area/fiorina/station/medbay) +/area/fiorina/lz/near_lzI) "aKA" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/space, /area/fiorina/oob) -"aKN" = ( -/obj/structure/machinery/computer/cameras{ - network = list("omega") +"aKF" = ( +/obj/item/storage/backpack{ + pixel_x = -11; + pixel_y = 15 }, -/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/syndi_cakes, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/lowsec) +"aKW" = ( /turf/open/floor/prison{ icon_state = "floor_plate" }, /area/fiorina/tumor/aux_engi) +"aLj" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/turf/open/floor/prison{ + icon_state = "greenblue" + }, +/area/fiorina/station/botany) "aLp" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -1231,65 +1479,39 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer_hull, /area/fiorina/station/medbay) -"aLz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "aLC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/spawner/random/pills/lowchance, /turf/open/floor/prison{ dir = 10; - icon_state = "whitepurple" + icon_state = "damaged1" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/central_ring) +"aLR" = ( +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) "aLT" = ( /obj/item/trash/uscm_mre, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"aLX" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) "aMg" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/ice_lab) -"aMr" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"aMu" = ( -/obj/effect/alien/weeds/node, +"aMq" = ( /turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" + dir = 1; + icon_state = "bluecorner" }, -/area/fiorina/tumor/ice_lab) -"aME" = ( +/area/fiorina/station/civres_blue) +"aMz" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 4; + pixel_x = 10; + pixel_y = -3 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "bluefull" }, -/area/fiorina/station/security) +/area/fiorina/station/power_ring) "aMM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -1297,87 +1519,67 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"aMS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/clothing/mask/cigarette, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_y = 8 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 +"aMZ" = ( +/obj/structure/platform_decoration{ + dir = 4 }, /turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"aNk" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 + dir = 5; + icon_state = "darkbrown2" }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"aNz" = ( -/obj/structure/platform{ - dir = 1 +/area/fiorina/station/park) +"aNn" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "darkbrown2" }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - layer = 3.5 +/area/fiorina/station/park) +"aNw" = ( +/obj/structure/platform, +/turf/open/floor/prison{ + icon_state = "whitegreen" }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/medbay) +"aNP" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b, +/obj/structure/barricade/handrail/type_b{ + dir = 4 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/medbay) "aOc" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; opacity = 0 }, /area/fiorina/tumor/ship) -"aOm" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, -/area/fiorina/tumor/servers) -"aOC" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, +"aOd" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"aOL" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = -7; - pixel_y = 11 - }, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/security) -"aOT" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +/area/fiorina/tumor/ice_lab) +"aOh" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" }, +/area/fiorina/oob) +"aOJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkredfull2" }, -/area/fiorina/lz/near_lzII) +/area/fiorina/lz/near_lzI) "aPd" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -1389,17 +1591,22 @@ name = "astroturf" }, /area/fiorina/station/park) -"aPr" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +"aPi" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + dir = 10; + icon_state = "yellow" }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"aPv" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/central_ring) +/area/fiorina/station/disco) +"aPq" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) "aPD" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -1409,52 +1616,80 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"aPF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_7" + }, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) "aPH" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/security/wardens) -"aPO" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"aQB" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/fiorina/station/civres_blue) -"aQH" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/landmark/nightmare{ - insert_tag = "yardbasketball" +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"aQE" = ( +/obj/item/stack/sheet/metal{ + amount = 5 }, -/area/fiorina/station/central_ring) -"aQR" = ( -/obj/structure/machinery/vending/cola, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkyellow2" }, -/area/fiorina/station/transit_hub) -"aQW" = ( -/obj/structure/barricade/sandbags{ +/area/fiorina/lz/near_lzI) +"aQK" = ( +/obj/item/trash/uscm_mre, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison{ dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 + icon_state = "darkyellow2" + }, +/area/fiorina/station/flight_deck) +"aQM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) +"aQU" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"aQY" = ( -/obj/structure/platform{ - dir = 1 +/area/fiorina/station/security) +"aQZ" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison{ + dir = 4; + icon_state = "red" + }, +/area/fiorina/station/security) +"aRb" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/barricade/wooden{ + dir = 4 }, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "whitepurple" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/research_cells) "aRk" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/plating/plating_catwalk/prison, @@ -1465,12 +1700,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"aRv" = ( -/obj/structure/platform, -/obj/structure/closet/firecloset/full, -/obj/item/paper/prison_station/inmate_handbook, +"aRx" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/pill_bottle/tramadol/skillless, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"aRB" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_2" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) +"aRG" = ( /turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/flight_deck) "aRT" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -1480,60 +1729,50 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"aSm" = ( -/obj/structure/bed/chair{ +"aRY" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ +/obj/structure/bed/chair/wheelchair{ + desc = "Great scott, it can move on its own!"; dir = 4; - icon_state = "whitegreen" + icon_state = "officechair_white"; + name = "Dr. O's fantastic self rolling wheelie chair"; + pixel_x = 7 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"aSw" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison{ + icon_state = "whitegreencorner" }, /area/fiorina/station/medbay) "aSz" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/research_cells) -"aSA" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"aSM" = ( -/obj/effect/spawner/random/gun/shotgun/highchance{ - mags_max = 0; - mags_min = 0 - }, -/turf/open/floor/prison, -/area/fiorina/station/chapel) "aSS" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/medbay) -"aTe" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) "aTo" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/transit_hub) -"aTx" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/security) +"aTw" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison{ + dir = 4; + icon_state = "blue" + }, +/area/fiorina/station/civres_blue) "aTE" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"aTL" = ( -/obj/structure/bed/chair{ - dir = 4; - layer = 2.8 - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) "aTM" = ( /obj/item/stack/tile/plasteel{ pixel_x = 12; @@ -1541,37 +1780,123 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"aTO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck/uno, +"aUa" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/prison{ + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"aUx" = ( +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster17"; + name = "magazine" + }, +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster3"; + name = "magazine"; + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) +"aUM" = ( +/obj/item/clothing/head/welding, /turf/open/floor/prison{ dir = 9; icon_state = "greenfull" }, -/area/fiorina/station/botany) -"aTY" = ( +/area/fiorina/tumor/civres) +"aVd" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"aVh" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" + }, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/transit_hub) +"aVA" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "darkyellow2" + }, +/area/fiorina/station/flight_deck) +"aVD" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase, +/obj/item/card/id/guest{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/card/id/guest, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) +"aVE" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"aVJ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/civres_blue) +"aVK" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, /turf/open/floor/prison{ dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/lz/near_lzI) +"aVN" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) +"aVS" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison{ + dir = 1; icon_state = "blue_plate" }, /area/fiorina/station/botany) -"aUg" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison, -/area/fiorina/station/security) -"aUA" = ( -/obj/item/stack/cable_coil/orange, +"aVT" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000; + pixel_y = 19 + }, +/obj/item/stack/sheet/wood, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "Somehow, it still functions."; + layer = 3.1; + name = "discarded camera console"; + pixel_x = -6; + pixel_y = 5 + }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"aVd" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) +/area/fiorina/tumor/servers) "aVU" = ( /turf/open/floor/corsat{ icon_state = "squares" @@ -1580,15 +1905,35 @@ "aWk" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/telecomm/lz2_maint) -"aWI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"aWo" = ( +/obj/structure/platform_decoration{ + dir = 4 }, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/power_ring) +"aWD" = ( +/obj/item/device/taperecorder{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/chapel) +"aWP" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"aWR" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/lz/near_lzII) "aWV" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) @@ -1603,81 +1948,45 @@ dir = 5 }, /area/fiorina/tumor/aux_engi) -"aXp" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/bed/chair/wheelchair{ - desc = "Great scott, it can move on its own!"; +"aXK" = ( +/obj/item/clothing/under/shorts/green, +/turf/open/floor/prison{ dir = 4; - icon_state = "officechair_white"; - name = "Dr. O's fantastic self rolling wheelie chair"; - pixel_x = 7 + icon_state = "cell_stripe" }, +/area/fiorina/station/central_ring) +"aXM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/orange, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"aXv" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"aXx" = ( +/area/fiorina/maintenance) +"aYA" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; - pixel_y = 13 + pixel_y = -3 }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"aXC" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" + icon_state = "floor_plate" }, /area/fiorina/station/lowsec) -"aXO" = ( +"aYZ" = ( +/obj/structure/machinery/disposal, /turf/open/floor/prison{ - icon_state = "damaged2" - }, -/area/fiorina/station/central_ring) -"aXR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + icon_state = "floor_plate" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/area/fiorina/station/security/wardens) +"aZz" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" }, -/area/fiorina/station/medbay) -"aYf" = ( -/obj/item/tool/scythe, /turf/open/floor/prison{ dir = 8; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"aYg" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/research_cells) -"aZi" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + icon_state = "whitegreen" }, -/area/fiorina/tumor/servers) +/area/fiorina/tumor/ice_lab) "aZD" = ( /obj/structure/platform{ dir = 8 @@ -1694,24 +2003,43 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"aZL" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/disco) "aZN" = ( /obj/item/toy/crayon/yellow, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"aZW" = ( -/obj/structure/platform_decoration{ +"aZQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue" + }, +/area/fiorina/station/power_ring) +"aZU" = ( +/obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "greenfull" }, -/area/fiorina/station/park) +/area/fiorina/tumor/civres) +"aZZ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) +"bac" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 1; + pixel_y = -3 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/tumor/servers) "baC" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station) @@ -1720,54 +2048,19 @@ /obj/item/stack/catwalk, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"baM" = ( -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"bbn" = ( -/obj/item/device/motiondetector, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"bbp" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"bby" = ( +/turf/open/floor/prison, /area/fiorina/tumor/civres) -"bbI" = ( -/obj/item/stool{ - pixel_x = -4; - pixel_y = 23 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"bbU" = ( -/obj/structure/sign/safety/fire_haz, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"bbT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/tumor/civres) -"bcd" = ( -/obj/structure/machinery/vending/coffee, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/flight_deck) +/area/fiorina/station/telecomm/lz1_tram) "bce" = ( /obj/structure/lattice, /turf/open/space/basic, @@ -1777,71 +2070,81 @@ /obj/item/storage/pill_bottle/kelotane/skillless, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"bcp" = ( +"bcg" = ( +/obj/structure/platform{ + dir = 4 + }, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + dir = 6; + icon_state = "greenblue" }, -/area/fiorina/station/telecomm/lz1_tram) -"bcq" = ( -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison, -/area/fiorina/station/security) -"bcz" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_x = 11; - pixel_y = 10 +/area/fiorina/station/botany) +"bck" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_y = 7 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkredfull2" }, -/area/fiorina/tumor/aux_engi) -"bcT" = ( -/obj/structure/platform, +/area/fiorina/station/security) +"bcs" = ( +/obj/structure/largecrate/random, /turf/open/floor/prison{ - icon_state = "darkbrown2" + icon_state = "darkbrownfull2" }, /area/fiorina/station/park) -"bcX" = ( -/obj/item/tool/warning_cone, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +"bcF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" }, +/area/fiorina/station/medbay) +"bcH" = ( +/obj/item/tool/screwdriver, /turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"bdb" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/area/fiorina/station/transit_hub) +"bcV" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/station/park) -"bdE" = ( -/obj/item/stack/cable_coil, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/civres) -"bec" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, +/area/fiorina/tumor/ice_lab) +"bdI" = ( +/obj/structure/bed/roller, +/obj/item/bedsheet/green, /turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" + dir = 1; + icon_state = "whitepurple" }, -/area/fiorina/lz/near_lzI) -"beh" = ( -/obj/effect/landmark/monkey_spawn, +/area/fiorina/station/research_cells) +"bdL" = ( +/obj/structure/inflatable/door, /turf/open/floor/prison{ dir = 8; - icon_state = "whitegreencorner" + icon_state = "whitegreen" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/medbay) +"bdS" = ( +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/servers) +"bej" = ( +/obj/structure/barricade/handrail/type_b, +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) "bel" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -1853,31 +2156,10 @@ icon_state = "squares" }, /area/fiorina/station/civres_blue) -"bem" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"ber" = ( -/obj/structure/inflatable/popped/door, -/obj/item/ammo_magazine/m56d, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"bez" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"beB" = ( +"beV" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "blue" + dir = 4; + icon_state = "bluecorner" }, /area/fiorina/station/power_ring) "beW" = ( @@ -1887,19 +2169,52 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"bff" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, +"bfb" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "yellow" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/lowsec) +"bfg" = ( +/obj/structure/surface/rack, +/obj/item/storage/bible/hefa{ + pixel_y = 3 + }, +/obj/item/storage/bible/hefa, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"bfs" = ( +/obj/item/stack/sheet/wood{ + amount = 10 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"bfx" = ( +/obj/item/trash/barcardine, +/turf/open/floor/prison, +/area/fiorina/station/security) "bfF" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"bfZ" = ( +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"bgb" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/medbay) "bgc" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, @@ -1915,18 +2230,27 @@ /obj/item/trash/pistachios, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"bgD" = ( -/obj/structure/surface/table/reinforced/prison, +"bgG" = ( +/obj/structure/reagent_dispensers/watertank{ + layer = 2.6 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/lz/near_lzII) +"bgR" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "sterile_white" }, -/area/fiorina/tumor/ice_lab) -"bhf" = ( -/obj/item/fuelCell, -/obj/structure/surface/rack, +/area/fiorina/station/medbay) +"bha" = ( +/obj/structure/platform_decoration, /turf/open/floor/prison, -/area/fiorina/maintenance) +/area/fiorina/station/medbay) "bht" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" @@ -1946,103 +2270,100 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"bhW" = ( +"bhM" = ( +/obj/structure/bed/chair, /turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" + icon_state = "yellowfull" }, -/area/fiorina/tumor/civres) -"bhX" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) +/area/fiorina/station/disco) +"bhR" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) +"bhX" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) "bis" = ( /turf/closed/wall/prison, /area/fiorina/station/chapel) -"bix" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"bjf" = ( -/obj/item/tool/warning_cone, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"bjo" = ( -/obj/structure/window/reinforced{ +"biH" = ( +/obj/structure/machinery/door/poddoor/almayer{ + density = 0; dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison, -/area/fiorina/station/security) -"bjt" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/bedsheet/green, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"bjR" = ( -/obj/structure/bed/chair, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) -"bjZ" = ( -/obj/item/weapon/twohanded/spear, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/area/fiorina/station/park) +"biJ" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, +/turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/research_cells) -"bkg" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"bki" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +"bjk" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/obj/item/clothing/gloves/boxing/yellow, /turf/open/floor/prison{ - dir = 5; + dir = 6; icon_state = "yellow" }, /area/fiorina/station/lowsec) -"bkQ" = ( -/obj/item/ammo_casing{ - icon_state = "casing_7_1" - }, +"bjx" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "green" }, -/area/fiorina/station/lowsec) -"bkU" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"ble" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" +/area/fiorina/tumor/civres) +"bjy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison{ + dir = 9; + icon_state = "whitegreen" }, +/area/fiorina/tumor/ice_lab) +"bjO" = ( +/obj/structure/closet/bodybag, /turf/open/floor/prison{ icon_state = "floor_plate" }, +/area/fiorina/station/medbay) +"bka" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" + }, +/turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"blA" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" +"bkS" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "red" + }, +/area/fiorina/lz/near_lzII) +"blb" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"bln" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, /turf/open/floor/prison{ - icon_state = "whitegreen" + dir = 4; + icon_state = "green" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/tumor/civres) "blG" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; @@ -2050,215 +2371,188 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"bma" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"bmw" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/structure/surface/table/reinforced/prison, +"blQ" = ( +/obj/structure/inflatable/popped/door, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/park) +/area/fiorina/station/research_cells) "bmE" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"bmT" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" +"bmO" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, -/turf/open/space, -/area/fiorina/oob) +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/flight_deck) "bmV" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"bne" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"bnh" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"bno" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 +"bmX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"bnx" = ( -/obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) +/area/fiorina/tumor/ice_lab) "bnA" = ( /turf/closed/wall/prison, /area/fiorina/station/transit_hub) -"bnJ" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) +"bnK" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) "bnL" = ( /obj/item/storage/fancy/cigarettes/lady_finger, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"bnM" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 +"bod" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkbrown2" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/park) "boe" = ( /obj/item/tool/wet_sign, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"boh" = ( +/obj/item/stool, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"bop" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/fiorina/station/lowsec) "bou" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"boF" = ( -/obj/structure/reagent_dispensers/watertank, +"bow" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8; + icon_state = "cell_stripe" }, /area/fiorina/station/medbay) -"boI" = ( -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 +"bpq" = ( +/obj/item/stack/sheet/wood{ + amount = 10 }, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"bpe" = ( -/obj/structure/platform_decoration, +/area/fiorina/station/telecomm/lz1_cargo) +"bpC" = ( +/obj/item/tank/jetpack/carbondioxide, +/obj/structure/surface/rack, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"bpo" = ( -/obj/item/dogtag, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/area/fiorina/tumor/servers) +"bpG" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "bee" }, -/area/fiorina/station/civres_blue) -"bpx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"bqu" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 +/area/fiorina/tumor/servers) +"bpK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 }, +/obj/item/weapon/gun/energy/taser, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"bqC" = ( +/area/fiorina/station/security) +"bqy" = ( +/obj/structure/platform, /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"bqD" = ( /obj/structure/platform_decoration{ - dir = 4 + dir = 10 }, +/obj/structure/closet/firecloset/full, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"bqF" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null + dir = 10; + icon_state = "whitegreenfull" }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/storage/belt/marine, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, +/area/fiorina/station/medbay) +"bra" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"bqX" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"brl" = ( -/obj/structure/platform{ - dir = 8 + dir = 10; + icon_state = "floor_plate" }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +/area/fiorina/station/telecomm/lz1_cargo) +"brr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"brC" = ( /turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" + dir = 10; + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"brR" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/fiorina/station/flight_deck) -"brY" = ( -/obj/effect/decal/cleanable/blood/splatter, +"bry" = ( +/obj/structure/inflatable/popped/door, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/station/transit_hub) -"bsc" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/area/fiorina/tumor/servers) +"brI" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, -/area/fiorina/station/security) -"bsk" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +/obj/structure/platform_decoration/kutjevo, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" }, /turf/open/space/basic, /area/fiorina/oob) +"brS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) +"bsd" = ( +/obj/structure/closet/basketball, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) "bsm" = ( /obj/item/shard{ icon_state = "medium"; @@ -2273,86 +2567,81 @@ icon_state = "stan_l_w" }, /area/fiorina/tumor/ship) -"bsO" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/barricade/wooden{ - dir = 4 +"bsq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + pixel_y = 9 }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"bsF" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/research_cells) -"bsR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, +/area/fiorina/station/park) +"bsJ" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"buz" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"buG" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" + dir = 4; + icon_state = "darkyellowcorners2" }, +/area/fiorina/station/flight_deck) +"btq" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison{ - dir = 1; + dir = 6; icon_state = "whitegreen" }, -/area/fiorina/station/central_ring) -"buJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +/area/fiorina/tumor/ice_lab) +"btz" = ( +/obj/structure/platform, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"bvg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 + icon_state = "floor_plate" }, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 4 +/area/fiorina/station/park) +"btB" = ( +/obj/structure/cargo_container/grant/right{ + density = 0; + desc = "A huge industrial shipping container. You could slip just behind it."; + health = 5000; + layer = 4; + unacidable = 1 }, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 6 +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/power_ring) +"btP" = ( +/obj/item/tool/kitchen/rollingpin, /turf/open/floor/prison{ icon_state = "kitchen" }, /area/fiorina/station/power_ring) -"bvp" = ( -/obj/structure/barricade/wooden{ +"bux" = ( +/obj/structure/toilet{ dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" + pixel_y = 8 }, -/area/fiorina/station/central_ring) -"bvr" = ( -/obj/item/explosive/grenade/high_explosive/m15, -/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison{ - icon_state = "panelscorched" + dir = 9; + icon_state = "yellow" }, -/area/fiorina/tumor/aux_engi) -"bvs" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" +/area/fiorina/station/lowsec) +"buz" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"buO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/surgical, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"buQ" = ( +/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" }, /area/fiorina/station/central_ring) "bvK" = ( @@ -2366,292 +2655,179 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"bwj" = ( -/obj/structure/computerframe, +"bxa" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"bwk" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison{ +"bxl" = ( +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "whitepurple" + pixel_y = 21 }, -/area/fiorina/station/research_cells) -"bww" = ( -/obj/item/trash/candy, /turf/open/floor/prison{ dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"bxc" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/fiorina/station/security) -"bxd" = ( +/area/fiorina/station/flight_deck) +"bxr" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + density = 0; + pixel_y = 16 + }, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" + dir = 1; + icon_state = "darkbrown2" }, -/area/fiorina/oob) -"bxe" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 +/area/fiorina/maintenance) +"bxV" = ( +/obj/item/clothing/head/cmcap, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"bxW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison, +/area/fiorina/tumor/fiberbush) +"byb" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" }, -/area/fiorina/lz/near_lzII) -"bxg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison{ - icon_state = "bluefull" +/area/fiorina/tumor/ship) +"bym" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" }, -/area/fiorina/station/civres_blue) -"bxm" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/lz/near_lzI) +"byn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison{ + dir = 10; + icon_state = "blue" }, +/area/fiorina/station/power_ring) +"byr" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/fancy/vials/random, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/park) -"bxv" = ( -/obj/effect/decal/cleanable/blood/oil, +/area/fiorina/station/medbay) +"byt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, /turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" + icon_state = "bluefull" }, /area/fiorina/station/power_ring) -"bxy" = ( +"bzC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, /turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" + icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzI) -"bxA" = ( -/obj/structure/platform_decoration{ - dir = 1 +/area/fiorina/tumor/servers) +"bzG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/disco) +"bzH" = ( +/obj/structure/sign/poster{ + icon_state = "poster7"; + pixel_x = -26; + pixel_y = 6 }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ icon_state = "floor_plate" }, +/area/fiorina/station/medbay) +"bzL" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/prison, /area/fiorina/station/transit_hub) -"bxE" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"bxQ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/fiorina/station/medbay) -"bxV" = ( -/obj/item/clothing/head/cmcap, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"bya" = ( -/obj/structure/machinery/disposal, -/obj/item/tool/kitchen/rollingpin{ - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/station/civres_blue) -"byb" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan27" - }, -/area/fiorina/tumor/ship) -"byc" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"bym" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan20" - }, -/area/fiorina/lz/near_lzI) -"byB" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"byE" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"byF" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"byG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"byJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/fiorina/tumor/civres) -"byT" = ( -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"byY" = ( -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"bze" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/fiorina/station/medbay) "bzO" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/power_ring) -"bzU" = ( -/obj/item/tool/shovel/snow, -/obj/item/device/flashlight, +"bAb" = ( /obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, +/obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/tumor/servers) "bAc" = ( /turf/closed/shuttle/ert{ icon_state = "stan25" }, /area/fiorina/tumor/aux_engi) -"bAf" = ( +"bAS" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/power_ring) -"bAE" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"bAM" = ( -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"bBr" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 + dir = 10; + icon_state = "whitegreenfull" }, -/obj/item/bodybag/tarp/reactive, -/obj/item/bodybag/tarp/reactive, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/area/fiorina/tumor/ice_lab) +"bAU" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/fiorina/station/telecomm/lz1_cargo) -"bBt" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkbrown2" }, -/area/fiorina/station/security) +/area/fiorina/station/park) "bBA" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" }, /area/fiorina/station/power_ring) -"bBB" = ( -/obj/structure/largecrate/random/barrel, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"bBS" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/area/fiorina/station/park) -"bBK" = ( -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, /area/fiorina/station/security) -"bCe" = ( +"bBX" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"bCk" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison{ dir = 1; - icon_state = "redcorner" + icon_state = "darkpurple2" }, -/area/fiorina/station/security) +/area/fiorina/station/central_ring) "bCu" = ( /obj/item/shard{ icon_state = "large" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"bDv" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +"bDd" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison, +/area/fiorina/station/security) +"bDu" = ( +/obj/item/trash/barcardine, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "whitepurple" }, -/area/fiorina/station/flight_deck) +/area/fiorina/station/research_cells) "bDx" = ( /obj/item/tool/extinguisher/mini, /obj/structure/machinery/light/double/blue{ @@ -2662,198 +2838,215 @@ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) -"bDJ" = ( -/obj/effect/spawner/random/gun/pistol, +"bDC" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/fire/empty, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/servers) +"bDD" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"bDM" = ( +"bDN" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "blue" + dir = 4; + icon_state = "darkbrown2" }, -/area/fiorina/station/chapel) +/area/fiorina/station/park) "bDU" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"bDX" = ( -/obj/effect/spawner/random/tool, +"bEn" = ( /turf/open/floor/prison{ - icon_state = "green" - }, -/area/fiorina/station/chapel) -"bEk" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"bEm" = ( -/obj/effect/landmark/wo_supplies/storage/belts/knifebelt, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"bEA" = ( -/obj/structure/barricade/wooden{ dir = 4; - pixel_y = 4 + icon_state = "darkbrown2" }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"bED" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/fiorina/tumor/aux_engi) +"bEO" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/turf/open/floor/prison, -/area/fiorina/station/park) +/area/fiorina/station/chapel) "bEP" = ( /obj/item/device/flashlight, /turf/open/floor/prison/chapel_carpet{ icon_state = "doubleside" }, /area/fiorina/station/chapel) +"bET" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) "bEX" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"bFg" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/meat/human, -/obj/item/reagent_container/food/snacks/meat/human, -/obj/structure/machinery/light/double/blue, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +"bFh" = ( +/obj/item/stack/sheet/metal{ + amount = 5 }, -/area/fiorina/station/civres_blue) -"bFi" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"bFj" = ( +/obj/structure/monorail{ + name = "launch track" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + layer = 3 }, -/area/fiorina/station/park) +/area/fiorina/oob) "bFr" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/chapel) +"bFt" = ( +/obj/item/stool, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/civres_blue) "bFA" = ( /turf/closed/shuttle/ert{ icon_state = "wy27" }, /area/fiorina/station/medbay) -"bFC" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison, -/area/fiorina/station/park) -"bFJ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"bFL" = ( -/obj/structure/mirror{ - pixel_x = -32 - }, +"bFN" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, +/obj/item/reagent_container/glass/bottle/cyanide{ + pixel_x = -12; + pixel_y = 13 + }, /turf/open/floor/prison{ dir = 10; - icon_state = "kitchen" + icon_state = "yellow" }, -/area/fiorina/tumor/civres) -"bGA" = ( -/obj/structure/bed/chair{ +/area/fiorina/station/lowsec) +"bFR" = ( +/obj/item/ammo_magazine/rifle/m16, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/security) +"bFY" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "redfull" }, -/area/fiorina/station/park) -"bGB" = ( -/obj/structure/largecrate/supply/generator, +/area/fiorina/station/security) +"bGr" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) +"bGs" = ( +/obj/structure/inflatable/popped, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "whitegreenfull" }, -/area/fiorina/station/telecomm/lz1_cargo) -"bGH" = ( -/obj/structure/bed/chair/office/dark, +/area/fiorina/station/medbay) +"bGt" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/prison{ - icon_state = "whitegreen" + icon_state = "bluefull" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/power_ring) +"bGy" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/fiorina/station/lowsec) +"bGQ" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"bGT" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/disco) "bGY" = ( /turf/closed/shuttle/elevator{ dir = 9 }, /area/fiorina/station/civres_blue) -"bHt" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 +"bHl" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/prop/structure_lattice{ +/turf/open/floor/prison{ dir = 4; - layer = 3.1; - pixel_y = 10 + icon_state = "darkyellow2" }, -/turf/open/floor/prison, -/area/fiorina/station/chapel) +/area/fiorina/station/telecomm/lz1_tram) "bHv" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"bHP" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"bHR" = ( -/obj/structure/largecrate/random, +"bHI" = ( +/obj/item/frame/rack, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"bHU" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"bIz" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 + icon_state = "floor_plate" }, +/area/fiorina/tumor/servers) +"bHY" = ( +/obj/item/weapon/gun/flamer, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/storage/pouch/flamertank, /turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"bIP" = ( -/obj/structure/bed{ - icon_state = "abed" +/area/fiorina/tumor/aux_engi) +"bIg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" }, -/obj/effect/landmark/objective_landmark/medium, +/area/fiorina/station/transit_hub) +"bII" = ( +/obj/structure/bed/chair, /turf/open/floor/prison{ dir = 10; - icon_state = "yellow" + icon_state = "sterile_white" }, -/area/fiorina/station/lowsec) -"bIR" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, +/area/fiorina/station/medbay) +"bIX" = ( /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 9; + icon_state = "darkyellow2" }, -/area/fiorina/station/disco) +/area/fiorina/tumor/servers) "bIZ" = ( /turf/closed/shuttle/elevator{ dir = 6 @@ -2886,108 +3079,122 @@ name = "astroturf" }, /area/fiorina/station/park) -"bJG" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" +"bJz" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" }, -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +/area/fiorina/tumor/servers) +"bJF" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "blue" }, +/area/fiorina/station/chapel) +"bKs" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"bKM" = ( +/obj/effect/spawner/random/toolbox, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"bKF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/imidazoline, +/area/fiorina/tumor/servers) +"bLd" = ( +/obj/structure/platform_decoration, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/transit_hub) +"bLg" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"bLz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, +/area/fiorina/station/park) "bLA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"bLE" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/fiorina/station/security) -"bLJ" = ( -/turf/closed/wall/prison, -/area/fiorina/station/central_ring) -"bLM" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"bLO" = ( -/obj/item/stack/cable_coil/blue, +"bMd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison{ - icon_state = "whitegreencorner" + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/tumor/aux_engi) "bMh" = ( /obj/item/frame/table/wood/fancy, /obj/item/paper/prison_station/warden_note, /obj/item/tool/pen, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) +"bMr" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, +/area/fiorina/station/civres_blue) "bMu" = ( /obj/structure/curtain{ layer = 3 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"bMz" = ( -/obj/item/tool/lighter/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +"bMA" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket" }, -/area/fiorina/tumor/civres) -"bMF" = ( -/obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "blue" }, -/area/fiorina/lz/near_lzI) -"bMG" = ( -/obj/structure/surface/rack, -/obj/item/handcuffs/zip, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/area/fiorina/station/chapel) +"bNf" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/fiorina/station/lowsec) -"bMI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"bNz" = ( /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "darkbrown2" }, -/area/fiorina/station/power_ring) -"bMT" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/maintenance) +"bNA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/fiorina/tumor/ice_lab) -"bNo" = ( -/obj/item/trash/uscm_mre, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "sterile_white" }, /area/fiorina/station/medbay) -"bNE" = ( +"bNN" = ( +/obj/structure/closet/crate/trashcart, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) +/area/fiorina/tumor/servers) "bNP" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/prison, @@ -2998,61 +3205,47 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"bOp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/barbed_wire, -/obj/item/stack/barbed_wire, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/blue, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"bOx" = ( -/obj/structure/machinery/light/double/blue, +"bOh" = ( +/obj/item/stack/folding_barricade, /turf/open/floor/prison{ - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"bOK" = ( -/obj/item/reagent_container/food/snacks/donkpocket, +/area/fiorina/station/security) +"bOz" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + layer = 3; + opacity = 0 + }, +/area/fiorina/oob) +"bOK" = ( +/obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/corsat{ icon_state = "squares" }, /area/fiorina/station/civres_blue) -"bOR" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"bPf" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/fiorina/station/medbay) -"bPh" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/structure/surface/table/reinforced/prison, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"bPk" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 8; + icon_state = "whitegreen" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/medbay) "bPl" = ( /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/chapel) -"bPn" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"bPy" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) "bPG" = ( /turf/open/floor/plating/prison, /area/fiorina/station/botany) @@ -3062,40 +3255,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"bPQ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/fiorina/station/chapel) -"bPT" = ( -/obj/structure/monorail{ - dir = 5; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"bPV" = ( -/obj/item/device/flashlight/lamp/tripod, +"bPS" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" + dir = 10; + icon_state = "blue" }, -/area/fiorina/station/medbay) +/area/fiorina/station/power_ring) "bQh" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"bQj" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) "bQk" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -3107,43 +3278,21 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"bQn" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/fiorina/station/medbay) -"bQv" = ( -/obj/item/trash/cigbutt/ucigbutt, +"bQx" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/chapel) +/area/fiorina/station/telecomm/lz1_cargo) "bQy" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/spray/pepper, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"bQL" = ( -/obj/item/tool/mop, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) "bQM" = ( /turf/open/space, /area/fiorina/oob) -"bQW" = ( -/obj/item/frame/rack, -/obj/item/stack/medical/bruise_pack, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) "bRb" = ( /obj/structure/machinery/defenses/sentry/premade/dumb{ dir = 4 @@ -3157,69 +3306,23 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"bRo" = ( -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/item/prop/helmetgarb/rabbitsfoot{ - pixel_y = 22 - }, -/obj/item/reagent_container/food/drinks/bottle/kahlua{ - pixel_x = 5; - pixel_y = 25 +"bRu" = ( +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_casing{ + icon_state = "casing_6_1" }, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"bRs" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/park) -"bRA" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, /area/fiorina/station/telecomm/lz1_cargo) -"bRC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"bRQ" = ( -/obj/item/stock_parts/micro_laser/ultra, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"bSm" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"bSq" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/nailgun, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"bSs" = ( +"bRU" = ( +/obj/item/device/multitool, /turf/open/floor/prison{ - icon_state = "floorscorched2" + dir = 10; + icon_state = "yellow" }, -/area/fiorina/station/security) +/area/fiorina/station/disco) "bSM" = ( /obj/structure/machinery/portable_atmospherics/hydroponics{ draw_warnings = 0; @@ -3229,52 +3332,35 @@ }, /turf/open/floor/greengrid, /area/fiorina/station/botany) -"bSS" = ( -/obj/structure/largecrate/random/case, +"bSP" = ( +/obj/item/tool/surgery/scalpel, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"bST" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/alien/weeds/node, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"bTc" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" + dir = 8; + icon_state = "darkbrown2" }, +/area/fiorina/tumor/aux_engi) +"bTe" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "blue" + dir = 9; + icon_state = "darkyellow2" }, -/area/fiorina/station/chapel) +/area/fiorina/station/telecomm/lz1_cargo) "bTo" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/space, /area/fiorina/oob) -"bTp" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"bTr" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"bTC" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, +"bTG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/gun/shotgun/highchance, /turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" + icon_state = "darkbrown2" }, -/area/fiorina/station/power_ring) +/area/fiorina/maintenance) "bTI" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ indestructible = 1; @@ -3282,28 +3368,67 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"bUt" = ( -/obj/structure/largecrate/random, -/obj/item/trash/pistachios, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) "bUw" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"bUy" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/transit_hub) "bUB" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/space, /area/fiorina/oob) -"bVE" = ( -/obj/structure/closet/boxinggloves, +"bUH" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_tram) +"bUJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/objective{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) +"bVh" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/aux_engi) +"bVk" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, -/area/fiorina/station/central_ring) +/area/fiorina/station/flight_deck) +"bVO" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"bVY" = ( +/obj/structure/coatrack, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) "bVZ" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; @@ -3315,294 +3440,271 @@ /obj/structure/machinery/faxmachine, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"bWy" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"bXc" = ( +"bWr" = ( /obj/structure/inflatable/popped, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"bWE" = ( +/obj/effect/spawner/random/gun/rifle/midchance, /turf/open/floor/prison{ + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"bXa" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 + }, +/obj/structure/barricade/handrail/type_b{ dir = 4; - icon_state = "whitegreen" + layer = 3.5 }, -/area/fiorina/station/medbay) -"bXe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/tumor/servers) -"bXh" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/chapel) -"bXz" = ( -/obj/item/stack/sheet/wood, +/area/fiorina/tumor/ice_lab) +"bXk" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/limb, /turf/open/floor/prison{ - dir = 8; + dir = 5; icon_state = "whitepurple" }, /area/fiorina/station/research_cells) -"bXA" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"bYY" = ( -/obj/structure/bed/chair{ - dir = 8 +"bYq" = ( +/obj/item/ammo_casing{ + icon_state = "casing_10_1" }, /turf/open/floor/prison{ - icon_state = "darkbrowncorners2" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/maintenance) -"bZn" = ( -/obj/item/device/taperecorder{ - pixel_x = 1; - pixel_y = 3 +/area/fiorina/station/medbay) +"bYv" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"bYB" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison, +/area/fiorina/station/botany) +"bYG" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 }, -/area/fiorina/station/chapel) -"bZD" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" + icon_state = "kitchen" }, -/area/fiorina/tumor/aux_engi) -"bZI" = ( -/obj/structure/surface/table/reinforced/prison{ - dir = 8; - flipped = 1 +/area/fiorina/station/lowsec) +"bYS" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"bZu" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/fiorina/station/research_cells) -"bZY" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"car" = ( -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/prison{ - dir = 8; + dir = 10; icon_state = "yellow" }, /area/fiorina/station/lowsec) -"caA" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"bZC" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/fiorina/tumor/servers) -"caC" = ( +/obj/item/tool/crowbar/red, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, /turf/open/floor/prison{ dir = 4; - icon_state = "green" + icon_state = "cell_stripe" }, -/area/fiorina/station/transit_hub) +/area/fiorina/station/medbay) +"bZF" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/aux_engi) +"bZY" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) "caF" = ( /turf/open/floor/wood, /area/fiorina/station/lowsec) -"caX" = ( -/obj/structure/inflatable/popped/door, -/obj/item/ammo_casing{ - icon_state = "casing_1" +"cbb" = ( +/obj/structure/monorail{ + dir = 5; + name = "launch track" }, +/turf/open/space, +/area/fiorina/oob) +"cbe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "yellowfull" }, -/area/fiorina/station/medbay) -"cbd" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"cbA" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/fiorina/station/park) -"cbE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - indestructible = 1 +/area/fiorina/station/lowsec) +"cbx" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/item/clothing/head/that{ - anchored = 1; - indestructible = 1; - pixel_y = 7 +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) -"cbF" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" +/area/fiorina/station/power_ring) +"cbC" = ( +/obj/structure/kitchenspike, +/turf/open/floor/prison{ + icon_state = "kitchen" }, -/obj/structure/platform{ - dir = 4 +/area/fiorina/station/power_ring) +"cbK" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/storage/belt/marine, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) "cbN" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station) -"cbY" = ( -/obj/item/newspaper, -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, -/area/fiorina/station/research_cells) "ccH" = ( /obj/structure/machinery/newscaster, /turf/closed/wall/prison, /area/fiorina/station/civres_blue) -"ccY" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/invuln{ - desc = "The best ride in the universe. For the one and only Souto Man! Although, this one seems to have no fuel left."; - dir = 4; - icon = 'icons/obj/vehicles/vehicles.dmi'; - icon_state = "soutomobile"; - name = "Disabled Souto Mobile" - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"ccZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"cdp" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, +"cdD" = ( /turf/open/floor/prison{ dir = 1; - icon_state = "darkyellow2" + icon_state = "darkbrown2" }, -/area/fiorina/station/flight_deck) -"cdV" = ( +/area/fiorina/station/park) +"cel" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; pixel_y = 13 }, /turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"cdY" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" + icon_state = "floor_plate" }, -/obj/structure/bed/roller, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/lowsec) +"ceC" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/security) +"ceZ" = ( +/obj/structure/bed{ + icon_state = "abed" }, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"ceq" = ( -/obj/item/bodybag, -/obj/item/bodybag{ - pixel_y = 2 + icon_state = "darkpurplefull2" }, -/obj/item/bodybag{ - pixel_y = 4 +/area/fiorina/station/research_cells) +"cfc" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0" }, +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"cfj" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"cft" = ( +/obj/item/frame/rack, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 }, -/area/fiorina/station/medbay) -"cer" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + icon_state = "floor_plate" }, /area/fiorina/tumor/ice_lab) -"ceB" = ( -/obj/structure/bed/chair/comfy, +"cfz" = ( +/obj/item/stock_parts/manipulator/pico, /turf/open/floor/prison{ - dir = 8; - icon_state = "blue" + dir = 6; + icon_state = "darkpurple2" + }, +/area/fiorina/tumor/servers) +"cfD" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/station/civres_blue) -"ceC" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/security) -"ceJ" = ( /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreen" + icon_state = "whitegreenfull" }, /area/fiorina/tumor/ice_lab) -"cfa" = ( -/obj/item/frame/rack, -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, +"cfN" = ( /turf/open/floor/prison{ dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) -"cfG" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, /area/fiorina/lz/near_lzI) -"cfU" = ( -/obj/item/prop/helmetgarb/gunoil, +"cgE" = ( +/obj/structure/machinery/vending/sovietsoda, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, /area/fiorina/station/research_cells) -"cgx" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"chA" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 }, -/area/fiorina/station/medbay) -"chg" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, -/area/fiorina/station/power_ring) -"chx" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/turf/open/space/basic, +/area/fiorina/oob) +"chJ" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"chE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - density = 0; - pixel_y = 16 +/obj/item/storage/fancy/cigar/tarbacks, +/turf/open/floor/prison{ + dir = 6; + icon_state = "whitepurple" }, +/area/fiorina/station/research_cells) +"chS" = ( +/obj/structure/window, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + icon_state = "darkpurplefull2" }, -/area/fiorina/maintenance) +/area/fiorina/tumor/servers) "chT" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -3611,97 +3713,109 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"chZ" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/curtain/shower, -/obj/structure/window{ - dir = 4 - }, -/obj/item/coin/uranium{ - desc = "You found one of the three uranium coins. It is entirely worthless." +"cie" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 4; + icon_state = "darkbrown2" }, -/area/fiorina/station/medbay) -"ciy" = ( -/obj/structure/platform, +/area/fiorina/station/park) +"cif" = ( /obj/structure/platform{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 }, -/area/fiorina/station/medbay) -"ciA" = ( -/obj/structure/machinery/vending/snack/packaged, /turf/open/floor/prison, /area/fiorina/station/medbay) -"ciM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/bottle/spaceacillin{ - pixel_x = -6; - pixel_y = 4 +"ciX" = ( +/obj/structure/monorail{ + name = "launch track" }, -/obj/item/reagent_container/syringe{ - pixel_x = 3; +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; pixel_y = -3 }, -/obj/item/reagent_container/glass/bottle/spaceacillin{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"ciZ" = ( +/obj/item/explosive/grenade/incendiary/molotov, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"cje" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, +/area/fiorina/station/lowsec) +"cjl" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/newspaper, +/obj/item/bedsheet/green, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 4; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"cjp" = ( +/obj/item/stool, +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_y = 32 }, -/area/fiorina/tumor/servers) -"cjG" = ( -/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "yellow" }, -/area/fiorina/station/civres_blue) -"cki" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data{ +/area/fiorina/station/lowsec) +"cjs" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) +"cjA" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8 }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) +"cjF" = ( /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security) -"ckm" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"ckr" = ( +/area/fiorina/station/disco) +"cjS" = ( +/obj/item/newspaper, /turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" + dir = 1; + icon_state = "whitegreen" }, -/area/fiorina/station/telecomm/lz1_tram) -"ckt" = ( -/obj/structure/machinery/light/double/blue, +/area/fiorina/tumor/ice_lab) +"ckj" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + dir = 6; + icon_state = "yellow" }, -/area/fiorina/station/medbay) +/area/fiorina/station/central_ring) +"ckm" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) "ckx" = ( /obj/structure/platform{ dir = 1 @@ -3709,27 +3823,35 @@ /obj/item/fuelCell, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"ckA" = ( -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"ckS" = ( -/obj/item/stack/sheet/metal, +"cky" = ( +/obj/structure/bed/roller, +/obj/item/trash/used_stasis_bag, /turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) -"ckZ" = ( -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/park) -"clb" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket" +/area/fiorina/station/telecomm/lz1_cargo) +"ckD" = ( +/obj/item/stool, +/turf/open/floor/prison{ + dir = 10; + icon_state = "yellow" }, -/turf/open/floor/prison, -/area/fiorina/station/chapel) +/area/fiorina/station/disco) +"cll" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 + }, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/station/flight_deck) "cls" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, @@ -3738,19 +3860,9 @@ /obj/structure/girder, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"clv" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"clA" = ( -/obj/item/weapon/baton/cattleprod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +"clG" = ( +/turf/open/floor/prison, +/area/fiorina/maintenance) "clN" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -3762,95 +3874,186 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"cmy" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." +"clZ" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/closed/wall/prison, -/area/fiorina/station/central_ring) -"cmE" = ( -/obj/item/stack/sheet/wood/medium_stack, -/obj/item/stack/sheet/wood/medium_stack, -/obj/structure/surface/rack, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "yellowfull" }, -/area/fiorina/maintenance) +/area/fiorina/station/lowsec) +"cmg" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/medbay) +"cmj" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"cmm" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/servers) +"cmz" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space, +/area/fiorina/oob) +"cmI" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/item/prop/almayer/comp_open{ + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "cmP" = ( /obj/structure/pipes/standard/tank{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"cns" = ( +"cmV" = ( /obj/structure/stairs/perspective{ - dir = 8; + dir = 4; icon_state = "p_stair_full" }, /turf/open/floor/prison, -/area/fiorina/station/security) -"cnH" = ( -/obj/item/stock_parts/manipulator/pico, +/area/fiorina/station/power_ring) +"cmW" = ( /turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" + icon_state = "panelscorched" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/chapel) +"cnl" = ( +/obj/structure/largecrate/supply/supplies/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"cnn" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue" + }, +/area/fiorina/station/civres_blue) +"cnu" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"cnU" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/fiberbush) +"cnW" = ( +/obj/structure/inflatable/popped, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"coh" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, +/area/fiorina/tumor/civres) "coj" = ( /obj/item/stool, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"cpv" = ( -/obj/structure/platform{ - dir = 8 +"coT" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison{ + dir = 8; + icon_state = "greenblue" }, -/obj/structure/surface/rack, +/area/fiorina/station/botany) +"cph" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c20, /turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/security) "cpP" = ( /turf/closed/shuttle/elevator/gears, /area/fiorina/station/telecomm/lz1_cargo) -"cqz" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_leftengine" +"cpS" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 }, -/area/fiorina/oob) -"cqP" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/prison{ dir = 8; - health = 80 + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"cpW" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"cqc" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"cqy" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"cqT" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, -/area/fiorina/station/security) -"cqV" = ( -/obj/item/stool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +"cqz" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" }, -/area/fiorina/station/power_ring) -"cqW" = ( -/obj/item/stool, +/area/fiorina/oob) +"cqH" = ( +/obj/structure/surface/rack, +/obj/item/clothing/gloves/latex, /turf/open/floor/prison{ - icon_state = "damaged2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/lowsec) -"cqX" = ( -/obj/item/stool, +/area/fiorina/station/medbay) +"cqU" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/servers) "cri" = ( /obj/structure/machinery/computer/prisoner, /obj/structure/window/reinforced{ @@ -3861,36 +4064,59 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"crm" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" +"crw" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 4; + icon_state = "cell_stripe" }, -/area/fiorina/station/medbay) -"cry" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/area/fiorina/lz/near_lzI) +"crH" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkbrowncorners2" }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) +/area/fiorina/tumor/aux_engi) "crM" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) -"csL" = ( +"crO" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + icon_state = "damaged3" }, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/station/security) +"csl" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) +"cso" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/pill_bottle/dexalin/skillless, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/medbay) +"csp" = ( +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) +"csH" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) "ctc" = ( /obj/structure/prop/resin_prop{ icon_state = "sheater0" @@ -3901,112 +4127,76 @@ /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"ctC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/skills{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"ctz" = ( +/obj/structure/machinery/power/apc{ + dir = 8 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) "ctD" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"ctI" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"ctW" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/coin/uranium, -/obj/item/bedsheet/green, +"ctJ" = ( +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" + dir = 4; + icon_state = "greenfull" }, -/area/fiorina/station/lowsec) -"ctY" = ( +/area/fiorina/tumor/civres) +"cua" = ( +/obj/structure/sign/safety/fire_haz, /turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" + icon_state = "floor_plate" }, -/area/fiorina/station/central_ring) -"cui" = ( -/obj/structure/bed/chair/comfy{ +/area/fiorina/tumor/civres) +"cvf" = ( +/obj/structure/prop/structure_lattice{ dir = 4 }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"cum" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 1 +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/obj/item/frame/rack, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/disco) -"cvc" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/structure/machinery/m56d_hmg/mg_turret/dropship{ - dir = 4 +/area/fiorina/tumor/servers) +"cvk" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, +/obj/item/clothing/gloves/boxing/blue, /turf/open/floor/prison{ dir = 1; - icon_state = "cell_stripe" - }, -/area/fiorina/station/central_ring) -"cvd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 + icon_state = "yellow" }, +/area/fiorina/station/lowsec) +"cvn" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) +"cvp" = ( +/obj/effect/spawner/random/toolbox, /turf/open/floor/prison{ icon_state = "bluefull" }, -/area/fiorina/station/civres_blue) -"cvi" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"cvn" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) -"cvv" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"cvH" = ( -/obj/effect/landmark/xeno_spawn, +/area/fiorina/station/power_ring) +"cvq" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "whitegreen" + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/security) +"cvr" = ( +/obj/structure/platform, +/obj/structure/reagent_dispensers/oxygentank{ + layer = 2.6 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "cvL" = ( /obj/effect/landmark/nightmare{ insert_tag = "gamertime" @@ -4022,193 +4212,203 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"cwM" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +"cwO" = ( +/turf/open/floor/prison{ + icon_state = "whitegreen" }, +/area/fiorina/station/medbay) +"cwU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/tumor/ice_lab) +"cxd" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 1 }, -/area/fiorina/station/power_ring) -"cxb" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" + icon_state = "darkpurplefull2" + }, +/area/fiorina/tumor/servers) +"cxe" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/maintenance) -"cxc" = ( -/obj/item/stack/folding_barricade, -/obj/structure/surface/table/woodentable/fancy, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" + icon_state = "darkyellow2" }, -/area/fiorina/station/chapel) -"cxy" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0; - pixel_x = 10; - pixel_y = -8 +/area/fiorina/lz/near_lzI) +"cxl" = ( +/obj/structure/filingcabinet/disk, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" }, -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 +/area/fiorina/tumor/servers) +"cxn" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + dir = 4; + icon_state = "blue_plate" }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"cxA" = ( -/obj/effect/decal/cleanable/blood, +/area/fiorina/station/botany) +"cxF" = ( +/obj/structure/bed/chair/office/dark, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/medbay) "cyb" = ( /turf/open/organic/grass{ desc = "It'll get in your shoes no matter what you do."; name = "astroturf" }, /area/fiorina/tumor/aux_engi) +"cyd" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/transit_hub) "cye" = ( /obj/item/trash/pistachios, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"cyk" = ( +"cyu" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/megaphone, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "darkbrownfull2" }, -/area/fiorina/tumor/ice_lab) -"cyR" = ( -/obj/structure/machinery/light/double/blue, +/area/fiorina/maintenance) +"cyL" = ( /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "platingdmg1" + }, +/area/fiorina/tumor/aux_engi) +"cyO" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" }, +/area/fiorina/station/botany) +"cyU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/plastic/small_stack, +/turf/open/floor/prison, /area/fiorina/station/power_ring) "cyV" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"czf" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"czr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"czJ" = ( -/obj/structure/reagent_dispensers/watertank{ - layer = 2.6 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"cAJ" = ( -/obj/item/trash/snack_bowl, +"czj" = ( +/obj/structure/closet/toolcloset, +/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"cAO" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/monorail{ dir = 4; - name = "launch track" + icon_state = "darkbrown2" }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"cAU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/item/tool/pen/blue, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"cAW" = ( -/turf/open/space/basic, -/area/fiorina/oob) -"cBm" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, +/area/fiorina/maintenance) +"czC" = ( +/obj/structure/bedsheetbin, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkpurplefull2" }, -/area/fiorina/tumor/aux_engi) -"cBn" = ( -/obj/structure/platform{ - dir = 1 +/area/fiorina/station/research_cells) +"cAv" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, /obj/structure/platform{ - dir = 4 + dir = 8 }, -/obj/structure/platform_decoration{ - dir = 9 +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" }, +/area/fiorina/station/central_ring) +"cAA" = ( +/obj/effect/landmark/static_comms/net_two, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"cBG" = ( -/obj/effect/alien/weeds/node, +/area/fiorina/lz/near_lzII) +"cAV" = ( +/obj/item/ammo_casing{ + dir = 2; + icon_state = "casing_5" + }, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/tumor/aux_engi) -"cBJ" = ( -/obj/item/clothing/shoes/laceup, +/area/fiorina/tumor/ice_lab) +"cAW" = ( +/turf/open/space/basic, +/area/fiorina/oob) +"cBB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/plastic, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/civres_blue) +/area/fiorina/tumor/servers) "cBK" = ( /obj/item/shard{ icon_state = "large" }, /turf/open/space, /area/fiorina/oob) -"cBX" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" +"cBQ" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 13 +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, -/area/fiorina/station/medbay) -"cCe" = ( +/area/fiorina/tumor/ice_lab) +"cBT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, /turf/open/floor/prison{ - icon_state = "whitepurplecorner" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"cCh" = ( -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_10_1" +/area/fiorina/station/security) +"cBU" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" }, +/area/fiorina/tumor/servers) +"cBY" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"cCs" = ( -/obj/structure/largecrate/random/case/small, +/area/fiorina/tumor/servers) +"cCq" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 9; + icon_state = "yellow" }, -/area/fiorina/station/medbay) +/area/fiorina/station/lowsec) "cCt" = ( /obj/structure/barricade/wooden, /turf/open/floor/wood, @@ -4217,14 +4417,6 @@ /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"cCy" = ( -/obj/structure/bed/sofa/vert/grey/top, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) "cCB" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, @@ -4233,48 +4425,59 @@ /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/wood, /area/fiorina/station/chapel) -"cCO" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" +"cDf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/station/flight_deck) +"cDj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/chapel) -"cDb" = ( -/obj/item/tool/crowbar, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/civres_blue) "cDl" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"cDE" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" +"cDr" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, -/obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"cEb" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" + icon_state = "whitegreen" }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"cEg" = ( +/area/fiorina/station/medbay) +"cDZ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/power_ring) +"cEf" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"cEl" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/maintenance) "cEw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/transit_hub) @@ -4283,108 +4486,114 @@ icon_state = "stan_inner_t_right" }, /area/fiorina/tumor/ship) -"cEG" = ( -/obj/item/tool/pickaxe, -/obj/structure/platform{ - dir = 4 +"cEB" = ( +/turf/open/floor/prison{ + dir = 5; + icon_state = "darkbrown2" + }, +/area/fiorina/maintenance) +"cFf" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"cFn" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison, +/area/fiorina/station/park) +"cFq" = ( +/obj/item/tool/mop, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"cFy" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" + dir = 1; + icon_state = "yellow" }, -/area/fiorina/tumor/ice_lab) -"cEW" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_4" +/area/fiorina/station/lowsec) +"cFC" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +/area/fiorina/station/medbay) +"cFE" = ( +/obj/item/clothing/mask/cigarette, +/turf/open/floor/prison{ + dir = 9; + icon_state = "whitepurple" }, -/area/fiorina/station/central_ring) -"cEY" = ( -/obj/structure/largecrate/random/case/double, +/area/fiorina/station/research_cells) +"cFN" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 4; + icon_state = "cell_stripe" }, -/area/fiorina/station/park) -"cFg" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +/area/fiorina/station/central_ring) +"cFQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -4; + pixel_y = 12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = 6; + pixel_y = 3 }, -/area/fiorina/lz/near_lzII) -"cFq" = ( -/obj/item/tool/mop, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"cFT" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "green" + icon_state = "bluefull" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/power_ring) "cFX" = ( /obj/structure/largecrate/supply/supplies, /obj/effect/spawner/random/goggles/lowchance, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"cGa" = ( +"cGg" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/fiorina/station/power_ring) +"cGm" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 1; + icon_state = "blue" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/chapel) "cGR" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/fiorina/station/park) -"cGS" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"cGU" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"cHq" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/fiorina/station/medbay) -"cHl" = ( -/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "whitepurple" }, +/area/fiorina/station/research_cells) +"cHx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, /area/fiorina/station/security) -"cHm" = ( -/obj/item/bedsheet/green, -/obj/structure/bed, -/obj/item/toy/plush/farwa, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"cHC" = ( -/obj/item/trash/popcorn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +"cHD" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison, +/area/fiorina/station/park) "cHF" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/eastright, @@ -4394,55 +4603,44 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"cHK" = ( -/obj/structure/closet/secure_closet/engineering_welding, +"cHJ" = ( +/obj/item/trash/hotdog, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"cIt" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + icon_state = "floor_plate" }, +/area/fiorina/station/medbay) +"cJa" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 8; + icon_state = "darkbrown2" }, -/area/fiorina/station/research_cells) -"cIJ" = ( +/area/fiorina/tumor/aux_engi) +"cJo" = ( +/obj/item/tool/warning_cone, /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"cIQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/park) +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) "cJv" = ( /obj/item/stack/rods, /turf/open/floor/corsat{ icon_state = "squares" }, /area/fiorina/station/telecomm/lz1_cargo) +"cJw" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) "cJz" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -4454,94 +4652,30 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"cJL" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"cJS" = ( -/obj/item/trash/uscm_mre, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) "cJW" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"cJY" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) "cKa" = ( /turf/closed/wall/prison, /area/fiorina/station/research_cells) -"cKb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"cLc" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/bodybag/tarp/reactive{ + pixel_y = 6 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/civres) -"cKB" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, +/area/fiorina/station/medbay) +"cLr" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"cKH" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/up, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"cKJ" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/reagent_container/glass/bottle/robot/antitoxin, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"cKU" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 + icon_state = "sterile_white" }, -/turf/open/floor/prison, -/area/fiorina/station/botany) +/area/fiorina/station/medbay) "cLu" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -4549,111 +4683,101 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"cLy" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"cLC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"cLS" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"cLE" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, -/area/fiorina/station/telecomm/lz1_cargo) -"cLZ" = ( -/obj/structure/largecrate/guns/merc, -/obj/item/toy/deck/uno, +/obj/item/clothing/gloves/boxing/green, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "yellow" }, -/area/fiorina/station/power_ring) -"cMb" = ( -/obj/effect/decal/cleanable/blood/oil, +/area/fiorina/station/lowsec) +"cLR" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + dir = 1; + icon_state = "greenblue" }, -/area/fiorina/station/medbay) -"cMD" = ( +/area/fiorina/station/botany) +"cMg" = ( +/obj/item/trash/snack_bowl, /turf/open/floor/prison{ dir = 1; - icon_state = "cell_stripe" + icon_state = "yellow" }, -/area/fiorina/station/central_ring) +/area/fiorina/station/lowsec) "cME" = ( /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"cMP" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, +"cMJ" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/prison{ - icon_state = "kitchen" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"cNe" = ( -/obj/structure/bed/chair{ +/area/fiorina/station/civres_blue) +"cNn" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"cNC" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"cNQ" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/tumor/servers) -"cOj" = ( /turf/open/floor/prison{ icon_state = "blue" }, /area/fiorina/station/civres_blue) -"cOB" = ( -/obj/item/stool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +"cOb" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6" }, -/area/fiorina/station/flight_deck) -"cOC" = ( -/obj/item/tool/wet_sign, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/park) -"cOF" = ( +/area/fiorina/station/lowsec) +"cOl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "darkpurplefull2" }, /area/fiorina/station/research_cells) -"cOL" = ( +"cOn" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"cPh" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6" + dir = 8; + icon_state = "blue" }, +/area/fiorina/station/civres_blue) +"cOq" = ( +/obj/item/disk, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"cOy" = ( +/obj/item/tool/shovel/snow, +/obj/item/device/flashlight, +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/lowsec) +/area/fiorina/tumor/ice_lab) "cPq" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -4662,74 +4786,69 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"cPs" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"cPI" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" }, -/area/fiorina/tumor/servers) -"cPz" = ( -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"cPC" = ( -/obj/item/stack/sandbags_empty, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" }, -/area/fiorina/tumor/civres) -"cPL" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +/obj/item/prop/helmetgarb/flair_initech, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"cPQ" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"cQn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"cQe" = ( -/obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8; + icon_state = "whitegreen" }, -/area/fiorina/station/transit_hub) -"cQf" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/area/fiorina/station/medbay) +"cQu" = ( +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison, +/area/fiorina/station/security) +"cQA" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/obj/structure/machinery/shower{ + dir = 4 }, -/area/fiorina/station/lowsec) -"cQv" = ( -/obj/structure/monorail{ - name = "launch track" +/turf/open/floor/prison{ + icon_state = "kitchen" }, -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1"; - layer = 3 +/area/fiorina/station/research_cells) +"cQG" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/oob) -"cRg" = ( -/obj/structure/machinery/vending/coffee/simple, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/park) -"cRl" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/book/manual/security_space_law, -/obj/effect/landmark/objective_landmark/close, +/area/fiorina/tumor/servers) +"cQX" = ( +/obj/item/stack/cable_coil, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/security) -"cRx" = ( -/obj/structure/machinery/sensortower, +/area/fiorina/tumor/servers) +"cRs" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "blue" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/power_ring) "cRB" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ density = 0; @@ -4739,115 +4858,63 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"cRI" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"cRK" = ( -/obj/structure/window, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"cRM" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"cRZ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"cRN" = ( +/obj/structure/closet/emcloset, +/obj/item/weapon/nullrod{ + desc = "The explosive tip has been deactivated."; + force = 25; + icon_state = "hefasword"; + name = "de-activated HEFA Sword" }, -/area/fiorina/lz/near_lzII) -"cSh" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"cRS" = ( +/obj/structure/platform, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 8; + icon_state = "cell_stripe" }, /area/fiorina/station/botany) "cTr" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"cTx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"cTA" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/fiorina/tumor/civres) -"cTy" = ( -/obj/item/stool, -/obj/item/trash/cigbutt{ - pixel_y = 8 +/turf/open/floor/prison{ + dir = 9; + icon_state = "yellow" }, +/area/fiorina/station/disco) +"cUE" = ( +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "floor_plate" }, /area/fiorina/station/power_ring) -"cTD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +"cVk" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/lz/near_lzI) -"cTE" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_1" +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibup1" }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 1; + icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"cUd" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"cUA" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/station/park) -"cUU" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"cVu" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +"cVl" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison, +/area/fiorina/station/lowsec) "cVQ" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -4859,79 +4926,127 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison, /area/fiorina/station/disco) -"cXp" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"cVX" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 }, -/area/fiorina/tumor/ice_lab) -"cXV" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" + dir = 9; + icon_state = "whitepurple" }, -/area/fiorina/station/telecomm/lz1_cargo) -"cYd" = ( +/area/fiorina/station/research_cells) +"cWG" = ( /obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" + dir = 8; + icon_state = "p_stair_full" }, /turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"cYe" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"cYi" = ( +/area/fiorina/station/chapel) +"cWM" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/card/id/gold{ - pixel_x = 2; +/obj/item/reagent_container/blood/empty{ + pixel_x = -7; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/reagent_container/blood/BMinus{ + pixel_x = 7; + pixel_y = 4 }, -/area/fiorina/station/research_cells) -"cYj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/telecomm/lz1_cargo) +"cWN" = ( +/obj/item/weapon/gun/rifle/mar40, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, /area/fiorina/station/lowsec) -"cYI" = ( +"cWR" = ( +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/closet/secure_closet/engineering_personal, /turf/open/floor/prison{ - dir = 5; - icon_state = "green" + dir = 1; + icon_state = "darkbrown2" }, -/area/fiorina/tumor/aux_engi) -"cYP" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/storage/pill_bottle/dexalin/skillless, -/obj/effect/spawner/random/gun/special/midchance, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/prison, /area/fiorina/maintenance) -"cYS" = ( +"cWU" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"cXm" = ( +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"cXq" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/item/stack/flag/yellow, +/obj/item/stack/flag/yellow, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"cXw" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/oob) +"cXY" = ( /obj/structure/stairs/perspective{ dir = 8; - icon_state = "p_stair_sn_full_cap" + icon_state = "p_stair_ew_full_cap" }, -/obj/structure/platform{ - dir = 4 +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"cYa" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreen" + }, +/area/fiorina/station/central_ring) +"cYg" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "sterile_white" + }, +/area/fiorina/station/central_ring) +"cYv" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, +/turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"cYP" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/storage/pill_bottle/dexalin/skillless, +/obj/effect/spawner/random/gun/special/midchance, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) "cYT" = ( /obj/vehicle/powerloader{ dir = 8 @@ -4940,38 +5055,24 @@ name = "astroturf" }, /area/fiorina/station/research_cells) -"cYV" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"cZe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"cYY" = ( +/obj/structure/machinery/iv_drip{ + pixel_y = 19 }, -/area/fiorina/tumor/ice_lab) -"cZh" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/spawner/random/gun/rifle, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "whitepurple" }, -/area/fiorina/station/lowsec) -"cZp" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/area/fiorina/station/research_cells) +"cZc" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/obj/structure/platform/kutjevo/smooth{ + dir = 4 }, -/area/fiorina/station/medbay) +/turf/open/space/basic, +/area/fiorina/oob) "cZq" = ( /obj/item/shard{ icon_state = "medium" @@ -4982,39 +5083,18 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"cZy" = ( -/obj/structure/machinery/door/window/northleft{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security/wardens) -"cZP" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"cZR" = ( -/turf/open/floor/prison{ - icon_state = "damaged2" - }, -/area/fiorina/station/disco) "cZV" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/wood, /area/fiorina/station/security) -"dae" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"das" = ( +/obj/structure/platform/shiva{ + dir = 1 }, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "daA" = ( /obj/item/clothing/accessory/armband/cargo{ desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; @@ -5035,25 +5115,19 @@ /obj/structure/machinery/autolathe, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"daP" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "daS" = ( /obj/item/ammo_magazine/pistol/kt42, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"daY" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/trash/kepler, -/turf/open/floor/prison, -/area/fiorina/station/security) -"dbh" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"dbi" = ( -/obj/item/storage/toolbox/electrical, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) "dbq" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/candelabra{ @@ -5065,93 +5139,63 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"dbr" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"dbI" = ( -/obj/structure/inflatable/popped/door, +"dbL" = ( +/obj/item/clothing/under/color/orange, /turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" + icon_state = "yellowfull" }, /area/fiorina/station/lowsec) -"dbW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets{ - pixel_x = 5; - pixel_y = 9 +"dbX" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/item/storage/box/donkpockets, /turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"dcv" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/fiorina/station/research_cells) -"dcy" = ( -/obj/structure/bed/chair{ - dir = 8 + icon_state = "darkbrownfull2" }, +/area/fiorina/tumor/aux_engi) +"ddc" = ( +/obj/item/stack/sandbags_empty/half, /turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"dcO" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) -"dde" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/oob) -"ddt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/beer_pack{ - pixel_y = 7 - }, +/area/fiorina/lz/near_lzI) +"dds" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "yellow" }, /area/fiorina/station/lowsec) -"ddv" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/effect/landmark/objective_landmark/medium, +"ddz" = ( +/obj/item/stack/sheet/cardboard, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" + dir = 8; + icon_state = "whitepurple" }, -/area/fiorina/maintenance) +/area/fiorina/station/research_cells) "ddA" = ( /obj/structure/girder/reinforced, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"ddB" = ( +"ddE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 + }, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" + icon_state = "bluefull" }, -/area/fiorina/station/medbay) -"ddD" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison, -/area/fiorina/station/medbay) +/area/fiorina/station/civres_blue) +"ddF" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) "ddG" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xtracks" @@ -5167,24 +5211,14 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"ddN" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"ddU" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"ddO" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1 }, -/area/fiorina/tumor/servers) -"ddY" = ( -/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "darkbrown2" + icon_state = "redfull" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/security) "dec" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." @@ -5203,100 +5237,207 @@ name = "astroturf" }, /area/fiorina/station/park) +"deE" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison{ + dir = 6; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"deH" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) "deL" = ( /obj/structure/window/framed/prison/reinforced/hull, /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) +"deN" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/ice_lab) "deR" = ( /obj/item/toy/crayon/red, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"dfc" = ( +"deW" = ( +/obj/structure/bed/chair{ + dir = 8 + }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/oob) -"dfh" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, +/area/fiorina/station/power_ring) +"dfa" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/civres_blue) -"dfA" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 +/area/fiorina/tumor/servers) +"dfu" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 }, -/obj/structure/machinery/m56d_hmg, +/turf/open/floor/prison{ + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"dfz" = ( +/obj/item/stack/cable_coil, /turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"dga" = ( +/area/fiorina/tumor/servers) +"dfD" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/servers) +"dfV" = ( /obj/structure/monorail{ - dir = 4; name = "launch track" }, /turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"dhc" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +/area/fiorina/station/transit_hub) +"dfZ" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"dgx" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"dgz" = ( +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"dgB" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, /turf/open/floor/prison{ dir = 10; - icon_state = "yellow" + icon_state = "floor_plate" }, -/area/fiorina/station/disco) +/area/fiorina/station/telecomm/lz1_cargo) +"dgF" = ( +/turf/open/floor/prison{ + dir = 6; + icon_state = "blue" + }, +/area/fiorina/station/chapel) +"dhe" = ( +/turf/open/floor/prison{ + icon_state = "cell_stripe" + }, +/area/fiorina/station/central_ring) "dhi" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/space/basic, /area/fiorina/oob) -"dhL" = ( -/obj/structure/barricade/wooden{ - dir = 4 +"dhj" = ( +/obj/item/trash/eat, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 }, -/area/fiorina/station/civres_blue) -"dhZ" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"dhs" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/prison, +/area/fiorina/station/security) +"dhD" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/light/double/blue{ dir = 1; - layer = 3 + pixel_y = 21 }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"diF" = ( -/obj/item/stack/sheet/cardboard, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + icon_state = "kitchen" }, /area/fiorina/station/lowsec) -"diJ" = ( -/obj/item/stool, +"dhN" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "yellowfull" + dir = 6; + icon_state = "yellow" }, -/area/fiorina/station/lowsec) -"diL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +/area/fiorina/station/disco) +"dhV" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/prison{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) +"diP" = ( +/turf/open/floor/prison{ + dir = 9; + icon_state = "green" + }, +/area/fiorina/tumor/civres) +"diR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/clothing/accessory/holobadge/cord, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/lz/near_lzI) +"diS" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 1; + pixel_y = 12 }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"diX" = ( +/obj/structure/machinery/disposal, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/central_ring) +/area/fiorina/tumor/civres) +"djd" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "greenbluecorner" + }, +/area/fiorina/station/botany) "dje" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plating/prison, @@ -5305,6 +5446,23 @@ /obj/effect/spawner/random/gun/smg/midchance, /turf/open/floor/wood, /area/fiorina/station/park) +"djx" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/lowsec) +"djA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/medbay) "djB" = ( /obj/vehicle/powerloader{ dir = 4 @@ -5313,105 +5471,170 @@ name = "astroturf" }, /area/fiorina/station/research_cells) -"djF" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, +"djU" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) +"dka" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/prison{ - icon_state = "whitepurple" + icon_state = "bluefull" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/civres_blue) "dkb" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"dkl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 6; - pixel_y = -7 - }, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"dkn" = ( -/turf/open/floor/prison, -/area/fiorina/station/security/wardens) -"dkz" = ( -/obj/structure/machinery/vending/snack/packaged, +"dkj" = ( /turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"dkX" = ( -/obj/structure/barricade/sandbags{ dir = 8; - icon_state = "sandbag_0" + icon_state = "whitepurple" }, +/area/fiorina/station/research_cells) +"dkC" = ( +/obj/item/tool/warning_cone, /turf/open/floor/prison{ - icon_state = "darkyellow2" + dir = 8; + icon_state = "darkbrown2" }, -/area/fiorina/station/telecomm/lz1_cargo) -"dlj" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, +/area/fiorina/station/park) +"dkP" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"dlr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 16 + icon_state = "darkbrownfull2" }, -/obj/item/device/radio{ - pixel_x = 6; - pixel_y = 7 +/area/fiorina/station/park) +"dkR" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"dla" = ( +/obj/structure/inflatable, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/security) +/area/fiorina/station/medbay) "dlA" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"dmQ" = ( -/obj/item/stack/sheet/metal{ - amount = 5 +"dlE" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/disco) +"dlW" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellow2" }, -/turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"dmT" = ( -/obj/item/shard{ - icon_state = "large" +"dlX" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" }, /turf/open/floor/prison, -/area/fiorina/station/park) -"dnj" = ( -/obj/structure/platform{ +/area/fiorina/lz/near_lzII) +"dme" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison, +/area/fiorina/station/security) +"dmu" = ( +/obj/structure/filingcabinet/disk, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"dmB" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 2; - pixel_y = 21 +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"dmH" = ( +/obj/structure/platform_decoration{ + dir = 1 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/disco) +/area/fiorina/station/transit_hub) +"dnp" = ( +/obj/item/ammo_casing{ + icon_state = "casing_8" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"dnx" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/transit_hub) "dnz" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/spawner/random/toy, /turf/open/floor/wood, /area/fiorina/station/chapel) +"dnA" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"dnB" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"dnE" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"dnI" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_4" + }, +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" + }, +/area/fiorina/station/central_ring) "dnK" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -5421,12 +5644,6 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"dnX" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) "doe" = ( /obj/item/tool/kitchen/utensil/pspoon, /turf/open/space/basic, @@ -5443,6 +5660,13 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"doB" = ( +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_10_1" + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) "doD" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -5462,36 +5686,40 @@ icon_state = "doubleside" }, /area/fiorina/maintenance) -"dpe" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +"dpr" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, /turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" + icon_state = "yellowfull" }, /area/fiorina/station/lowsec) -"dpn" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +"dpt" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" }, -/obj/structure/platform{ - dir = 4 +/area/fiorina/station/telecomm/lz1_cargo) +"dpE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) +/area/fiorina/tumor/servers) "dpH" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"dpZ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "greenblue" +"dpI" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/fiorina/station/botany) +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/security) "dqa" = ( /obj/structure/platform{ dir = 1 @@ -5501,6 +5729,13 @@ name = "pool" }, /area/fiorina/station/park) +"dqk" = ( +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "dqE" = ( /obj/structure/prop/souto_land/pole, /turf/open/floor/wood, @@ -5518,92 +5753,79 @@ icon_state = "stan_inner_s_w" }, /area/fiorina/tumor/ship) -"dqX" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +"dra" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 }, -/area/fiorina/tumor/ice_lab) -"drd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 }, /turf/open/floor/prison{ dir = 5; - icon_state = "darkyellow2" + icon_state = "whitepurple" }, -/area/fiorina/station/flight_deck) -"drk" = ( -/obj/effect/landmark/objective_landmark/far, +/area/fiorina/station/research_cells) +"dro" = ( +/obj/structure/closet/l3closet/general, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"dso" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/effect/spawner/random/tool, +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) +"dsv" = ( +/obj/item/stack/cable_coil, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"drt" = ( -/obj/structure/machinery/vending/hydroseeds, +/area/fiorina/tumor/civres) +"dsQ" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" + dir = 5; + icon_state = "greenblue" }, /area/fiorina/station/botany) -"drZ" = ( -/obj/item/clothing/mask/cigarette, +"dsT" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" + dir = 6; + icon_state = "whitegreen" }, -/area/fiorina/station/research_cells) -"dsS" = ( -/obj/structure/barricade/handrail/type_b{ +/area/fiorina/tumor/ice_lab) +"dtc" = ( +/obj/structure/bed/chair{ dir = 4; - layer = 3.5 + pixel_y = 4 }, -/obj/item/trash/barcardine, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"dsW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - pixel_y = 6 + dir = 8; + icon_state = "darkbrowncorners2" }, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) +/area/fiorina/maintenance) "dtg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"dtk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/golden_cup, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"dui" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6_1" }, -/area/fiorina/station/power_ring) -"dtR" = ( -/obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"dtS" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"due" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/monorail{ - dir = 10; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) +/area/fiorina/station/lowsec) "duw" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/light/double/blue{ @@ -5614,6 +5836,19 @@ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) +"duB" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/shower, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "duF" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, @@ -5622,56 +5857,59 @@ /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"duV" = ( +"dvq" = ( +/obj/structure/machinery/newscaster, +/turf/closed/wall/prison, +/area/fiorina/station/medbay) +"dvs" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "bluefull" }, /area/fiorina/station/power_ring) -"duW" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"dvg" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"dvq" = ( -/obj/structure/machinery/newscaster, -/turf/closed/wall/prison, +"dvV" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison{ + dir = 5; + icon_state = "blue" + }, +/area/fiorina/station/power_ring) +"dvY" = ( +/obj/structure/machinery/door/airlock/almayer/maint/autoname{ + dir = 1; + name = "\improper Null Hatch REPLACE ME"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"dvB" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"dwf" = ( -/obj/structure/bed/chair{ - dir = 8 +"dwg" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"dwk" = ( +/obj/structure/surface/rack, +/obj/item/device/camera, /turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/maintenance) -"dwJ" = ( -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 +/area/fiorina/tumor/fiberbush) +"dwM" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, -/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + dir = 1; + icon_state = "whitegreen" }, -/area/fiorina/station/civres_blue) -"dwP" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/station/chapel) +/area/fiorina/station/medbay) "dwQ" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/fiberbush) @@ -5681,81 +5919,80 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"dwZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) "dxb" = ( /obj/item/storage/briefcase/stowaway, /turf/open/space, /area/fiorina/oob) -"dxc" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"dxl" = ( -/obj/structure/platform/kutjevo/smooth{ +"dxd" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 +/area/fiorina/station/park) +"dxg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/fiorina/oob) -"dxv" = ( +/area/fiorina/tumor/servers) +"dxA" = ( +/obj/structure/barricade/wooden, /turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" + icon_state = "cell_stripe" }, -/area/fiorina/maintenance) +/area/fiorina/station/medbay) "dxE" = ( /obj/structure/prop/resin_prop{ icon_state = "rack" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"dxP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"dxJ" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "bluefull" }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/civres) +/area/fiorina/station/power_ring) +"dxO" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/fiorina/station/flight_deck) "dxS" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/servers) -"dxW" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"dyd" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/fiorina/station/power_ring) -"dyh" = ( +/turf/open/floor/prison, +/area/fiorina/station/botany) +"dyi" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison{ + dir = 5; + icon_state = "yellow" }, +/area/fiorina/station/disco) +"dyp" = ( +/obj/item/tool/kitchen/utensil/pspoon, /turf/open/floor/prison{ dir = 4; - icon_state = "greenfull" + icon_state = "blue" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/power_ring) "dyB" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" @@ -5763,52 +6000,81 @@ /obj/item/explosive/grenade/high_explosive/m15, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"dyY" = ( -/obj/structure/toilet{ - dir = 1 +"dyM" = ( +/turf/open/floor/prison{ + dir = 6; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"dzj" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + icon_state = "yellow" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/lowsec) +"dzk" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) "dzl" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) -"dzB" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +"dzo" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/fiorina/station/research_cells) -"dzE" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 +/turf/open/floor/prison, +/area/fiorina/station/security) +"dAe" = ( +/obj/structure/machinery/line_nexter{ + id = "line2"; + pixel_x = -2 + }, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"dAk" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison, +/area/fiorina/station/park) +"dAA" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"dAB" = ( /turf/open/floor/prison{ - icon_state = "kitchen" + dir = 9; + icon_state = "darkyellow2" }, -/area/fiorina/station/lowsec) -"dAd" = ( +/area/fiorina/station/flight_deck) +"dAQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"dBa" = ( /obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/platform/stair_cut/alt, +/obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"dAg" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"dBl" = ( -/obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) "dBq" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -5824,81 +6090,55 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"dBs" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"dBt" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 5; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"dBy" = ( -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"dBz" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +"dBC" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/disco) -"dBO" = ( -/obj/structure/machinery/vending/security, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/security) -"dBZ" = ( +/area/fiorina/tumor/servers) +"dBI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/flight_deck) -"dCg" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "2" - }, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "4" + dir = 10; + icon_state = "whitegreenfull" }, -/obj/item/prop/helmetgarb/flair_initech, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison, /area/fiorina/station/medbay) -"dCn" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; +"dBR" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/prison, -/area/fiorina/station/security) -"dCs" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" +/area/fiorina/station/telecomm/lz1_tram) +"dBY" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +/area/fiorina/tumor/servers) +"dCb" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/power_ring) +"dCl" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/medbay) -"dCt" = ( -/obj/structure/machinery/vending/coffee, +/area/fiorina/tumor/servers) +"dCo" = ( +/obj/item/clothing/shoes/laceup, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/transit_hub) +/area/fiorina/station/civres_blue) "dCu" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -5906,88 +6146,133 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"dCv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"dCK" = ( -/obj/structure/prop/souto_land/pole, +"dCA" = ( +/obj/item/organ/lungs, +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/station/park) +/area/fiorina/station/telecomm/lz1_cargo) +"dCF" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "dCM" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"dDn" = ( -/obj/effect/spawner/random/tool, +"dDm" = ( +/obj/item/device/flashlight, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/park) -"dDI" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/area/fiorina/station/medbay) +"dDy" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + dir = 9; + icon_state = "yellow" }, +/area/fiorina/station/disco) +"dDM" = ( +/obj/structure/closet/wardrobe/orange, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + icon_state = "yellowfull" }, -/area/fiorina/lz/near_lzI) -"dDT" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +/area/fiorina/station/lowsec) +"dDS" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, +/obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 4; + icon_state = "greenblue" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/botany) "dDU" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"dEh" = ( -/obj/item/reagent_container/food/drinks/cans/sodawater, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"dEo" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/fiorina/station/central_ring) -"dEj" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" +/obj/structure/platform, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/obj/item/bedsheet/ce{ - desc = "It crinkles, aggressively."; - name = "sterile wax sheet" +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"dEy" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/flight_deck) +"dEF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 }, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/power_ring) +"dEI" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) "dFh" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/chapel) -"dFB" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/spawner/random/gun/shotgun/midchance, -/turf/open/floor/prison, -/area/fiorina/station/security) +"dFk" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/fiorina/tumor/ice_lab) +"dFw" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/park) +"dFC" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/lowsec) +"dFE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"dFG" = ( +/obj/structure/inflatable, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) "dFH" = ( /obj/structure/closet/cabinet, /obj/item/key/cargo_train, @@ -5995,21 +6280,6 @@ /obj/item/clothing/accessory/armband/cargo, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"dFI" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"dFK" = ( -/obj/structure/surface/rack, -/obj/item/ammo_box/magazine/nailgun, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) "dFM" = ( /obj/item/circuitboard/machine/pacman/super, /obj/structure/machinery/constructable_frame{ @@ -6017,6 +6287,29 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"dFO" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + icon_state = "damaged3" + }, +/area/fiorina/station/security) +"dGc" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"dGj" = ( +/obj/structure/machinery/power/apc{ + start_charge = 0 + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"dGw" = ( +/turf/open/floor/prison, +/area/fiorina/station/central_ring) "dGx" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -6029,101 +6322,107 @@ name = "astroturf" }, /area/fiorina/station/civres_blue) -"dGA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/park) -"dHb" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/storage/box/pillbottles, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) "dHd" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/civres) -"dHD" = ( +"dHp" = ( /turf/open/floor/prison{ - dir = 1; + dir = 8; icon_state = "yellow" }, /area/fiorina/station/lowsec) -"dHU" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" +"dHI" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" }, -/area/fiorina/station/security) -"dIh" = ( -/obj/structure/largecrate/random/case, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"dIo" = ( -/turf/closed/wall/prison, -/area/fiorina/tumor/civres) -"dIx" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/area/fiorina/station/central_ring) +"dIa" = ( +/obj/item/stack/sheet/metal{ + amount = 5 }, -/area/fiorina/station/disco) -"dJd" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/ammo_magazine/rifle/mar40, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "darkyellow2" }, -/area/fiorina/station/lowsec) -"dJe" = ( -/obj/structure/platform{ - dir = 8 +/area/fiorina/lz/near_lzI) +"dIi" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, /turf/open/floor/prison, -/area/fiorina/station/park) -"dJh" = ( -/obj/structure/bookcase/manuals/research_and_development{ - pixel_y = 10 +/area/fiorina/station/security) +"dIo" = ( +/turf/closed/wall/prison, +/area/fiorina/tumor/civres) +"dIp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"dIq" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "darkyellow2" + }, +/area/fiorina/station/flight_deck) +"dID" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" }, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/research_cells) -"dJt" = ( +/area/fiorina/station/medbay) +"dIK" = ( /obj/structure/machinery/light/double/blue{ - pixel_y = -1 + dir = 4; + pixel_x = 10; + pixel_y = -3 }, +/obj/structure/largecrate/random, /turf/open/floor/prison{ - icon_state = "yellow" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/station/disco) +/area/fiorina/station/telecomm/lz1_tram) +"dJl" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) "dKo" = ( /obj/effect/spawner/random/gun/shotgun, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"dKB" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"dKy" = ( +/obj/item/trash/c_tube, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"dKI" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, /turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/lz/near_lzI) +"dKN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/civres) "dKX" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/plating_catwalk/prison, @@ -6134,142 +6433,133 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"dLL" = ( +"dLx" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, /turf/open/floor/prison{ dir = 10; - icon_state = "darkpurple2" + icon_state = "whitegreenfull" }, -/area/fiorina/tumor/servers) -"dLN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - pixel_y = 5 +/area/fiorina/station/medbay) +"dLF" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison{ + dir = 5; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"dMa" = ( +/obj/structure/stairs/perspective, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"dMc" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"dMm" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "floor_plate" }, /area/fiorina/station/power_ring) -"dMt" = ( +"dMv" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" + icon_state = "greenbluecorner" }, -/area/fiorina/tumor/aux_engi) -"dNc" = ( -/obj/structure/platform{ - dir = 1 +/area/fiorina/station/botany) +"dMK" = ( +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe{ + pixel_y = 5 }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/item/tool/pickaxe{ + pixel_y = 10 }, +/obj/structure/surface/rack, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/power_ring) -"dNh" = ( -/turf/open/auto_turf/sand/layer1, -/area/fiorina/lz/near_lzI) -"dNk" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 +/area/fiorina/tumor/ice_lab) +"dMO" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"dNx" = ( -/obj/structure/monorail{ - dir = 9; - name = "launch track" +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"dNC" = ( -/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 10; + icon_state = "floor_marked" }, +/area/fiorina/station/park) +"dNh" = ( +/turf/open/auto_turf/sand/layer1, /area/fiorina/lz/near_lzI) -"dOk" = ( +"dNF" = ( /turf/open/floor/prison{ - icon_state = "panelscorched" - }, -/area/fiorina/tumor/civres) -"dOt" = ( -/obj/structure/surface/table/reinforced/prison{ - flipped = 1 + dir = 10; + icon_state = "sterile_white" }, +/area/fiorina/tumor/ice_lab) +"dOs" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 6; + icon_state = "blue" }, -/area/fiorina/station/medbay) +/area/fiorina/station/civres_blue) "dOE" = ( /obj/item/storage/bible/hefa, /turf/open/floor/wood, /area/fiorina/station/chapel) -"dOO" = ( +"dOF" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/oob) "dOX" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/lz/near_lzI) -"dOZ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, +"dPC" = ( +/obj/structure/machinery/computer3/server/rack, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"dPe" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) -"dPm" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"dPr" = ( -/obj/structure/monorail{ - name = "launch track" - }, +/area/fiorina/tumor/servers) +"dPQ" = ( /obj/structure/platform_decoration{ - dir = 1 + dir = 8 }, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_tram) -"dPZ" = ( -/obj/structure/monorail{ - dir = 6; - name = "launch track" + dir = 10; + icon_state = "yellow" }, -/turf/open/space, -/area/fiorina/oob) -"dQe" = ( -/obj/item/tool/surgery/scalpel, +/area/fiorina/station/disco) +"dQp" = ( +/obj/effect/decal/hefa_cult_decals/d32, /turf/open/floor/prison, -/area/fiorina/station/lowsec) -"dQV" = ( -/obj/structure/platform_decoration{ - dir = 4 +/area/fiorina/station/medbay) +"dQA" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" }, -/turf/open/floor/prison, -/area/fiorina/station/disco) +/area/fiorina/tumor/servers) "dQW" = ( /obj/item/ammo_casing{ dir = 8; @@ -6280,28 +6570,22 @@ name = "astroturf" }, /area/fiorina/station/park) -"dRk" = ( -/obj/item/shard{ - icon_state = "large" +"dQY" = ( +/obj/structure/platform{ + dir = 4 }, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 6; + icon_state = "yellow" }, -/area/fiorina/tumor/servers) -"dRs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/accessory/blue, +/area/fiorina/station/disco) +"dRm" = ( +/obj/item/storage/bible/hefa, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"dRx" = ( -/obj/structure/monorail{ - dir = 5; - name = "launch track" + dir = 6; + icon_state = "green" }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/chapel) "dRO" = ( /obj/effect/acid_hole{ dir = 4 @@ -6311,143 +6595,120 @@ name = "metal wall" }, /area/fiorina/oob) -"dSM" = ( -/obj/effect/spawner/random/tool, +"dRW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"dSw" = ( +/obj/structure/bed{ + icon_state = "abed" + }, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 6; + icon_state = "whitepurple" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/research_cells) +"dSy" = ( +/obj/structure/bed/sofa/vert/grey/bot{ + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"dSz" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) "dTf" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"dTg" = ( +"dTp" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/ice_lab) +"dTv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/research_cells) "dTx" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"dTX" = ( -/obj/structure/surface/rack, -/obj/item/storage/bible/hefa{ - pixel_y = 3 - }, -/obj/item/storage/bible/hefa, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"dUf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, +"dUs" = ( /turf/open/floor/prison{ dir = 9; - icon_state = "greenfull" + icon_state = "blue" }, -/area/fiorina/tumor/civres) -"dUi" = ( -/obj/structure/bed/sofa/vert/grey/bot{ - pixel_y = 8 +/area/fiorina/station/civres_blue) +"dUZ" = ( +/obj/structure/monorail{ + name = "launch track" }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"dUn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_x = 1; - pixel_y = 10 +/turf/open/space/basic, +/area/fiorina/oob) +"dVe" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"dUu" = ( -/obj/structure/machinery/recharge_station, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security) -"dUx" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, +/area/fiorina/station/medbay) +"dVm" = ( +/obj/item/storage/pill_bottle/spaceacillin/skillless, /turf/open/floor/prison{ - dir = 6; + dir = 5; icon_state = "whitepurple" }, /area/fiorina/station/research_cells) -"dVu" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"dVx" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"dVA" = ( -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"dVC" = ( +"dVK" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"dVD" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison, /area/fiorina/station/medbay) -"dVR" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"dWx" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/tumor/aux_engi) -"dWn" = ( -/obj/structure/barricade/wooden, -/obj/item/device/flashlight/flare, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"dWp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/russianRed{ - pixel_y = 9 + dir = 10; + icon_state = "whitegreenfull" }, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +/area/fiorina/station/medbay) "dWB" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"dXi" = ( -/obj/effect/landmark/objective_landmark/science, +"dWM" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/lowsec) +"dWN" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "dXv" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -6457,138 +6718,122 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) +"dXz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) "dXG" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"dXK" = ( -/obj/item/newspaper, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/fiorina/station/transit_hub) -"dXN" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"dXS" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) -"dXT" = ( -/obj/structure/platform_decoration, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"dYi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, -/area/fiorina/station/central_ring) -"dYo" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"dXH" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" + dir = 4; + icon_state = "blue_plate" }, -/area/fiorina/station/disco) +/area/fiorina/station/botany) "dYp" = ( /obj/docking_port/stationary/marine_dropship/lz1{ name = "Hangar Landing Zone" }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"dYq" = ( +"dYr" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/item/explosive/grenade/incendiary/molotov, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/power_ring) -"dYC" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" + icon_state = "floor_plate" }, -/area/fiorina/station/central_ring) +/area/fiorina/station/lowsec) +"dYv" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "dYI" = ( /turf/closed/shuttle/ert{ icon_state = "stan20" }, /area/fiorina/tumor/aux_engi) -"dYV" = ( +"dYP" = ( +/obj/item/stack/sheet/wood, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) +"dZc" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/fiorina/maintenance) -"dZj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 9; + icon_state = "blue" + }, +/area/fiorina/station/power_ring) +"dZt" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/aux_engi) -"dZo" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) -"dZu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/card/id/guest, -/obj/effect/landmark/objective_landmark/close, +/area/fiorina/station/chapel) +"dZA" = ( +/obj/structure/closet, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 10; + icon_state = "floor_plate" }, -/area/fiorina/station/security) -"dZK" = ( +/area/fiorina/station/flight_deck) +"eag" = ( +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/structure/surface/rack, /turf/open/floor/prison{ dir = 4; - icon_state = "bluecorner" + icon_state = "yellow" }, -/area/fiorina/station/chapel) -"dZQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/area/fiorina/station/lowsec) +"eaL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/beret/eng{ + pixel_x = 5; + pixel_y = 3 }, -/area/fiorina/lz/near_lzI) -"eac" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/item/book/manual/engineering_guide{ + pixel_x = -4 }, /turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) -"eao" = ( -/obj/structure/machinery/shower{ - dir = 8 + dir = 4; + icon_state = "greenfull" }, +/area/fiorina/tumor/civres) +"eaQ" = ( +/obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/prison{ - icon_state = "kitchen" + dir = 9; + icon_state = "yellow" }, /area/fiorina/station/lowsec) -"eca" = ( +"eaZ" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"ebc" = ( /obj/structure/platform{ dir = 1 }, @@ -6600,25 +6845,48 @@ icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) +"ebm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + dir = 5; + icon_state = "greenblue" + }, +/area/fiorina/station/botany) +"ebP" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/disco) "ecd" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) +"ecp" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) "ecu" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"ecD" = ( -/obj/structure/bed/chair{ - dir = 1 +"ecC" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"ecF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 32 }, /turf/open/floor/prison{ - icon_state = "darkbrown2" + dir = 10; + icon_state = "kitchen" }, -/area/fiorina/station/park) +/area/fiorina/tumor/civres) "ecL" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -6632,62 +6900,60 @@ icon_state = "stan_rightengine" }, /area/fiorina/tumor/ship) -"ecU" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +"eda" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/flight_deck) -"eds" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/effect/decal/cleanable/blood, -/obj/item/attachable/bipod, -/obj/item/device/multitool, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/station/telecomm/lz1_cargo) -"edu" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/area/fiorina/tumor/servers) +"edd" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"edv" = ( +/obj/item/storage/fancy/cigar, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"eej" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" }, -/obj/structure/platform, /turf/open/floor/prison, -/area/fiorina/tumor/servers) -"edy" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" +/area/fiorina/station/security) +"eev" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/tumor/aux_engi) +"eew" = ( /obj/structure/platform{ - dir = 8 + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/central_ring) -"edY" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"eeH" = ( -/obj/structure/monorail{ - dir = 9; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/botany) "eeI" = ( /obj/structure/lattice, /obj/item/stack/sheet/metal, /turf/open/floor/almayer_hull, /area/fiorina/oob) +"eeL" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "green" + }, +/area/fiorina/station/transit_hub) "efk" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/landmark/objective_landmark/close, @@ -6708,121 +6974,141 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/prison, /area/fiorina/oob) -"efI" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +"efz" = ( +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" }, -/turf/open/floor/prison, /area/fiorina/tumor/servers) -"efR" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" +"efS" = ( +/obj/structure/monorail{ + dir = 9; + name = "launch track" }, /turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) +/area/fiorina/station/transit_hub) "efT" = ( /obj/structure/machinery/shower{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ice_lab) -"efW" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +"ege" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/lowsec) -"egd" = ( -/obj/structure/machinery/photocopier, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"egk" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/central_ring) -"egv" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/station/civres_blue) -"egz" = ( -/obj/structure/platform{ - dir = 4 +/area/fiorina/tumor/servers) +"egm" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/item/storage/briefcase{ + pixel_y = -2 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, +/area/fiorina/station/security) +"egv" = ( +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/station/civres_blue) +"egx" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison, /area/fiorina/station/power_ring) "egL" = ( /obj/item/newspaper, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"egT" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"ehr" = ( -/obj/effect/landmark/corpsespawner/ua_riot, +"egY" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/tumor/servers) +"ehf" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) +"ehg" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; + name = "\improper Fiorina Engineering Canteen Vendor" }, -/area/fiorina/station/telecomm/lz1_cargo) -"ehy" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + icon_state = "bluefull" }, -/area/fiorina/lz/near_lzI) -"ehO" = ( -/obj/structure/platform/shiva, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"eim" = ( -/obj/structure/platform_decoration{ +/area/fiorina/station/power_ring) +"ehA" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"eir" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) -"eio" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"eip" = ( -/obj/structure/stairs/perspective{ +/area/fiorina/station/telecomm/lz1_cargo) +"eix" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/flight_deck) +"ejk" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; dir = 4; - icon_state = "p_stair_full" + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/civres) +"ejn" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/prison{ + icon_state = "redfull" }, -/obj/structure/platform, -/turf/open/floor/plating/prison, /area/fiorina/station/security) -"ejf" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) +"ejp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/rollingpin, +/obj/item/reagent_container/food/snacks/grown/carrot, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, +/area/fiorina/station/civres_blue) "ejq" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ice_lab) -"ejs" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/fiorina/station/security) "ejt" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, @@ -6830,92 +7116,68 @@ "ejw" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ice_lab) -"ejL" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -4; - pixel_y = 14 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 1; - pixel_y = 12 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"ejM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/wy_mre{ - pixel_x = 5; +"ejO" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; pixel_y = 2 }, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"ekb" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 6; + icon_state = "yellow" }, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/station/disco) "eki" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"ekx" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +"ekH" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"eli" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/power_ring) -"ekz" = ( -/obj/structure/barricade/wooden{ - dir = 1 +/obj/structure/platform_decoration{ + dir = 6 }, +/obj/structure/closet/emcloset, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"ekF" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) -"ekS" = ( -/obj/effect/landmark/static_comms/net_one, +"elq" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 4; + icon_state = "greenbluecorner" }, -/area/fiorina/station/telecomm/lz1_cargo) -"ekW" = ( -/obj/structure/bed/chair{ - dir = 1 +/area/fiorina/station/botany) +"elC" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/power_ring) -"elc" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"ele" = ( -/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkyellow2" }, -/area/fiorina/station/central_ring) -"elO" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +/area/fiorina/station/telecomm/lz1_cargo) +"elY" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) "emm" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -6935,24 +7197,41 @@ }, /turf/open/space, /area/fiorina/oob) +"emU" = ( +/obj/structure/platform, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/transit_hub) +"ena" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "end" = ( /obj/structure/window/framed/prison/cell, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"enu" = ( -/obj/item/trash/uscm_mre, +"enh" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + icon_state = "floor_plate" }, -/area/fiorina/station/flight_deck) -"enx" = ( -/obj/item/tool/shovel, +/area/fiorina/station/power_ring) +"enG" = ( +/obj/item/tool/warning_cone, /turf/open/floor/prison{ - dir = 6; - icon_state = "green" + icon_state = "floor_plate" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/disco) "enH" = ( /obj/effect/alien/weeds/node, /turf/open/organic/grass{ @@ -6964,126 +7243,74 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/oob) -"eot" = ( +"eok" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/oob) "eov" = ( /turf/closed/wall/r_wall/prison_unmeltable{ desc = "A huge chunk of metal used to seperate rooms."; name = "metal wall" }, /area/fiorina/station/research_cells) -"eow" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +"eoR" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/fiorina/station/park) "eoW" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"epB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"epD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_y = 13 +"eoZ" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"eph" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/telecomm/lz1_cargo) +"eps" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "epV" = ( /obj/item/paper/crumpled/bloody, /turf/open/floor/wood, /area/fiorina/station/chapel) -"epY" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"eqi" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/device/flashlight, -/obj/item/device/flashlight, +"eqq" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"eqw" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) -"eqJ" = ( -/obj/structure/platform{ - dir = 1 + icon_state = "blue_plate" }, +/area/fiorina/station/botany) +"eqC" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison, -/area/fiorina/station/medbay) +/area/fiorina/lz/near_lzI) "eqQ" = ( /turf/open/floor/corsat{ icon_state = "squares" }, /area/fiorina/station/telecomm/lz1_cargo) -"eqS" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/fiorina/station/chapel) -"eqU" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"eqZ" = ( -/obj/structure/largecrate/random/mini/ammo, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"erb" = ( -/obj/effect/decal/cleanable/blood/drip, +"eqT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper/janitor, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"erh" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" + icon_state = "yellowfull" }, +/area/fiorina/station/disco) +"ere" = ( +/obj/structure/barricade/handrail/type_b, /turf/open/floor/prison{ icon_state = "darkyellow2" }, -/area/fiorina/station/telecomm/lz1_cargo) -"erj" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/flight_deck) "erl" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -7092,49 +7319,41 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"erw" = ( -/obj/effect/landmark/objective_landmark/close, +"ers" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, /turf/open/floor/prison{ icon_state = "floor_plate" }, /area/fiorina/station/power_ring) -"erD" = ( -/obj/structure/largecrate/supply, -/obj/structure/platform_decoration{ - dir = 8 +"erB" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/medbay) +/area/fiorina/station/civres_blue) "erT" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/space, /area/fiorina/oob) -"erU" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" +"esE" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/station/lowsec) -"esw" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/medbay) -"esR" = ( -/obj/structure/machinery/space_heater, +/area/fiorina/lz/near_lzI) +"esF" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "panelscorched" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/tumor/servers) "esS" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, @@ -7147,108 +7366,111 @@ name = "astroturf" }, /area/fiorina/station/park) -"etj" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/fiorina/station/chapel) -"etq" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/disco) "etL" = ( /obj/item/tool/weldingtool, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"eub" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/box/holobadge{ - pixel_y = 3 +"euC" = ( +/obj/structure/monorail{ + name = "launch track" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"euG" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"euR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 }, -/area/fiorina/station/lowsec) -"eux" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 }, +/obj/item/tool/stamp, /turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" + icon_state = "darkredfull2" }, /area/fiorina/station/lowsec) -"euz" = ( -/obj/structure/bed/chair{ - dir = 4 +"euT" = ( +/obj/item/tool/wet_sign, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = -1 }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"evc" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/medbay) -"evd" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 +/area/fiorina/tumor/aux_engi) +"evf" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5_1" }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"evk" = ( -/obj/structure/barricade/wooden, /turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"evl" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "brflowers_1" +/area/fiorina/station/lowsec) +"evg" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +/area/fiorina/tumor/ice_lab) +"evv" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/central_ring) -"evC" = ( -/obj/structure/barricade/sandbags{ +/obj/effect/landmark/nightmare{ + insert_tag = "nogear" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"evD" = ( +/obj/structure/lz_sign/prison_sign, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"evH" = ( +/obj/structure/surface/rack, +/obj/item/tool/plantspray/pests, +/obj/item/tool/plantspray/weeds, +/turf/open/floor/prison{ dir = 4; - icon_state = "sandbag_0"; - pixel_y = 2 + icon_state = "blue_plate" }, -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 +/area/fiorina/station/botany) +"evQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + icon_state = "redfull" }, -/area/fiorina/station/flight_deck) -"evT" = ( -/obj/structure/stairs/perspective{ +/area/fiorina/station/security) +"evU" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "p_stair_full" + pixel_y = 21 }, -/turf/open/floor/prison, -/area/fiorina/station/botany) +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) "ewx" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -7257,6 +7479,16 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) +"ewy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + layer = 2.8 + }, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/flight_deck) "ewE" = ( /obj/item/clothing/accessory/armband/cargo{ desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; @@ -7269,42 +7501,30 @@ /obj/structure/surface/rack, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"ewI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, +"ewY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "bluefull" }, -/area/fiorina/station/medbay) -"exa" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/fiorina/station/park) -"exl" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/station/civres_blue) +"exs" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/fiorina/station/disco) -"exy" = ( /obj/structure/bed/chair{ dir = 4; pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 8 }, -/area/fiorina/maintenance) -"exI" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" + dir = 10; + icon_state = "bright_clean_marked" }, -/area/fiorina/station/park) +/area/fiorina/station/medbay) "exO" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -7316,228 +7536,187 @@ name = "astroturf" }, /area/fiorina/station/park) -"exW" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"eyi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) -"eyj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 9 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"eys" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"eyv" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, +"eyo" = ( +/obj/structure/prop/resin_prop, /turf/open/floor/prison{ - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"eyy" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/nightmare{ - insert_tag = "nogear" + dir = 10; + icon_state = "whitegreenfull" }, -/turf/open/floor/prison, -/area/fiorina/station/security) +/area/fiorina/tumor/ice_lab) "eyz" = ( /obj/structure/machinery/portable_atmospherics/canister/phoron, /turf/open/floor/corsat{ icon_state = "plate" }, /area/fiorina/station/telecomm/lz1_cargo) -"eyO" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"ezd" = ( -/obj/structure/largecrate/random/case/double, +"eyM" = ( +/obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/research_cells) -"eze" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +/area/fiorina/tumor/aux_engi) +"eza" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" +/area/fiorina/station/telecomm/lz1_cargo) +"ezb" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/turf/open/space/basic, -/area/fiorina/oob) +/area/fiorina/tumor/aux_engi) "ezn" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/telecomm/lz1_cargo) -"ezO" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - icon_state = "redfull" +"ezo" = ( +/obj/structure/bed/chair/janicart, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"ezr" = ( +/obj/structure/bed{ + icon_state = "psychbed" }, -/area/fiorina/station/security) -"ezU" = ( -/obj/structure/surface/table/reinforced/prison{ +/turf/open/floor/prison{ dir = 4; - flipped = 1 + icon_state = "greenfull" }, +/area/fiorina/tumor/servers) +"ezx" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"ezz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/accessory/blue, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/aux_engi) +"ezJ" = ( +/turf/open/floor/prison{ + icon_state = "whitegreen" + }, +/area/fiorina/tumor/ice_lab) +"ezT" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "redcorner" + }, +/area/fiorina/station/security) "ezV" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"eAo" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"eAy" = ( +/turf/open/floor/prison{ + icon_state = "green" + }, +/area/fiorina/station/transit_hub) "eAM" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) +"eAQ" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) "eAY" = ( /obj/structure/girder/displaced, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"eBa" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_3" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +"eBs" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/fiorina/station/central_ring) -"eBj" = ( -/obj/structure/bed/chair, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"eBr" = ( -/obj/structure/platform_decoration{ - dir = 4 +/area/fiorina/station/telecomm/lz1_cargo) +"eBC" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/transit_hub) -"eBO" = ( -/obj/structure/machinery/door/airlock/almayer/marine, +/area/fiorina/station/power_ring) +"eCg" = ( +/obj/structure/largecrate/supply/explosives/mines, /turf/open/floor/prison{ - icon_state = "yellowfull" + dir = 10; + icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) -"eBS" = ( +/area/fiorina/station/telecomm/lz1_cargo) +"eCh" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" + icon_state = "floor_plate" }, +/area/fiorina/station/medbay) +"eCA" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, /area/fiorina/station/power_ring) -"eCy" = ( -/obj/effect/spawner/random/gun/pistol, +"eDn" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/central_ring) +"eDs" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"eCK" = ( -/obj/structure/reagent_dispensers/fueltank, +/area/fiorina/tumor/servers) +"eEh" = ( +/obj/structure/barricade/wooden, +/obj/item/device/flashlight/flare, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/fiorina/lz/near_lzII) -"eDp" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 + dir = 8; + icon_state = "darkyellow2" }, +/area/fiorina/station/telecomm/lz1_cargo) +"eEk" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzI) -"eDA" = ( +/area/fiorina/station/flight_deck) +"eEo" = ( /obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 + dir = 4 }, /obj/structure/prop/structure_lattice{ dir = 4; layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/research_cells) -"eEx" = ( -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison, /area/fiorina/tumor/servers) -"eEC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 7; - pixel_y = 22 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "eED" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin{ @@ -7550,36 +7729,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"eEJ" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"eEQ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"eET" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"eEX" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "eFa" = ( /obj/structure/barricade/metal{ dir = 1; @@ -7588,94 +7737,39 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"eFq" = ( -/obj/item/storage/bible/hefa, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/fiorina/station/chapel) "eFD" = ( /obj/structure/window_frame/prison, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"eFQ" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/fiorina/station/disco) -"eFR" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"eFX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, +"eGg" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"eGm" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, +/area/fiorina/station/telecomm/lz1_cargo) +"eGz" = ( +/obj/structure/machinery/constructable_frame, /turf/open/floor/prison, -/area/fiorina/station/power_ring) -"eGO" = ( -/obj/item/storage/toolbox/electrical, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"eHa" = ( -/obj/structure/lattice, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/fiorina/oob) -"eHk" = ( -/obj/structure/machinery/door/morgue{ - dir = 2; - name = "Confession Booth" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"eHn" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" +/area/fiorina/station/lowsec) +"eGV" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"eGY" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 }, +/obj/effect/spawner/random/gun/smg, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"eHt" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = -3 + dir = 5; + icon_state = "yellow" }, -/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"eHa" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/central_ring) "eHC" = ( /turf/closed/shuttle/ert{ @@ -7690,44 +7784,30 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"eHQ" = ( -/obj/item/trash/popcorn, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"eIx" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"eIp" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/tumor/ice_lab) -"eIB" = ( -/obj/item/frame/rack, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 10; + icon_state = "yellow" }, -/area/fiorina/station/security) +/area/fiorina/station/disco) "eIF" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer{ icon_state = "plate" }, /area/fiorina/tumor/ship) -"eIX" = ( +"eJi" = ( +/obj/structure/bed{ + icon_state = "abed" + }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 9; + icon_state = "whitepurple" }, -/area/fiorina/oob) +/area/fiorina/station/research_cells) "eJm" = ( /obj/structure/machinery/door/poddoor/almayer{ density = 0; @@ -7735,28 +7815,23 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"eJt" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"eJq" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/power_ring) -"eJy" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +/obj/structure/machinery/autolathe/full{ + layer = 2.98 }, -/area/fiorina/station/lowsec) -"eJK" = ( -/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"eJP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/cigbutt, /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/disco) "eJQ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -7764,84 +7839,64 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"eLu" = ( -/turf/closed/wall/prison, -/area/fiorina/maintenance) -"eLw" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"eLy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, +"eKg" = ( /turf/open/floor/prison{ dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"eLB" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"eLQ" = ( -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison, -/area/fiorina/station/security) -"eLU" = ( -/obj/item/tool/mop{ - pixel_y = 23 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"eLX" = ( -/obj/structure/platform_decoration{ - dir = 1 + icon_state = "darkpurple2" }, -/obj/structure/machinery/light/double/blue{ +/area/fiorina/station/central_ring) +"eKu" = ( +/obj/structure/stairs/perspective{ dir = 8; - pixel_x = -10; - pixel_y = 13 + icon_state = "p_stair_full" }, +/obj/structure/platform, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "bright_clean_marked" + }, +/area/fiorina/station/power_ring) +"eLu" = ( +/turf/closed/wall/prison, +/area/fiorina/maintenance) +"eLO" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/central_ring) -"eME" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, /turf/open/floor/prison{ - icon_state = "darkpurple2" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/botany) "eMG" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access{ name = "greenhouse airlock" }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"eMI" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +"eMJ" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"eML" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/platform_decoration{ + dir = 4 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, +/area/fiorina/station/telecomm/lz1_tram) +"eMO" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_2" + }, +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" + }, /area/fiorina/station/central_ring) "eMU" = ( /turf/closed/shuttle/ert{ @@ -7849,51 +7904,51 @@ opacity = 0 }, /area/fiorina/station/power_ring) -"eNa" = ( -/turf/open/floor/prison{ - icon_state = "yellowcorner" +"eNm" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + layer = 2.97; + pixel_y = -14 }, -/area/fiorina/station/lowsec) -"eNn" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" }, +/area/fiorina/station/telecomm/lz1_cargo) +"eNs" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" + dir = 5; + icon_state = "blue" }, -/area/fiorina/station/park) -"eNr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray/empty, +/area/fiorina/station/power_ring) +"eNV" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"eNv" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ +"eOf" = ( +/obj/structure/sink{ dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/telecomm/lz1_tram) -"eOp" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell1decal" + pixel_x = 12 }, +/obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/prison{ - icon_state = "whitegreen" + dir = 6; + icon_state = "yellow" }, -/area/fiorina/station/medbay) -"eOy" = ( -/obj/structure/platform_decoration{ - dir = 8 +/area/fiorina/station/lowsec) +"eOo" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/fiberbush) "eOF" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -7903,22 +7958,48 @@ }, /turf/open/space, /area/fiorina/oob) -"eOI" = ( -/obj/item/shard{ - icon_state = "large" +"eOH" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 4; icon_state = "greenfull" }, -/area/fiorina/station/transit_hub) -"eOM" = ( -/obj/item/reagent_container/food/snacks/eat_bar, +/area/fiorina/tumor/servers) +"eON" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"eOS" = ( +/obj/item/tool/warning_cone, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"ePf" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/flight_deck) +"ePm" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/central_ring) "ePq" = ( /obj/item/trash/cigbutt/ucigbutt, /obj/item/trash/cigbutt/ucigbutt{ @@ -7935,32 +8016,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) +"ePx" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) "ePB" = ( /turf/closed/wall/prison, /area/fiorina/station/telecomm/lz2_maint) -"ePM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c20, -/turf/open/floor/prison, -/area/fiorina/station/security) -"ePU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"eQb" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/boxing/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "eQk" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -7969,107 +8031,82 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"eQz" = ( -/obj/structure/machinery/gibber, -/obj/effect/decal/cleanable/blood{ - pixel_x = 8; - pixel_y = 10 - }, +"eQv" = ( +/obj/item/tool/warning_cone, /turf/open/floor/prison{ - icon_state = "blue_plate" + dir = 4; + icon_state = "darkbrown2" }, -/area/fiorina/station/botany) -"eQQ" = ( +/area/fiorina/station/park) +"eQD" = ( +/obj/structure/bed/chair, /turf/open/floor/prison{ - icon_state = "platingdmg1" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/chapel) -"eQX" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +/area/fiorina/tumor/servers) +"eQR" = ( +/turf/open/floor/prison{ + dir = 9; + icon_state = "green" }, +/area/fiorina/tumor/servers) +"eRi" = ( /turf/open/floor/prison{ dir = 8; icon_state = "darkyellow2" }, -/area/fiorina/station/flight_deck) -"eQY" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"eRl" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"eRq" = ( -/obj/item/toy/bikehorn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) +/area/fiorina/station/telecomm/lz1_cargo) "eRz" = ( /obj/structure/machinery/vending/snack/packaged, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"eRF" = ( -/obj/item/stack/cable_coil, +"eRH" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"eRR" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/area/fiorina/station/power_ring) +"eRS" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/station/telecomm/lz1_cargo) -"eRZ" = ( -/obj/item/stack/rods, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, -/area/fiorina/station/medbay) -"eSn" = ( -/obj/structure/reagent_dispensers/watertank, +/area/fiorina/tumor/ice_lab) +"eRY" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"eSg" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison{ - dir = 6; - icon_state = "greenblue" + dir = 1; + icon_state = "darkyellow2" }, -/area/fiorina/station/botany) +/area/fiorina/station/telecomm/lz1_cargo) +"eSs" = ( +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison, +/area/fiorina/station/security) "eSF" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"eSH" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"eSO" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/double/blue, +"eSZ" = ( +/obj/structure/bed/roller, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 4; + icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"eTa" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "eTb" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -8079,47 +8116,81 @@ "eTc" = ( /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"eTr" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, +"eTd" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"eTh" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/tumor/servers) +"eTn" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue" + }, +/area/fiorina/station/civres_blue) +"eTo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, /area/fiorina/station/power_ring) +"eTx" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison, +/area/fiorina/station/chapel) "eTC" = ( /obj/item/frame/rack, /turf/open/floor/wood, /area/fiorina/station/civres_blue) +"eTJ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) "eUi" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/telecomm/lz1_cargo) -"eUo" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"eUy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee, +"eUk" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 4; + icon_state = "darkbrowncorners2" }, -/area/fiorina/station/medbay) -"eUN" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" +/area/fiorina/tumor/aux_engi) +"eUD" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"eUP" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"eUZ" = ( -/obj/structure/machinery/vending/coffee, +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, -/area/fiorina/station/medbay) +/area/fiorina/station/security) +"eVb" = ( +/obj/item/reagent_container/blood, +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenbluecorner" + }, +/area/fiorina/station/botany) "eVf" = ( /obj/structure/prop/souto_land/pole, /obj/structure/prop/souto_land/streamer{ @@ -8127,16 +8198,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"eVj" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) "eVm" = ( /obj/structure/machinery/newscaster, /turf/closed/wall/r_wall/prison_unmeltable, @@ -8145,64 +8206,49 @@ /obj/structure/machinery/computer/arcade, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"eVK" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"eVN" = ( -/obj/item/bodybag, -/obj/item/bodybag{ - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"eVL" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/fiorina/station/medbay) +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) "eVO" = ( /turf/closed/shuttle/ert, /area/fiorina/tumor/ship) -"eWf" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +"eVZ" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/prison, +/area/fiorina/station/security) +"eWh" = ( +/obj/item/stack/sheet/metal{ + amount = 5 }, -/area/fiorina/station/central_ring) -"eWr" = ( /turf/open/floor/prison{ dir = 10; - icon_state = "green" - }, -/area/fiorina/tumor/civres) -"eWz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flash, -/turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "darkyellow2" }, -/area/fiorina/station/security) -"eWA" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 +/area/fiorina/lz/near_lzI) +"eWu" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"eWO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "blue_plate" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/botany) "eWP" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." @@ -8223,13 +8269,32 @@ icon_state = "plate" }, /area/fiorina/tumor/ship) +"eXd" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) "eXp" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/civres_blue) -"eXz" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/prison, -/area/fiorina/station/disco) +"eXr" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/lz/near_lzI) +"eXC" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison{ + dir = 5; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) "eXP" = ( /obj/structure/machinery/door/poddoor/almayer{ density = 0; @@ -8237,38 +8302,24 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"eYr" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"eYs" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/fire/empty, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"eXU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/area/fiorina/tumor/servers) -"eYz" = ( +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"eYi" = ( +/obj/item/stack/cable_coil, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 6; + icon_state = "whitegreen" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/medbay) "eYC" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"eYN" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/botany) "eYT" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 @@ -8284,72 +8335,39 @@ }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/security/wardens) -"eZi" = ( -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"eZr" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"eZQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = -7; - pixel_y = 1 +"eZm" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/obj/item/storage/box/handcuffs{ - pixel_x = -2; - pixel_y = 11 +/obj/structure/platform{ + dir = 8 }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"eZD" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, +/obj/item/weapon/gun/launcher/grenade/m81, +/obj/item/storage/pill_bottle/kelotane, /turf/open/floor/prison{ icon_state = "redfull" }, /area/fiorina/station/security) -"eZW" = ( -/obj/item/stack/rods/plasteel, +"eZL" = ( +/obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"fac" = ( -/obj/structure/platform/shiva{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"faw" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" + icon_state = "greenblue" }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"faD" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +/area/fiorina/station/botany) +"eZN" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"fbc" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/lz/near_lzII) "fbo" = ( /obj/structure/barricade/plasteel, /obj/structure/barricade/metal{ @@ -8359,47 +8377,87 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"fbF" = ( -/obj/item/clothing/suit/chef/classic, -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/blood, +"fbs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + pixel_y = 9 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/security) +"fbL" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + dir = 4; + icon_state = "greenblue" }, -/area/fiorina/station/civres_blue) -"fbX" = ( -/obj/item/stack/sheet/wood{ - amount = 10 +/area/fiorina/station/botany) +"fbT" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"fcg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_x = -2; - pixel_y = 7 +/area/fiorina/station/power_ring) +"fbW" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" + }, +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/medbay) +"fcp" = ( +/obj/item/trash/burger, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) "fcA" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"fcB" = ( -/obj/structure/barricade/deployable{ - dir = 1 +"fcO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper/carbon, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/medbay) +"fcX" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/chapel) +"fde" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) "fdf" = ( /obj/structure/closet, /obj/item/stack/cable_coil, @@ -8407,62 +8465,93 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"fdu" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, +"fdn" = ( /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 8; + icon_state = "floor_marked" }, -/area/fiorina/lz/near_lzI) -"fdC" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = -7; - pixel_y = 7 +/area/fiorina/station/research_cells) +"fdK" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/invuln{ + desc = "The best ride in the universe. For the one and only Souto Man! Although, this one seems to have no fuel left."; + dir = 4; + icon = 'icons/obj/vehicles/vehicles.dmi'; + icon_state = "soutomobile"; + name = "Disabled Souto Mobile" }, /turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"fdR" = ( -/obj/structure/platform_decoration, +/area/fiorina/station/park) +"fdS" = ( +/obj/structure/bed/chair/comfy, /turf/open/floor/prison{ - icon_state = "darkbrowncorners2" + icon_state = "floor_plate" }, -/area/fiorina/station/park) +/area/fiorina/station/security/wardens) "fdV" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/space/basic, /area/fiorina/oob) -"fer" = ( -/obj/structure/platform{ +"feO" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) +"feY" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"ffm" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" }, -/turf/open/floor/prison, /area/fiorina/station/medbay) -"ffA" = ( -/obj/effect/decal/cleanable/blood/oil, +"ffN" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"ffU" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5_1" + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/transit_hub) +/area/fiorina/station/medbay) "ffZ" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/power_ring) -"fgq" = ( -/obj/effect/landmark/corpsespawner/engineer, +"fgb" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/medbay) +"fgB" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) "fgM" = ( /obj/structure/platform, /obj/item/ammo_casing{ @@ -8474,34 +8563,44 @@ name = "pool" }, /area/fiorina/station/park) -"fgN" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzI) "fgU" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"fgY" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +"fhc" = ( +/turf/open/floor/prison{ + icon_state = "darkbrowncorners2" }, +/area/fiorina/maintenance) +"fhz" = ( +/obj/structure/barricade/wooden, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 8; + icon_state = "cell_stripe" }, -/area/fiorina/station/medbay) -"fhB" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/emergency, +/area/fiorina/station/central_ring) +"fhC" = ( +/obj/item/stack/rods, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/security) +"fhX" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/lz/near_lzI) +"fhZ" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreen" + }, +/area/fiorina/tumor/ice_lab) "fic" = ( /obj/structure/bed/sofa/south/grey/right, /obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ @@ -8509,12 +8608,12 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"fie" = ( +"fin" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "whitepurple" }, -/area/fiorina/station/chapel) +/area/fiorina/station/research_cells) "fiq" = ( /turf/open/floor/plating/prison, /area/fiorina/oob) @@ -8526,20 +8625,42 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"fiw" = ( -/obj/structure/machinery/vending/coffee, +"fiu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/inflatable, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 1; + icon_state = "whitepurple" }, -/area/fiorina/station/power_ring) -"fiG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_7" +/area/fiorina/station/research_cells) +"fiD" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"fiF" = ( +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/security) +/area/fiorina/station/civres_blue) +"fiI" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/obj/item/frame/rack, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/disco) "fiU" = ( /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) @@ -8547,37 +8668,16 @@ /turf/closed/wall/prison, /area/fiorina/lz/near_lzI) "fje" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 6 }, -/area/fiorina/station/disco) -"fjg" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -13; + pixel_y = 13 }, /turf/open/floor/prison, -/area/fiorina/station/disco) -"fjo" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5_1" - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +/area/fiorina/station/central_ring) "fjr" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/plating_catwalk/prison, @@ -8588,174 +8688,217 @@ /obj/item/attachable/magnetic_harness, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"fjV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/telecomm/lz1_cargo) +"fjU" = ( +/obj/item/bedsheet/green, +/obj/structure/bed, +/obj/item/toy/plush/farwa, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) "fjX" = ( /turf/closed/shuttle/elevator{ dir = 9 }, /area/fiorina/tumor/aux_engi) -"fkG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"fkH" = ( +"fkP" = ( /obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" + dir = 1 }, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, -/area/fiorina/station/medbay) -"fmb" = ( -/obj/item/storage/firstaid/toxin, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/tumor/ice_lab) +"fkY" = ( +/obj/item/tool/wet_sign, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = -1 }, -/area/fiorina/station/chapel) +/turf/open/floor/prison, +/area/fiorina/station/security) +"flg" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"flm" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"flo" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison{ + dir = 5; + icon_state = "yellow" + }, +/area/fiorina/station/disco) +"flq" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/botany) +"flC" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) "fmg" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"fmE" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/structure/closet/secure_closet/engineering_personal, +"fmL" = ( +/obj/item/frame/toolbox_tiles, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + dir = 9; + icon_state = "whitepurple" }, -/area/fiorina/maintenance) +/area/fiorina/station/research_cells) +"fmM" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/power_ring) +"fmU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + dir = 6; + icon_state = "green" + }, +/area/fiorina/tumor/aux_engi) "fmY" = ( /obj/item/device/cassette_tape/ocean, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"fnj" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/research_cells) "fnn" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fno" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform{ - dir = 4 +"fnt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" + dir = 6; + icon_state = "yellow" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/disco) +"fnB" = ( +/turf/open/floor/prison, +/area/fiorina/station/security) "fnD" = ( /turf/closed/shuttle/elevator{ dir = 4 }, /area/fiorina/station/telecomm/lz1_cargo) -"fnY" = ( -/obj/structure/machinery/vending/cola, +"fnW" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison{ + dir = 5; + icon_state = "yellow" + }, +/area/fiorina/station/disco) +"fon" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/park) -"fob" = ( -/obj/structure/platform{ - dir = 4 +/area/fiorina/tumor/civres) +"foL" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue_plate" }, -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, +/area/fiorina/station/botany) +"foT" = ( +/obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/prison, -/area/fiorina/station/power_ring) -"fop" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/science, +/area/fiorina/lz/near_lzI) +"foV" = ( +/obj/structure/largecrate/random, +/obj/item/trash/pistachios, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"foZ" = ( +/obj/item/stack/sandbags_empty, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"fou" = ( -/obj/structure/barricade/deployable{ - dir = 8 + dir = 9; + icon_state = "greenfull" }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"fpg" = ( -/obj/structure/platform{ - dir = 4 +/area/fiorina/tumor/civres) +"fpi" = ( +/obj/item/clothing/head/soft/yellow, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkpurple2" }, -/obj/structure/machinery/light/double/blue{ +/area/fiorina/tumor/servers) +"fpl" = ( +/obj/structure/barricade/sandbags{ dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "sandbag_0"; + pixel_y = 2 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) "fpn" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/aux_engi) -"fpq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 8 - }, +"fpp" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" + dir = 4; + icon_state = "green" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/civres) "fpB" = ( /obj/item/tool/wirecutters/clippers, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"fpN" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"fpM" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"fqg" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/central_ring) -"fqh" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 + icon_state = "floor_plate" }, +/area/fiorina/lz/near_lzII) +"fpY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase/inflatable, /turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) +"fqD" = ( +/obj/structure/stairs/perspective{ dir = 5; - icon_state = "whitegreen" + icon_state = "p_stair_full" }, -/area/fiorina/station/medbay) +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "fqF" = ( /obj/effect/landmark{ icon_state = "hive_spawn"; @@ -8764,160 +8907,130 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"fqI" = ( -/obj/structure/machinery/space_heater, +"fqZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal/medium_stack, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"frc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/area/fiorina/tumor/civres) +"frt" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"frw" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/station/civres_blue) -"frv" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"frM" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, +/obj/item/storage/fancy/crayons, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 6; + icon_state = "whitepurple" }, -/area/fiorina/station/transit_hub) -"frR" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/area/fiorina/station/research_cells) +"frY" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitepurplecorner" }, +/area/fiorina/station/research_cells) +"fsf" = ( +/obj/structure/bed/roller, +/obj/effect/spawner/random/gun/rifle/highchance, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/lz/near_lzI) "fsk" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"ftb" = ( -/obj/effect/landmark/monkey_spawn, +"fsn" = ( +/obj/item/device/flashlight, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"ftq" = ( +/obj/item/stack/cable_coil/orange, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"ftd" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 + dir = 10; + icon_state = "whitegreenfull" }, +/area/fiorina/tumor/ice_lab) +"ftv" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "red" }, -/area/fiorina/station/botany) -"fth" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/station/security) +"ftH" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, -/area/fiorina/station/civres_blue) -"ftS" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/obj/item/stool{ + pixel_x = 4; + pixel_y = 6 }, -/area/fiorina/station/medbay) -"ftU" = ( -/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"fun" = ( -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_casing{ - icon_state = "casing_6_1" + icon_state = "yellowfull" }, +/area/fiorina/station/lowsec) +"ftY" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"fuw" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"fuJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic{ - pixel_x = 3 - }, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 + dir = 4; + icon_state = "darkbrown2" }, -/obj/item/paper_bin{ - pixel_x = -10; - pixel_y = 8 +/area/fiorina/tumor/aux_engi) +"fum" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security/wardens) -"fuO" = ( -/obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"fvr" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/area/fiorina/station/disco) +"fuA" = ( +/obj/item/stack/sheet/wood, /turf/open/floor/prison{ dir = 8; - icon_state = "cell_stripe" + icon_state = "darkbrown2" }, /area/fiorina/station/park) -"fvH" = ( +"fuF" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + icon_state = "floor_plate" }, -/area/fiorina/oob) -"fvK" = ( -/obj/item/stack/rods, +/area/fiorina/tumor/civres) +"fvk" = ( +/obj/structure/barricade/metal/wired, /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/telecomm/lz1_cargo) "fvL" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"fwg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/adv{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 9; - pixel_y = 2 +"fvY" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8; + icon_state = "whitepurple" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/research_cells) "fwn" = ( /obj/structure/lattice, /obj/item/stack/sheet/metal, @@ -8927,69 +9040,73 @@ /obj/item/poster, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fwt" = ( -/obj/effect/decal/cleanable/blood/oil, +"fwR" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/turf/open/floor/prison{ + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"fwZ" = ( /obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" + icon_state = "docdecal1" }, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"fwY" = ( -/obj/structure/barricade/metal/wired{ - health = 250; - icon_state = "metal_3" - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"fxa" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"fxi" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison, -/area/fiorina/station/security) "fxt" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, /area/fiorina/tumor/ship) -"fxL" = ( -/obj/structure/filingcabinet, +"fxz" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) +"fxP" = ( +/turf/open/floor/prison{ + icon_state = "yellowcorner" }, -/area/fiorina/tumor/aux_engi) -"fxS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/surgical, -/turf/open/floor/prison, /area/fiorina/station/lowsec) +"fxY" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"fye" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) "fyi" = ( /turf/open/floor/wood, /area/fiorina/station/research_cells) -"fyt" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_3" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) "fyy" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) +"fyA" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "green" + }, +/area/fiorina/tumor/aux_engi) "fyC" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/platform/kutjevo/smooth{ @@ -8997,27 +9114,53 @@ }, /turf/open/space, /area/fiorina/oob) -"fyL" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/station/disco) "fyO" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"fzp" = ( -/obj/structure/bed/chair, +"fyQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, /turf/open/floor/prison{ - icon_state = "greenblue" + dir = 6; + icon_state = "darkyellow2" }, -/area/fiorina/station/botany) -"fzC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/gun/shotgun/highchance, +/area/fiorina/station/flight_deck) +"fyT" = ( +/obj/item/trash/cigbutt/bcigbutt, +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "darkbrown2" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/maintenance) +/area/fiorina/station/medbay) +"fzb" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"fzs" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"fzt" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) "fzO" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -9026,16 +9169,29 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"fAf" = ( -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"fAr" = ( -/obj/effect/landmark/xeno_spawn, +"fAh" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - dir = 1; + dir = 10; icon_state = "darkbrown2" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/maintenance) +"fAs" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/bedsheet/green, +/turf/open/floor/prison{ + dir = 6; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) "fAt" = ( /obj/structure/flora/bush/ausbushes/ausbush{ desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; @@ -9067,21 +9223,17 @@ /obj/effect/spawner/random/gun/pistol/lowchance, /turf/open/floor/wood, /area/fiorina/station/park) -"fAS" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"fAU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 7 +"fAV" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 5; + icon_state = "darkyellow2" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/flight_deck) "fAZ" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/drinks/bottle/holywater{ @@ -9090,117 +9242,76 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"fBr" = ( -/obj/structure/closet/secure_closet/engineering_materials, +"fBc" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"fBD" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"fCf" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/green, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"fCr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" + dir = 10; + icon_state = "damaged1" }, +/area/fiorina/station/lowsec) +"fBd" = ( /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"fCw" = ( -/obj/structure/machinery/vending/snack/packaged, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 + icon_state = "darkyellow2" }, +/area/fiorina/station/power_ring) +"fBg" = ( +/obj/effect/alien/weeds/node, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkbrown2" }, -/area/fiorina/station/civres_blue) -"fCD" = ( -/obj/item/stack/sheet/metal, -/obj/structure/machinery/light/double/blue, +/area/fiorina/tumor/aux_engi) +"fBi" = ( +/obj/structure/inflatable/popped/door, +/obj/item/ammo_magazine/m56d, /turf/open/floor/plating/prison, -/area/fiorina/station/security) -"fCF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/cell/super{ - pixel_y = 12 +/area/fiorina/station/central_ring) +"fBp" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" }, -/obj/item/cell/super, +/area/fiorina/maintenance) +"fBP" = ( /turf/open/floor/prison{ dir = 4; icon_state = "greenfull" }, /area/fiorina/tumor/civres) -"fCJ" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +"fCz" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellow2" }, -/turf/open/space, -/area/fiorina/oob) -"fCW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/telecomm/lz1_cargo) +"fCD" = ( +/obj/item/stack/sheet/metal, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) "fCZ" = ( /obj/structure/closet/crate/medical, /obj/item/clothing/mask/cigarette/pipe, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"fDb" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"fDi" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"fDE" = ( +"fDo" = ( +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10; - icon_state = "damaged1" + icon_state = "kitchen" + }, +/area/fiorina/tumor/civres) +"fDI" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 }, -/area/fiorina/station/central_ring) -"fDJ" = ( /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/disco) "fDQ" = ( /obj/structure/window/framed/prison/reinforced/hull, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -9209,85 +9320,104 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"fEn" = ( -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"fEH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "fEY" = ( /obj/structure/machinery/power/apc, /turf/open/floor{ icon_state = "delivery" }, /area/fiorina/station/power_ring) -"fFv" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - layer = 2.97; - pixel_y = -14 - }, +"fFf" = ( +/obj/item/stool, /turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" + icon_state = "yellowfull" }, -/area/fiorina/station/disco) -"fFw" = ( -/obj/structure/largecrate/random, +/area/fiorina/station/lowsec) +"fFC" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" + icon_state = "darkbrown2" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/park) "fFE" = ( /obj/item/tool/screwdriver, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fGi" = ( -/obj/structure/platform_decoration{ - dir = 1 +"fFU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" }, +/area/fiorina/station/medbay) +"fGb" = ( /turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/station/park) -"fGA" = ( -/obj/item/explosive/grenade/high_explosive/frag, +/area/fiorina/tumor/servers) +"fGe" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, /turf/open/floor/prison, /area/fiorina/station/security) -"fGW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ +"fGp" = ( +/obj/structure/surface/rack, +/obj/item/handcuffs, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/security) +"fGB" = ( +/obj/structure/prop/structure_lattice{ dir = 4 }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"fGL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/tracker, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 9; + icon_state = "yellow" }, -/area/fiorina/station/power_ring) -"fHb" = ( -/obj/structure/monorail{ - name = "launch track" +/area/fiorina/station/disco) +"fGM" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"fHo" = ( +/area/fiorina/station/flight_deck) +"fGY" = ( /turf/open/floor/prison{ - icon_state = "yellow" + icon_state = "floorscorched2" }, -/area/fiorina/station/lowsec) -"fHI" = ( -/obj/structure/platform_decoration{ +/area/fiorina/tumor/civres) +"fHh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4 }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"fHu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/atmos_alert, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "bluefull" }, /area/fiorina/station/power_ring) +"fHB" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) "fHK" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -9296,31 +9426,65 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"fIn" = ( -/obj/effect/landmark/corpsespawner/ua_riot, +"fHQ" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/shower, +/obj/structure/window{ + dir = 4 + }, +/obj/item/coin/uranium{ + desc = "You found one of the three uranium coins. It is entirely worthless." + }, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) +"fHU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, /area/fiorina/station/security) -"fIq" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "bee" +"fHV" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/obj/structure/sign/prop2{ - pixel_y = 32 +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/lz/near_lzII) +"fIj" = ( +/obj/item/clothing/suit/storage/hazardvest, /turf/open/floor/prison, -/area/fiorina/station/medbay) -"fIL" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" +/area/fiorina/station/civres_blue) +"fIv" = ( +/obj/item/shard{ + icon_state = "medium" }, /turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/servers) +"fII" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "blue" + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/station/chapel) +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/lowsec) "fIT" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/plating/prison, @@ -9337,12 +9501,19 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"fJV" = ( -/obj/structure/largecrate/random/barrel/yellow, +"fJx" = ( +/obj/item/storage/briefcase, /turf/open/floor/prison{ - icon_state = "yellow" + icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/transit_hub) +"fJO" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "fJW" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/accessory/storage/webbing, @@ -9358,116 +9529,122 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"fKn" = ( -/obj/item/stock_parts/manipulator/pico, +"fKq" = ( +/obj/item/storage/firstaid/regular, /turf/open/floor/prison{ - icon_state = "darkpurple2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/tumor/servers) -"fKu" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/area/fiorina/station/medbay) +"fKr" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/telecomm/lz1_cargo) -"fKP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"fKv" = ( +/obj/structure/largecrate/random, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_marked" }, -/area/fiorina/tumor/ice_lab) -"fKX" = ( -/obj/item/storage/backpack{ - pixel_x = -11; - pixel_y = 15 +/area/fiorina/station/power_ring) +"fKF" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/obj/item/trash/syndi_cakes, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) -"fLb" = ( -/obj/effect/decal/cleanable/blood/gibs, +/area/fiorina/station/power_ring) +"fLa" = ( +/obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" + dir = 8; + icon_state = "darkyellow2" }, -/area/fiorina/station/lowsec) -"fLu" = ( -/obj/effect/decal/cleanable/blood/oil, +/area/fiorina/lz/near_lzI) +"fLq" = ( /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 5; + icon_state = "green" }, -/area/fiorina/station/power_ring) -"fLH" = ( -/obj/structure/barricade/wooden{ +/area/fiorina/tumor/servers) +"fLr" = ( +/obj/item/smallDelivery, +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"fLs" = ( +/obj/structure/barricade/handrail/type_b{ dir = 4 }, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/power_ring) +"fLO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_y = 8 + }, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) +"fLR" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/lowsec) "fLS" = ( /obj/structure/bed/chair, /turf/open/floor/wood, /area/fiorina/station/park) -"fLX" = ( -/obj/structure/bed/sofa/south/grey/left, +"fMk" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"fLY" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 32 +/area/fiorina/station/security) +"fMY" = ( +/obj/structure/reagent_dispensers/watertank{ + layer = 2.6 }, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/transit_hub) -"fMc" = ( +/area/fiorina/lz/near_lzII) +"fNc" = ( /obj/structure/platform{ - dir = 8; - layer = 2.5 + dir = 4 }, -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"fMn" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"fNA" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"fNN" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"fOe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, +/area/fiorina/station/power_ring) +"fNp" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/disco) +/area/fiorina/tumor/servers) "fOg" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -9476,65 +9653,79 @@ name = "astroturf" }, /area/fiorina/station/park) -"fOi" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -13; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"fOC" = ( -/obj/effect/spawner/random/tool, +"fOo" = ( +/obj/structure/closet/crate/medical, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" + icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"fOK" = ( -/obj/item/device/flashlight/lamp/tripod, +/area/fiorina/station/medbay) +"fOs" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"fOt" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"fOw" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/fiorina/station/flight_deck) -"fOT" = ( /turf/open/floor/prison{ - dir = 1; + dir = 6; icon_state = "blue" }, /area/fiorina/station/power_ring) -"fPl" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 +"fOZ" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ - icon_state = "yellowfull" + dir = 10; + icon_state = "yellow" }, /area/fiorina/station/lowsec) -"fPB" = ( -/turf/open/space, +"fPu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, /area/fiorina/station/medbay) -"fQa" = ( -/obj/effect/decal/cleanable/blood/oil, +"fPF" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, /turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" + dir = 10; + icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_tram) -"fQA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - layer = 3.5; - pixel_y = 6 +/area/fiorina/station/telecomm/lz1_cargo) +"fPZ" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" }, +/area/fiorina/station/medbay) +"fQx" = ( +/obj/item/reagent_container/food/drinks/bottle/tomatojuice, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/chapel) +/area/fiorina/tumor/aux_engi) "fQB" = ( /obj/item/ammo_casing/shell{ icon_state = "shell_9_1" @@ -9542,68 +9733,36 @@ /obj/effect/spawner/random/gun/shotgun/highchance, /turf/open/floor/wood, /area/fiorina/station/park) -"fQI" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "fQV" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 }, /turf/open/space, /area/fiorina/oob) -"fQY" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"fRc" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "fRo" = ( /obj/structure/bed/chair, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fRq" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +"fRG" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/security) -"fSa" = ( -/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"fSp" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/item/stack/sheet/metal{ - amount = 5 + dir = 1; + icon_state = "green" }, +/area/fiorina/station/chapel) +"fSe" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"fSl" = ( +/obj/item/disk/data, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkpurplefull2" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/tumor/servers) "fSq" = ( /obj/structure/machinery/door/airlock/almayer/marine{ dir = 1; @@ -9633,30 +9792,49 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"fTd" = ( +"fSI" = ( +/obj/item/broken_device, /turf/open/floor/prison{ dir = 10; - icon_state = "green" + icon_state = "sterile_white" }, -/area/fiorina/tumor/aux_engi) -"fTn" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +/area/fiorina/station/medbay) +"fSY" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) +/area/fiorina/tumor/ship) "fTs" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/power_ring) -"fTz" = ( -/obj/structure/closet, -/obj/item/clothing/suit/poncho/red, -/obj/item/clothing/suit/poncho/green, +"fTx" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/station/flight_deck) +"fTz" = ( +/obj/structure/closet, +/obj/item/clothing/suit/poncho/red, +/obj/item/clothing/suit/poncho/green, /obj/item/clothing/suit/suspenders, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"fTA" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" + }, +/obj/structure/bed/roller, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "fUd" = ( /obj/structure/barricade/plasteel{ dir = 4 @@ -9677,122 +9855,90 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"fUz" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"fUC" = ( -/obj/structure/stairs/perspective, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"fUD" = ( -/obj/structure/dropship_equipment/mg_holder, +"fUu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"fUP" = ( -/obj/structure/machinery/door/window/eastright{ - dir = 2 + dir = 10; + icon_state = "whitegreenfull" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/area/fiorina/tumor/ice_lab) +"fUF" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) "fUX" = ( /obj/structure/bedsheetbin, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"fVs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/fiorina/station/chapel) -"fVY" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/item/stack/sheet/metal{ - amount = 5 - }, +"fUZ" = ( +/obj/structure/largecrate/supply, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" + icon_state = "floor_plate" }, -/area/fiorina/station/flight_deck) -"fWr" = ( +/area/fiorina/station/medbay) +"fVA" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - dir = 4; - icon_state = "red" + dir = 9; + icon_state = "darkbrown2" }, -/area/fiorina/lz/near_lzII) -"fWs" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +/area/fiorina/tumor/aux_engi) +"fWc" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/prison{ + icon_state = "whitegreen" }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"fWy" = ( +/area/fiorina/tumor/ice_lab) +"fWC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" + icon_state = "bluefull" }, /area/fiorina/station/power_ring) -"fWH" = ( +"fWD" = ( +/obj/structure/machinery/recharge_station, /turf/open/floor/prison{ - icon_state = "yellowfull" + dir = 5; + icon_state = "darkbrown2" }, -/area/fiorina/station/disco) -"fWI" = ( -/obj/structure/monorail{ - dir = 9; - name = "launch track" +/area/fiorina/maintenance) +"fWL" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/space, -/area/fiorina/oob) -"fWV" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/fiorina/station/disco) -"fXo" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +/turf/open/floor/prison, +/area/fiorina/station/security) +"fWS" = ( +/obj/structure/stairs/perspective, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"fXe" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 8; + icon_state = "darkyellow2" }, -/area/fiorina/station/disco) +/area/fiorina/station/telecomm/lz1_tram) +"fXv" = ( +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "fXB" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/security) -"fXD" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"fXI" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/fiorina/station/transit_hub) "fXL" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -9804,90 +9950,128 @@ }, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/servers) -"fXW" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" +"fXQ" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, +/turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"fYa" = ( -/obj/structure/inflatable, +"fXS" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "kitchen" }, -/area/fiorina/station/medbay) -"fYf" = ( -/obj/structure/surface/table/reinforced/prison, +/area/fiorina/station/lowsec) +"fXT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/item/toy/beach_ball, /turf/open/floor/prison{ icon_state = "yellowfull" }, /area/fiorina/station/disco) -"fYo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"fYW" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/carpet, -/area/fiorina/station/security/wardens) -"fYY" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6" +"fYn" = ( +/obj/structure/bed/chair, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "yellowfull" }, -/area/fiorina/station/lowsec) -"fZc" = ( +/area/fiorina/station/disco) +"fYB" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = -4; - pixel_y = 9 +/obj/item/storage/donut_box/empty, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) +"fYD" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) +"fYV" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + dir = 1; + icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' }, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "floor_plate" }, /area/fiorina/station/research_cells) +"fYW" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/carpet, +/area/fiorina/station/security/wardens) "fZd" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"fZe" = ( -/obj/item/tool/shovel/etool, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) -"fZz" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/fiorina/station/security) "fZD" = ( /obj/item/tool/warning_cone, /turf/open/floor/wood, /area/fiorina/station/park) -"fZT" = ( -/obj/structure/mirror{ - pixel_x = -29 +"gas" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"gaL" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/area/fiorina/station/telecomm/lz1_tram) +"gaN" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"gaZ" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenfull" }, +/area/fiorina/tumor/civres) +"gbi" = ( +/obj/structure/inflatable/door, /turf/open/floor/prison{ + dir = 10; icon_state = "sterile_white" }, +/area/fiorina/station/research_cells) +"gbn" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"gbD" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison{ + dir = 5; + icon_state = "blue" + }, /area/fiorina/station/civres_blue) -"fZW" = ( +"gbP" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ dir = 8 @@ -9900,112 +10084,52 @@ icon_state = "floor_plate" }, /area/fiorina/station/security) -"gag" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"gaQ" = ( -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"gbf" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +"gbS" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/head/cmcap{ + pixel_x = -5; + pixel_y = 14 }, -/area/fiorina/station/power_ring) -"gbh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/item/clothing/glasses/mbcg{ + pixel_y = -14 }, -/area/fiorina/station/medbay) -"gbk" = ( -/obj/item/trash/burger, /turf/open/floor/prison, -/area/fiorina/station/disco) -"gbv" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, /area/fiorina/station/medbay) -"gbF" = ( -/obj/item/clothing/gloves/botanic_leather, +"gbU" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"gbO" = ( -/obj/structure/platform_decoration{ - dir = 4 + icon_state = "floor_plate" }, -/obj/item/trash/used_stasis_bag, +/area/fiorina/station/park) +"gcr" = ( +/obj/item/tool/wirecutters/clippers, /turf/open/floor/prison{ dir = 9; - icon_state = "whitegreen" + icon_state = "greenfull" }, -/area/fiorina/station/medbay) -"gbR" = ( +/area/fiorina/tumor/civres) +"gde" = ( /obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/disco) -"gbT" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"gbV" = ( -/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"gcx" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" + dir = 1; + icon_state = "cell_stripe" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"gcD" = ( -/obj/structure/kitchenspike, +/area/fiorina/station/central_ring) +"gdn" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/prison{ - icon_state = "kitchen" + icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"gdQ" = ( -/obj/effect/decal/cleanable/blood/drip, +/area/fiorina/tumor/fiberbush) +"gdt" = ( +/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/prison{ - dir = 1; - icon_state = "blue" + icon_state = "redfull" }, /area/fiorina/station/chapel) -"gdS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) "gec" = ( /obj/structure/prop/structure_lattice{ dir = 8; @@ -10024,14 +10148,6 @@ }, /turf/open/space, /area/fiorina/oob) -"ger" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "geF" = ( /obj/structure/lattice, /turf/open/floor/almayer_hull, @@ -10040,13 +10156,19 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/fiorina/station/chapel) -"geT" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, +"geU" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/tumor/aux_engi) "gfh" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -10062,6 +10184,19 @@ "gfo" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/maintenance) +"gfp" = ( +/obj/structure/machinery/m56d_hmg/mg_turret/dropship, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"gfw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 9 + }, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) "gfL" = ( /obj/structure/prop/souto_land/pole, /obj/structure/prop/souto_land/pole{ @@ -10070,6 +10205,10 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"gfN" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "ggd" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1" @@ -10087,14 +10226,42 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"ggA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/pepper, -/obj/item/clothing/glasses/sunglasses/sechud, +"ggp" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/clothing/gloves/boxing/yellow, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 5; + icon_state = "yellow" }, -/area/fiorina/station/security) +/area/fiorina/station/lowsec) +"ggB" = ( +/obj/item/stool, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) +"ggG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/space_heater, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/ice_lab) +"ggQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) "ghg" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -10109,6 +10276,13 @@ }, /turf/open/space, /area/fiorina/oob) +"ghv" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitegreen" + }, +/area/fiorina/tumor/ice_lab) "ghw" = ( /obj/structure/bed/chair/dropship/pilot, /obj/effect/landmark/objective_landmark/close, @@ -10116,91 +10290,104 @@ icon_state = "plate" }, /area/fiorina/tumor/ship) -"ghz" = ( -/obj/structure/lz_sign/prison_sign, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"ghS" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"gir" = ( +"ghP" = ( /turf/open/floor/prison{ dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/servers) -"giw" = ( -/obj/structure/platform_decoration{ - dir = 1 + icon_state = "green" }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"giA" = ( -/obj/structure/bed/sofa/south/grey/left, +/area/fiorina/station/chapel) +"ghU" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/security) +/area/fiorina/tumor/servers) "giX" = ( /obj/structure/barricade/handrail/type_b{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"gjr" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"gjs" = ( -/obj/structure/machinery/light/double/blue{ +"gjg" = ( +/obj/structure/barricade/sandbags{ dir = 1; - pixel_y = 21 + icon_state = "sandbag_0" }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"gjz" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 4; + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"gjj" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_y = 17 }, +/turf/open/floor/prison, /area/fiorina/station/medbay) -"gjY" = ( -/obj/effect/decal/cleanable/blood/drip, +"gjX" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"gkd" = ( +/obj/item/storage/wallet/random, /turf/open/floor/prison{ - icon_state = "bluecorner" - }, -/area/fiorina/station/chapel) -"gkv" = ( -/obj/structure/platform_decoration{ - dir = 1 + dir = 10; + icon_state = "kitchen" }, +/area/fiorina/tumor/civres) +"gkm" = ( +/obj/structure/machinery/line_nexter, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) -"gkC" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 + dir = 8; + icon_state = "red" }, +/area/fiorina/station/security) +"gks" = ( /turf/open/floor/prison{ dir = 4; - icon_state = "darkbrown2" + icon_state = "greenfull" + }, +/area/fiorina/tumor/servers) +"gkt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"gky" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/station/park) -"gkE" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/disco) +"gkZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "glj" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) +"glw" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) "glD" = ( /obj/structure/bed{ icon_state = "abed" @@ -10211,48 +10398,50 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"gmg" = ( -/obj/structure/bed/chair/comfy, +"glH" = ( +/obj/item/stack/sandbags/large_stack, /turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"gmp" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 + dir = 5; + icon_state = "yellow" }, +/area/fiorina/station/disco) +"glI" = ( +/obj/item/trash/cigbutt, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_tram) -"gmx" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" +/area/fiorina/station/power_ring) +"glW" = ( +/obj/structure/holohoop{ + pixel_y = 25 }, -/obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison{ - dir = 1; - icon_state = "greenblue" + icon_state = "yellow" }, -/area/fiorina/station/botany) -"gmF" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison, -/area/fiorina/station/security) -"gmG" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison, /area/fiorina/station/lowsec) -"gmN" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/obj/effect/spawner/random/gun/smg, -/obj/effect/landmark/objective_landmark/medium, +"gma" = ( /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/civres_blue) +"gmv" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/park) +"gmy" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison{ + dir = 6; + icon_state = "darkyellow2" + }, +/area/fiorina/station/flight_deck) +"gmS" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/spawner/random/gun/shotgun/midchance, +/turf/open/floor/prison, +/area/fiorina/station/security) "gmT" = ( /obj/effect/landmark/xeno_spawn, /turf/open/organic/grass{ @@ -10260,110 +10449,178 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"gnG" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" +"gng" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/obj/structure/bed/roller, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/park) +"gnj" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison, +/area/fiorina/station/security) +"gnm" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/botany) +"gnz" = ( +/obj/item/tool/lighter/random{ + pixel_x = 14; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"gnR" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "cell_stripe" + }, +/area/fiorina/lz/near_lzI) +"gnS" = ( +/obj/effect/spawner/random/gun/rifle, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) +"gnV" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"gnL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/rollingpin, -/obj/item/reagent_container/food/snacks/grown/carrot, -/obj/effect/decal/cleanable/blood, +"goh" = ( +/obj/structure/pipes/standard/manifold/visible, /turf/open/floor/prison{ dir = 10; - icon_state = "kitchen" + icon_state = "sterile_white" }, -/area/fiorina/station/civres_blue) -"gnQ" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"gnY" = ( -/obj/structure/bed{ - icon_state = "abed" +/area/fiorina/station/medbay) +"gol" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 }, -/obj/item/storage/bible/hefa, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"goo" = ( +/area/fiorina/tumor/civres) +"gom" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/medbay) +"goz" = ( /turf/open/floor/prison{ dir = 8; - icon_state = "yellow" + icon_state = "darkbrowncorners2" }, -/area/fiorina/lz/near_lzII) +/area/fiorina/maintenance) +"goA" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) "goG" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"gpr" = ( -/obj/effect/decal/cleanable/blood, +"goH" = ( +/obj/structure/surface/rack, +/obj/item/tool/mop, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"goM" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"gpA" = ( -/obj/item/trash/pistachios, +/area/fiorina/station/flight_deck) +"gpq" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/shower{ + dir = 4 + }, /turf/open/floor/prison{ - icon_state = "whitegreen" + icon_state = "kitchen" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/lowsec) +"gpB" = ( +/obj/item/storage/bible/hefa, +/turf/open/floor/prison{ + dir = 1; + icon_state = "green" + }, +/area/fiorina/station/chapel) "gpG" = ( /obj/structure/window_frame/prison, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"gpY" = ( -/obj/item/explosive/grenade/high_explosive/m15{ - pixel_x = -9; - pixel_y = -8 - }, -/obj/item/explosive/grenade/high_explosive/frag{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/tumor/servers) -"gqM" = ( -/obj/structure/platform_decoration, +"gqd" = ( +/obj/item/tool/kitchen/utensil/pknife, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"gqe" = ( +/turf/open/floor/prison, +/area/fiorina/station/disco) +"gqH" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkbrowncorners2" }, /area/fiorina/station/park) -"gqU" = ( +"gqZ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper/janitor, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) -"grg" = ( -/obj/effect/decal/cleanable/blood/drip, +/obj/item/device/radio, +/obj/item/tool/pen/blue, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"grL" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/prison, +/area/fiorina/station/security) +"grO" = ( +/obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison{ dir = 10; icon_state = "floor_plate" }, /area/fiorina/station/telecomm/lz1_cargo) -"grA" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"gsd" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) "gsL" = ( /obj/structure/platform, /obj/structure/platform{ @@ -10374,54 +10631,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"gsN" = ( -/obj/structure/closet, -/obj/effect/spawner/random/gun/shotgun/midchance, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"gsU" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"gsX" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +"gte" = ( +/obj/item/shard{ + icon_state = "large" }, /turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"gtf" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, /area/fiorina/station/park) -"gtg" = ( -/obj/structure/barricade/sandbags{ - dir = 4; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"gtr" = ( -/obj/structure/bedsheetbin, +"gto" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/tumor/civres) "gtH" = ( /obj/structure/safe, /obj/item/storage/beer_pack, @@ -10430,25 +10651,15 @@ icon_state = "squares" }, /area/fiorina/station/medbay) -"gtN" = ( -/obj/item/storage/beer_pack{ - pixel_y = 10 +"gtM" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ + dir = 9; icon_state = "yellow" }, -/area/fiorina/station/lowsec) -"gtP" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"gtT" = ( -/obj/item/trash/eat, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/disco) "guf" = ( /obj/structure/bed/chair{ dir = 4; @@ -10456,88 +10667,34 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"guv" = ( -/obj/item/packageWrap, -/obj/effect/decal/cleanable/blood, +"guB" = ( +/obj/item/ammo_magazine/m56d, +/obj/item/ammo_magazine/m56d, /turf/open/floor/prison{ dir = 4; - icon_state = "darkyellow2" + icon_state = "cell_stripe" }, -/area/fiorina/lz/near_lzI) -"gux" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"guz" = ( +/area/fiorina/station/central_ring) +"guG" = ( /turf/open/floor/prison{ dir = 9; icon_state = "greenfull" }, -/area/fiorina/station/transit_hub) -"guU" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/civres) -"gve" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/servers) -"gvr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, /area/fiorina/station/botany) -"gvz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, +"guQ" = ( /turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) -"gvZ" = ( -/obj/item/stack/sheet/wood{ - pixel_x = 1; - pixel_y = -3 + icon_state = "cell_stripe" }, -/obj/item/stack/sheet/wood, +/area/fiorina/station/power_ring) +"gvT" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) -"gwm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/energy/taser, +/area/fiorina/tumor/aux_engi) +"gvX" = ( +/obj/structure/closet/secure_closet/security_empty, /turf/open/floor/prison{ icon_state = "redfull" }, @@ -10545,6 +10702,13 @@ "gws" = ( /turf/open/floor/plating, /area/fiorina/oob) +"gwz" = ( +/obj/effect/spawner/random/gun/pistol, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) "gwH" = ( /turf/closed/wall/strata_ice/jungle{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -10560,66 +10724,51 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"gwX" = ( +/obj/item/stool, +/obj/item/reagent_container/food/drinks/bottle/bluecuracao{ + pixel_x = 15; + pixel_y = 25 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) "gxj" = ( /obj/structure/surface/table/woodentable, /obj/item/toy/dice/d20, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"gxn" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/lz/near_lzI) -"gxQ" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"gxR" = ( -/obj/item/stack/tile/plasteel, +"gxx" = ( +/obj/item/packageWrap, +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"gyh" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 + icon_state = "darkyellow2" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/area/fiorina/lz/near_lzI) +"gxL" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, -/area/fiorina/station/medbay) -"gyt" = ( -/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"gyy" = ( -/obj/structure/platform{ - dir = 4 + icon_state = "floor_plate" }, +/area/fiorina/station/telecomm/lz1_cargo) +"gxN" = ( +/obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"gyA" = ( -/obj/structure/machinery/disposal, +/area/fiorina/station/power_ring) +"gyi" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "blue_plate" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/botany) "gyB" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "ywflowers_2" @@ -10629,6 +10778,12 @@ name = "astroturf" }, /area/fiorina/station/civres_blue) +"gyI" = ( +/obj/item/trash/candy, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) "gyJ" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -10637,136 +10792,116 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"gyP" = ( -/obj/item/stack/sheet/wood{ - amount = 10 - }, +"gyU" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 8; + icon_state = "cell_stripe" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/park) +"gyW" = ( +/turf/open/space, +/area/fiorina/station/medbay) +"gyY" = ( +/obj/structure/surface/rack, +/obj/item/weapon/sword/katana, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) "gzb" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gzh" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -11; - pixel_y = 13 +"gzd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "cell_stripe" }, -/area/fiorina/station/power_ring) -"gzu" = ( -/obj/item/clothing/mask/cigarette/bcigarette, +/area/fiorina/station/medbay) +"gzy" = ( +/obj/structure/barricade/wooden, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 4; + icon_state = "darkyellow2" }, -/area/fiorina/station/research_cells) -"gzN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/handcard/aceofspades, +/area/fiorina/station/telecomm/lz1_cargo) +"gzz" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"gAh" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 + icon_state = "floor_plate" }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; +/area/fiorina/tumor/fiberbush) +"gzA" = ( +/obj/structure/machinery/gibber, +/obj/effect/decal/cleanable/blood{ + pixel_x = 8; pixel_y = 10 }, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"gAn" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/station/park) -"gAA" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"gAC" = ( -/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"gAQ" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 + icon_state = "blue_plate" }, +/area/fiorina/station/botany) +"gzF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/corpsespawner/doctor, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "bluefull" }, -/area/fiorina/lz/near_lzII) -"gBe" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, +/area/fiorina/station/civres_blue) +"gzQ" = ( +/obj/structure/machinery/computer/crew, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/lz/near_lzII) -"gBw" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/area/fiorina/station/medbay) +"gAa" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"gAk" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 }, -/area/fiorina/station/research_cells) -"gBx" = ( -/obj/structure/prop/structure_lattice{ +/obj/structure/platform/kutjevo/smooth{ dir = 4 }, -/obj/structure/prop/structure_lattice{ +/turf/open/space/basic, +/area/fiorina/oob) +"gAA" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"gAS" = ( +/obj/structure/monorail{ dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) -"gBN" = ( -/obj/structure/bed/chair{ - dir = 4 + name = "launch track" }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"gBo" = ( +/obj/structure/closet/emcloset, /turf/open/floor/prison{ - dir = 9; + dir = 6; icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"gBP" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"gBR" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 +"gCb" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"gBY" = ( -/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 5; + icon_state = "yellow" }, -/area/fiorina/station/chapel) +/area/fiorina/station/disco) "gCn" = ( /obj/structure/surface/table/woodentable, /obj/item/newspaper{ @@ -10790,16 +10925,22 @@ }, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/civres) -"gCH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, +"gCX" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) +"gCY" = ( +/turf/open/floor/prison{ + icon_state = "cell_stripe" + }, +/area/fiorina/station/flight_deck) +"gDt" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/station/medbay) -"gCK" = ( -/obj/effect/landmark/survivor_spawner, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, @@ -10815,107 +10956,158 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"gDI" = ( -/obj/structure/bed/chair/office/dark, +"gDz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"gDP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"gEq" = ( +/area/fiorina/lz/near_lzI) +"gEe" = ( +/obj/item/reagent_container/food/drinks/bottle/patron, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"gEv" = ( +/obj/structure/bed/roller, /turf/open/floor/prison{ - icon_state = "platingdmg1" + dir = 1; + icon_state = "darkyellow2" }, -/area/fiorina/oob) +/area/fiorina/lz/near_lzI) "gEx" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"gEX" = ( -/obj/structure/stairs/perspective{ +"gEF" = ( +/obj/structure/prop/structure_lattice{ dir = 4; - icon_state = "p_stair_full" + health = 300 }, -/obj/structure/platform, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/servers) +"gET" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/tarbacks, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/chapel) +"gEU" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" + }, +/turf/open/space, +/area/fiorina/oob) +"gEW" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, +/area/fiorina/station/lowsec) +"gFc" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, -/area/fiorina/station/disco) +/area/fiorina/station/civres_blue) +"gFe" = ( +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/tumor/fiberbush) "gFg" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gFp" = ( -/obj/structure/inflatable/door, +"gFq" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 5; + icon_state = "darkyellow2" }, -/area/fiorina/station/medbay) -"gFN" = ( -/obj/item/stack/sheet/metal, +/area/fiorina/station/telecomm/lz1_tram) +"gFG" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" + icon_state = "blue" }, -/area/fiorina/station/research_cells) -"gFW" = ( -/obj/effect/decal/cleanable/blood, +/area/fiorina/station/civres_blue) +"gFK" = ( +/obj/item/stack/cable_coil, /turf/open/floor/prison{ - dir = 6; - icon_state = "green" + dir = 1; + icon_state = "darkpurple2" }, -/area/fiorina/tumor/aux_engi) -"gFZ" = ( -/obj/structure/barricade/wooden{ - dir = 1 +/area/fiorina/tumor/servers) +"gGp" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" }, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"gGc" = ( -/obj/structure/platform{ - dir = 4 + dir = 10; + icon_state = "whitegreenfull" }, +/area/fiorina/station/medbay) +"gGu" = ( +/obj/item/stack/rods, /turf/open/floor/prison, -/area/fiorina/station/disco) +/area/fiorina/station/civres_blue) "gGx" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gHh" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"gGB" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"gHn" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 +/turf/open/floor/prison, +/area/fiorina/station/disco) +"gGG" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 +/area/fiorina/tumor/civres) +"gHb" = ( +/obj/structure/prop/structure_lattice{ + health = 300 }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/structure/prop/structure_lattice{ + pixel_y = 10 }, /turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"gHo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 + icon_state = "floor_plate" }, -/obj/structure/largecrate/random, +/area/fiorina/tumor/aux_engi) +"gHc" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/station/research_cells) +"gHh" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"gHl" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) "gHy" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/plating/prison, @@ -10926,61 +11118,52 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"gHC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"gIa" = ( -/obj/item/stool, -/obj/item/reagent_container/food/drinks/bottle/bluecuracao{ - pixel_x = 15; - pixel_y = 25 +"gHF" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/lowsec) -"gIo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups{ - pixel_x = -3; +/area/fiorina/station/medbay) +"gHP" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; pixel_y = 6 }, -/obj/item/storage/box/cups, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "blue" }, -/area/fiorina/station/power_ring) -"gIs" = ( -/obj/item/reagent_container/food/drinks/bottle/rum, +/area/fiorina/station/chapel) +"gHW" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" + dir = 4; + icon_state = "darkyellowcorners2" }, -/area/fiorina/station/botany) +/area/fiorina/station/telecomm/lz1_cargo) "gIB" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"gID" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/oob) +"gIF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "gJu" = ( /obj/effect/alien/weeds/node, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"gKg" = ( -/obj/effect/landmark/survivor_spawner, +"gJG" = ( +/obj/item/stack/folding_barricade, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8; + icon_state = "red" }, /area/fiorina/station/security) "gKi" = ( @@ -10995,20 +11178,43 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"gKG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"gKt" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 }, /turf/open/floor/prison{ - dir = 1; - icon_state = "blue" + icon_state = "darkbrown2" }, -/area/fiorina/station/chapel) -"gLk" = ( -/obj/item/stool, +/area/fiorina/station/park) +"gKu" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Residential Apartment" + }, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/tumor/servers) +"gKA" = ( +/obj/structure/platform_decoration, /turf/open/floor/prison, -/area/fiorina/station/power_ring) +/area/fiorina/tumor/ice_lab) +"gKL" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/prison{ + dir = 6; + icon_state = "whitegreen" + }, +/area/fiorina/tumor/ice_lab) "gLu" = ( /turf/closed/shuttle/ert{ icon_state = "stan_leftengine" @@ -11021,54 +11227,64 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gLK" = ( -/obj/structure/tunnel/maint_tunnel, +"gLG" = ( +/obj/item/paper, /turf/open/floor/prison{ dir = 10; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"gLV" = ( -/obj/item/clothing/head/welding, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"gNx" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" + icon_state = "sterile_white" }, +/area/fiorina/station/research_cells) +"gMw" = ( +/obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "sterile_white" }, /area/fiorina/station/medbay) -"gNJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"gMJ" = ( +/obj/structure/barricade/deployable{ + dir = 4 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) +"gMV" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/tumor/servers) -"gNU" = ( /obj/structure/platform{ dir = 4 }, +/turf/open/floor/prison, +/area/fiorina/station/botany) +"gNF" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, /turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/fiorina/station/lowsec) +"gNK" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, /area/fiorina/station/disco) +"gNW" = ( +/obj/item/bodybag, +/turf/open/floor/prison{ + dir = 8; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) "gNY" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "ppflowers_2" @@ -11078,24 +11294,15 @@ name = "astroturf" }, /area/fiorina/station/civres_blue) -"gOd" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"gOk" = ( -/obj/structure/cargo_container/grant/right{ - density = 0; - desc = "A huge industrial shipping container. You could slip just behind it."; - health = 5000; - layer = 4; - unacidable = 1 +"gOs" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 5; + icon_state = "darkyellow2" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/flight_deck) "gOJ" = ( /obj/structure/closet/secure_closet/medical2{ req_access_txt = "100" @@ -11106,46 +11313,29 @@ icon_state = "squares" }, /area/fiorina/station/medbay) -"gOU" = ( -/obj/item/bodybag, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"gPk" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"gPo" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" +"gPm" = ( +/obj/item/ammo_casing{ + icon_state = "casing_8" }, -/area/fiorina/tumor/civres) -"gPp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/rollingpin, /turf/open/floor/prison{ - icon_state = "kitchen" + icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/lowsec) "gPs" = ( /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"gPE" = ( -/obj/structure/platform_decoration{ - dir = 8 +"gPO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" + dir = 4; + icon_state = "darkbrown2" }, -/area/fiorina/station/disco) +/area/fiorina/tumor/aux_engi) "gPS" = ( /obj/item/stack/rods, /turf/open/floor/prison/chapel_carpet{ @@ -11153,26 +11343,28 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"gPV" = ( -/obj/item/ammo_casing{ - icon_state = "casing_8" +"gQh" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 4; + icon_state = "greenfull" + }, +/area/fiorina/station/chapel) +"gQx" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/telecomm/lz1_cargo) -"gQc" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"gQz" = ( -/obj/structure/bed/chair, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 8; + icon_state = "blue" }, -/area/fiorina/station/medbay) +/area/fiorina/station/chapel) "gQK" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -11183,31 +11375,24 @@ }, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/servers) -"gQL" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"gRf" = ( -/obj/structure/machinery/computer/crew, +"gRm" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"gRg" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"gRA" = ( +"gRy" = ( +/obj/item/tool/shovel/etool, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + icon_state = "bluefull" }, -/area/fiorina/station/disco) +/area/fiorina/station/civres_blue) "gRT" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/sign/poster{ @@ -11218,42 +11403,64 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"gRW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"gRV" = ( +/obj/structure/machinery/disposal, +/obj/item/tool/kitchen/rollingpin{ + pixel_y = 8 }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"gSf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/incendiary/molotov, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "kitchen" }, -/area/fiorina/station/lowsec) -"gSg" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/station/civres_blue) +"gRW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/obj/structure/bed/chair/comfy, +/turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"gSC" = ( -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/prison, -/area/fiorina/maintenance) -"gSK" = ( -/obj/effect/landmark/yautja_teleport, +"gSD" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/transit_hub) +/area/fiorina/station/medbay) +"gSG" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"gSN" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "handblood" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "gSP" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/candelabra{ @@ -11263,12 +11470,6 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"gSX" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) "gTc" = ( /obj/item/storage/belt/shotgun/full/quackers, /obj/effect/spawner/gibspawner/human, @@ -11277,57 +11478,49 @@ name = "pool" }, /area/fiorina/station/park) -"gTi" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"gTy" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"gTN" = ( +"gTw" = ( /turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" + dir = 8; + icon_state = "cell_stripe" }, -/area/fiorina/tumor/ice_lab) -"gTW" = ( -/obj/structure/platform, +/area/fiorina/station/central_ring) +"gUf" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 10; + icon_state = "darkbrown2" }, -/area/fiorina/station/transit_hub) +/area/fiorina/tumor/aux_engi) "gUj" = ( /turf/closed/shuttle/ert{ icon_state = "stan3" }, /area/fiorina/tumor/ship) -"gUu" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"gVc" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 +"gUn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"gUx" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"gUH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med, +/turf/closed/wall/prison, +/area/fiorina/station/medbay) +"gUO" = ( +/obj/item/tool/warning_cone, /turf/open/floor/prison, -/area/fiorina/station/disco) +/area/fiorina/station/park) "gVs" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/prison, @@ -11343,15 +11536,34 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gVT" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +"gVA" = ( +/obj/item/frame/rack, +/turf/open/floor/prison{ + icon_state = "redfull" }, +/area/fiorina/station/security) +"gVR" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, +/area/fiorina/maintenance) +"gVX" = ( /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "darkpurple2" }, -/area/fiorina/station/flight_deck) +/area/fiorina/station/central_ring) +"gWf" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/obj/item/frame/rack, +/turf/open/floor/prison{ + dir = 6; + icon_state = "yellow" + }, +/area/fiorina/station/disco) "gWg" = ( /obj/structure/powerloader_wreckage, /obj/effect/decal/cleanable/blood/gibs/robot/limb, @@ -11369,56 +11581,82 @@ /obj/effect/spawner/random/gun/rifle/midchance, /turf/open/floor/wood, /area/fiorina/station/disco) -"gXd" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_y = 21 +"gWT" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison{ + dir = 4; + icon_state = "green" + }, +/area/fiorina/tumor/civres) +"gXi" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"gXt" = ( +/turf/open/floor/prison{ + icon_state = "platingdmg1" }, -/turf/open/floor/prison, /area/fiorina/station/chapel) "gXu" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"gXF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +"gXD" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/tumor/servers) -"gXI" = ( -/obj/item/book/manual/atmospipes, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"gXH" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 }, -/area/fiorina/station/research_cells) -"gYD" = ( -/obj/item/tool/wrench, /turf/open/floor/prison{ - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"gYH" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 8 +/area/fiorina/tumor/servers) +"gXL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/obj/item/ammo_magazine/shotgun/beanbag, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) +"gYA" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/station/security) -"gYM" = ( -/obj/structure/largecrate/random/barrel, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 4; + icon_state = "blue_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/botany) "gZc" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "4" @@ -11433,83 +11671,66 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"gZg" = ( +"gZE" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "redfull" }, -/area/fiorina/station/power_ring) -"gZx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = -4; - pixel_y = 12 +/area/fiorina/station/security) +"gZT" = ( +/turf/open/floor/prison{ + icon_state = "panelscorched" }, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = 6; - pixel_y = 3 +/area/fiorina/station/transit_hub) +"haa" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"hab" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, +/turf/open/floor/prison, /area/fiorina/station/power_ring) -"gZG" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +"hah" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/civres_blue) -"gZM" = ( -/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "darkbrowncorners2" + icon_state = "darkredfull2" }, -/area/fiorina/station/park) -"hae" = ( +/area/fiorina/station/research_cells) +"ham" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison{ - dir = 8; + dir = 4; icon_state = "whitegreen" }, /area/fiorina/tumor/ice_lab) -"hao" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "hay" = ( /turf/closed/shuttle/ert{ icon_state = "wy_leftengine" }, /area/fiorina/station/medbay) -"haJ" = ( -/obj/item/disk, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"haQ" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) -"hbn" = ( -/obj/structure/bed/chair{ - dir = 8 +"haU" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" + icon_state = "greenblue" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/botany) "hbo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/classic{ @@ -11540,34 +11761,56 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"hbp" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"hbq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"hbt" = ( -/obj/item/tool/screwdriver, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "redfull" }, -/area/fiorina/tumor/servers) -"hbH" = ( -/obj/item/stack/sandbags_empty/half, +/area/fiorina/station/security) +"hbC" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/space, +/area/fiorina/oob) +"hcb" = ( /turf/open/floor/prison{ - icon_state = "darkyellow2" + dir = 4; + icon_state = "greencorner" }, -/area/fiorina/lz/near_lzI) -"hcs" = ( -/obj/item/stack/sheet/metal{ - amount = 5 +/area/fiorina/tumor/civres) +"hce" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "redfull" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/security) +"hcf" = ( +/obj/item/paper/carbon, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "hcv" = ( /obj/item/stack/tile/plasteel{ pixel_x = 12; @@ -11578,88 +11821,40 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"hcB" = ( -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_y = 32 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"hcY" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) "hds" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-8" }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"hdA" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"hdR" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"hej" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"hek" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/weapon/baton, +"hdv" = ( +/obj/item/tool/scythe, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 4; + icon_state = "blue_plate" }, -/area/fiorina/station/security) -"heo" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/machinery/light/double/blue{ +/area/fiorina/station/botany) +"heb" = ( +/obj/structure/stairs/perspective{ dir = 8; - pixel_x = -10; - pixel_y = 13 + icon_state = "p_stair_ew_full_cap" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"heu" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, -/area/fiorina/station/chapel) -"heA" = ( -/obj/effect/landmark/xeno_spawn, +/obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "blue_plate" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/botany) "heO" = ( /turf/closed/shuttle/elevator, /area/fiorina/station/civres_blue) -"heT" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) "hfc" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -11678,65 +11873,91 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"hfl" = ( +/obj/item/device/pinpointer, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) "hfT" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/flight_deck) -"hgc" = ( -/obj/structure/largecrate/supply/medicine/medivend, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"hgp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/area/fiorina/station/medbay) -"hgh" = ( -/obj/item/trash/burger, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" + icon_state = "darkredfull2" }, -/area/fiorina/tumor/civres) -"hgA" = ( -/obj/item/ammo_magazine/smg/nailgun, +/area/fiorina/oob) +"hgr" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "floor_plate" }, -/area/fiorina/maintenance) -"hgD" = ( -/obj/effect/alien/weeds/node, +/area/fiorina/station/civres_blue) +"hgu" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"hgz" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/prison{ dir = 4; - icon_state = "darkbrowncorners2" + icon_state = "greenfull" }, -/area/fiorina/tumor/aux_engi) -"hgP" = ( -/obj/effect/decal/cleanable/blood, +/area/fiorina/tumor/civres) +"hgC" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" + dir = 10; + icon_state = "green" }, -/area/fiorina/station/park) +/area/fiorina/station/transit_hub) +"hgJ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "hgS" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" }, /area/fiorina/tumor/aux_engi) -"hhu" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" +"hhg" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 6; + pixel_y = 7 }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"hhD" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/surface/rack, -/obj/item/clothing/gloves/latex, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"hhh" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"hhl" = ( +/obj/item/device/flashlight/flare/on, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreenfull" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/ice_lab) +"hhy" = ( +/turf/open/floor/prison{ + dir = 9; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) "hhL" = ( /obj/effect/spawner/random/powercell, /obj/structure/disposalpipe/segment{ @@ -11748,55 +11969,71 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"hil" = ( -/obj/structure/surface/rack, -/obj/item/tool/plantspray/pests, -/obj/item/tool/plantspray/weeds, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) "hir" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"hiO" = ( -/turf/closed/shuttle/elevator{ - dir = 4 - }, -/area/fiorina/tumor/aux_engi) -"hiP" = ( -/obj/item/stack/rods, +"hiu" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + dir = 8; + icon_state = "cell_stripe" + }, +/area/fiorina/station/telecomm/lz1_tram) +"hix" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/clothing/gloves/boxing, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/medbay) -"hjp" = ( -/obj/structure/bed/chair/office/dark, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 1; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"hiG" = ( +/obj/item/storage/backpack/souto, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"hiK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/tumor/ice_lab) -"hjB" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "darkredfull2" }, -/area/fiorina/station/research_cells) -"hjC" = ( -/obj/structure/platform{ - dir = 8 +/area/fiorina/station/disco) +"hiO" = ( +/turf/closed/shuttle/elevator{ + dir = 4 }, +/area/fiorina/tumor/aux_engi) +"hja" = ( /obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_half_cap" + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/botany) +"hjb" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"hjr" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison{ + dir = 9; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) "hjE" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced, @@ -11805,17 +12042,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"hjM" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"hjR" = ( -/obj/effect/landmark/monkey_spawn, +"hjP" = ( /turf/open/floor/prison, -/area/fiorina/station/transit_hub) +/area/fiorina/tumor/aux_engi) "hjV" = ( /obj/structure/stairs/perspective, /turf/open/floor/plating/prison, @@ -11831,127 +12060,106 @@ }, /turf/open/floor/almayer_hull, /area/fiorina/oob) -"hko" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"hkA" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"hkB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"hkH" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"hkM" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, +"hkW" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"hll" = ( +/obj/item/tool/warning_cone, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"hlk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette, -/obj/item/storage/fancy/cigarettes/emeraldgreen{ - pixel_x = -4; - pixel_y = 9 + icon_state = "floor_plate" }, +/area/fiorina/station/power_ring) +"hln" = ( +/obj/structure/bed/chair, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkbrown2" }, -/area/fiorina/tumor/aux_engi) -"hlB" = ( -/obj/item/tool/kitchen/knife, +/area/fiorina/station/park) +"hlq" = ( +/obj/structure/janitorialcart, /turf/open/floor/prison, -/area/fiorina/station/lowsec) -"hlT" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"hmq" = ( -/obj/item/device/flashlight, +"hlK" = ( /turf/open/floor/prison{ icon_state = "darkyellow2" }, /area/fiorina/lz/near_lzI) -"hmE" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ +"hmd" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "whitegreen" + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/tumor/ice_lab) -"hmS" = ( -/obj/structure/monorail{ - name = "launch track" +/obj/structure/platform{ + dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"hnh" = ( -/obj/item/reagent_container/food/drinks/sillycup, +"hmg" = ( +/obj/structure/platform_decoration, /turf/open/floor/prison, -/area/fiorina/station/power_ring) -"hnK" = ( -/obj/structure/surface/table/reinforced/prison, +/area/fiorina/station/disco) +"hmj" = ( +/obj/item/storage/firstaid/toxin, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/park) -"hnM" = ( -/obj/item/shard{ - icon_state = "large" +/area/fiorina/station/chapel) +"hmk" = ( +/turf/open/floor/prison{ + icon_state = "whitegreencorner" + }, +/area/fiorina/tumor/ice_lab) +"hmr" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/station/security) -"hob" = ( -/obj/item/phone{ - pixel_y = 7 +/area/fiorina/station/transit_hub) +"hng" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"hoo" = ( /turf/open/floor/prison{ dir = 4; - icon_state = "bluecorner" + icon_state = "greenfull" }, -/area/fiorina/station/civres_blue) -"hox" = ( -/obj/structure/barricade/handrail{ - dir = 4 +/area/fiorina/tumor/servers) +"hnJ" = ( +/obj/item/clothing/under/stowaway, +/obj/structure/machinery/shower{ + pixel_y = 13 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "kitchen" + }, +/area/fiorina/station/lowsec) +"hob" = ( +/obj/item/phone{ + pixel_y = 7 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"hor" = ( +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 }, -/area/fiorina/station/central_ring) -"hoC" = ( -/obj/item/trash/popcorn, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/disco) +/area/fiorina/station/research_cells) +"hoy" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/fiorina/station/security) "hoH" = ( /obj/effect/decal/cleanable/cobweb{ desc = "Spun only by the terrifying space widow. Some say that even looking at it will kill you."; @@ -11959,10 +12167,24 @@ }, /turf/open/space, /area/fiorina/oob) -"hoT" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +"hoN" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "casing_6" + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"hoY" = ( +/obj/structure/surface/rack, +/obj/item/frame/table/almayer, +/obj/item/frame/table/almayer, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/civres) "hoZ" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) @@ -11973,12 +12195,17 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/security) -"hpn" = ( -/obj/effect/decal/cleanable/blood, +"hpr" = ( +/obj/item/device/binoculars/civ, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - icon_state = "darkbrown2" + dir = 1; + icon_state = "yellow" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/lowsec) "hpz" = ( /obj/structure/ice/thin/indestructible{ dir = 1; @@ -11987,23 +12214,32 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"hpW" = ( -/obj/item/stack/cable_coil/orange, +"hpJ" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/filtration/console{ + can_block_movement = 0; + pixel_y = 22 + }, +/obj/item/trash/used_stasis_bag, /turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"hpX" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "bluefull" +/area/fiorina/station/medbay) +"hpN" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 2; + pixel_y = 21 }, -/area/fiorina/station/power_ring) -"hqb" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" }, +/area/fiorina/station/medbay) +"hpW" = ( +/obj/item/stack/cable_coil/orange, /turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/station/power_ring) "hqc" = ( /obj/structure/bed/chair/wood/normal, /turf/open/floor/carpet, @@ -12014,132 +12250,73 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"hqG" = ( -/obj/structure/platform{ +"hqF" = ( +/obj/structure/prop/souto_land/pole{ dir = 1 }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"hqO" = ( -/turf/open/floor/prison{ +/obj/structure/prop/souto_land/pole{ dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/lz/near_lzII) -"hqX" = ( -/obj/structure/bed/chair{ - dir = 1 + pixel_y = 24 }, -/obj/structure/machinery/light/double/blue{ +/turf/open/floor/prison{ dir = 4; - pixel_x = 10; - pixel_y = 13 + icon_state = "darkbrown2" }, +/area/fiorina/station/park) +"hqZ" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/toxin, /turf/open/floor/prison{ - icon_state = "yellowfull" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/lowsec) -"hre" = ( -/obj/structure/platform_decoration{ +/area/fiorina/station/medbay) +"hrg" = ( +/obj/structure/barricade/handrail{ dir = 4 }, -/obj/item/device/flashlight, -/turf/open/floor/plating/prison, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/fiorina/station/central_ring) -"hrl" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) "hro" = ( /obj/structure/girder, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"hrw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"hrz" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 2; - pixel_y = 21 - }, -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 2; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"hrA" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"hrB" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/prison, -/area/fiorina/station/security) -"hrL" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, +"hrX" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/prison{ - icon_state = "kitchen" + icon_state = "darkyellow2" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/telecomm/lz1_cargo) "hsc" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"hsf" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"hsl" = ( -/obj/structure/machinery/light/double/blue, +"hsd" = ( +/obj/item/device/flashlight/flare, /turf/open/floor/prison{ - icon_state = "darkpurple2" + dir = 10; + icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) -"hsz" = ( -/obj/structure/machinery/light/double/blue{ +/area/fiorina/station/telecomm/lz1_cargo) +"hss" = ( +/obj/structure/stairs/perspective{ dir = 1; - pixel_y = 21 + icon_state = "p_stair_full" }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"hsA" = ( /turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/station/disco) +/area/fiorina/lz/near_lzI) "hsC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/southleft, @@ -12158,92 +12335,41 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/maintenance) -"htq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) +"htc" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "htt" = ( /turf/closed/shuttle/ert, /area/fiorina/station/power_ring) -"htD" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"htO" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "casing_6" - }, -/obj/structure/barricade/metal{ - dir = 8; - health = 150; - icon_state = "metal_2" - }, -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"htT" = ( -/obj/structure/reagent_dispensers/watertank, +"htL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, /turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" + icon_state = "bluefull" }, /area/fiorina/station/power_ring) -"htX" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/fiorina/station/chapel) -"hub" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, +"hue" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ dir = 1; - icon_state = "darkbrown2" + icon_state = "darkbrowncorners2" }, /area/fiorina/station/park) "hul" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"huB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) "huD" = ( /obj/item/tool/crowbar, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"huG" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"huJ" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, +"huI" = ( +/obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "redfull" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/security) "hva" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -12262,74 +12388,93 @@ icon_state = "plate" }, /area/fiorina/station/civres_blue) -"hvp" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +"hvh" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 }, -/area/fiorina/tumor/ice_lab) -"hvF" = ( -/obj/structure/grille, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"hvL" = ( /turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"hwr" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 + icon_state = "floor_plate" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/area/fiorina/station/civres_blue) +"hvi" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" }, -/area/fiorina/station/chapel) -"hwN" = ( -/obj/structure/inflatable/popped/door, /turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/lowsec) -"hwS" = ( +/area/fiorina/station/medbay) +"hvE" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) -"hxj" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; pixel_y = 13 }, -/obj/structure/platform_decoration, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "yellowfull" }, /area/fiorina/station/disco) -"hxq" = ( -/obj/structure/window/framed/prison/reinforced/hull, +"hvF" = ( +/obj/structure/grille, /turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"hxG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +/area/fiorina/station/power_ring) +"hvG" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/fiorina/station/security) +"hwn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkbrown2" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 +/area/fiorina/tumor/aux_engi) +"hxg" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" }, -/turf/open/space/basic, -/area/fiorina/oob) +/area/fiorina/maintenance) +"hxi" = ( +/obj/item/roller, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"hxk" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/transit_hub) +"hxq" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"hxy" = ( +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"hxC" = ( +/turf/open/floor/prison{ + icon_state = "darkbrowncorners2" + }, +/area/fiorina/tumor/aux_engi) "hxJ" = ( /obj/structure/sign/poster{ icon_state = "poster12"; @@ -12346,71 +12491,57 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"hyc" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" +"hxU" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/fiorina/maintenance) -"hyo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/chapel) +"hyz" = ( /turf/open/floor/prison{ - icon_state = "sterile_white" + icon_state = "platingdmg1" }, /area/fiorina/station/civres_blue) -"hyq" = ( -/obj/structure/closet/crate/medical, -/obj/item/tool/surgery/bonegel, -/obj/item/tool/surgery/bonegel, +"hyG" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/clothing/gloves/botanic_leather, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"hys" = ( -/obj/structure/grille, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) +/area/fiorina/station/botany) +"hyR" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "greenblue" + }, +/area/fiorina/station/botany) "hyT" = ( /turf/closed/shuttle/ert{ icon_state = "stan_leftengine" }, /area/fiorina/tumor/aux_engi) -"hzi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"hyX" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + icon_state = "floor_plate" }, /area/fiorina/station/civres_blue) -"hzv" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"hzF" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, +"hzq" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "bluefull" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/power_ring) "hzG" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8; @@ -12420,65 +12551,46 @@ icon_state = "wy4" }, /area/fiorina/station/medbay) -"hzL" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, -/area/fiorina/tumor/aux_engi) -"hAs" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -9; - pixel_y = 8 +"hAp" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 11; - pixel_y = 8 +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkpurple2" }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 1; - pixel_y = 8 +/area/fiorina/tumor/servers) +"hAL" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, +/obj/item/weapon/gun/smg/mp5, +/obj/item/storage/belt/marine, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, /turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"hAI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" + icon_state = "redfull" }, +/area/fiorina/station/security) +"hAY" = ( +/obj/item/stack/tile/plasteel, /turf/open/floor/prison{ icon_state = "floor_plate" }, /area/fiorina/tumor/aux_engi) -"hAP" = ( -/obj/item/clothing/under/stowaway, -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"hAX" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/ice_lab) -"hBc" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"hBf" = ( -/obj/effect/spawner/random/tool, +"hBn" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + dir = 6; + icon_state = "darkyellow2" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/lz/near_lzI) "hBF" = ( /obj/structure/window_frame/prison/reinforced, /obj/item/stack/sheet/glass/reinforced{ @@ -12486,116 +12598,127 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"hCc" = ( -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/park) -"hCh" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"hCk" = ( -/obj/item/poster, +"hBI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/megaphone, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/security) -"hCp" = ( -/obj/structure/prop/invuln{ - desc = "Floating cells are reserved for highly dangerous criminals. Whoever is out there is probably best left out there."; - icon = 'icons/obj/structures/doors/celldoor.dmi'; - icon_state = "door_closed"; - layer = 2.5; - name = "cell door" +/area/fiorina/tumor/ice_lab) +"hBP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/phone{ + pixel_x = 7; + pixel_y = -16 }, -/area/fiorina/tumor/servers) -"hCR" = ( -/obj/item/stack/sheet/wood, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/obj/item/phone{ + pixel_x = -3; + pixel_y = 16 }, -/area/fiorina/station/research_cells) -"hDb" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + icon_state = "floor_plate" + }, +/area/fiorina/station/security) +"hBX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/civres_blue) -"hDl" = ( -/obj/structure/machinery/photocopier, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"hDm" = ( -/obj/item/trash/burger, +"hCc" = ( +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/park) +"hCd" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison{ + dir = 8; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"hCS" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"hDS" = ( -/obj/structure/platform{ - dir = 4 +/area/fiorina/station/chapel) +"hCT" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +/area/fiorina/tumor/civres) +"hCX" = ( +/obj/effect/landmark/wo_supplies/storage/belts/knifebelt, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"hDq" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/sand/layer1, +/area/fiorina/tumor/civres) +"hDr" = ( +/obj/item/stool, +/turf/open/floor/prison{ + dir = 10; + icon_state = "damaged2" }, +/area/fiorina/station/lowsec) +"hDx" = ( /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"hDV" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" +/area/fiorina/tumor/civres) +"hDy" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" }, -/obj/item/stack/cable_coil/blue, +/area/fiorina/station/medbay) +"hDL" = ( /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "darkyellow2" }, -/area/fiorina/station/medbay) +/area/fiorina/station/telecomm/lz1_tram) "hEb" = ( /turf/closed/shuttle/ert{ icon_state = "wy20" }, /area/fiorina/station/medbay) -"hEk" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) "hEs" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/research_cells) -"hEv" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"hFe" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"hEZ" = ( /turf/open/floor/prison{ - icon_state = "platingdmg3" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/security) -"hFC" = ( -/obj/item/disk, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) +/area/fiorina/tumor/ice_lab) +"hFn" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison{ + dir = 9; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) "hFH" = ( /obj/item/gift, /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -12604,49 +12727,34 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"hFW" = ( -/obj/effect/spawner/random/tool, +"hGz" = ( +/obj/item/clothing/gloves/botanic_leather, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"hGg" = ( -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_x = -24 + dir = 8; + icon_state = "greenblue" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/station/botany) +"hGC" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/medbay) -"hGn" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"hGu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials/random, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"hGy" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"hGW" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/bed{ - icon_state = "abed" + icon_state = "greenblue" }, -/obj/effect/landmark/corpsespawner/ua_riot, +/area/fiorina/station/botany) +"hGP" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"hGZ" = ( +/obj/item/stack/cable_coil, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "greenfull" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/tumor/civres) "hHc" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/candelabra{ @@ -12661,98 +12769,138 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) +"hHh" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/lz/near_lzI) "hHq" = ( /obj/structure/closet/cabinet, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"hHr" = ( -/obj/item/tool/warning_cone, +"hHv" = ( +/obj/structure/platform{ + dir = 1 + }, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/station/park) -"hHC" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 4; - pixel_y = 24 +/area/fiorina/station/power_ring) +"hIe" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison{ + icon_state = "bluefull" }, +/area/fiorina/station/power_ring) +"hIo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) +"hIu" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 8 }, -/obj/effect/landmark/corpsespawner/security/liaison, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" + dir = 8; + icon_state = "blue" }, -/area/fiorina/station/park) -"hHH" = ( -/obj/effect/decal/cleanable/blood{ - desc = "Watch your step."; - icon_state = "gib6" +/area/fiorina/station/power_ring) +"hJc" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"hHX" = ( -/obj/structure/toilet{ +/area/fiorina/tumor/aux_engi) +"hJw" = ( +/turf/open/floor/prison{ dir = 4; - pixel_y = 8 + icon_state = "bluecorner" }, -/obj/effect/landmark/objective_landmark/medium, +/area/fiorina/station/civres_blue) +"hKE" = ( +/obj/structure/inflatable, /turf/open/floor/prison{ - dir = 9; + dir = 10; icon_state = "yellow" }, /area/fiorina/station/lowsec) -"hIO" = ( -/obj/structure/largecrate/random/barrel/green, +"hKI" = ( +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"hKJ" = ( +/obj/structure/closet/emcloset, +/obj/item/storage/pill_bottle/kelotane/skillless, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/medbay) -"hIX" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/area/fiorina/tumor/ice_lab) +"hKW" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 }, -/turf/open/floor/prison{ +/obj/item/organ/lungs, +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "green" + pixel_y = 21 }, -/area/fiorina/station/chapel) -"hJo" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"hLt" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/obj/item/reagent_container/food/drinks/flask/barflask, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"hKN" = ( +/area/fiorina/tumor/civres) +"hLy" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"hKP" = ( -/obj/structure/platform{ - dir = 4 +/area/fiorina/lz/near_lzII) +"hLz" = ( +/turf/closed/wall/prison, +/area/fiorina/lz/near_lzII) +"hLK" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/obj/item/tool/shovel/spade, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/botany) -"hLz" = ( -/turf/closed/wall/prison, /area/fiorina/lz/near_lzII) "hLM" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/fiberbush) +"hLO" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"hLX" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) "hMf" = ( /obj/item/tool/candle{ pixel_x = -2; @@ -12760,120 +12908,115 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"hMj" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, +"hMg" = ( +/obj/item/clothing/head/helmet/marine/specialist/hefa, /turf/open/floor/prison, -/area/fiorina/station/lowsec) -"hMA" = ( -/obj/item/tool/crowbar, +/area/fiorina/station/park) +"hMK" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "pizzatime" + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/power_ring) +"hMX" = ( +/obj/item/weapon/twohanded/spear, /turf/open/floor/prison{ - icon_state = "whitegreen" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/medbay) -"hMH" = ( +/area/fiorina/station/research_cells) +"hNc" = ( /obj/item/newspaper, /turf/open/floor/prison{ dir = 4; icon_state = "red" }, /area/fiorina/lz/near_lzII) -"hMK" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "pizzatime" - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/power_ring) -"hNj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = -6; - pixel_y = 20 +"hNi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = 6; - pixel_y = 20 +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/power_ring) -"hNU" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/medbay) "hNY" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"hOA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"hOG" = ( -/obj/structure/inflatable/popped/door, +"hOg" = ( +/obj/structure/largecrate/random/barrel, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" + dir = 10; + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"hOQ" = ( -/obj/structure/platform_decoration{ - dir = 4 +"hOz" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "bluecorner" }, -/area/fiorina/station/central_ring) -"hPi" = ( -/obj/structure/stairs/perspective{ +/area/fiorina/station/chapel) +"hOA" = ( +/obj/structure/sink{ dir = 8; - icon_state = "p_stair_ew_full_cap" + pixel_x = -12 }, -/obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, -/area/fiorina/station/park) -"hPq" = ( -/obj/structure/machinery/power/apc, +/area/fiorina/maintenance) +"hOR" = ( +/obj/structure/platform{ + dir = 8 + }, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" + icon_state = "floor_plate" }, -/area/fiorina/station/botany) -"hPu" = ( -/obj/effect/spawner/random/tool, +/area/fiorina/station/park) +"hOW" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" + icon_state = "floorscorched2" + }, +/area/fiorina/station/civres_blue) +"hPs" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, -/area/fiorina/station/power_ring) -"hPL" = ( -/obj/item/tool/wrench, /turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"hPF" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/area/fiorina/tumor/servers) -"hPN" = ( -/obj/item/stack/sheet/metal, /turf/open/floor/prison, -/area/fiorina/station/security) -"hPO" = ( -/obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/area/fiorina/tumor/ice_lab) +"hPW" = ( +/obj/structure/monorail{ + name = "launch track" }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) "hPY" = ( /obj/structure/surface/rack, /turf/open/floor/wood, /area/fiorina/station/chapel) +"hQg" = ( +/obj/item/bedsheet, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/fiorina/station/lowsec) "hQh" = ( /obj/structure/barricade/handrail/type_b{ dir = 8; @@ -12881,123 +13024,70 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"hQj" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"hQk" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, +"hQH" = ( +/obj/structure/closet/crate, /turf/open/floor/plating/prison, -/area/fiorina/oob) -"hQM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"hQQ" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"hQR" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"hQT" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/item/stack/barbed_wire, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"hRb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) +/area/fiorina/station/civres_blue) "hRs" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/corsat{ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) +"hRV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "hRX" = ( /turf/open/gm/river{ color = "#995555"; name = "pool" }, /area/fiorina/station/park) -"hSk" = ( -/obj/structure/toilet, +"hSf" = ( +/obj/item/dogtag, /turf/open/floor/prison{ - icon_state = "sterile_white" + dir = 8; + icon_state = "blue" }, /area/fiorina/station/civres_blue) -"hSl" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"hSo" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/item/tool/crowbar/red, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/medbay) -"hSA" = ( -/obj/item/reagent_container/food/drinks/bottle/tomatojuice, +"hSF" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) -"hSG" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/fiberbush) +/area/fiorina/tumor/civres) "hSH" = ( /obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"hSO" = ( +"hSL" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"hSR" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/fiorina/station/security) +"hTc" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + dir = 1; + icon_state = "whitegreen" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/central_ring) "hTf" = ( /obj/structure/prop/structure_lattice{ dir = 4; @@ -13009,85 +13099,86 @@ icon_state = "squares" }, /area/fiorina/station/telecomm/lz1_cargo) -"hTh" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +"hTm" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"hTo" = ( -/obj/item/smallDelivery, -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 + icon_state = "floor_plate" }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/lz/near_lzII) +"hTr" = ( +/obj/structure/closet, +/obj/effect/spawner/random/gun/shotgun/midchance, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) "hTs" = ( /turf/closed/shuttle/elevator{ dir = 10 }, /area/fiorina/station/civres_blue) -"hTy" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +"hTt" = ( +/turf/open/floor/prison{ + dir = 9; + icon_state = "darkpurple2" }, -/area/fiorina/station/central_ring) +/area/fiorina/tumor/ice_lab) +"hTG" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) "hTM" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"hTN" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" +"hUf" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"hUh" = ( +/turf/open/floor/prison{ + dir = 5; + icon_state = "darkpurple2" }, -/turf/open/space, -/area/fiorina/oob) +/area/fiorina/tumor/ice_lab) "hUi" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"hUj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"hUD" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, -/area/fiorina/station/chapel) -"hUL" = ( -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/item/paper_bin{ - pixel_x = -11; - pixel_y = -5 +"hUH" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 8 }, +/obj/item/storage/box/flashbangs, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "redfull" }, -/area/fiorina/station/medbay) +/area/fiorina/station/security) "hUO" = ( /turf/open/floor/prison/chapel_carpet{ dir = 1; icon_state = "doubleside" }, /area/fiorina/maintenance) +"hUV" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/security) +"hVm" = ( +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/security) "hVu" = ( /obj/item/stack/sheet/metal, /obj/structure/cable/heavyduty{ @@ -13095,13 +13186,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"hVA" = ( -/obj/structure/largecrate/random/case, +"hVz" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/security) "hVG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -13113,270 +13206,198 @@ /turf/closed/wall/prison, /area/fiorina/station/medbay) "hVS" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"hWb" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/security) -"hWi" = ( -/obj/structure/machinery/door/airlock/almayer/maint/autoname{ - dir = 1; - name = "\improper Null Hatch REPLACE ME"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"hWk" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_4" }, -/area/fiorina/lz/near_lzI) -"hWv" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"hWz" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" }, +/area/fiorina/station/central_ring) +"hWB" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/botany) +/area/fiorina/tumor/ice_lab) "hWF" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"hWG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_y = 8 +"hWJ" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" }, +/area/fiorina/station/flight_deck) +"hWU" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"hXF" = ( +/area/fiorina/tumor/ice_lab) +"hXc" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, +/obj/item/paper_bin{ + pixel_y = 7 + }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "bluefull" }, /area/fiorina/station/power_ring) -"hXG" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, +"hXi" = ( +/obj/structure/surface/rack, /turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"hXN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/weapon/gun/pistol/heavy, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"hXX" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" + dir = 10; + icon_state = "floor_plate" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/chapel) +/area/fiorina/station/telecomm/lz1_cargo) "hXZ" = ( /turf/closed/shuttle/ert{ icon_state = "wy2" }, /area/fiorina/station/medbay) -"hYl" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"hYs" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - layer = 2.97; - pixel_y = -14 - }, +"hYK" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/station/disco) -"hYx" = ( -/obj/item/tool/wet_sign, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = -1 +"hYT" = ( +/obj/item/disk/botany, +/turf/open/floor/prison{ + dir = 4; + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) +"hYV" = ( +/obj/structure/prop/resin_prop{ + dir = 4; + icon_state = "chair"; + pixel_y = 6 }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"hYX" = ( -/obj/structure/machinery/bot/medbot, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, -/area/fiorina/station/medbay) -"hZf" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"hZi" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_tram) -"hZG" = ( -/obj/structure/machinery/light/double/blue{ +/area/fiorina/tumor/ice_lab) +"hZp" = ( +/obj/structure/stairs/perspective{ dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/power_ring) -"hZN" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" + dir = 4; + icon_state = "blue" }, -/area/fiorina/maintenance) +/area/fiorina/station/chapel) "hZR" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"iaa" = ( -/turf/open/floor/prison{ +"iah" = ( +/obj/item/ammo_casing{ dir = 8; - icon_state = "cell_stripe" + icon_state = "cartridge_2" }, -/area/fiorina/station/disco) -"iad" = ( -/obj/item/device/multitool, /turf/open/floor/prison{ - dir = 9; - icon_state = "green" + dir = 8; + icon_state = "darkyellow2" }, -/area/fiorina/tumor/civres) -"iaE" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 +/area/fiorina/station/flight_deck) +"iaO" = ( +/turf/open/floor/prison{ + dir = 6; + icon_state = "blue" }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 +/area/fiorina/tumor/servers) +"ibb" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) -"ibl" = ( +/area/fiorina/station/civres_blue) +"ibN" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" + dir = 1; + icon_state = "yellowcorner" }, -/area/fiorina/lz/near_lzI) -"ibz" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +/area/fiorina/station/lowsec) +"icj" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"ibA" = ( -/obj/structure/barricade/metal/wired{ - health = 120; - icon_state = "metal_2" +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"icg" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/area/fiorina/station/medbay) +"ick" = ( +/obj/structure/barricade/wooden, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" + dir = 4; + icon_state = "cell_stripe" }, -/area/fiorina/tumor/ice_lab) -"icu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/mushroom, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +/area/fiorina/station/central_ring) +"icK" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibmid3" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "icS" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/wood, /area/fiorina/station/park) -"icT" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"idb" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) "idi" = ( /obj/item/trash/sosjerky, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"idj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase/inflatable, +"idq" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" + }, /turf/open/floor/prison{ - icon_state = "yellowfull" + dir = 8; + icon_state = "darkyellow2" }, -/area/fiorina/station/lowsec) -"idP" = ( -/obj/structure/platform{ - dir = 1 +/area/fiorina/lz/near_lzI) +"idE" = ( +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"idT" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 }, -/obj/structure/machinery/light/double/blue{ +/obj/structure/barricade/wooden, +/turf/open/floor/prison{ dir = 1; - pixel_y = 21 + icon_state = "whitegreen" }, +/area/fiorina/station/medbay) +"idV" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, /area/fiorina/tumor/ice_lab) -"idS" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"iea" = ( +"ied" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" + dir = 9; + icon_state = "blue" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/servers) "ieu" = ( /obj/structure/platform{ dir = 4 @@ -13393,23 +13414,21 @@ icon_state = "squares" }, /area/fiorina/station/medbay) -"ieA" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"ieJ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ieU" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/tumor/fiberbush) -"ifc" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"ieW" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/barricade/handrail/type_b{ + dir = 4 }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison, +/area/fiorina/tumor/servers) "ifk" = ( /obj/structure/platform_decoration{ dir = 4 @@ -13418,11 +13437,6 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"ifm" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" - }, -/area/fiorina/tumor/civres) "ifp" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/light/double/blue{ @@ -13433,10 +13447,24 @@ /obj/item/tool/wrench, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"ifw" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison, +"ifq" = ( +/obj/item/stock_parts/micro_laser/ultra, +/turf/open/floor/prison{ + dir = 10; + icon_state = "darkpurple2" + }, /area/fiorina/tumor/servers) +"ifs" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"ifI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/surgicaldrill, +/turf/open/floor/prison{ + icon_state = "yellowcorner" + }, +/area/fiorina/station/lowsec) "ifJ" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -13448,58 +13476,19 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"ifL" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"ifN" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"ifP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"igc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"ign" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, +"igA" = ( +/obj/effect/spawner/random/gun/smg, /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/lz/near_lzI) -"igu" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 + dir = 8; + icon_state = "green" }, +/area/fiorina/tumor/civres) +"igD" = ( +/obj/structure/largecrate/supply/medicine/iv, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" + icon_state = "floor_plate" }, -/area/fiorina/station/botany) +/area/fiorina/station/telecomm/lz1_cargo) "igQ" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/rank/janitor, @@ -13507,217 +13496,188 @@ /obj/item/clothing/head/bio_hood/janitor, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"igV" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"ihn" = ( -/obj/item/paper/crumpled, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) -"ihp" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/lungs, +"iht" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"ihv" = ( -/obj/item/stock_parts/matter_bin/super, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/civres_blue) "ihz" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"ihB" = ( +"ihA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/security) -"ihO" = ( -/obj/structure/machinery/computer/prisoner, +/area/fiorina/station/power_ring) +"ihC" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"iif" = ( +/obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/security) -"ihV" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" +/area/fiorina/station/security/wardens) +"iin" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 }, -/area/fiorina/oob) -"iie" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/toxin, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"iiw" = ( -/obj/structure/monorail{ - dir = 6; - name = "launch track" + icon_state = "floor_plate" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"iiz" = ( -/obj/structure/machinery/gibber, +/area/fiorina/station/security) +"iir" = ( +/obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/botany) -"iiY" = ( -/obj/structure/platform_decoration{ - dir = 1 +/area/fiorina/station/research_cells) +"iiE" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "whitepurple" }, +/area/fiorina/station/research_cells) +"iiP" = ( +/obj/item/stack/tile/plasteel, /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/central_ring) -"ijd" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +/area/fiorina/station/flight_deck) "ijs" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"ijt" = ( +"ijv" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"ijP" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" + dir = 4; + icon_state = "yellow" }, -/area/fiorina/station/park) -"ijC" = ( +/area/fiorina/station/lowsec) +"ikq" = ( /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 5; + icon_state = "whitepurple" }, -/area/fiorina/lz/near_lzI) -"ika" = ( +/area/fiorina/station/research_cells) +"ikz" = ( /obj/structure/bed{ icon_state = "abed" }, +/obj/item/toy/beach_ball/holoball, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 6; + icon_state = "whitepurple" }, /area/fiorina/station/research_cells) -"ikt" = ( -/obj/structure/closet/bodybag, +"ikA" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" + }, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"ikF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; - pixel_x = -2; - pixel_y = 10 +/area/fiorina/station/lowsec) +"ilb" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" }, +/area/fiorina/station/park) +"ilh" = ( +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, /turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"ikL" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"ilr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 +/area/fiorina/station/security) +"ilv" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellowcorners2" }, +/area/fiorina/station/telecomm/lz1_cargo) +"ilI" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + pixel_y = -1 }, /turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"ilM" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" + icon_state = "blue_plate" }, +/area/fiorina/station/botany) +"ilX" = ( +/obj/item/stack/folding_barricade, +/obj/structure/surface/table/woodentable/fancy, /turf/open/floor/prison{ - dir = 8; - icon_state = "blue" + dir = 4; + icon_state = "greenfull" }, /area/fiorina/station/chapel) -"img" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"imp" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, +"imn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - dir = 10; - icon_state = "blue" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/telecomm/lz1_tram) "imt" = ( /turf/open/floor/almayer, /area/fiorina/tumor/ship) +"imw" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "imz" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/corsat{ icon_state = "squares" }, /area/fiorina/station/civres_blue) -"imG" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"imH" = ( +/obj/item/tool/shovel/etool, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"imL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -4; + pixel_y = 9 }, -/area/fiorina/station/telecomm/lz1_cargo) -"imI" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"imN" = ( -/obj/structure/filingcabinet/disk, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"ing" = ( -/obj/effect/decal/cleanable/blood/splatter, +/area/fiorina/station/research_cells) +"inh" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkyellow2" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/telecomm/lz1_tram) "inA" = ( /obj/structure/surface/table/reinforced/prison{ flipped = 1 @@ -13725,63 +13685,25 @@ /obj/item/device/cassette_tape/hiphop, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"inO" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"ioc" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"iox" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ioG" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "brflowers_1" }, -/area/fiorina/station/lowsec) -"ioE" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/central_ring) "ioM" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/medbay) -"ioS" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"ioV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"ioW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +"ioP" = ( +/obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/transit_hub) "ipa" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; @@ -13794,37 +13716,22 @@ /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"ipz" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"ipA" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"ipM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/pistol/heavy{ - pixel_y = 7 - }, -/obj/item/ammo_magazine/pistol/heavy{ - pixel_y = 12 - }, +"ipy" = ( +/obj/effect/alien/weeds/node, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"ipV" = ( -/obj/effect/decal/cleanable/blood/oil, +/area/fiorina/tumor/servers) +"ipJ" = ( +/obj/effect/spawner/random/sentry/midchance, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" + icon_state = "kitchen" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/power_ring) +"iqt" = ( +/obj/item/fuelCell, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) "iqB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/clothing/head/helmet/warden{ @@ -13834,6 +13741,35 @@ /obj/structure/machinery/computer/objective, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) +"iqR" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"iqV" = ( +/obj/item/clothing/mask/cigarette/bcigarette, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/research_cells) +"irx" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"iry" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/civres_blue) "irB" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/park) @@ -13844,90 +13780,159 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"irE" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, +"irK" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, /turf/open/floor/prison{ - dir = 4; + dir = 8; icon_state = "darkyellow2" }, /area/fiorina/station/flight_deck) -"irQ" = ( -/obj/structure/machinery/light/double/blue{ +"isi" = ( +/obj/item/tool/soap, +/obj/structure/machinery/shower{ dir = 1; - pixel_y = 21 + pixel_y = -1 + }, +/obj/structure/machinery/shower{ + dir = 8 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "kitchen" + }, +/area/fiorina/station/research_cells) +"isl" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/fiorina/station/civres_blue) -"itd" = ( -/obj/item/tool/lighter/random, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/park) -"itv" = ( -/obj/item/toy/handcard/uno_reverse_yellow, /turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"itK" = ( +/area/fiorina/station/central_ring) +"isB" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, /turf/open/floor/prison{ - icon_state = "platingdmg3" + icon_state = "redfull" }, -/area/fiorina/maintenance) -"itN" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/park) -"itW" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +/area/fiorina/station/security) +"isJ" = ( +/obj/structure/surface/rack, +/obj/item/key, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreen" }, -/area/fiorina/tumor/fiberbush) -"iuz" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"iuC" = ( -/obj/structure/surface/table/reinforced/prison, +/area/fiorina/station/medbay) +"isK" = ( +/obj/structure/inflatable, /turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "yellow" }, /area/fiorina/station/lowsec) -"iuN" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 +"isL" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"isP" = ( +/obj/item/trash/snack_bowl, /turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/fiorina/tumor/servers) -"iuZ" = ( -/obj/item/stack/rods, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 5; + icon_state = "yellow" }, +/area/fiorina/station/lowsec) +"itd" = ( +/obj/item/tool/lighter/random, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/park) +"iti" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"itq" = ( +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/fiorina/station/power_ring) +"itt" = ( +/obj/item/frame/rack, +/obj/item/stack/medical/bruise_pack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) +"itv" = ( +/obj/item/toy/handcard/uno_reverse_yellow, /turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"ivb" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/space/basic, -/area/fiorina/oob) -"ivr" = ( +/area/fiorina/tumor/servers) +"itC" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, /turf/open/floor/prison{ - icon_state = "cell_stripe" + dir = 4; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"itN" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/park) +"itW" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" + }, +/area/fiorina/tumor/fiberbush) +"iuw" = ( +/obj/item/reagent_container/food/drinks/cans/souto/cherry, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/central_ring) +"iuV" = ( +/obj/structure/curtain, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, /area/fiorina/station/power_ring) -"ivw" = ( -/obj/structure/surface/table/reinforced/prison, +"iuW" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" + icon_state = "darkredfull2" }, -/area/fiorina/station/disco) +/area/fiorina/lz/near_lzI) +"iuZ" = ( +/obj/item/stack/rods, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"ivb" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/space/basic, +/area/fiorina/oob) "ivz" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -13936,47 +13941,54 @@ /obj/effect/landmark/corpsespawner/prison_security, /turf/open/floor/wood, /area/fiorina/station/park) -"ivD" = ( -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -2 +"ivB" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"ivL" = ( +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) -"ivK" = ( +/area/fiorina/station/transit_hub) +"ivM" = ( +/obj/structure/bed/chair, /turf/open/floor/prison{ - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/maintenance) -"ivN" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/attachment, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +/area/fiorina/tumor/aux_engi) +"ivR" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/obj/item/bedsheet/ce{ + desc = "It crinkles, aggressively."; + name = "sterile wax sheet" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) "iwf" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"iwi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"iwu" = ( -/obj/item/newspaper, -/turf/open/floor/prison, -/area/fiorina/station/security) -"iwy" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"iwK" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/area/fiorina/station/security) +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/research_cells) "iwT" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -13989,33 +14001,16 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"iwZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Residential Archives" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"ixl" = ( -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"ixn" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +"ixb" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" }, -/area/fiorina/station/medbay) -"ixK" = ( -/obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison{ - icon_state = "greenblue" + dir = 8; + icon_state = "darkbrowncorners2" }, -/area/fiorina/station/botany) +/area/fiorina/station/park) "iyc" = ( /obj/item/stack/rods/plasteel, /turf/open/auto_turf/sand/layer1, @@ -14024,30 +14019,25 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"iyk" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 +"iyq" = ( +/obj/structure/platform_decoration{ + dir = 4 }, /turf/open/floor/prison{ dir = 8; - icon_state = "darkbrown2" + icon_state = "cell_stripe" }, /area/fiorina/station/park) -"iys" = ( -/obj/effect/spawner/random/sentry/midchance, +"iyu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - icon_state = "kitchen" + dir = 8; + icon_state = "cell_stripe" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/botany) "iyS" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -14059,76 +14049,55 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"iyY" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" +"izJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/space_heater{ + pixel_x = -1; + pixel_y = 9 }, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/chapel) -"izh" = ( -/obj/structure/platform{ - dir = 1 + dir = 10; + icon_state = "blue" }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/power_ring) +"izP" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, /turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/fiorina/station/lowsec) -"izN" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 + dir = 10; + icon_state = "sterile_white" }, -/turf/open/floor/prison, -/area/fiorina/station/security) +/area/fiorina/station/medbay) "izZ" = ( /turf/closed/wall/prison, /area/fiorina/station/disco) -"iAq" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"iAr" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) "iAA" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gib5" }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"iAB" = ( +"iAL" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/central_ring) -"iBr" = ( -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"iBM" = ( -/obj/effect/decal/cleanable/blood, +/area/fiorina/tumor/aux_engi) +"iAO" = ( +/obj/item/stack/sheet/wood, /turf/open/floor/prison{ - dir = 5; - icon_state = "greenblue" + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"iBi" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" }, /area/fiorina/station/botany) "iBP" = ( @@ -14136,53 +14105,70 @@ icon_state = "stan25" }, /area/fiorina/oob) -"iCf" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/boxing, +"iCi" = ( +/obj/item/device/flashlight/lamp/tripod, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"iCo" = ( +/obj/structure/machinery/door/poddoor/almayer{ + density = 0; + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"iCC" = ( +/obj/item/storage/donut_box{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + icon_state = "bluefull" }, -/area/fiorina/station/lowsec) -"iCE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/area/fiorina/station/power_ring) +"iCP" = ( +/obj/structure/machinery/disposal, +/obj/item/tool/kitchen/rollingpin{ + pixel_y = 8 }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, +/area/fiorina/station/civres_blue) +"iCR" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"iCN" = ( -/obj/item/tool/wrench, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "bright_clean2" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/power_ring) "iCU" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/prison, /area/fiorina/station/disco) -"iDg" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 +"iDa" = ( +/obj/item/inflatable, +/turf/open/floor/prison{ + dir = 1; + icon_state = "yellow" }, -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 +/area/fiorina/station/lowsec) +"iDo" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "darkbrown2" }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) +/area/fiorina/station/park) "iDq" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -14194,235 +14180,150 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"iDA" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, +"iDE" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"iDK" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" + icon_state = "darkbrown2" }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" +/area/fiorina/tumor/aux_engi) +"iEi" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/area/fiorina/station/botany) -"iDO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/tumor/servers) -"iDQ" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"iEz" = ( +/obj/item/weapon/gun/smg/mp5, +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/chapel) -"iEl" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"iEA" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - icon_state = "greenblue" + icon_state = "darkyellow2" }, -/area/fiorina/station/botany) -"iEF" = ( -/obj/item/tool/kitchen/utensil/fork, +/area/fiorina/station/telecomm/lz1_cargo) +"iFj" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 5; + icon_state = "darkbrown2" }, -/area/fiorina/station/flight_deck) -"iEG" = ( +/area/fiorina/station/park) +"iFu" = ( /obj/structure/sink{ dir = 8; pixel_x = -12 }, -/obj/item/reagent_container/glass/bottle/cyanide{ - pixel_x = -12; - pixel_y = 13 - }, +/obj/item/reagent_container/food/drinks/flask/barflask, /turf/open/floor/prison{ dir = 10; - icon_state = "yellow" + icon_state = "whitepurple" }, -/area/fiorina/station/lowsec) -"iFg" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/research_cells) +"iFD" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "greenblue" +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/botany) -"iFz" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"iGL" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/fiorina/tumor/ice_lab) -"iFB" = ( -/obj/structure/toilet{ +/obj/structure/machinery/light/double/blue{ dir = 8; - pixel_y = 8 + pixel_x = -10; + pixel_y = 13 }, /turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" + dir = 6; + icon_state = "blue" }, -/area/fiorina/station/research_cells) -"iFC" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, +/area/fiorina/station/civres_blue) +"iGW" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) -"iFP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +/area/fiorina/station/power_ring) +"iGX" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"iHn" = ( +/obj/item/frame/toolbox_tiles_sensor, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"iFZ" = ( +/area/fiorina/tumor/civres) +"iHJ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/hugemushroomslice, -/obj/item/reagent_container/food/snacks/hugemushroomslice{ - pixel_y = 3 +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, /turf/open/floor/prison{ - icon_state = "kitchen" + dir = 4; + icon_state = "redcorner" }, /area/fiorina/station/power_ring) -"iGw" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +"iHU" = ( +/obj/structure/barricade/metal{ + dir = 8; + health = 150; + icon_state = "metal_2" }, -/area/fiorina/tumor/civres) -"iGx" = ( -/obj/structure/closet/crate/trashcart, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkpurplefull2" }, -/area/fiorina/tumor/servers) -"iGX" = ( -/obj/effect/landmark/queen_spawn, +/area/fiorina/tumor/ice_lab) +"iIS" = ( +/obj/structure/machinery/constructable_frame, /turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"iHu" = ( -/obj/item/newspaper, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"iHB" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0" +/area/fiorina/station/telecomm/lz2_maint) +"iIX" = ( +/obj/structure/bed/chair, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 }, -/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"iJf" = ( +/turf/open/floor/prison{ + dir = 1; icon_state = "darkyellow2" }, -/area/fiorina/station/telecomm/lz1_cargo) -"iHT" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 +/area/fiorina/lz/near_lzI) +"iJj" = ( +/obj/structure/platform_decoration{ + dir = 1 }, +/obj/structure/inflatable/popped, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "whitegreen" }, -/area/fiorina/station/power_ring) -"iHW" = ( -/obj/effect/decal/cleanable/blood/drip, +/area/fiorina/station/medbay) +"iJC" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/botany) -"iIl" = ( +/area/fiorina/tumor/ice_lab) +"iJE" = ( /obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"iIx" = ( -/obj/effect/decal/cleanable/blood{ - desc = "Watch your step."; - icon_state = "gib6" - }, -/turf/open/floor/prison{ dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"iIE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups, -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup"; - pixel_x = 8; - pixel_y = 16 + icon_state = "p_stair_full" }, /turf/open/floor/prison, -/area/fiorina/station/security) -"iIG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"iIS" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) -"iIZ" = ( -/obj/item/stack/cable_coil, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, /area/fiorina/tumor/servers) "iJF" = ( /obj/structure/surface/table/reinforced/prison, @@ -14434,170 +14335,232 @@ icon_state = "squares" }, /area/fiorina/station/medbay) +"iJG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications/simple, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) +"iJJ" = ( +/obj/item/reagent_container/food/drinks/bottle/orangejuice, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"iJM" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/station/telecomm/lz1_tram) +"iKf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + dir = 8; + icon_state = "green" + }, +/area/fiorina/tumor/civres) "iKg" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"iKs" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/chapel) -"iKy" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +"iKj" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 32 }, -/area/fiorina/station/lowsec) -"iKF" = ( -/obj/structure/inflatable, /turf/open/floor/prison{ icon_state = "floor_plate" }, /area/fiorina/station/transit_hub) -"iKI" = ( -/obj/effect/landmark/survivor_spawner, +"iKs" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/chapel) +"iKC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/prison{ - icon_state = "darkyellowcorners2" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/telecomm/lz1_cargo) -"iKO" = ( -/obj/structure/barricade/wooden{ +/area/fiorina/station/research_cells) +"iKG" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison, +/area/fiorina/station/park) +"iKT" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/obj/structure/platform/kutjevo/smooth{ + dir = 8 }, -/area/fiorina/station/medbay) -"iLl" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +/obj/structure/platform/kutjevo/smooth, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" }, +/turf/open/space/basic, +/area/fiorina/oob) +"iLy" = ( +/obj/item/stack/rods/plasteel, /turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "floorscorched2" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/security) "iLJ" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"iLQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/barbed_wire, +/obj/item/stack/barbed_wire, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/blue, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"iMm" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue" + }, +/area/fiorina/tumor/servers) "iMo" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"iMq" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 8 - }, +"iMF" = ( +/obj/structure/platform, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"iMN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 +/area/fiorina/station/disco) +"iMM" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" }, +/area/fiorina/station/botany) +"iMS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "sterile_white" }, /area/fiorina/tumor/ice_lab) -"iNk" = ( -/obj/structure/largecrate/random, +"iNw" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/civres) -"iNt" = ( -/obj/item/device/whistle, +/area/fiorina/station/park) +"iNO" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/medbay) +/area/fiorina/station/research_cells) "iOa" = ( /obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"iON" = ( -/obj/structure/closet/bombcloset, -/obj/effect/landmark/objective_landmark/medium, +"iOe" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/tumor/aux_engi) -"iOX" = ( +/area/fiorina/station/medbay) +"iOt" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue" + }, +/area/fiorina/station/civres_blue) +"iOE" = ( +/obj/structure/platform, /turf/open/floor/prison{ dir = 4; - icon_state = "blue_plate" + icon_state = "cell_stripe" }, -/area/fiorina/station/botany) -"iOY" = ( +/area/fiorina/station/security) +"iOG" = ( +/obj/item/stack/sheet/wood, /turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" + dir = 10; + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"iPv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 +/area/fiorina/station/telecomm/lz1_cargo) +"iOJ" = ( +/turf/open/floor/prison{ + dir = 5; + icon_state = "yellow" + }, +/area/fiorina/station/disco) +"iPq" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 }, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "yellowfull" }, -/area/fiorina/oob) +/area/fiorina/station/lowsec) "iPx" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"iPz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box/empty, +"iPM" = ( /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/security) -"iQj" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/double/blue{ +/area/fiorina/station/medbay) +"iPV" = ( +/turf/open/floor/prison{ dir = 4; - pixel_x = 10; - pixel_y = -3 + icon_state = "red" + }, +/area/fiorina/lz/near_lzII) +"iPZ" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, /area/fiorina/tumor/civres) -"iQz" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"iQu" = ( +/obj/structure/coatrack, +/obj/item/clothing/head/bowlerhat{ + pixel_y = 15 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"iQH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "blue_plate" +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/station/botany) -"iQJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenfull" }, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) +/area/fiorina/tumor/civres) "iQK" = ( /obj/structure/disposalpipe/broken{ dir = 1 @@ -14605,214 +14568,182 @@ /obj/structure/disposalpipe/broken, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"iQP" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) "iRa" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"iRn" = ( +"iRc" = ( /obj/structure/machinery/light/double/blue{ dir = 8; pixel_x = -10; pixel_y = 13 }, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/tumor/aux_engi) -"iRG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/chunk, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +/area/fiorina/station/medbay) +"iRe" = ( +/obj/item/clothing/suit/chef/classic, +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, +/area/fiorina/station/civres_blue) +"iRy" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/gun/flaregun/full, +/obj/item/storage/belt/gun/flaregun/full, +/obj/item/storage/belt/gun/flaregun/full, +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) "iRH" = ( /obj/item/frame/firstaid_arm_assembly, /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"iRI" = ( -/turf/open/floor/prison{ +"iSf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + pixel_y = 9 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"iSh" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ dir = 4; - icon_state = "whitegreencorner" + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"iSi" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"iSn" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/ice_lab) -"iSg" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" + dir = 1; + icon_state = "yellow" }, -/area/fiorina/station/flight_deck) +/area/fiorina/station/lowsec) "iSu" = ( /turf/closed/wall/prison{ desc = "Come Meet Souto Man!"; icon_state = "rwall_s" }, /area/fiorina/station/park) -"iSw" = ( -/obj/structure/machinery/disposal, +"iSG" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/transit_hub) -"iSR" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/oob) -"iSW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, +/area/fiorina/tumor/servers) +"iSQ" = ( /turf/open/floor/prison{ - icon_state = "redfull" + dir = 4; + icon_state = "darkyellow2" }, -/area/fiorina/station/medbay) -"iTj" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/area/fiorina/station/telecomm/lz1_cargo) +"iTe" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/security) +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "iTm" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/station/civres_blue) -"iTr" = ( -/obj/structure/closet/basketball, -/obj/item/storage/pill_bottle/tramadol/skillless, -/obj/effect/landmark/objective_landmark/science, +"iTw" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"iTs" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 + icon_state = "redfull" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"iTt" = ( -/obj/structure/machinery/landinglight/ds2, +/area/fiorina/station/security) +"iTy" = ( +/obj/structure/machinery/photocopier, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzII) -"iTE" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/flight_deck) -"iTJ" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"iTK" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison, /area/fiorina/station/security) -"iUa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"iUc" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +"iTG" = ( +/obj/vehicle/train/cargo/trolley, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"iUr" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" + dir = 9; + icon_state = "greenfull" }, +/area/fiorina/station/transit_hub) +"iUy" = ( /turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"iUB" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 + dir = 6; + icon_state = "yellow" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) +/area/fiorina/station/lowsec) "iUO" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"iUS" = ( -/obj/structure/barricade/handrail/type_b, -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"iVo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +"iVb" = ( +/obj/structure/largecrate/random, /turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" + dir = 4; + icon_state = "darkyellowfull2" }, +/area/fiorina/station/telecomm/lz1_tram) +"iVt" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison, /area/fiorina/station/park) "iVv" = ( /obj/structure/blocker/invisible_wall, /turf/open/space, /area/fiorina/oob) -"iVT" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"iWe" = ( -/obj/item/trash/candy, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +"iVC" = ( +/obj/structure/platform{ + dir = 1 }, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" + dir = 10; + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"iWp" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" - }, +"iWg" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" + dir = 4; + icon_state = "blue_plate" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/botany) "iWq" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -14824,131 +14755,155 @@ }, /turf/open/space, /area/fiorina/oob) -"iWP" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, +"iWy" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" + dir = 5; + icon_state = "blue" }, -/area/fiorina/station/central_ring) -"iXq" = ( -/obj/item/stool, +/area/fiorina/tumor/servers) +"iWW" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"iXz" = ( +/obj/item/trash/cigbutt, /turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"iXs" = ( -/obj/structure/stairs/perspective{ dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"iXJ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; icon_state = "blue" }, -/area/fiorina/station/civres_blue) -"iXV" = ( -/obj/structure/closet/l3closet/general, +/area/fiorina/station/power_ring) +"iXL" = ( /turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"iYa" = ( +/area/fiorina/station/telecomm/lz1_tram) +"iYq" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" + dir = 10; + icon_state = "darkpurple2" }, -/area/fiorina/station/chapel) -"iYe" = ( -/obj/item/tool/wirecutters, +/area/fiorina/tumor/ice_lab) +"iYI" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" + icon_state = "floor_plate" + }, +/area/fiorina/station/transit_hub) +"iZn" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" }, -/area/fiorina/station/power_ring) -"iYw" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/central_ring) -"iYJ" = ( -/obj/structure/machinery/power/apc, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" + icon_state = "darkpurplefull2" }, -/area/fiorina/tumor/civres) -"iZm" = ( -/obj/item/trash/chips, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +/area/fiorina/tumor/ice_lab) +"iZt" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue" }, +/area/fiorina/station/civres_blue) +"iZA" = ( +/obj/structure/largecrate/random/barrel, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + icon_state = "darkbrownfull2" }, -/area/fiorina/tumor/servers) -"jaB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 +/area/fiorina/station/park) +"iZV" = ( +/turf/open/floor/prison{ + icon_state = "whitepurple" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +/area/fiorina/station/research_cells) +"iZZ" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" }, -/turf/open/space/basic, -/area/fiorina/oob) -"jbg" = ( -/obj/structure/holohoop{ - dir = 1 +/turf/open/floor/prison{ + dir = 6; + icon_state = "darkpurple2" }, +/area/fiorina/tumor/ice_lab) +"jae" = ( +/obj/structure/cargo_container/grant/left, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) -"jbm" = ( -/obj/item/clothing/under/color/orange, +/area/fiorina/station/power_ring) +"jah" = ( +/obj/item/tool/crowbar, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"jal" = ( +/obj/structure/largecrate/supply/explosives/mortar_flare, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"jao" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) +"jas" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/baton, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/research_cells) +"jax" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) +"jay" = ( +/obj/item/reagent_container/food/snacks/boiledegg, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) -"jbq" = ( +/area/fiorina/tumor/aux_engi) +"jaR" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" + dir = 10; + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"jbu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/fiorina/station/security) -"jbF" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null +"jbk" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison{ + dir = 10; + icon_state = "yellow" }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/storage/belt/shotgun, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, +/area/fiorina/station/disco) +"jbx" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "darkredfull2" }, /area/fiorina/station/security) +"jbG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, +/turf/open/floor/prison, +/area/fiorina/lz/console_II) "jbU" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, @@ -14960,69 +14915,115 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"jci" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, +"jcg" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/civres) "jcv" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/wood, /area/fiorina/station/park) -"jcF" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +"jcB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/subspace/amplifier{ + pixel_x = 6; + pixel_y = 3 }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"jcG" = ( +/obj/item/stock_parts/subspace/analyzer{ + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/power_ring) +"jdc" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/item/device/multitool, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) +"jdh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10 }, -/area/fiorina/tumor/servers) -"jdn" = ( -/obj/structure/machinery/vending/snack, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "redfull" + }, +/area/fiorina/station/security) +"jdo" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/head/that{ + pixel_y = 10 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/ice_lab) -"jew" = ( -/obj/structure/largecrate/supply/ammo, -/obj/item/storage/fancy/crayons, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + icon_state = "sterile_white" + }, +/area/fiorina/station/civres_blue) +"jdX" = ( +/obj/item/clothing/under/shorts/red, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/central_ring) +"jeh" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/area/fiorina/station/telecomm/lz1_cargo) -"jeL" = ( /obj/structure/platform{ dir = 1 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) +"jeD" = ( +/obj/structure/machinery/gibber, +/obj/effect/decal/cleanable/blood{ + pixel_x = -6; + pixel_y = 4 }, -/obj/structure/platform_decoration{ - dir = 5 +/turf/open/floor/prison{ + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) +"jeY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel/laser{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/tool/surgery/circular_saw{ + pixel_y = -2 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"jfa" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + name = "\improper Fiorina Engineering Canteen Vendor" }, /turf/open/floor/prison{ icon_state = "bluefull" }, -/area/fiorina/station/chapel) +/area/fiorina/station/power_ring) "jfc" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, @@ -15032,6 +15033,12 @@ name = "pool" }, /area/fiorina/station/park) +"jfk" = ( +/obj/item/ammo_magazine/rifle/mar40/extended, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/lowsec) "jfp" = ( /obj/structure/barricade/handrail, /obj/structure/barricade/handrail{ @@ -15041,113 +15048,92 @@ name = "astroturf" }, /area/fiorina/station/research_cells) -"jft" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 - }, +"jfD" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/flight_deck) -"jfO" = ( +/area/fiorina/station/telecomm/lz1_cargo) +"jfN" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, /turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" + icon_state = "floor_plate" }, -/area/fiorina/station/central_ring) -"jfT" = ( -/obj/structure/platform{ +/area/fiorina/station/civres_blue) +"jgl" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison{ + dir = 9; + icon_state = "whitegreen" }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) +/area/fiorina/station/medbay) "jgu" = ( /turf/closed/wall/prison, /area/fiorina/station/park) -"jgz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"jgN" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/landmark/nightmare{ + insert_tag = "yardbasketball" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" }, -/area/fiorina/station/flight_deck) -"jgL" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/fiorina/station/central_ring) +"jgW" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 }, +/obj/item/bodybag/tarp/reactive, +/obj/item/bodybag/tarp/reactive, +/obj/structure/surface/rack, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 8; + icon_state = "darkyellow2" }, -/area/fiorina/station/botany) -"jhl" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/station/telecomm/lz1_cargo) +"jhi" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/medbay) -"jhp" = ( -/obj/effect/spawner/random/tool, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/transit_hub) +/area/fiorina/tumor/aux_engi) "jhG" = ( /turf/closed/shuttle/ert{ icon_state = "stan25" }, /area/fiorina/tumor/ship) -"jhN" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/item/clothing/suit/armor/bulletproof/badge, +"jit" = ( /turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"jiq" = ( -/obj/structure/lz_sign/prison_sign, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"jis" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 + icon_state = "panelscorched" }, -/obj/structure/platform_decoration{ - dir = 1 +/area/fiorina/tumor/civres) +"jiJ" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_y = 21 }, /turf/open/floor/prison, -/area/fiorina/station/disco) -"jiz" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"jiA" = ( -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) +/area/fiorina/station/chapel) "jiV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/saltshaker, @@ -15161,6 +15147,20 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"jiW" = ( +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/transit_hub) +"jje" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/civres) "jjg" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -15169,112 +15169,108 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"jjp" = ( -/obj/structure/largecrate/random/case, -/obj/item/storage/toolbox/emergency{ - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "jjs" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"jjH" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) "jjM" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) +"jjS" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) "jjW" = ( /turf/open/floor/prison/chapel_carpet{ dir = 1; icon_state = "doubleside" }, /area/fiorina/station/chapel) +"jka" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/power_ring) "jkg" = ( /obj/structure/largecrate/supply, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"jkj" = ( -/obj/structure/largecrate/random/case/small, +"jki" = ( +/obj/item/weapon/twohanded/spear, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "darkpurplefull2" }, -/area/fiorina/tumor/aux_engi) -"jkw" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table/reinforced/prison, +/area/fiorina/station/research_cells) +"jkZ" = ( +/obj/structure/barricade/handrail, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) -"jkW" = ( -/obj/structure/dropship_equipment/fulton_system, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"jlb" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 + icon_state = "darkpurplefull2" }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"jlk" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/aux_engi) -"jln" = ( -/obj/structure/bed{ - icon_state = "abed" +/area/fiorina/station/research_cells) +"jlg" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/card/id/silver/clearance_badge, /turf/open/floor/prison{ dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"jlq" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"jls" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/prison, -/area/fiorina/station/park) -"jlB" = ( -/obj/item/stack/nanopaste, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" + icon_state = "whitegreenfull" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/medbay) +"jlk" = ( +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/tumor/aux_engi) "jlH" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 }, /turf/open/space, /area/fiorina/oob) -"jlI" = ( -/obj/structure/bed/sofa/south/grey, +"jlJ" = ( +/obj/effect/alien/weeds/node, +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, /turf/open/floor/prison, -/area/fiorina/station/disco) -"jlU" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - name = "\improper Fiorina Engineering Canteen Vendor" +/area/fiorina/tumor/aux_engi) +"jlO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10 }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"jlW" = ( +/obj/effect/landmark/static_comms/net_one, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 10; + icon_state = "darkyellow2" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/telecomm/lz1_tram) +"jmm" = ( +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/prison{ + icon_state = "damaged3" + }, +/area/fiorina/station/security) "jmp" = ( /obj/item/ammo_magazine/handful/shotgun/incendiary{ unacidable = 1 @@ -15295,60 +15291,78 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"jmv" = ( -/obj/structure/machinery/shower{ - dir = 4 +"jms" = ( +/obj/structure/bed{ + icon_state = "abed" }, /turf/open/floor/prison{ - icon_state = "kitchen" + dir = 6; + icon_state = "yellow" }, /area/fiorina/station/lowsec) +"jmy" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/aux_engi) "jmG" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/research_cells) -"jna" = ( +"jmM" = ( +/obj/structure/machinery/space_heater, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/research_cells) -"jnd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +/area/fiorina/tumor/ice_lab) +"jmO" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/lz/near_lzII) -"jnm" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 }, -/area/fiorina/station/civres_blue) -"jnQ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.6 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"jmV" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/disco) -"jnU" = ( +/area/fiorina/maintenance) +"jnd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/lz/near_lzII) +"jnr" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" + dir = 4; + icon_state = "greenfull" }, /area/fiorina/tumor/servers) -"jnX" = ( -/obj/item/storage/pill_bottle/spaceacillin/skillless, +"jnO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, /turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/research_cells) +/area/fiorina/tumor/servers) "jor" = ( /obj/effect/spawner/random/attachment, /obj/structure/disposalpipe/segment{ @@ -15372,21 +15386,47 @@ name = "astroturf" }, /area/fiorina/station/park) -"joJ" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"joU" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison, +"joy" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/aux_engi) +"joz" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/transit_hub) +"joD" = ( +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison{ + dir = 5; + icon_state = "darkyellow2" + }, /area/fiorina/lz/near_lzI) +"joE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"joS" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) "jpc" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/wood, /area/fiorina/station/chapel) +"jpl" = ( +/obj/item/clothing/under/CM_uniform, +/turf/open/floor/prison, +/area/fiorina/station/security) "jpt" = ( /obj/structure/machinery/light/small{ dir = 8; @@ -15402,40 +15442,43 @@ icon_state = "plate" }, /area/fiorina/tumor/ship) -"jpx" = ( -/obj/item/ammo_casing{ - icon_state = "casing_8" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) "jpN" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/research_cells) -"jpQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +"jpR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, +/obj/item/folder/red{ + pixel_x = 3; + pixel_y = 5 }, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" + icon_state = "redfull" + }, +/area/fiorina/station/security) +"jpS" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/medbay) -"jpW" = ( -/obj/item/reagent_container/food/drinks/cans/souto/cherry, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/central_ring) +/area/fiorina/tumor/ice_lab) +"jqg" = ( +/obj/structure/platform, +/turf/open/floor/prison{ + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) "jqs" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -15458,129 +15501,136 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) -"jqE" = ( -/obj/item/circuitboard/robot_module/janitor, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"jqM" = ( -/obj/structure/reagent_dispensers/watertank, +"jqH" = ( +/obj/structure/curtain, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" + dir = 8; + icon_state = "cell_stripe" }, -/area/fiorina/station/botany) -"jri" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/obj/structure/machinery/light/double/blue{ +/area/fiorina/station/power_ring) +"jqR" = ( +/obj/structure/barricade/wooden{ dir = 4; - pixel_x = 10; - pixel_y = -3 + pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"jqX" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/tumor/civres) -"jrN" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/tumor/aux_engi) -"jrO" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"jre" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, /turf/open/floor/prison{ - dir = 9; - icon_state = "blue" + dir = 10; + icon_state = "kitchen" }, -/area/fiorina/station/power_ring) -"jrT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/obj/item/clothing/accessory/holobadge/cord, +/area/fiorina/station/civres_blue) +"jrk" = ( /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 4; + icon_state = "darkbrown2" }, -/area/fiorina/lz/near_lzI) -"jsf" = ( -/obj/structure/closet/crate/trashcart, +/area/fiorina/maintenance) +"jrn" = ( +/obj/item/reagent_container/food/snacks/xenoburger, +/obj/item/reagent_container/food/snacks/xenoburger, +/obj/item/reagent_container/food/snacks/xenoburger, +/obj/structure/closet/crate/freezer, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "kitchen" }, -/area/fiorina/station/chapel) -"jsp" = ( -/obj/effect/spawner/random/toolbox, +/area/fiorina/station/power_ring) +"jru" = ( +/obj/structure/machinery/space_heater, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkredfull2" }, -/area/fiorina/tumor/civres) -"jsu" = ( -/obj/structure/surface/table/reinforced/prison{ - dir = 8; - flipped = 1 +/area/fiorina/station/research_cells) +"jrL" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/obj/item/storage/box/ids, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - pixel_x = 14; - pixel_y = 7 +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"jsn" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"jsD" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" }, /turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) -"jsU" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 + dir = 8; + icon_state = "yellow" }, +/area/fiorina/station/lowsec) +"jsE" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/lowsec) "jta" = ( /obj/structure/bed{ icon_state = "psychbed" }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"jtK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, +"jtv" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/maintenance) +"jtF" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/security) -"jtM" = ( -/obj/effect/alien/weeds/node, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) -"juX" = ( -/obj/structure/machinery/door/poddoor/almayer{ - density = 0; - dir = 4 - }, +/area/fiorina/lz/near_lzII) +"jum" = ( +/obj/item/toy/crayon/mime, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/park) -"jva" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" +/area/fiorina/station/power_ring) +"juE" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"jvi" = ( -/obj/structure/closet/wardrobe/orange, +/area/fiorina/station/botany) +"juS" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "floor_plate" }, +/area/fiorina/station/security) +"juW" = ( +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison, /area/fiorina/station/lowsec) "jvm" = ( /obj/item/storage/surgical_tray, @@ -15593,6 +15643,17 @@ icon_state = "squares" }, /area/fiorina/station/medbay) +"jvp" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/tumor/ice_lab) +"jvu" = ( +/obj/item/stool, +/turf/open/floor/prison, +/area/fiorina/station/disco) "jvy" = ( /mob/living/simple_animal/hostile/carp{ desc = "He is late for work."; @@ -15600,6 +15661,28 @@ }, /turf/open/space, /area/fiorina/oob) +"jvB" = ( +/obj/structure/closet/firecloset, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison{ + dir = 9; + icon_state = "darkbrown2" + }, +/area/fiorina/maintenance) +"jvE" = ( +/obj/structure/inflatable, +/turf/open/floor/prison{ + dir = 5; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"jvG" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) "jwc" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -15610,42 +15693,50 @@ "jwK" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzII) -"jxc" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"jxm" = ( -/obj/item/trash/hotdog, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"jyo" = ( -/obj/structure/machinery/light/double/blue, +"jxa" = ( +/obj/structure/bed/chair, /turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" + icon_state = "bluefull" }, /area/fiorina/station/power_ring) -"jyv" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"jxy" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/lowsec) +"jxN" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security) -"jyF" = ( -/obj/structure/sink{ +/area/fiorina/station/transit_hub) +"jxY" = ( +/turf/open/floor/prison{ + icon_state = "bluecorner" + }, +/area/fiorina/station/civres_blue) +"jya" = ( +/turf/open/floor/prison{ dir = 8; - pixel_x = -12 + icon_state = "greenbluecorner" + }, +/area/fiorina/station/botany) +"jyc" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/prison{ dir = 10; - icon_state = "yellow" + icon_state = "sterile_white" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/research_cells) +"jyK" = ( +/turf/open/floor/prison{ + dir = 5; + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) "jyM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/plating/prison, @@ -15654,70 +15745,89 @@ /obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"jyQ" = ( -/obj/item/device/flashlight, -/turf/open/floor/plating/plating_catwalk/prison, +"jyR" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"jzY" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"jAt" = ( +/obj/structure/platform/shiva, +/turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"jyY" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/tumor/servers) -"jzN" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"jzP" = ( +"jAx" = ( /turf/open/floor/prison{ - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) -"jAF" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" + dir = 1; + icon_state = "cell_stripe" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/area/fiorina/station/security) +"jAy" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_1" }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, /area/fiorina/station/medbay) "jAW" = ( /obj/structure/largecrate/supply/ammo, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"jBn" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"jBj" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "darkyellow2" }, +/area/fiorina/lz/near_lzI) +"jBK" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"jBv" = ( -/obj/structure/bed/sofa/vert/grey/bot{ - pixel_y = 8 +"jBL" = ( +/obj/item/weapon/harpoon, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/disco) "jBQ" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/wood, /area/fiorina/station/park) -"jCe" = ( +"jBS" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, /turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" + icon_state = "bluefull" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/chapel) +"jCl" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "damaged2" + }, +/area/fiorina/station/security) +"jCp" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/lz/near_lzI) "jCt" = ( /obj/structure/machinery/light/small{ dir = 4; @@ -15744,25 +15854,47 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"jCO" = ( -/obj/structure/platform{ - dir = 8 +"jCQ" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" +/area/fiorina/station/medbay) +"jCU" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"jDe" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison{ + dir = 9; + icon_state = "whitepurple" }, +/area/fiorina/station/research_cells) +"jDj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/disco) +/area/fiorina/tumor/aux_engi) +"jDk" = ( +/obj/item/stack/rods, +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue" + }, +/area/fiorina/station/chapel) +"jDL" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) "jDR" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -15770,193 +15902,192 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"jEa" = ( -/obj/effect/landmark/corpsespawner/engineer, +"jDX" = ( +/obj/item/trash/burger, /turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" + dir = 4; + icon_state = "greenfull" }, -/area/fiorina/station/power_ring) -"jEr" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"jEy" = ( -/obj/structure/machinery/iv_drip, +/area/fiorina/tumor/civres) +"jEb" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 4; + icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"jEz" = ( -/obj/item/device/flashlight/lamp/tripod, +"jEf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/civres) +/area/fiorina/tumor/aux_engi) +"jEl" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/tumor/servers) +"jEC" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"jEG" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/tumor/aux_engi) "jEK" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/wood, /area/fiorina/station/research_cells) -"jEQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/prison, -/area/fiorina/lz/console_II) -"jET" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, +"jES" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"jFh" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" + dir = 10; + icon_state = "whitegreenfull" }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) +/area/fiorina/tumor/ice_lab) "jFl" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"jFz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +"jFN" = ( +/obj/item/explosive/grenade/high_explosive/m15, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + icon_state = "panelscorched" }, /area/fiorina/tumor/aux_engi) -"jFD" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/ice_lab) "jFO" = ( /obj/effect/landmark/nightmare{ insert_tag = "poolparty" }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/park) -"jFP" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) -"jGf" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"jGd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/telecomm/lz1_cargo) -"jGs" = ( -/obj/structure/toilet{ +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"jGj" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"jGA" = ( +/turf/open/floor/prison, +/area/fiorina/station/botany) +"jGL" = ( +/obj/structure/machinery/light/double/blue{ dir = 8; - pixel_y = 8 + pixel_x = -10; + pixel_y = 13 }, -/obj/structure/blocker/invisible_wall, /turf/open/floor/prison{ - dir = 5; + dir = 8; icon_state = "whitepurple" }, -/area/fiorina/oob) -"jGz" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +/area/fiorina/station/research_cells) +"jGP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 }, -/obj/effect/spawner/random/tool, -/obj/item/clothing/gloves/combat, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/station/research_cells) -"jGC" = ( -/obj/structure/platform{ - dir = 8 +/area/fiorina/station/flight_deck) +"jGV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 8; + pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/station/power_ring) -"jHj" = ( -/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"jHp" = ( -/obj/structure/bed/sofa/south/grey/left, +/area/fiorina/station/lowsec) +"jIm" = ( +/obj/item/frame/firstaid_arm_assembly, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + icon_state = "bluefull" }, -/area/fiorina/station/transit_hub) -"jHz" = ( +/area/fiorina/station/civres_blue) +"jIZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkredfull2" + }, +/area/fiorina/station/research_cells) +"jJb" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"jJe" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 }, -/area/fiorina/tumor/servers) -"jHC" = ( -/obj/structure/surface/rack, -/obj/item/tool/lighter, /turf/open/floor/prison, +/area/fiorina/station/disco) +"jJh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/objective, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, /area/fiorina/tumor/servers) -"jHD" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"jJF" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_y = 21 }, -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 17; + pixel_y = 21 }, -/area/fiorina/station/botany) -"jHU" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"jHV" = ( -/obj/item/paper, -/obj/structure/inflatable/door, +"jJG" = ( +/obj/item/stack/sheet/wood/medium_stack, +/obj/item/stack/sheet/wood/medium_stack, +/obj/structure/surface/rack, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/research_cells) -"jIw" = ( +/area/fiorina/maintenance) +"jJM" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, +/obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/security) -"jIz" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"jJb" = ( -/obj/structure/barricade/wooden{ - dir = 8 + icon_state = "yellowfull" }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) +/area/fiorina/station/disco) "jJS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/grape{ @@ -15984,30 +16115,32 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"jJZ" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) -"jKv" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"jJT" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/fiorina/station/security) +"jKb" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/telecomm/lz1_cargo) -"jKz" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison, +/area/fiorina/station/disco) +"jKm" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison, +/area/fiorina/station/security) +"jKG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) "jKI" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -16022,37 +16155,66 @@ }, /turf/open/space, /area/fiorina/oob) +"jKL" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean_marked" + }, +/area/fiorina/station/power_ring) "jKR" = ( /obj/structure/machinery/shower{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ice_lab) -"jLe" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"jLC" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" - }, +"jLs" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" + dir = 10; + icon_state = "floor_plate" }, /area/fiorina/station/telecomm/lz1_cargo) -"jLD" = ( -/obj/structure/platform{ - dir = 1 +"jLF" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison{ + dir = 5; + icon_state = "green" }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - layer = 3.5 +/area/fiorina/station/chapel) +"jLK" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + icon_state = "platingdmg1" }, +/area/fiorina/station/security) +"jLN" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/telecomm/lz1_cargo) +"jLS" = ( +/obj/structure/closet/bombcloset, +/obj/effect/spawner/random/gun/rifle/midchance, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison{ + dir = 6; + icon_state = "darkyellow2" + }, +/area/fiorina/station/flight_deck) +"jMe" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/tumor/ice_lab) "jMf" = ( /obj/item/stack/tile/plasteel{ pixel_x = 5; @@ -16060,22 +16222,24 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"jMh" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/medbay) "jMk" = ( /obj/item/tool/screwdriver, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"jMv" = ( -/obj/item/tool/wrench, +"jMz" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"jMA" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/disco) "jMH" = ( /obj/structure/barricade/metal/wired{ dir = 4 @@ -16084,16 +16248,11 @@ icon_state = "plate" }, /area/fiorina/tumor/ship) -"jNi" = ( -/obj/item/ammo_casing{ - dir = 2; - icon_state = "casing_5" - }, +"jNa" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "darkpurple2" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/central_ring) "jNl" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Straight" @@ -16101,105 +16260,84 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"jNw" = ( +"jNA" = ( +/obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/fiorina/tumor/servers) -"jOb" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"jOd" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 + dir = 1; + icon_state = "green" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/area/fiorina/station/transit_hub) +"jOr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 }, -/area/fiorina/station/flight_deck) -"jOv" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - dir = 5; - icon_state = "blue" + dir = 10; + icon_state = "kitchen" }, -/area/fiorina/station/power_ring) -"jOY" = ( +/area/fiorina/station/civres_blue) +"jOt" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 11; + pixel_y = 14 }, -/obj/item/stack/cable_coil, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security) -"jPK" = ( -/turf/closed/shuttle/elevator{ - dir = 6 - }, -/area/fiorina/station/telecomm/lz1_cargo) -"jPM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +/area/fiorina/tumor/fiberbush) +"jOJ" = ( +/obj/structure/machinery/space_heater, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"jPY" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Residential Apartment" + icon_state = "whitegreenfull" }, +/area/fiorina/station/medbay) +"jOO" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 1; + icon_state = "darkyellow2" }, -/area/fiorina/tumor/servers) -"jQc" = ( -/obj/item/organ/lungs, -/obj/effect/decal/cleanable/blood, +/area/fiorina/station/flight_deck) +"jOW" = ( +/obj/item/trash/eat, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"jQs" = ( +/area/fiorina/lz/near_lzI) +"jPz" = ( +/obj/effect/alien/weeds/node, /turf/open/floor/prison{ - dir = 8; + dir = 5; icon_state = "whitegreen" }, -/area/fiorina/station/medbay) -"jQy" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/area/fiorina/tumor/ice_lab) +"jPK" = ( +/turf/closed/shuttle/elevator{ + dir = 6 }, -/area/fiorina/tumor/civres) -"jQS" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null +/area/fiorina/station/telecomm/lz1_cargo) +"jPO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/security) +/area/fiorina/station/telecomm/lz1_cargo) "jRf" = ( /obj/structure/girder/displaced, /turf/open/floor/plating/prison, @@ -16220,104 +16358,74 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"jRC" = ( +"jRp" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, /obj/structure/platform{ dir = 4 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"jRF" = ( -/obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) +/area/fiorina/station/disco) "jRL" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/disco) -"jSc" = ( -/obj/structure/bed{ - icon_state = "abed" +"jRR" = ( +/obj/structure/inflatable, +/turf/open/floor/prison{ + icon_state = "yellowfull" }, -/obj/item/reagent_container/food/drinks/flask/marine, +/area/fiorina/station/lowsec) +"jSC" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" + dir = 8; + icon_state = "darkyellow2" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/telecomm/lz1_cargo) "jSD" = ( /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"jSE" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/waffles, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"jSU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"jTe" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/area/fiorina/station/medbay) -"jSZ" = ( -/obj/structure/barricade/wooden{ - dir = 1 +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"jTo" = ( -/obj/item/prop/helmetgarb/gunoil, +/area/fiorina/tumor/fiberbush) +"jTk" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"jTD" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, +/area/fiorina/station/telecomm/lz1_tram) +"jTG" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 9; + icon_state = "whitegreen" }, /area/fiorina/station/medbay) "jTJ" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/lowsec) -"jTN" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"jUa" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +"jUp" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/storage/briefcase, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "darkredfull2" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/lz/near_lzI) "jUs" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -16325,70 +16433,90 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"jUG" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"jUP" = ( -/obj/item/trash/c_tube, +"jUy" = ( +/obj/structure/machinery/sensortower, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"jVj" = ( -/obj/structure/bed/chair, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/area/fiorina/tumor/civres) +"jUz" = ( +/obj/structure/surface/table/reinforced/prison{ + flipped = 1 }, -/area/fiorina/station/disco) -"jVt" = ( -/obj/structure/machinery/vending/coffee, +/obj/item/reagent_container/food/snacks/eat_bar, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, -/area/fiorina/tumor/ice_lab) -"jVE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer{ - icon_state = "security_det"; - name = "Shuttle control deck"; - pixel_y = 6 +/area/fiorina/station/medbay) +"jUB" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitegreen" }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"jVM" = ( +/area/fiorina/station/medbay) +"jUI" = ( /turf/open/floor/prison{ - icon_state = "green" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/botany) -"jWg" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/area/fiorina/station/park) +"jUK" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/tumor/aux_engi) -"jWk" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/fiorina/station/telecomm/lz1_tram) +"jVC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 }, /turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/oob) +"jVE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer{ + icon_state = "security_det"; + name = "Shuttle control deck"; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"jVH" = ( +/turf/open/floor/prison{ + dir = 5; + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) +"jVQ" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) +"jVW" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ icon_state = "blue" }, /area/fiorina/station/power_ring) +"jVZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, +/turf/open/floor/prison{ + dir = 6; + icon_state = "blue" + }, +/area/fiorina/station/civres_blue) "jWy" = ( /obj/structure/barricade/handrail, /obj/structure/barricade/handrail{ @@ -16398,32 +16526,10 @@ name = "astroturf" }, /area/fiorina/station/research_cells) -"jWE" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"jWI" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"jWY" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/fancy/cigar/tarbacks, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +"jWB" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/fiorina/station/security) "jXj" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, @@ -16432,77 +16538,109 @@ /obj/structure/girder/reinforced, /turf/open/floor/almayer, /area/fiorina/tumor/ship) +"jXv" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/prison, +/area/fiorina/station/park) +"jXx" = ( +/turf/open/floor/prison{ + icon_state = "yellow" + }, +/area/fiorina/station/central_ring) "jXz" = ( /turf/closed/wall/prison, /area/fiorina/tumor/servers) -"jXV" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"jXZ" = ( -/turf/closed/shuttle/elevator, -/area/fiorina/tumor/aux_engi) -"jYm" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"jXB" = ( +/obj/structure/machinery/computer/cameras{ + network = list("omega") }, -/area/fiorina/station/lowsec) -"jYn" = ( -/obj/structure/platform, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/transit_hub) -"jYs" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"jYt" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 +/area/fiorina/tumor/aux_engi) +"jXC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/mushroom, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"jXD" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" + dir = 1; + icon_state = "whitepurple" }, -/area/fiorina/lz/near_lzI) -"jYK" = ( +/area/fiorina/station/research_cells) +"jXO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/prison{ dir = 10; - icon_state = "kitchen" + icon_state = "whitegreenfull" }, -/area/fiorina/station/civres_blue) -"jYM" = ( -/obj/item/trash/chips, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/area/fiorina/tumor/ice_lab) +"jXQ" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/research_cells) -"jYU" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" }, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/telecomm/lz1_tram) -"jYV" = ( +/area/fiorina/station/medbay) +"jXZ" = ( +/turf/closed/shuttle/elevator, +/area/fiorina/tumor/aux_engi) +"jYd" = ( /obj/structure/stairs/perspective{ - dir = 8; + dir = 4; icon_state = "p_stair_sn_full_cap" }, /obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison, +/turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"jYo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, +/turf/open/floor/prison{ + dir = 10; + icon_state = "greenblue" + }, +/area/fiorina/station/botany) +"jYs" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"jYB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) +"jYS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 1 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/lz/near_lzII) +"jZb" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, +/area/fiorina/station/central_ring) "jZc" = ( /obj/structure/disposalpipe/segment{ icon_state = "delivery_outlet"; @@ -16512,43 +16650,58 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"jZk" = ( -/obj/structure/largecrate/random/case/double, +"jZx" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + icon_state = "floor_plate" + }, +/area/fiorina/station/central_ring) +"jZR" = ( +/obj/item/frame/rack, +/obj/structure/barricade/handrail/type_b{ + dir = 1 }, -/area/fiorina/station/telecomm/lz1_tram) -"kag" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/lowsec) +"kau" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stool{ + pixel_y = 12 }, -/area/fiorina/station/power_ring) -"kat" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "green" + icon_state = "yellowfull" }, -/area/fiorina/station/botany) -"kaw" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/area/fiorina/station/lowsec) +"kaB" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, -/obj/structure/platform, +/obj/structure/closet/bombcloset, /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, +/area/fiorina/station/flight_deck) +"kaC" = ( +/obj/item/stack/cable_coil/random, +/turf/open/floor/prison{ + icon_state = "redfull" + }, /area/fiorina/station/security) -"kaF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, +"kaH" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" + dir = 6; + icon_state = "blue" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/power_ring) "kaO" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -16564,12 +16717,14 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/aux_engi) -"kbh" = ( -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"kbg" = ( +/obj/structure/machinery/computer/drone_control, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/fiorina/station/lowsec) +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "kbi" = ( /obj/item/ammo_casing{ dir = 6; @@ -16578,48 +16733,130 @@ /obj/effect/spawner/random/gun/rifle/midchance, /turf/open/floor/wood, /area/fiorina/station/park) -"kbj" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"kbA" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/telecomm/lz1_cargo) -"kbo" = ( -/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" + dir = 4; + icon_state = "blue_plate" }, /area/fiorina/station/botany) -"kbt" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop{ - pixel_x = 7; - pixel_y = -1 - }, -/obj/item/toy/bikehorn/rubberducky{ - desc = "He's already fed up with your bullshit face."; - name = "Dug the duck"; - pixel_x = -3; - pixel_y = 8 +"kbO" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreen" }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +/area/fiorina/tumor/ice_lab) "kbT" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"kdq" = ( -/obj/structure/machinery/vending/hydronutrients, +"kcn" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft" + }, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) +"kcw" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/tumor/servers) +"kcz" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 }, -/area/fiorina/station/botany) -"kds" = ( -/obj/item/clothing/suit/storage/hazardvest, /turf/open/floor/prison, +/area/fiorina/station/power_ring) +"kcO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 11 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"kcP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/disco) +"kdb" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/fiorina/station/medbay) +"kdk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/phone{ + pixel_x = 6; + pixel_y = -15 + }, +/obj/item/phone{ + pixel_y = 7 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/security) +"kdo" = ( +/obj/structure/platform_decoration, +/obj/structure/inflatable, +/turf/open/floor/prison{ + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"kdw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "So uh yeah, about that cat..."; + icon_state = "mwbloodyo"; + pixel_y = 6 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, /area/fiorina/station/civres_blue) +"kdG" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue" + }, +/area/fiorina/tumor/servers) "kdK" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/carpet, @@ -16628,76 +16865,84 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzI) -"kfL" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison, -/area/fiorina/station/security) -"kfW" = ( +"keo" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"keF" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/clothing/mask/cigarette, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_y = 8 +/obj/item/device/flash, +/turf/open/floor/prison{ + icon_state = "redfull" }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 +/area/fiorina/station/security) +"keL" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"kfY" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"kgp" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - icon_state = "yellow" + icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) -"kgG" = ( +/area/fiorina/station/security/wardens) +"keV" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/spawner/random/gun/rifle, /turf/open/floor/prison{ dir = 4; - icon_state = "darkyellow2" + icon_state = "greenfull" }, -/area/fiorina/station/telecomm/lz1_cargo) -"kgN" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/area/fiorina/station/chapel) +"kfl" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/fiorina/station/lowsec) -"kgQ" = ( -/obj/item/stool, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"kfA" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"kgT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper/carbon, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + icon_state = "bluefull" }, +/area/fiorina/station/power_ring) +"kfF" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/metal, /turf/open/floor/prison{ dir = 10; icon_state = "sterile_white" }, -/area/fiorina/station/medbay) -"kgY" = ( +/area/fiorina/station/research_cells) +"kfW" = ( /obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/clothing/mask/cigarette, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_y = 8 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"kge" = ( +/obj/effect/spawner/random/gun/rifle/highchance, /turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" + dir = 8; + icon_state = "darkyellow2" }, -/area/fiorina/station/botany) -"khd" = ( -/obj/effect/spawner/random/tool, +/area/fiorina/lz/near_lzI) +"kgP" = ( +/obj/item/tool/wrench, /turf/open/floor/prison{ - icon_state = "darkbrown2" + icon_state = "floor_plate" }, /area/fiorina/tumor/aux_engi) "khu" = ( @@ -16711,173 +16956,160 @@ icon_state = "squares" }, /area/fiorina/station/civres_blue) -"khw" = ( -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"khY" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"kid" = ( -/obj/item/ammo_casing{ - icon_state = "casing_8" - }, -/obj/structure/surface/table/reinforced/prison{ - dir = 4; - flipped = 1 +"kic" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 5; + icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"kii" = ( -/obj/effect/alien/weeds/node, +"kik" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" + dir = 4; + icon_state = "cell_stripe" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/security) "kil" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"kiR" = ( -/obj/item/tool/weldpack, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"kiT" = ( -/obj/item/stack/sheet/metal, +"kiq" = ( /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "damaged2" }, -/area/fiorina/station/research_cells) -"kjt" = ( -/turf/open/floor/prison{ +/area/fiorina/station/central_ring) +"kis" = ( +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"kjP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/northleft, -/obj/structure/machinery/computer/emails{ - pixel_y = 4 + pixel_y = 21 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) -"kjT" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/organic/grass{ - name = "astroturf" +/turf/open/floor/prison{ + icon_state = "yellowfull" }, -/area/fiorina/station/park) -"kjX" = ( -/obj/structure/bed/chair/comfy, +/area/fiorina/station/lowsec) +"kiE" = ( +/obj/structure/bed/chair, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/security) -"kka" = ( -/obj/item/stack/sheet/metal{ - amount = 5 +/area/fiorina/station/medbay) +"kiW" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" }, /turf/open/floor/prison{ - dir = 1; icon_state = "darkyellow2" }, -/area/fiorina/lz/near_lzI) -"kke" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" +/area/fiorina/station/telecomm/lz1_cargo) +"kjo" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison{ + icon_state = "darkyellow2" }, +/area/fiorina/lz/near_lzI) +"kjz" = ( +/obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 8; + icon_state = "darkyellow2" }, -/area/fiorina/station/medbay) -"kkU" = ( -/obj/structure/monorail{ - name = "launch track" +/area/fiorina/station/flight_deck) +"kjA" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"kjP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/northleft, +/obj/structure/machinery/computer/emails{ + pixel_y = 4 }, -/turf/open/space/basic, -/area/fiorina/oob) -"kle" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"kjT" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/organic/grass{ + name = "astroturf" }, -/obj/structure/platform{ - dir = 8 +/area/fiorina/station/park) +"kkk" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/platform_decoration{ - dir = 5 +/turf/open/floor/prison{ + dir = 9; + icon_state = "whitegreen" }, +/area/fiorina/station/medbay) +"kky" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8; + icon_state = "whitegreen" }, -/area/fiorina/station/botany) -"klh" = ( -/obj/structure/machinery/vending/security, +/area/fiorina/tumor/ice_lab) +"klb" = ( +/obj/item/tool/wirecutters, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "bluecorner" }, -/area/fiorina/station/security) +/area/fiorina/station/power_ring) +"klg" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison, +/area/fiorina/station/disco) "klp" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; opacity = 0 }, /area/fiorina/tumor/ship) -"klt" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, +"klv" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "kitchen" + dir = 5; + icon_state = "yellow" }, -/area/fiorina/station/power_ring) -"klB" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) +/area/fiorina/station/disco) "klC" = ( /obj/structure/surface/table/reinforced/prison{ flipped = 1 }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"klN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" +"klG" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/power_ring) -"kmm" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"klL" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" + dir = 4; + icon_state = "blue" }, -/area/fiorina/station/disco) -"kmn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 +/area/fiorina/station/chapel) +"kmB" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "cell_stripe" }, +/area/fiorina/station/telecomm/lz1_tram) +"kmE" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkbrown2" }, -/area/fiorina/station/security/wardens) +/area/fiorina/station/park) "kmL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ dir = 1; @@ -16893,70 +17125,58 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"knb" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) +"kng" = ( +/obj/item/tool/stamp, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) "knh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"kny" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"knW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 8 +"knt" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibup1" }, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreenfull" }, -/area/fiorina/tumor/ice_lab) -"knY" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - indestructible = 1; - name = "launch bay door" +/area/fiorina/station/medbay) +"knu" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/oob) -"kob" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_2" + dir = 1; + icon_state = "darkbrown2" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/station/park) +"knv" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/station/central_ring) -"kok" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" + dir = 6; + icon_state = "darkbrown2" }, -/area/fiorina/station/transit_hub) -"kon" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/area/fiorina/station/park) +"kny" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 5; + pixel_y = 5 }, -/area/fiorina/maintenance) -"kor" = ( -/obj/structure/bed/chair{ +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"kov" = ( +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; dir = 4 }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +/turf/open/floor/prison{ + icon_state = "platingdmg3" + }, +/area/fiorina/station/security) "kow" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -16974,45 +17194,23 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"koH" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"koK" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/structure/closet/bombcloset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"koY" = ( -/obj/structure/platform_decoration{ +"koV" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 }, -/area/fiorina/station/medbay) -"kpe" = ( -/obj/item/device/flashlight/lamp/tripod, +/obj/structure/closet/emcloset, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"kpm" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" + dir = 1; + icon_state = "green" }, -/area/fiorina/station/medbay) +/area/fiorina/station/transit_hub) "kpp" = ( /obj/item/trash/popcorn, /obj/structure/cable/heavyduty{ @@ -17020,74 +17218,55 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"kpq" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"kpu" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/explosive/mine/pmc, -/obj/effect/spawner/random/gun/smg, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"kpv" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +"kpN" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"kpH" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" + icon_state = "darkpurplefull2" }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/area/fiorina/station/research_cells) +"kqe" = ( +/obj/structure/monorail{ + name = "launch track" }, -/area/fiorina/station/medbay) -"kpR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 +/obj/structure/platform{ + dir = 8; + layer = 2.5 }, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) +"kqr" = ( +/obj/item/ammo_magazine/smg/mp5, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/chapel) -"kqy" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" + dir = 8; + icon_state = "darkyellow2" }, +/area/fiorina/station/telecomm/lz1_cargo) +"kqz" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/medbay) "kqC" = ( /turf/closed/wall/prison, /area/fiorina/station/lowsec) -"kqJ" = ( -/obj/item/trash/used_stasis_bag, +"kqF" = ( +/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" + icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzI) -"krb" = ( -/obj/structure/bookcase/manuals/engineering, +/area/fiorina/station/power_ring) +"kqP" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "yellowfull" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/lowsec) "krn" = ( /obj/structure/barricade/handrail/type_b{ dir = 8; @@ -17097,35 +17276,51 @@ name = "astroturf" }, /area/fiorina/tumor/servers) -"krE" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"krp" = ( +/obj/item/ammo_casing{ + icon_state = "casing_9_1" }, /turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" + dir = 8; + icon_state = "yellowcorner" }, -/area/fiorina/station/flight_deck) -"ksu" = ( -/obj/structure/machinery/light/double/blue, +/area/fiorina/station/lowsec) +"krr" = ( +/obj/structure/machinery/filtration/console, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"krG" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"krQ" = ( +/obj/item/trash/popcorn, /turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" + icon_state = "floor_plate" }, /area/fiorina/station/disco) -"ksE" = ( -/obj/structure/inflatable, +"krT" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "yellow" + icon_state = "darkbrown2" }, -/area/fiorina/station/lowsec) -"ksL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" +/area/fiorina/maintenance) +"ksk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, /area/fiorina/station/security) "ksV" = ( /obj/structure/barricade/handrail/type_b{ @@ -17136,45 +17331,80 @@ name = "astroturf" }, /area/fiorina/tumor/servers) -"ksY" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"ktq" = ( -/obj/structure/machinery/light/double/blue, +"kte" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/rollingpin, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "kitchen" }, -/area/fiorina/station/park) -"ktv" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/prison, -/area/fiorina/station/security) -"ktC" = ( -/obj/item/explosive/grenade/high_explosive/frag, +/area/fiorina/station/power_ring) +"kty" = ( +/obj/structure/prop/ice_colony/surveying_device, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 4; + icon_state = "blue" }, -/area/fiorina/station/security) -"kue" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 4 +/area/fiorina/tumor/servers) +"ktD" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/transit_hub) +"ktI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/poster, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, -/area/fiorina/tumor/servers) -"kvg" = ( +/area/fiorina/station/research_cells) +"kul" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "greenblue" + }, +/area/fiorina/station/botany) +"kur" = ( +/obj/item/trash/chips, /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; - pixel_y = -3 + pixel_y = 13 }, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 9; + icon_state = "greenfull" }, /area/fiorina/tumor/servers) +"kuS" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/obj/item/bedsheet/ce{ + desc = "It crinkles, aggressively."; + name = "sterile wax sheet" + }, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/medbay) +"kuT" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_3" + }, +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" + }, +/area/fiorina/station/central_ring) +"kvd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/golden_cup, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/power_ring) "kvh" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -17190,29 +17420,76 @@ name = "astroturf" }, /area/fiorina/station/park) -"kvu" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/effect/decal/cleanable/blood, +"kvm" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) +"kvn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/energy/taser, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + icon_state = "redfull" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/security) "kvx" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"kvT" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 +"kwa" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/obj/item/organ/eyes, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"kwm" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, +/area/fiorina/station/flight_deck) +"kwv" = ( +/obj/item/reagent_container/food/drinks/sillycup, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"kwy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/hugemushroomslice, +/obj/item/reagent_container/food/snacks/hugemushroomslice{ + pixel_y = 3 }, /turf/open/floor/prison{ - icon_state = "blue" + icon_state = "kitchen" }, -/area/fiorina/station/chapel) +/area/fiorina/station/power_ring) +"kwK" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -5 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) "kwL" = ( /obj/item/fuelCell, /obj/structure/platform, @@ -17227,89 +17504,61 @@ /obj/structure/closet/firecloset, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"kwZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) "kxf" = ( /obj/item/stack/sheet/wood, /turf/open/floor/wood, /area/fiorina/station/park) -"kxl" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"kxo" = ( +/obj/structure/sign/poster{ + icon_state = "poster10"; + pixel_x = 32 }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"kxM" = ( +/obj/item/stack/rods, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) + dir = 4; + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) "kxQ" = ( /obj/structure/prop/resin_prop{ icon_state = "rack" }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"kxU" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/fiorina/station/transit_hub) -"kyd" = ( -/obj/structure/machinery/vending/cola, +"kxV" = ( +/obj/item/device/motiondetector, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security/wardens) -"kyh" = ( -/obj/structure/platform_decoration{ - dir = 4 +/area/fiorina/station/disco) +"kye" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -5 }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"kyF" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "blue" + dir = 10; + icon_state = "whitegreen" }, -/area/fiorina/station/civres_blue) -"kyU" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 +/area/fiorina/station/medbay) +"kyl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_y = 13 }, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/research_cells) +/area/fiorina/tumor/ice_lab) "kyW" = ( /obj/item/stack/sandbags/large_stack, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"kyZ" = ( -/obj/item/clothing/under/CM_uniform, -/turf/open/floor/prison, -/area/fiorina/station/security) "kze" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "Residential Apartment" @@ -17322,164 +17571,130 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"kzs" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/fiorina/tumor/civres) -"kzx" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) "kzz" = ( /obj/item/tool/shovel/etool, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"kzB" = ( -/obj/effect/decal/cleanable/blood/drip, +"kzI" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/blocker/invisible_wall, /turf/open/floor/prison{ dir = 5; - icon_state = "green" - }, -/area/fiorina/station/chapel) -"kzL" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + icon_state = "whitepurple" }, +/area/fiorina/oob) +"kzN" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + icon_state = "floorscorched2" + }, +/area/fiorina/station/security) +"kzO" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, +/turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"kzR" = ( +"kAo" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, +/obj/item/clipboard, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"kAc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 +/area/fiorina/station/power_ring) +"kAr" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/monorail{ + dir = 4; + name = "launch track" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"kAt" = ( +/obj/effect/spawner/random/gun/shotgun/highchance{ + mags_max = 0; + mags_min = 0 }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison, +/area/fiorina/station/chapel) "kAO" = ( /obj/item/folder/yellow, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"kBm" = ( -/obj/item/device/multitool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"kBt" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "kBE" = ( /obj/item/toy/bikehorn/rubberducky, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"kBX" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform_decoration{ - dir = 8 +"kBV" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"kCj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/turf/open/floor/prison, +/area/fiorina/station/park) +"kCg" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkbrown2" }, +/area/fiorina/tumor/aux_engi) +"kCv" = ( +/obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/prison{ - dir = 1; - icon_state = "green" + icon_state = "floor_plate" }, /area/fiorina/station/chapel) -"kCH" = ( +"kCG" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" + dir = 4; + icon_state = "blue_plate" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/botany) "kCI" = ( /obj/item/weapon/baseballbat/metal, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"kCN" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b, -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, +"kCK" = ( +/obj/item/trash/c_tube, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"kCS" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"kCT" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" + icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/telecomm/lz1_cargo) "kCY" = ( /obj/item/tool/weldingtool, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"kDa" = ( -/obj/structure/platform{ - dir = 4 - }, +"kDg" = ( +/obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/park) -"kDw" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" +/area/fiorina/lz/near_lzI) +"kDj" = ( +/obj/structure/janitorialcart, +/obj/item/clothing/head/bio_hood/janitor{ + pixel_x = -4; + pixel_y = 5 }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison, +/area/fiorina/station/disco) +"kDq" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/station/disco) "kDN" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -17488,20 +17703,48 @@ name = "astroturf" }, /area/fiorina/station/park) +"kDO" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/tumor/civres) +"kDW" = ( +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/structure/surface/rack, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/maintenance) "kEj" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"kEx" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"kEp" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/lz/near_lzII) +/turf/open/floor/prison, +/area/fiorina/station/park) "kEy" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -17513,6 +17756,11 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) +"kEE" = ( +/turf/open/floor/prison{ + icon_state = "green" + }, +/area/fiorina/station/chapel) "kEZ" = ( /obj/item/stack/tile/plasteel{ pixel_x = 12; @@ -17520,67 +17768,77 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"kFd" = ( -/obj/structure/machinery/vending/hydronutrients, +"kFa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, /turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" + icon_state = "darkredfull2" }, -/area/fiorina/station/botany) -"kGc" = ( -/obj/structure/largecrate/random/case/double, +/area/fiorina/station/research_cells) +"kFH" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - icon_state = "darkyellow2" + dir = 8; + icon_state = "cell_stripe" + }, +/area/fiorina/station/medbay) +"kFM" = ( +/obj/item/stack/sheet/metal{ + amount = 5 }, +/turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"kGd" = ( -/obj/structure/barricade/wooden, +"kGh" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, /turf/open/floor/prison{ dir = 8; - icon_state = "whitepurple" + icon_state = "darkbrown2" }, -/area/fiorina/station/research_cells) -"kGo" = ( -/obj/structure/machinery/power/apc, +/area/fiorina/station/park) +"kGi" = ( +/obj/structure/bed/chair/office/light, /turf/open/floor/prison{ - icon_state = "whitepurple" + icon_state = "darkredfull2" }, /area/fiorina/station/research_cells) -"kGB" = ( -/obj/structure/platform, +"kGq" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/station/security) -"kGD" = ( -/obj/structure/largecrate/random/mini/med, +/area/fiorina/station/transit_hub) +"kGu" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/sprays, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/station/medbay) -"kGZ" = ( +/area/fiorina/station/botany) +"kGw" = ( /obj/structure/platform{ dir = 1 }, -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + layer = 3.5 }, -/obj/structure/platform_decoration{ - dir = 5 +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/power_ring) +"kGW" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/prison, /area/fiorina/station/power_ring) "kHa" = ( /obj/item/storage/toolbox, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"kHc" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) "kHf" = ( /obj/structure/platform_decoration{ dir = 1 @@ -17590,55 +17848,23 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"kHv" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" +"kHu" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell2deval" }, -/area/fiorina/station/power_ring) -"kHF" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "whitegreen" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/medbay) "kHG" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"kHH" = ( -/obj/effect/decal/cleanable/blood/oil, +"kIc" = ( +/obj/structure/platform_decoration, +/obj/effect/spawner/random/toolbox, /turf/open/floor/prison, -/area/fiorina/station/disco) -"kHI" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"kHS" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - layer = 2.97; - pixel_y = -14 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"kHZ" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"kIb" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) +/area/fiorina/station/power_ring) "kIe" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/engineering_particle_accelerator{ @@ -17652,22 +17878,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"kIg" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"kIh" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) "kIo" = ( /obj/structure/girder, /turf/open/floor/almayer{ @@ -17675,48 +17885,37 @@ icon_state = "plating" }, /area/fiorina/tumor/ship) -"kIA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - pixel_y = 9 - }, -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"kIO" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"kIF" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/station/research_cells) -"kJd" = ( -/obj/item/tool/warning_cone, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/station/park) +/area/fiorina/tumor/fiberbush) "kJf" = ( /obj/item/tool/wrench, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"kJz" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/prison, +"kJC" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, /area/fiorina/station/telecomm/lz1_cargo) -"kJJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"kJI" = ( +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" }, -/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" + dir = 4; + icon_state = "darkyellow2" }, -/area/fiorina/station/disco) +/area/fiorina/station/flight_deck) "kJS" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -17729,65 +17928,29 @@ name = "astroturf" }, /area/fiorina/tumor/servers) -"kJU" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 +"kJX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /turf/open/floor/prison, -/area/fiorina/station/security) -"kKd" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"kKs" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, +/area/fiorina/station/disco) +"kKZ" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" + dir = 1; + icon_state = "darkbrown2" }, -/area/fiorina/station/flight_deck) -"kKt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/baton, -/turf/open/floor/prison{ +/area/fiorina/tumor/aux_engi) +"kLo" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"kKP" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"kKQ" = ( -/obj/structure/platform/stair_cut/alt, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"kLs" = ( -/obj/vehicle/powerloader{ - dir = 8 + pixel_x = 10; + pixel_y = -3 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"kLz" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/flight_deck) "kLI" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -17803,48 +17966,61 @@ name = "astroturf" }, /area/fiorina/station/civres_blue) -"kMm" = ( -/obj/structure/barricade/handrail, +"kLN" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop{ + pixel_x = 7; + pixel_y = -1 + }, +/obj/item/toy/bikehorn/rubberducky{ + desc = "He's already fed up with your bullshit face."; + name = "Dug the duck"; + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"kLQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"kLT" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"kLX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/central_ring) +/area/fiorina/tumor/ice_lab) +"kLY" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison{ + icon_state = "bluecorner" + }, +/area/fiorina/station/chapel) "kMq" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/civres_blue) -"kMC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"kME" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) "kMU" = ( /obj/effect/spawner/gibspawner/robot, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/maintenance) -"kMV" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 +"kNl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "sterile_white" }, -/area/fiorina/station/flight_deck) -"kNk" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/research_cells) "kNs" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/chapel_carpet{ @@ -17852,6 +18028,12 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) +"kNz" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) "kNB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/bottle/holywater{ @@ -17864,6 +18046,10 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ship) +"kNP" = ( +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/prison, +/area/fiorina/station/security) "kNW" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -17881,150 +18067,144 @@ /obj/item/reagent_container/spray/cleaner, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"kOu" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, +"kOb" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 4; + icon_state = "blue" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/servers) "kOB" = ( /turf/open/organic/grass{ desc = "It'll get in your shoes no matter what you do."; name = "astroturf" }, /area/fiorina/station/civres_blue) -"kOV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, -/obj/item/folder/red{ - pixel_x = 3; - pixel_y = 5 +"kOM" = ( +/obj/structure/monorail{ + name = "launch track" }, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"kOZ" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 1; + icon_state = "bluecorner" }, -/area/fiorina/station/security) -"kPf" = ( -/obj/structure/machinery/computer3/server/rack, +/area/fiorina/station/power_ring) +"kPe" = ( +/obj/structure/largecrate/random, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "floor_plate" }, /area/fiorina/tumor/servers) +"kPi" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison{ + icon_state = "panelscorched" + }, +/area/fiorina/tumor/aux_engi) +"kPv" = ( +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/fiorina/station/power_ring) "kPz" = ( /obj/structure/lattice, /turf/open/space, /area/fiorina/oob) +"kPC" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"kPJ" = ( +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/maintenance) "kPY" = ( /turf/closed/wall/prison, /area/fiorina/tumor/fiberbush) -"kQr" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/barricade/wooden, +"kQY" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + dir = 9; + icon_state = "darkyellow2" }, -/area/fiorina/station/medbay) -"kQy" = ( -/obj/item/frame/rack, -/obj/structure/barricade/handrail/type_b{ +/area/fiorina/station/flight_deck) +"kRt" = ( +/obj/structure/prop/structure_lattice{ dir = 4; - layer = 3.5 + health = 300 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/tumor/ice_lab) -"kQG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/ricepudding, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"kQH" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gibarm_flesh" + dir = 10; + icon_state = "whitegreenfull" }, -/turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"kRO" = ( -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/structure/surface/rack, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"kSd" = ( -/obj/structure/toilet{ - pixel_y = 4 - }, +"kRM" = ( +/obj/item/tool/warning_cone, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"kSe" = ( -/turf/open/floor/prison{ - icon_state = "yellow" + icon_state = "floor_plate" }, -/area/fiorina/station/disco) +/area/fiorina/station/telecomm/lz1_cargo) "kSh" = ( /turf/closed/shuttle/elevator{ dir = 9 }, /area/fiorina/station/telecomm/lz1_cargo) -"kSB" = ( -/obj/structure/closet/firecloset, +"kSp" = ( +/obj/structure/surface/rack, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"kSD" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform{ - dir = 8; - layer = 2.5 + dir = 9; + icon_state = "whitegreen" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"kTs" = ( +/area/fiorina/station/medbay) +"kSI" = ( +/obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/maintenance) -"kTD" = ( -/obj/structure/platform_decoration{ - dir = 1 +/area/fiorina/station/security) +"kSL" = ( +/obj/structure/platform, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/botany) +"kSP" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 10; - icon_state = "blue" + icon_state = "whitegreenfull" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/medbay) +"kSU" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"kTK" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/aux_engi) "kTL" = ( /obj/item/stack/rods, /obj/item/shard{ @@ -18032,12 +18212,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"kTW" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) "kTY" = ( /obj/structure/machinery/defenses/sentry/premade/dumb{ dir = 4 @@ -18050,23 +18224,34 @@ /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"kUo" = ( +"kUr" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_y = 8 +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/servers) +"kUI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 8; + icon_state = "blue" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/civres_blue) "kUR" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "whitegreen" }, -/area/fiorina/station/flight_deck) +/area/fiorina/station/central_ring) "kVg" = ( /obj/item/stack/cable_coil/blue, /turf/open/floor/plating/prison, @@ -18075,78 +18260,73 @@ /obj/structure/largecrate/random, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"kVN" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"kVW" = ( -/obj/item/weapon/pole/wooden_cane, +"kVz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "whitegreen" }, -/area/fiorina/tumor/civres) -"kWv" = ( +/area/fiorina/tumor/ice_lab) +"kWj" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/handcuffs, -/turf/open/floor/prison, -/area/fiorina/station/security) -"kWx" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 - }, +/obj/item/storage/briefcase, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 4; + icon_state = "blue_plate" }, -/area/fiorina/station/research_cells) -"kWL" = ( +/area/fiorina/station/botany) +"kWn" = ( +/obj/structure/inflatable, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" + dir = 8; + icon_state = "yellow" }, -/area/fiorina/lz/near_lzII) -"kWS" = ( +/area/fiorina/station/lowsec) +"kWD" = ( /obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck/uno, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/botany) +"kWJ" = ( +/obj/item/tool/shovel/snow, +/obj/item/device/flashlight, +/obj/structure/surface/rack, /turf/open/floor/prison{ dir = 10; icon_state = "sterile_white" }, /area/fiorina/tumor/ice_lab) -"kXk" = ( +"kXw" = ( +/obj/item/circuitboard/machine/rdserver, /turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/research_cells) -"kXm" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/heavy, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/area/fiorina/tumor/servers) +"kXD" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"kXH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 }, -/area/fiorina/station/medbay) -"kXs" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 +/obj/item/reagent_container/food/snacks/cherrypie{ + pixel_y = 7 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/tumor/aux_engi) -"kXD" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) +/area/fiorina/station/flight_deck) "kXR" = ( /obj/structure/machinery/light/small{ dir = 4; @@ -18155,60 +18335,54 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"kYd" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, +"kYM" = ( +/obj/item/stack/tile/plasteel, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, -/area/fiorina/station/medbay) -"kYi" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "handblood" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"kYz" = ( -/obj/structure/closet/crate/medical, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/ice_lab) "kYZ" = ( /obj/structure/surface/table/woodentable, /obj/item/cell/super/empty, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"kZl" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"kZu" = ( -/obj/structure/toilet{ - pixel_y = 4 - }, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = 2; - pixel_y = 25 - }, +"kZb" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/flight_deck) "kZy" = ( /obj/item/clothing/mask/breath, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"kZI" = ( +/obj/item/stool, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/medbay) +"kZM" = ( +/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" + }, +/area/fiorina/station/civres_blue) +"kZQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp/captain, +/obj/structure/machinery/processor{ + icon_state = "blender_jug_f_red"; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/aux_engi) "kZS" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -18219,50 +18393,71 @@ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) -"kZV" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "lag" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"laz" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +"lax" = ( +/turf/open/floor/prison{ + dir = 5; + icon_state = "whitegreen" }, +/area/fiorina/tumor/ice_lab) +"laD" = ( +/obj/structure/barricade/wooden, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/telecomm/lz1_cargo) +"laG" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/maintenance) "laJ" = ( /obj/structure/airlock_assembly, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"laK" = ( -/obj/item/stool, +"laP" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 10; + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/station/telecomm/lz1_tram) +"laZ" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" + }, +/turf/open/floor/prison{ + dir = 5; icon_state = "yellow" }, -/area/fiorina/station/disco) -"laX" = ( -/obj/structure/toilet{ - dir = 8 +/area/fiorina/station/lowsec) +"lbe" = ( +/obj/item/stack/sheet/metal{ + amount = 5 }, /turf/open/floor/prison{ - icon_state = "sterile_white" + dir = 8; + icon_state = "darkyellow2" }, -/area/fiorina/station/civres_blue) +/area/fiorina/lz/near_lzI) +"lbk" = ( +/obj/effect/spawner/random/tech_supply, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) "lbt" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -18273,160 +18468,102 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"lbz" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"lbK" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"lbL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"lbu" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "bee" }, -/area/fiorina/station/disco) -"lbZ" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/sign/prop2{ + pixel_y = 32 }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"lcu" = ( +/obj/structure/inflatable/popped/door, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 8; + icon_state = "whitegreencorner" }, /area/fiorina/station/medbay) -"lcm" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +"lcH" = ( +/obj/structure/prop/structure_lattice{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"lcn" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, -/area/fiorina/station/transit_hub) -"lco" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"lcq" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"lcE" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"lcJ" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/fiorina/tumor/ice_lab) -"ldd" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/stack/rods, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ +/obj/structure/prop/structure_lattice{ dir = 4; - icon_state = "greenfull" + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/chapel) +/turf/open/floor/prison, +/area/fiorina/maintenance) "lde" = ( /obj/structure/prop/resin_prop{ icon_state = "coolanttank" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"ldj" = ( -/obj/item/weapon/harpoon, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"ldm" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 5; + icon_state = "whitepurple" }, -/area/fiorina/station/disco) -"ldz" = ( -/obj/structure/bed{ - icon_state = "abed" +/area/fiorina/station/research_cells) +"ldt" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6" }, -/obj/effect/spawner/random/sentry/midchance, /turf/open/floor/prison{ - dir = 10; + dir = 1; icon_state = "yellow" }, /area/fiorina/station/lowsec) -"ldF" = ( -/obj/structure/closet/emcloset, +"ldy" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, /turf/open/floor/prison{ dir = 10; - icon_state = "blue" + icon_state = "whitegreenfull" }, -/area/fiorina/station/power_ring) -"ldW" = ( -/obj/item/stack/sandbags, +/area/fiorina/tumor/ice_lab) +"ldT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison{ - icon_state = "kitchen" + dir = 1; + icon_state = "whitegreen" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/medbay) "ldZ" = ( -/obj/item/explosive/grenade/incendiary/molotov, +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"leq" = ( +/obj/effect/landmark/corpsespawner/prison_security, /turf/open/floor/prison{ - dir = 4; - icon_state = "red" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/security) +/area/fiorina/station/medbay) "lev" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/corsat{ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) -"lex" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) "leF" = ( /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"leN" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"leZ" = ( -/obj/item/trash/cigbutt, +"leR" = ( +/obj/item/device/whistle, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" @@ -18436,54 +18573,39 @@ /obj/structure/pipes/standard/manifold/visible, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"lfX" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"lge" = ( +"lfJ" = ( /turf/open/floor/prison{ - dir = 5; - icon_state = "blue" + dir = 9; + icon_state = "greenblue" }, -/area/fiorina/station/civres_blue) -"lgx" = ( +/area/fiorina/station/botany) +"lfS" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/park) -"lgG" = ( -/obj/structure/coatrack, -/obj/item/clothing/suit/storage/CMB, +/area/fiorina/tumor/ice_lab) +"lgy" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ icon_state = "redfull" }, /area/fiorina/station/security) -"lgH" = ( +"lhj" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/transit_hub) +"lhQ" = ( /turf/open/floor/prison{ + dir = 5; icon_state = "green" }, /area/fiorina/tumor/civres) -"lgS" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/park) -"lhJ" = ( -/obj/item/weapon/gun/flamer, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/storage/pouch/flamertank, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"lhS" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) "lhY" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." @@ -18497,20 +18619,42 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"lit" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"lif" = ( +/obj/structure/closet/crate/bravo, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/fuelCell, +/obj/item/stack/sheet/plasteel, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + icon_state = "bluefull" }, +/area/fiorina/station/power_ring) +"lik" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/pills/lowchance, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "bluefull" }, -/area/fiorina/station/transit_hub) +/area/fiorina/station/power_ring) "liA" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"liT" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "yellow" + }, +/area/fiorina/station/central_ring) +"liX" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/servers) "liZ" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -18527,68 +18671,60 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"ljx" = ( -/obj/structure/platform_decoration{ - dir = 8 +"ljA" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"ljW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/fiorina/station/civres_blue) -"ljV" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison, -/area/fiorina/station/security) -"lkb" = ( -/obj/item/tool/kitchen/knife, -/obj/structure/bed/roller, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"lkr" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" + dir = 10; + icon_state = "whitegreenfull" }, /area/fiorina/tumor/ice_lab) -"lku" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_rightengine" - }, -/area/fiorina/oob) -"lkA" = ( -/obj/structure/bed/sofa/south/grey/right, +"ljZ" = ( +/obj/item/device/flashlight/flare, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security/wardens) -"lkM" = ( -/obj/structure/inflatable/popped/door, +/area/fiorina/lz/near_lzI) +"lka" = ( +/obj/structure/bed/chair{ + dir = 8 + }, /turf/open/floor/prison{ dir = 4; - icon_state = "darkyellowfull2" + icon_state = "yellow" }, -/area/fiorina/tumor/servers) -"lkP" = ( -/obj/item/shard{ - icon_state = "medium" +/area/fiorina/station/lowsec) +"lku" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" }, +/area/fiorina/oob) +"lle" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"lkQ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 8; + icon_state = "whitegreen" }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"lld" = ( +/area/fiorina/station/medbay) +"lll" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen, /turf/open/floor/prison{ - dir = 8; - icon_state = "red" + dir = 10; + icon_state = "yellow" }, -/area/fiorina/station/security) +/area/fiorina/station/lowsec) "lls" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -18599,31 +18735,40 @@ /obj/item/reagent_container/food/drinks/cans/souto/diet/cherry, /turf/open/floor/wood, /area/fiorina/station/park) -"llE" = ( -/obj/structure/machinery/reagentgrinder/industrial{ +"llC" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; pixel_y = 10 }, -/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"llJ" = ( -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 4 + icon_state = "floor_plate" }, +/area/fiorina/station/telecomm/lz1_cargo) +"llG" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, /turf/open/floor/prison{ - icon_state = "platingdmg3" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/security) +/area/fiorina/tumor/servers) "llQ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 }, /turf/open/floor/almayer_hull, /area/fiorina/oob) +"llW" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) "lml" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -18639,287 +18784,259 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"lmu" = ( -/obj/structure/machinery/light/double/blue{ +"lmr" = ( +/turf/open/floor/prison{ dir = 1; - pixel_y = 21 + icon_state = "bluecorner" }, +/area/fiorina/station/chapel) +"lmy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/flight_deck) -"lnK" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/telecomm/lz1_tram) -"loj" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ +/area/fiorina/station/park) +"lmM" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "greenfull" + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/tumor/civres) -"lou" = ( -/obj/item/ammo_box/magazine/misc/flares/empty{ - pixel_x = -1; - pixel_y = 7 +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"lmV" = ( +/turf/open/floor/prison, +/area/fiorina/tumor/fiberbush) +"lmX" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -29 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "sterile_white" }, -/area/fiorina/station/telecomm/lz1_cargo) -"loE" = ( -/obj/structure/window/reinforced{ +/area/fiorina/station/civres_blue) +"lnf" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/structure/machinery/photocopier, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) -"loP" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" + dir = 9; + icon_state = "darkyellow2" }, -/obj/item/bedsheet/ce{ - desc = "It crinkles, aggressively."; - name = "sterile wax sheet" +/area/fiorina/station/flight_deck) +"lnK" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/telecomm/lz1_tram) +"lnU" = ( +/obj/item/stool, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/lowsec) +"lok" = ( /turf/open/floor/prison{ - icon_state = "redfull" + dir = 8; + icon_state = "whitegreen" }, -/area/fiorina/station/medbay) -"lpd" = ( -/obj/structure/machinery/light/double/blue, +/area/fiorina/oob) +"loy" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - icon_state = "blue" + icon_state = "kitchen" }, -/area/fiorina/station/chapel) +/area/fiorina/station/power_ring) +"lpf" = ( +/obj/item/storage/belt/marine, +/turf/open/floor/prison, +/area/fiorina/station/security) "lpl" = ( /turf/closed/shuttle/ert{ icon_state = "stan27" }, /area/fiorina/lz/near_lzI) +"lpm" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/lz/near_lzI) +"lpp" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + layer = 2.97; + pixel_y = -14 + }, +/turf/open/floor/prison{ + dir = 9; + icon_state = "yellow" + }, +/area/fiorina/station/disco) "lpr" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"lpw" = ( -/obj/effect/spawner/random/toolbox, +"lps" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"lpA" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison{ + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"lpV" = ( +/obj/item/device/flashlight/lamp/tripod, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison, /area/fiorina/station/medbay) -"lpH" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/fiorina/station/chapel) -"lpS" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"lpW" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"lpX" = ( -/obj/structure/machinery/door/airlock/prison/horizontal, +"lqi" = ( +/obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 1; + icon_state = "bluecorner" }, -/area/fiorina/station/research_cells) -"lpZ" = ( -/obj/item/trash/boonie, +/area/fiorina/station/power_ring) +"lqo" = ( +/obj/structure/dropship_equipment/medevac_system, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"lqa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" + icon_state = "floor_marked" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) +/area/fiorina/station/power_ring) "lqq" = ( /turf/open/floor/wood, /area/fiorina/station/chapel) -"lqC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"lqB" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/fiorina/lz/near_lzI) -"lqI" = ( +/obj/item/weapon/classic_baton, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"lqJ" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_2" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) -"lqN" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" + icon_state = "redfull" }, -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/area/fiorina/station/security) +"lrm" = ( +/obj/structure/barricade/metal/wired{ + health = 250; + icon_state = "metal_3" }, -/area/fiorina/station/telecomm/lz1_cargo) -"lri" = ( +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"lro" = ( +/obj/item/stack/cable_coil/blue, /turf/open/floor/prison{ - dir = 8; - icon_state = "green" + icon_state = "whitegreencorner" }, -/area/fiorina/station/transit_hub) +/area/fiorina/tumor/ice_lab) "lrA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"lrC" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/station/park) "lrE" = ( /obj/structure/bed, /obj/item/bedsheet/rd, /obj/item/toy/katana, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"lrI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/milk{ - pixel_x = 2; - pixel_y = 3 +"lsf" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/tumor/civres) +"lsl" = ( +/obj/item/tool/shovel, +/turf/open/floor/prison{ + dir = 6; + icon_state = "green" }, +/area/fiorina/tumor/civres) +"lso" = ( /turf/open/floor/prison{ icon_state = "floor_plate" }, /area/fiorina/tumor/fiberbush) -"lrV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, +"lsr" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/security) -"lsn" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"lsO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/plastic/small_stack, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"lsR" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 +/area/fiorina/station/park) +"lsU" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" }, -/obj/structure/machinery/shower{ - dir = 4 +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, /turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"lsZ" = ( -/obj/item/tool/soap, -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 + icon_state = "darkyellow2" }, -/obj/structure/machinery/shower{ - dir = 8 +/area/fiorina/station/telecomm/lz1_cargo) +"ltb" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, /turf/open/floor/prison{ - icon_state = "kitchen" + icon_state = "redfull" }, -/area/fiorina/station/research_cells) -"ltd" = ( -/obj/item/device/flashlight/lamp/tripod, +/area/fiorina/station/security) +"ltu" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"lte" = ( -/obj/structure/barricade/metal{ - dir = 4; - health = 85; - icon_state = "metal_1" + icon_state = "floor_plate" }, +/area/fiorina/station/flight_deck) +"lty" = ( +/obj/item/toy/bikehorn, /turf/open/floor/prison{ dir = 1; icon_state = "darkbrown2" }, /area/fiorina/station/park) -"ltz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"ltA" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, -/area/fiorina/tumor/aux_engi) -"ltQ" = ( +"ltV" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/security) -"luf" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" + dir = 10; + icon_state = "darkyellow2" }, +/area/fiorina/lz/near_lzI) +"luv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer3/laptop/secure_data, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"lun" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"lux" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) "luy" = ( /obj/item/trash/candle, /turf/open/floor/prison/chapel_carpet{ @@ -18927,23 +19044,48 @@ icon_state = "doubleside" }, /area/fiorina/maintenance) -"luZ" = ( -/obj/item/device/flashlight/lamp/tripod, +"luH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, +/obj/item/coin/gold{ + desc = "Coin op, in this place, in this year, localized entirely on this table? .... I uh, yes."; + name = "arcade token"; + pixel_x = -6; + pixel_y = 3 + }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/tumor/ice_lab) -"lvf" = ( -/obj/structure/largecrate/random/case/double, +/area/fiorina/station/flight_deck) +"luU" = ( +/obj/effect/spawner/random/gun/rifle/midchance, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 8; + icon_state = "blue" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/power_ring) "lvg" = ( /obj/item/trash/candle, /turf/open/floor/prison/chapel_carpet, /area/fiorina/maintenance) +"lvh" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) "lvi" = ( /obj/structure/sign/poster{ icon_state = "poster6"; @@ -18951,23 +19093,45 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"lvk" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"lvs" = ( +/turf/open/floor/prison{ + icon_state = "green" + }, +/area/fiorina/tumor/civres) +"lvx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreen" + }, +/area/fiorina/tumor/ice_lab) "lvy" = ( /turf/closed/shuttle/ert{ icon_state = "stan_rightengine" }, /area/fiorina/tumor/aux_engi) -"lvD" = ( +"lvJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, /area/fiorina/tumor/servers) -"lvV" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +"lvN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 }, -/area/fiorina/station/lowsec) +/obj/item/weapon/gun/pistol/heavy, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "lwd" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -18976,57 +19140,51 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"lwn" = ( -/obj/structure/machinery/light/double/blue{ +"lwB" = ( +/obj/structure/platform, +/obj/structure/bed/chair{ dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"lwp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/security_space_law{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/book/manual/security_space_law{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/security_space_law{ - pixel_x = 3; - pixel_y = 5 + layer = 2.7 }, /turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"lwq" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" + icon_state = "whitegreen" }, +/area/fiorina/station/medbay) +"lwG" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + dir = 6; + icon_state = "darkbrown2" }, -/area/fiorina/station/central_ring) -"lwA" = ( -/obj/structure/largecrate/random/case, +/area/fiorina/tumor/aux_engi) +"lwK" = ( /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/park) -"lxT" = ( -/obj/item/ammo_casing{ +/area/fiorina/tumor/servers) +"lwO" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"lxe" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/heavy, +/turf/open/floor/prison{ dir = 8; - icon_state = "casing_6" + icon_state = "cell_stripe" }, +/area/fiorina/station/medbay) +"lxk" = ( +/obj/structure/platform_decoration, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + icon_state = "whitegreen" }, -/area/fiorina/station/park) +/area/fiorina/tumor/ice_lab) +"lyd" = ( +/obj/structure/surface/rack, +/obj/item/folder/black, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "lyf" = ( /obj/structure/flora/bush/ausbushes/ausbush{ desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; @@ -19035,24 +19193,50 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"lyg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -6; + pixel_y = 20 + }, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = 6; + pixel_y = 20 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/power_ring) +"lyF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/guestpass{ + dir = 4; + reason = "Visitor" + }, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) "lyJ" = ( /obj/item/tool/crowbar, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"lyY" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"lzd" = ( -/obj/effect/decal/cleanable/blood/splatter, +"lyX" = ( +/obj/structure/inflatable/popped/door, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreen" }, /area/fiorina/station/medbay) +"lzb" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/central_ring) "lzm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced/tinted, @@ -19064,94 +19248,54 @@ icon_state = "squares" }, /area/fiorina/station/telecomm/lz1_cargo) -"lzq" = ( -/obj/item/tool/wet_sign, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = -1 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"lzz" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/fancy/crayons, +"lzJ" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"lzO" = ( +/obj/structure/closet/firecloset/full, /turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/research_cells) -"lzB" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" +/area/fiorina/tumor/ice_lab) +"lzW" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0" }, -/obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 10; + icon_state = "floor_plate" }, -/area/fiorina/station/botany) -"lzE" = ( -/obj/structure/machinery/vending/snack/packaged, +/area/fiorina/station/telecomm/lz1_cargo) +"lzX" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "cell_stripe" }, -/area/fiorina/station/civres_blue) -"lzJ" = ( -/turf/open/floor/plating/prison, /area/fiorina/station/park) -"lzP" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" - }, +"lAf" = ( +/obj/item/tool/crowbar, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" + icon_state = "whitegreen" }, -/area/fiorina/station/park) +/area/fiorina/station/medbay) "lAh" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/ice_lab) -"lAn" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"lAE" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +"lAv" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/area/fiorina/station/telecomm/lz1_cargo) -"lAM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4; - pixel_y = 5 +/obj/structure/mirror{ + pixel_y = 28 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "sterile_white" }, +/area/fiorina/station/civres_blue) +"lAS" = ( +/turf/open/floor/prison, /area/fiorina/station/power_ring) -"lAN" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"lAQ" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) "lAV" = ( /obj/structure/bed/stool, /turf/open/floor/plating/prison, @@ -19161,60 +19305,48 @@ /obj/structure/machinery/door/window/northright, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"lBb" = ( -/obj/structure/machinery/light/double/blue{ +"lBg" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/medbay) +"lBJ" = ( +/obj/structure/bed/chair{ dir = 4; - pixel_x = 10; - pixel_y = 13 + layer = 2.8 }, /turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"lBY" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"lBE" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"lBI" = ( +"lCm" = ( /obj/item/ammo_casing{ - icon_state = "casing_5_1" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "cartridge_1" }, -/area/fiorina/station/lowsec) -"lBR" = ( -/obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" + dir = 10; + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"lBS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"lCs" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 }, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"lCl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp/captain, -/obj/structure/machinery/processor{ - icon_state = "blender_jug_f_red"; - pixel_x = -6; - pixel_y = 6 + icon_state = "floor_plate" }, +/area/fiorina/station/lowsec) +"lCw" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 9; + icon_state = "darkbrown2" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/maintenance) "lCz" = ( /obj/structure/machinery/light/small, /obj/structure/largecrate/random/barrel/green, @@ -19222,52 +19354,55 @@ icon_state = "plate" }, /area/fiorina/tumor/ship) -"lDo" = ( -/obj/item/storage/fancy/cigar, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"lDC" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 +"lCD" = ( +/obj/structure/closet/basketball, +/obj/item/storage/pill_bottle/tramadol/skillless, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" }, -/turf/open/space/basic, -/area/fiorina/oob) -"lDG" = ( -/obj/structure/machinery/computer/drone_control, -/obj/structure/window/reinforced{ +/area/fiorina/station/research_cells) +"lCE" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"lDU" = ( -/obj/item/stack/cable_coil, +/obj/item/tool/shovel/spade, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/tumor/servers) -"lEd" = ( -/obj/structure/inflatable/popped/door, +/area/fiorina/station/botany) +"lCZ" = ( +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" + icon_state = "darkbrown2" }, -/area/fiorina/station/research_cells) -"lEg" = ( -/obj/structure/machinery/light/double/blue, +/area/fiorina/station/park) +"lDe" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"lDm" = ( +/obj/structure/foamed_metal, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzII) -"lEk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" +/area/fiorina/station/civres_blue) +"lDC" = ( +/turf/closed/wall/prison, +/area/fiorina/station/central_ring) +"lEa" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) "lEp" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -19289,322 +19424,233 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"lEF" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +"lEz" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ - dir = 8 + dir = 4 }, /turf/open/floor/prison{ icon_state = "darkredfull2" }, -/area/fiorina/station/security) -"lEL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, +/area/fiorina/station/disco) +"lEI" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + dir = 10; + icon_state = "blue" }, -/area/fiorina/station/park) +/area/fiorina/tumor/servers) "lFc" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/security/liaison, /turf/open/floor/wood, /area/fiorina/station/park) -"lFg" = ( -/obj/item/paper, +"lFj" = ( +/obj/effect/spawner/random/gun/pistol, /turf/open/floor/prison{ dir = 10; icon_state = "sterile_white" }, -/area/fiorina/station/research_cells) -"lFm" = ( -/obj/structure/bed/roller, -/obj/item/trash/used_stasis_bag, +/area/fiorina/station/medbay) +"lFx" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison{ icon_state = "floor_plate" }, /area/fiorina/station/telecomm/lz1_cargo) -"lFo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = 1 - }, +"lFC" = ( +/obj/item/clothing/head/cmcap, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "green" }, -/area/fiorina/lz/near_lzII) -"lFv" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"lFB" = ( +/area/fiorina/station/transit_hub) +"lFO" = ( +/obj/structure/largecrate/supply/supplies/water, /turf/open/floor/prison{ dir = 10; - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"lFD" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/area/fiorina/station/telecomm/lz1_cargo) +"lGh" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/area/fiorina/tumor/aux_engi) -"lFM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 4; icon_state = "darkyellowfull2" }, -/area/fiorina/station/telecomm/lz1_tram) -"lFQ" = ( -/obj/structure/machinery/m56d_hmg/mg_turret/dropship, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"lFV" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) -"lGL" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -1 +/area/fiorina/lz/near_lzI) +"lGm" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"lHc" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/station/chapel) -"lHw" = ( -/obj/structure/barricade/handrail/type_b, +/obj/item/card/id/visa, /turf/open/floor/prison{ - icon_state = "darkyellow2" + icon_state = "whitepurple" }, -/area/fiorina/station/flight_deck) +/area/fiorina/station/research_cells) "lHx" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"lHE" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"lHy" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"lIj" = ( -/obj/structure/prop/ice_colony/surveying_device, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"lHB" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/tumor/servers) -"lIk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = 11 + icon_state = "floor_plate" }, +/area/fiorina/lz/near_lzI) +"lHL" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/effect/decal/cleanable/blood, +/obj/item/attachable/bipod, +/obj/item/device/multitool, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"lIl" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 + dir = 8; + icon_state = "darkyellow2" }, -/obj/structure/platform_decoration{ - dir = 9 +/area/fiorina/station/telecomm/lz1_cargo) +"lIv" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" }, +/area/fiorina/lz/near_lzI) +"lIx" = ( +/obj/item/tool/wet_sign, /turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"lIt" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"lIv" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan5" - }, -/area/fiorina/lz/near_lzI) -"lIA" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"lIC" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/park) "lIG" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/research_cells) -"lIH" = ( -/obj/structure/machinery/processor, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) "lIJ" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"lJf" = ( -/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ - layer = 2.6 +"lJa" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, -/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"lJm" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzII) -"lJx" = ( +/area/fiorina/station/park) +"lJv" = ( +/obj/structure/platform, /obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 10 +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"lJI" = ( -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/structure/surface/rack, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 6; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"lJy" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/maintenance) -"lJS" = ( -/obj/structure/largecrate/supply/medicine/iv, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"lKI" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison, /area/fiorina/station/power_ring) -"lKP" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +"lKd" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, +/area/fiorina/tumor/civres) +"lKt" = ( +/obj/structure/sign/poster{ + icon_state = "poster18"; + pixel_y = 32 }, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue" + icon_state = "bluefull" }, -/area/fiorina/station/chapel) +/area/fiorina/station/power_ring) "lLe" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"lLv" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) "lLE" = ( /obj/item/bedsheet/blue, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"lLQ" = ( -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"lLS" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" +"lLP" = ( +/obj/structure/bookcase/manuals/research_and_development{ + pixel_y = 10 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "whitepurple" }, -/area/fiorina/tumor/aux_engi) -"lMh" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) +/area/fiorina/station/research_cells) +"lLU" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) "lMi" = ( /obj/structure/largecrate/random, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"lMq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - icon_state = "mwo"; - pixel_y = 6 - }, +"lMB" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"lMM" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + icon_state = "blue" }, -/area/fiorina/station/civres_blue) -"lMV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 +/area/fiorina/tumor/servers) +"lNg" = ( +/obj/structure/monorail{ + name = "launch track" }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"lNc" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"lNf" = ( -/obj/item/inflatable, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) +/area/fiorina/station/telecomm/lz1_tram) "lNv" = ( /obj/item/handcuffs/cable/pink, /turf/open/floor/prison/chapel_carpet{ @@ -19612,125 +19658,133 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"lNP" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"lNR" = ( -/obj/item/trash/cigbutt/ucigbutt, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"lOe" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/telecomm/lz1_tram) -"lOk" = ( -/obj/structure/curtain, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +"lNB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster3"; + name = "magazine"; + pixel_x = 6; + pixel_y = 8 }, -/area/fiorina/station/power_ring) -"lOm" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/bodybag/tarp/reactive{ - pixel_y = 6 +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster17"; + name = "magazine" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/sign/poster{ + desc = "The M41A is on the cover."; + icon_state = "poster15"; + name = "magazine"; + pixel_x = -5; + pixel_y = 5 }, -/area/fiorina/station/medbay) -"lOx" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"lOy" = ( -/obj/structure/machinery/light/double/blue, +/area/fiorina/station/security/wardens) +"lOa" = ( /turf/open/floor/prison{ - icon_state = "darkyellow2" + dir = 10; + icon_state = "damaged2" }, -/area/fiorina/lz/near_lzI) -"lPA" = ( -/obj/effect/decal/cleanable/blood/splatter, +/area/fiorina/station/lowsec) +"lOb" = ( +/obj/structure/closet/crate/internals, +/obj/item/tool/crew_monitor, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"lPE" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, +"lOo" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/prison{ - icon_state = "kitchen" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/power_ring) -"lQo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/area/fiorina/tumor/aux_engi) +"lOB" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"lOE" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" + dir = 9; + icon_state = "blue" }, -/area/fiorina/station/transit_hub) -"lQJ" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/objective_landmark/far, +/area/fiorina/station/chapel) +"lPq" = ( +/obj/structure/prop/dam/crane, /turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" + dir = 8; + icon_state = "floor_marked" }, -/area/fiorina/maintenance) -"lQL" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform{ - dir = 8 +/area/fiorina/tumor/servers) +"lPV" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ +/turf/open/floor/prison, +/area/fiorina/station/disco) +"lPW" = ( +/obj/structure/machinery/light/double/blue{ dir = 8; - icon_state = "whitegreen" + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/tumor/ice_lab) -"lRk" = ( -/obj/item/stack/rods/plasteel, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"lQd" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, /turf/open/floor/prison{ - icon_state = "damaged3" + icon_state = "kitchen" }, -/area/fiorina/station/security) -"lRq" = ( +/area/fiorina/station/power_ring) +"lQf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - icon_state = "cell_stripe" + icon_state = "floor_plate" }, /area/fiorina/station/park) -"lRr" = ( +"lQZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + pixel_y = 5 + }, /turf/open/floor/prison{ - dir = 6; - icon_state = "blue" + icon_state = "bluefull" }, -/area/fiorina/station/civres_blue) -"lRT" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/lz/near_lzI) -"lRW" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" +/area/fiorina/station/power_ring) +"lRe" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" }, +/area/fiorina/station/flight_deck) +"lRH" = ( +/obj/item/stack/cable_coil, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"lSb" = ( -/obj/structure/machinery/vending/snack, +/area/fiorina/station/security) +"lRI" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/park) +"lRT" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/lz/near_lzI) "lSj" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ dir = 2; @@ -19738,19 +19792,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"lSq" = ( -/obj/item/ammo_magazine/shotgun/buckshot, +"lSY" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 10; + icon_state = "sterile_white" }, /area/fiorina/station/research_cells) -"lSS" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"lTm" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) +/obj/structure/machinery/photocopier, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/ice_lab) "lTp" = ( /obj/structure/sink{ pixel_y = 15 @@ -19759,18 +19816,34 @@ icon_state = "plate" }, /area/fiorina/tumor/ship) -"lTW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 +"lUg" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +/obj/structure/platform, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/botany) "lUi" = ( /turf/closed/shuttle/ert{ icon_state = "stan23" }, /area/fiorina/tumor/ship) +"lUp" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 13 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) "lUs" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -19794,48 +19867,66 @@ icon_state = "plate" }, /area/fiorina/station/civres_blue) -"lUv" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) "lUE" = ( /obj/structure/barricade/metal/wired{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"lUZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"lVP" = ( +/obj/structure/machinery/constructable_frame, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 10; + icon_state = "damaged2" }, -/area/fiorina/station/research_cells) -"lVA" = ( +/area/fiorina/station/lowsec) +"lWh" = ( +/obj/item/clothing/under/shorts/black, /turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/central_ring) +"lWr" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "cell_stripe" + icon_state = "p_stair_full" + }, +/obj/structure/platform/shiva, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"lWD" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/lz/near_lzII) -"lVQ" = ( -/obj/structure/inflatable/door, /turf/open/floor/prison{ - icon_state = "whitegreencorner" + dir = 4; + icon_state = "greenblue" }, -/area/fiorina/station/medbay) -"lWn" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 +/area/fiorina/station/botany) +"lXc" = ( +/obj/item/stool, +/turf/open/floor/prison{ + dir = 4; + icon_state = "yellow" }, -/obj/item/tool/soap/nanotrasen, +/area/fiorina/station/lowsec) +"lXf" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + icon_state = "bluecorner" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/power_ring) +"lXk" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/medbay) "lXs" = ( /obj/item/book/manual/marine_law, /obj/item/book/manual/marine_law{ @@ -19859,176 +19950,227 @@ }, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"lYj" = ( -/obj/structure/sink{ - pixel_y = 15 +"lYc" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison{ + icon_state = "darkbrown2" }, -/obj/structure/mirror{ - pixel_y = 28 +/area/fiorina/tumor/aux_engi) +"lYl" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 }, /turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/fiorina/station/civres_blue) -"lZf" = ( -/turf/closed/shuttle/elevator{ - dir = 10 + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/tumor/aux_engi) -"lZm" = ( -/obj/item/trash/cigbutt, +/area/fiorina/tumor/ice_lab) +"lYr" = ( +/obj/item/ammo_magazine/smg/mp5, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue" + dir = 10; + icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"lZo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +/area/fiorina/station/telecomm/lz1_cargo) +"lYw" = ( +/obj/item/shard{ + icon_state = "large" }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/fiberbush) -"lZp" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +/area/fiorina/station/security) +"lYA" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/area/fiorina/station/lowsec) -"lZs" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/lz/near_lzI) +"lZf" = ( +/turf/closed/shuttle/elevator{ + dir = 10 }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) +/area/fiorina/tumor/aux_engi) "lZA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"maA" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"lZC" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/fiorina/tumor/ice_lab) -"maY" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "darkbrowncorners2" }, -/area/fiorina/tumor/servers) -"mbg" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/medbay) -"mbp" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1 +/area/fiorina/maintenance) +"lZL" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"mbz" = ( -/obj/item/ammo_box/magazine/M16, -/turf/open/floor/prison{ +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "darkyellow2" + pixel_y = 21 }, -/area/fiorina/lz/near_lzI) -"mbC" = ( -/obj/item/clipboard, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"mbH" = ( -/obj/structure/platform, -/obj/item/fuelCell, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"mak" = ( +/obj/structure/machinery/shower{ pixel_y = 13 }, -/turf/open/floor/plating/prison, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, /area/fiorina/station/lowsec) -"mcr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/matter_bin/super, -/turf/open/floor/wood, -/area/fiorina/station/park) -"mcH" = ( -/turf/open/floor/prison{ - icon_state = "blue" +"mam" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/servers) -"mcJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/prison{ - icon_state = "yellowfull" + dir = 10; + icon_state = "floor_plate" }, /area/fiorina/station/disco) -"mdd" = ( -/obj/item/storage/toolbox/electrical, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"mdz" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" +"maC" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/machinery/light/double/blue{ +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison, +/area/fiorina/station/security) +"maE" = ( +/obj/item/device/motiondetector, +/turf/open/floor/prison{ dir = 1; - pixel_y = 21 + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"mbc" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"mbe" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/fiorina/station/flight_deck) +"mbg" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/medbay) +"mbi" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" }, +/obj/item/stack/rods/plasteel, /turf/open/floor/prison{ dir = 10; icon_state = "sterile_white" }, /area/fiorina/station/medbay) -"mdD" = ( -/obj/item/stool, +"mbp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"mbC" = ( +/obj/item/clipboard, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"mbH" = ( +/obj/structure/platform, +/obj/item/fuelCell, /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 4; + pixel_x = 10; + pixel_y = 13 }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"mbN" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "floor_plate" }, /area/fiorina/station/civres_blue) -"mdG" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 +"mcc" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 +/area/fiorina/station/lowsec) +"mcr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/matter_bin/super, +/turf/open/floor/wood, +/area/fiorina/station/park) +"mct" = ( +/obj/item/trash/kepler, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitegreen" }, +/area/fiorina/station/medbay) +"mcE" = ( /turf/open/floor/prison{ - icon_state = "darkbrown2" + dir = 8; + icon_state = "darkyellowcorners2" }, -/area/fiorina/station/park) -"mdH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/card/id/guest{ - pixel_x = -2; - pixel_y = 6 +/area/fiorina/lz/near_lzI) +"mcG" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" }, -/obj/item/card/id/guest, -/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" + }, +/area/fiorina/tumor/aux_engi) +"mcN" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, +/area/fiorina/lz/near_lzI) +"mcT" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) +"mdd" = ( +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"mdn" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, /area/fiorina/station/security) "mdJ" = ( @@ -20038,22 +20180,18 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/space, /area/fiorina/oob) -"mdS" = ( +"mea" = ( +/obj/item/fuelCell, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/maintenance) +"med" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison{ - dir = 8; - icon_state = "greenbluecorner" - }, -/area/fiorina/station/botany) -"mdY" = ( -/obj/structure/machinery/light/double/blue{ dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "bluecorner" }, -/area/fiorina/station/flight_deck) +/area/fiorina/station/power_ring) "mei" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -20068,6 +20206,51 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"mel" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison{ + icon_state = "blue" + }, +/area/fiorina/station/power_ring) +"mey" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) +"meF" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) +"meG" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/prison{ + icon_state = "bluecorner" + }, +/area/fiorina/station/power_ring) +"meM" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) +"mfd" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison{ + dir = 4; + icon_state = "bluecorner" + }, +/area/fiorina/station/power_ring) "mfe" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/twohanded/sledgehammer{ @@ -20075,12 +20258,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"mfF" = ( -/obj/effect/decal/cleanable/blood, +"mfo" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"mft" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"mfK" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - icon_state = "darkyellow2" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/transit_hub) "mfR" = ( /obj/structure/bed{ icon_state = "psychbed" @@ -20091,35 +20288,45 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"mgh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +"mfV" = ( +/obj/structure/inflatable/popped/door, /turf/open/floor/prison{ - icon_state = "whitegreen" + dir = 4; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"mgC" = ( +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_y = 32 }, -/area/fiorina/tumor/ice_lab) -"mgz" = ( /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"mgE" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +/area/fiorina/station/flight_deck) +"mgU" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "birthday" }, /turf/open/floor/prison{ - icon_state = "darkyellow2" + icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzI) -"mgO" = ( -/obj/structure/window{ - dir = 8 +/area/fiorina/station/power_ring) +"mhb" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitegreen" }, -/obj/item/circuitboard/machine/rdserver, +/area/fiorina/station/medbay) +"mhe" = ( +/obj/item/tool/wrench, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 1; + icon_state = "whitepurple" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/research_cells) "mho" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -20127,6 +20334,19 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"mhu" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"mhv" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) "mhM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -20138,33 +20358,64 @@ /obj/effect/spawner/random/gun/rifle/lowchance, /turf/open/auto_turf/sand/layer1, /area/fiorina/station/flight_deck) -"mhS" = ( -/obj/item/device/flashlight/lamp/tripod, +"mhW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette, +/obj/item/storage/fancy/cigarettes/emeraldgreen{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/aux_engi) +"mie" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 12 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security/wardens) +"mii" = ( +/obj/item/weapon/pole/wooden_cane, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/civres) +"miu" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + density = 0; + pixel_y = 16 + }, /turf/open/floor/prison{ dir = 1; - icon_state = "greenblue" + icon_state = "darkbrown2" }, -/area/fiorina/station/botany) +/area/fiorina/maintenance) +"miB" = ( +/obj/structure/barricade/metal{ + health = 85; + icon_state = "metal_1" + }, +/turf/open/floor/prison, +/area/fiorina/station/park) "miU" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"mjm" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +"miZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/central_ring) -"mju" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison, +/area/fiorina/station/medbay) "mjx" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) @@ -20174,66 +20425,61 @@ name = "pool" }, /area/fiorina/station/park) -"mkn" = ( +"mjD" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, /turf/open/floor/prison{ - dir = 6; + dir = 4; icon_state = "darkyellow2" }, -/area/fiorina/station/power_ring) -"mkI" = ( -/obj/structure/machinery/microwave{ - desc = "So uh yeah, about that cat..."; - icon_state = "mwbloodyo"; - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"mlb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/area/fiorina/station/flight_deck) +"mki" = ( +/obj/item/stack/sandbags_empty/half, /turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" + dir = 4; + icon_state = "darkyellow2" }, -/area/fiorina/tumor/ice_lab) -"mld" = ( -/obj/structure/machinery/photocopier, +/area/fiorina/station/flight_deck) +"mky" = ( +/obj/item/storage/firstaid/regular, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/security) -"mlg" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, +/area/fiorina/station/medbay) +"mkB" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"mlu" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 1 + dir = 8; + icon_state = "darkbrowncorners2" }, +/area/fiorina/station/park) +"mli" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/telecomm/lz1_tram) "mlC" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"mlU" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/item/tool/soap/syndie, -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/gun/special, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +"mlM" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"mmh" = ( +/obj/item/trash/burger, +/turf/open/floor/prison, +/area/fiorina/station/disco) "mmp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stock_parts/matter_bin/adv{ @@ -20247,150 +20493,101 @@ /obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"mnd" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -8; - pixel_y = 16 +"mmP" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/monorail{ + dir = 10; + name = "launch track" }, -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"mnr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"mni" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/prison, -/area/fiorina/tumor/fiberbush) -"mns" = ( -/obj/item/stool, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "redfull" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/security) +"mnp" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) "mny" = ( /turf/closed/wall/prison, /area/fiorina/station/flight_deck) -"mnJ" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"mnR" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"mom" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/surgicaldrill, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, -/area/fiorina/station/lowsec) -"moK" = ( -/obj/item/clothing/under/shorts/red, -/turf/open/floor/prison{ - icon_state = "yellowfull" +"moJ" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 }, -/area/fiorina/station/central_ring) -"moQ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/tumor/civres) "moW" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"mpb" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison, -/area/fiorina/station/park) "mpf" = ( /obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ layer = 2.6 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzII) -"mpB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 +"mpr" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" +/area/fiorina/station/power_ring) +"mpO" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/turf/open/space/basic, -/area/fiorina/oob) -"mpE" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"mpT" = ( +/obj/structure/platform{ + dir = 1 }, /turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" + icon_state = "floor_plate" }, -/area/fiorina/station/botany) -"mpN" = ( -/obj/item/stock_parts/manipulator/pico, +/area/fiorina/station/flight_deck) +"mqc" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) -"mpR" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/area/fiorina/lz/near_lzII) +"mqo" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" }, -/area/fiorina/station/research_cells) -"mpY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreen" }, -/obj/structure/barricade/handrail/type_b{ - dir = 1 +/area/fiorina/tumor/ice_lab) +"mqY" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 8 }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"mqB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/fiorina/station/security) -"mqJ" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"mqM" = ( -/obj/item/stack/sandbags_empty/half, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/flight_deck) +/area/fiorina/station/medbay) "mrk" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -20398,39 +20595,41 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"mrm" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) +"mrn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) "mrG" = ( /obj/structure/extinguisher_cabinet, /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"mrI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med, -/turf/closed/wall/prison, -/area/fiorina/station/medbay) -"mrK" = ( -/obj/structure/closet/secure_closet/medical2, +"mrO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"mrW" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/fiorina/station/disco) +/area/fiorina/station/transit_hub) "mrX" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"msd" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) "msj" = ( /obj/item/toy/crayon/orange, /turf/open/floor/plating/prison, @@ -20444,6 +20643,16 @@ icon_state = "plating" }, /area/fiorina/tumor/ship) +"mss" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_tram) "msu" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -20451,20 +20660,22 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"msF" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"msv" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/aux_engi) -"msH" = ( -/obj/item/tool/surgery/cautery, /turf/open/floor/prison{ - dir = 8; + dir = 9; icon_state = "yellow" }, /area/fiorina/station/lowsec) +"msS" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "mtj" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -20473,151 +20684,89 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"mtD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"mtG" = ( +"mtk" = ( /turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, -/area/fiorina/station/park) -"mtP" = ( -/obj/structure/window/reinforced{ dir = 8; - health = 80 + icon_state = "whitegreencorner" }, +/area/fiorina/tumor/ice_lab) +"mtm" = ( +/obj/effect/spawner/random/toolbox, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"mue" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +/area/fiorina/tumor/civres) +"mtr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/milk{ + pixel_x = 2; + pixel_y = 3 }, /turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"muD" = ( -/obj/structure/tunnel, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" + icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"muX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/area/fiorina/tumor/fiberbush) +"muf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"muB" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" }, +/area/fiorina/tumor/civres) +"muO" = ( +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"muT" = ( +/obj/item/device/flashlight/flare/on, /turf/open/floor/prison{ dir = 1; icon_state = "whitegreen" }, /area/fiorina/tumor/ice_lab) +"muZ" = ( +/obj/item/storage/briefcase, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "mvl" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"mvp" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"mvF" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - indestructible = 1; - name = "launch bay door" - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"mvV" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"mvY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"mwu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c10, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 +"mwL" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/machinery/light/double/blue{ +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"mwU" = ( +/obj/structure/barricade/handrail/type_b{ dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"mwK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 10 + layer = 3.5 }, -/obj/item/phone{ - pixel_x = 9; - pixel_y = -10 +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security) -"mwP" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"mxc" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) +/area/fiorina/tumor/ice_lab) "mxk" = ( /obj/item/trash/tray, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/power_ring) -"mxm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/plantspray/pests, +"mxn" = ( /turf/open/floor/prison{ dir = 4; - icon_state = "blue_plate" + icon_state = "bluecorner" }, -/area/fiorina/station/botany) +/area/fiorina/station/chapel) "mxs" = ( /obj/item/storage/belt/marine/quackers, /obj/effect/spawner/gibspawner/human, @@ -20626,6 +20775,31 @@ name = "pool" }, /area/fiorina/station/park) +"mxz" = ( +/obj/item/bedsheet, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/lowsec) +"mxG" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"mxO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "mxQ" = ( /turf/closed/wall/prison, /area/fiorina/station/power_ring) @@ -20633,84 +20807,61 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/fiorina/station/chapel) -"myf" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"myi" = ( -/obj/item/tool/mop, +"myg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"myj" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"myA" = ( -/obj/structure/bed/chair{ - dir = 4; - layer = 2.8 + icon_state = "darkbrownfull2" }, -/obj/structure/barricade/handrail/type_b, +/area/fiorina/tumor/aux_engi) +"myt" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "red" }, -/area/fiorina/station/flight_deck) -"myH" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/area/fiorina/station/power_ring) +"myO" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/transit_hub) -"myJ" = ( -/obj/structure/closet/bombcloset, -/obj/effect/spawner/random/gun/rifle/midchance, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" + dir = 1; + icon_state = "whitegreen" }, -/area/fiorina/station/flight_deck) -"myK" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/station/medbay) +"mzp" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 }, -/area/fiorina/tumor/aux_engi) -"myQ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreen" + icon_state = "whitegreenfull" }, /area/fiorina/tumor/ice_lab) -"mzn" = ( -/obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) "mzy" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/corsat{ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) -"mzJ" = ( -/obj/item/tool/lighter/random{ - pixel_x = 14; - pixel_y = 13 +"mzz" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, /turf/open/floor/prison, -/area/fiorina/station/power_ring) -"mzK" = ( +/area/fiorina/lz/near_lzII) +"mzF" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, /turf/open/floor/prison{ - icon_state = "whitegreencorner" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/civres_blue) "mzS" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1; @@ -20724,81 +20875,99 @@ opacity = 0 }, /area/fiorina/oob) -"mAs" = ( -/obj/item/broken_device, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"mAg" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 }, -/area/fiorina/station/medbay) -"mAt" = ( /turf/open/floor/prison{ - icon_state = "greenbluecorner" + icon_state = "darkbrown2" }, -/area/fiorina/station/botany) -"mAK" = ( -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster17"; - name = "magazine" +/area/fiorina/station/park) +"mAv" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0; + pixel_x = 10; + pixel_y = -8 }, -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster3"; - name = "magazine"; - pixel_x = 6; - pixel_y = 8 +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"mAz" = ( +/obj/structure/closet/emcloset, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 5; + icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"mAN" = ( -/obj/item/toy/crayon/mime, +"mAA" = ( +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"mAB" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"mAS" = ( +/area/fiorina/tumor/civres) +"mAE" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_y = 11 }, -/area/fiorina/tumor/ice_lab) -"mBG" = ( -/obj/structure/bed/chair/comfy, /turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/disco) -"mBJ" = ( -/obj/item/ammo_box/magazine/misc/flares/empty, +/area/fiorina/station/research_cells) +"mAG" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/item/tool/soap/nanotrasen, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "kitchen" }, -/area/fiorina/tumor/ice_lab) -"mBZ" = ( -/obj/structure/machinery/disposal, +/area/fiorina/tumor/civres) +"mBm" = ( +/obj/item/storage/briefcase, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/transit_hub) +"mBy" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 }, -/area/fiorina/station/security/wardens) -"mCe" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" + dir = 10; + icon_state = "darkbrown2" + }, +/area/fiorina/maintenance) +"mBV" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/station/lowsec) -"mCp" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "blue" + icon_state = "bluefull" }, -/area/fiorina/station/chapel) +/area/fiorina/station/power_ring) "mCA" = ( /obj/structure/prop/resin_prop, /turf/open/floor/plating/prison, @@ -20807,202 +20976,182 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/lowsec) -"mCH" = ( -/obj/item/newspaper, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"mCR" = ( -/obj/structure/platform, -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/obj/structure/machinery/light/double/blue, +"mCG" = ( +/obj/structure/machinery/processor, /turf/open/floor/prison{ - icon_state = "whitegreen" + dir = 8; + icon_state = "blue_plate" }, -/area/fiorina/station/medbay) -"mDn" = ( +/area/fiorina/station/botany) +"mCT" = ( +/obj/structure/surface/rack, +/obj/item/handcuffs/zip, /turf/open/floor/prison{ - dir = 5; - icon_state = "green" + icon_state = "darkredfull2" }, -/area/fiorina/tumor/servers) -"mDq" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" +/area/fiorina/station/lowsec) +"mDi" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/item/reagent_container/food/snacks/meat, +/area/fiorina/station/central_ring) +"mDs" = ( +/obj/item/stack/sandbags_empty/half, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" + dir = 8; + icon_state = "darkyellow2" }, -/area/fiorina/station/botany) +/area/fiorina/lz/near_lzI) "mDz" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"mDO" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"mDS" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, +"mDV" = ( /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "darkyellowcorners2" }, +/area/fiorina/station/telecomm/lz1_cargo) +"mEb" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/prison, /area/fiorina/station/security) -"mEn" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, +"mEc" = ( /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "darkbrowncorners2" }, -/area/fiorina/station/security) -"mEJ" = ( -/obj/structure/window/reinforced{ - dir = 4 +/area/fiorina/station/park) +"mEg" = ( +/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" }, -/obj/structure/window/reinforced{ - dir = 8 +/area/fiorina/tumor/fiberbush) +"mEv" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/research_cells) +"mEL" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket" }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data, /turf/open/floor/prison, -/area/fiorina/station/security) +/area/fiorina/station/chapel) "mEO" = ( /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"mEU" = ( +"mFf" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" + icon_state = "darkredfull2" }, -/area/fiorina/station/disco) -"mEY" = ( -/obj/item/device/flashlight/on, +/area/fiorina/oob) +"mFh" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" + dir = 9; + icon_state = "whitegreen" }, -/area/fiorina/tumor/aux_engi) -"mFS" = ( -/obj/structure/cargo_container/grant/left, +/area/fiorina/station/medbay) +"mFm" = ( +/obj/item/tool/mop, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"mGf" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, /area/fiorina/station/civres_blue) -"mGr" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, +"mFv" = ( +/obj/structure/largecrate/random/mini/ammo, +/turf/open/floor/prison, /area/fiorina/station/central_ring) -"mGN" = ( -/obj/structure/platform{ - dir = 8 +"mFz" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibmid1" }, -/obj/item/prop/almayer/handheld1, -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"mGX" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"mGZ" = ( -/obj/item/trash/eat, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 + dir = 10; + icon_state = "sterile_white" }, +/area/fiorina/station/medbay) +"mGe" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"mGx" = ( +/obj/item/reagent_container/food/drinks/sillycup, /turf/open/floor/prison, /area/fiorina/station/power_ring) "mHC" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/maintenance) +"mHN" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/ice_lab) "mHR" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/aux_engi) -"mHY" = ( -/obj/item/frame/rack, +"mHZ" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 5; + icon_state = "whitepurple" }, -/area/fiorina/station/security) -"mIf" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/area/fiorina/station/research_cells) +"mIk" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"mIr" = ( -/obj/structure/bed{ - icon_state = "abed" +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"mIq" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/central_ring) "mIu" = ( /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"mIQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 +"mIA" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/obj/item/bedsheet/green, /turf/open/floor/prison{ dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/station/civres_blue) -"mJc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "yellow" }, -/area/fiorina/tumor/aux_engi) -"mJg" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/obj/effect/landmark/objective_landmark/close, +/area/fiorina/station/lowsec) +"mIE" = ( /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "darkredfull2" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/research_cells) +"mJe" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) "mJk" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/aspen{ @@ -21022,39 +21171,39 @@ /obj/item/trash/kepler, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"mJH" = ( -/obj/item/device/flashlight/flare/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"mKd" = ( -/obj/effect/decal/cleanable/blood/oil, +"mJy" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" + dir = 1; + icon_state = "whitegreen" }, -/area/fiorina/station/lowsec) -"mKo" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/objective_landmark/close, +/area/fiorina/station/medbay) +"mJz" = ( +/obj/structure/closet/emcloset, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + icon_state = "darkbrownfull2" }, /area/fiorina/maintenance) -"mKp" = ( -/obj/item/prop/helmetgarb/riot_shield, +"mJM" = ( +/obj/item/trash/uscm_mre, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/security) -"mKx" = ( +/area/fiorina/station/medbay) +"mKt" = ( +/obj/item/storage/toolbox, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"mKy" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"mKG" = ( /turf/open/floor/prison{ - icon_state = "blue_plate" + dir = 8; + icon_state = "floor_marked" }, -/area/fiorina/station/botany) +/area/fiorina/station/lowsec) "mKS" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -21069,20 +21218,29 @@ }, /turf/open/space, /area/fiorina/oob) -"mLm" = ( -/obj/structure/platform_decoration{ - dir = 4 +"mLe" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/research_cells) +"mLB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/botany) -"mLL" = ( -/obj/item/tool/mop, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/park) +/area/fiorina/tumor/civres) +"mLE" = ( +/obj/structure/closet, +/obj/item/reagent_container/spray/cleaner, +/obj/item/stack/sheet/plasteel/small_stack, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "mLP" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/smartfridge/drinks{ @@ -21090,38 +21248,55 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"mLY" = ( +"mLS" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" + icon_state = "floor_plate" + }, +/area/fiorina/station/botany) +"mMb" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 }, -/area/fiorina/tumor/aux_engi) -"mMa" = ( -/obj/structure/closet/emcloset, /turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" + dir = 10; + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"mMh" = ( -/obj/effect/spawner/random/sentry/midchance, +"mMf" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/prison{ dir = 10; icon_state = "sterile_white" }, /area/fiorina/station/medbay) -"mMi" = ( -/obj/item/tool/weldpack, +"mMo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"mMk" = ( -/obj/structure/prop/resin_prop, +/area/fiorina/station/medbay) +"mMq" = ( +/obj/item/trash/chips, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/research_cells) "mMH" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -21134,108 +21309,98 @@ name = "astroturf" }, /area/fiorina/station/civres_blue) -"mMP" = ( +"mNg" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate, +/obj/item/spacecash/c10, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"mNc" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison, -/area/fiorina/station/security) +/area/fiorina/station/lowsec) "mNh" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"mNB" = ( -/obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"mNN" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"mOf" = ( +"mNj" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, +/obj/item/paper_bin, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"mOm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 + icon_state = "sterile_white" }, -/obj/structure/platform_decoration{ - dir = 9 +/area/fiorina/tumor/ice_lab) +"mNn" = ( +/obj/structure/machinery/door/airlock/almayer/marine, +/turf/open/floor/prison{ + icon_state = "yellowfull" }, +/area/fiorina/station/lowsec) +"mNC" = ( +/obj/structure/barricade/wooden, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/transit_hub) -"mOE" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/area/fiorina/station/power_ring) +"mNJ" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 }, -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 }, -/area/fiorina/station/power_ring) -"mOI" = ( -/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"mOn" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"mOU" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4 + icon_state = "greenblue" }, +/area/fiorina/station/botany) +"mOr" = ( +/obj/item/poster, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 9; + icon_state = "whitepurple" }, -/area/fiorina/station/power_ring) -"mPe" = ( -/obj/effect/decal/cleanable/blood/oil, +/area/fiorina/station/research_cells) +"mOC" = ( +/obj/structure/closet/crate/medical, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" + icon_state = "floor_plate" }, /area/fiorina/station/medbay) -"mPf" = ( -/obj/item/ammo_magazine/smg/mp5, +"mOF" = ( /turf/open/floor/prison{ dir = 8; - icon_state = "darkyellow2" + icon_state = "bluecorner" }, -/area/fiorina/station/telecomm/lz1_cargo) -"mPg" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"mPn" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +/area/fiorina/station/civres_blue) +"mOW" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 1 }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"mPA" = ( +/obj/structure/barricade/wooden, /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/telecomm/lz1_cargo) "mPW" = ( /obj/structure/prop/structure_lattice{ dir = 4; @@ -21243,28 +21408,29 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) -"mPX" = ( +"mQe" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" + icon_state = "greenblue" }, -/area/fiorina/station/park) -"mQy" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null +/area/fiorina/station/botany) +"mQn" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "whitegreen" }, -/area/fiorina/station/security) -"mQB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras, +/area/fiorina/tumor/ice_lab) +"mQD" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/obj/item/storage/toolbox/syndicate, /turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/disco) "mQG" = ( /obj/structure/barricade/handrail/type_b{ dir = 8; @@ -21274,60 +21440,90 @@ name = "astroturf" }, /area/fiorina/station/civres_blue) -"mQV" = ( -/obj/item/tool/stamp, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"mRA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, +"mQZ" = ( /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"mRM" = ( -/obj/structure/monorail{ - dir = 5; - name = "launch track" +/area/fiorina/station/disco) +"mRk" = ( +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 2 }, -/turf/open/space, -/area/fiorina/oob) -"mRS" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 8 }, -/area/fiorina/station/central_ring) -"mSk" = ( /obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"mSo" = ( -/obj/structure/bed/sofa/south/grey/right, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + icon_state = "darkbrownfull2" + }, +/area/fiorina/maintenance) +"mRz" = ( +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_10_1" + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"mRT" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 }, -/area/fiorina/station/transit_hub) -"mSp" = ( -/obj/item/clothing/under/marine/ua_riot, -/obj/item/weapon/gun/rifle/m16, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security) -"mSP" = ( -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"mSZ" = ( -/obj/effect/alien/weeds/node, +/area/fiorina/station/transit_hub) +"mRU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - icon_state = "darkbrown2" + icon_state = "redfull" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/medbay) +"mSM" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/research_cells) +"mSN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, +/area/fiorina/tumor/servers) +"mSY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/tumor/ice_lab) "mTa" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -21340,128 +21536,130 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"mTl" = ( -/obj/item/storage/box/gloves, +"mTq" = ( +/obj/structure/bed/chair{ + dir = 4; + layer = 2.8 + }, +/obj/structure/barricade/handrail/type_b, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/transit_hub) -"mTs" = ( -/obj/structure/barricade/wooden{ - dir = 4 +/area/fiorina/station/flight_deck) +"mTy" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" }, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison{ + dir = 8; + icon_state = "cell_stripe" + }, +/area/fiorina/oob) +"mTJ" = ( +/obj/item/stool, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/power_ring) "mTM" = ( /obj/item/tool/warning_cone, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"mUd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"mTS" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison{ + icon_state = "darkredfull2" }, -/obj/effect/decal/cleanable/blood/oil/streak, +/area/fiorina/station/research_cells) +"mTX" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue" + }, +/area/fiorina/station/chapel) +"mUk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison{ + dir = 5; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"mUr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/crayons, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreenfull" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/medbay) "mUA" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"mUK" = ( +"mUV" = ( +/obj/structure/closet/basketball, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/research_cells) +"mVg" = ( /obj/structure/window{ - dir = 4 + dir = 8 }, /obj/item/circuitboard/machine/rdserver, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, /area/fiorina/tumor/servers) -"mVd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster3"; - name = "magazine"; - pixel_x = 6; - pixel_y = 8 - }, -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster17"; - name = "magazine" +"mWg" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" }, -/obj/structure/sign/poster{ - desc = "The M41A is on the cover."; - icon_state = "poster15"; - name = "magazine"; - pixel_x = -5; - pixel_y = 5 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) -"mVk" = ( -/obj/item/stack/sheet/wood, +/area/fiorina/lz/near_lzII) +"mWi" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/obj/effect/spawner/random/gun/smg, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/telecomm/lz1_cargo) -"mVn" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/area/fiorina/tumor/aux_engi) +"mWx" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/telecomm/lz1_tram) -"mVO" = ( -/obj/item/tool/extinguisher, /turf/open/floor/prison, -/area/fiorina/tumor/servers) -"mVY" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, -/area/fiorina/station/security) -"mWs" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 6 - }, -/turf/open/floor/prison{ +/area/fiorina/lz/near_lzI) +"mWF" = ( +/obj/structure/bed/chair{ dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"mWO" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"mWR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications/simple, -/turf/open/floor/prison{ - icon_state = "bluefull" + layer = 2.7 }, +/turf/open/floor/prison, /area/fiorina/station/power_ring) -"mWS" = ( -/obj/item/stack/rods, +"mWV" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "green" }, -/area/fiorina/station/security) +/area/fiorina/station/chapel) "mWX" = ( /obj/structure/platform{ dir = 8 @@ -21478,75 +21676,152 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"mXe" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) "mXk" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"mXS" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null +"mXq" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/obj/item/weapon/gun/launcher/grenade/m81, -/obj/item/storage/pill_bottle/kelotane, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/structure/machinery/shower{ + dir = 8 }, -/area/fiorina/station/security) -"mYl" = ( -/obj/item/ammo_magazine/rifle/mar40, /turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" + icon_state = "kitchen" }, /area/fiorina/station/lowsec) -"mYy" = ( -/obj/effect/landmark/monkey_spawn, +"mXI" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"mXT" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/tumor/aux_engi) -"mYG" = ( /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/ship) +/area/fiorina/station/power_ring) +"mXY" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 9; + icon_state = "blue" + }, +/area/fiorina/station/civres_blue) +"mYo" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"mYp" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/bible/hefa, +/turf/open/floor/prison{ + dir = 6; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"mYu" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) +"mYN" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"mYZ" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "mZo" = ( /obj/item/tool/shovel, /turf/open/auto_turf/sand/layer1, /area/fiorina/tumor/civres) -"mZy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"mZw" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" }, -/obj/effect/spawner/random/gun/smg/lowchance, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"mZH" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" + icon_state = "darkredfull2" }, +/area/fiorina/station/security) +"mZG" = ( +/obj/item/paper/crumpled/bloody, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreenfull" }, -/area/fiorina/station/central_ring) +/area/fiorina/tumor/ice_lab) +"mZV" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) "naf" = ( /turf/closed/shuttle/ert, /area/fiorina/oob) -"naI" = ( -/obj/item/clothing/under/color/orange, +"naj" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "yellow" + icon_state = "darkpurple2" }, -/area/fiorina/station/lowsec) +/area/fiorina/tumor/servers) +"naN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/disco) "naW" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/civres) @@ -21554,87 +21829,84 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"nbP" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"ncb" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"ncj" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +"nbo" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison, -/area/fiorina/station/medbay) -"nck" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 +/area/fiorina/station/chapel) +"nbv" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue" }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 +/area/fiorina/station/power_ring) +"nbU" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/cherrypie{ - pixel_y = 7 +/turf/open/floor/prison{ + icon_state = "darkbrown2" }, +/area/fiorina/station/park) +"ncn" = ( /turf/open/floor/prison{ + dir = 9; + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) +"ncP" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "darkyellowfull2" + pixel_x = 10; + pixel_y = -1 }, -/area/fiorina/station/flight_deck) -"ncs" = ( -/obj/structure/machinery/vending/sovietsoda, /turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" + icon_state = "floor_plate" }, -/area/fiorina/station/botany) -"ncF" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/area/fiorina/station/chapel) +"ncQ" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/tumor/ice_lab) -"ncY" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/item/storage/briefcase{ - pixel_y = -2 +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"ndh" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "4" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/weapon/gun/shotgun/pump{ + starting_attachment_types = list(/obj/item/attachable/stock/shotgun) }, -/area/fiorina/station/security) +/turf/open/floor/prison, +/area/fiorina/station/medbay) "ndl" = ( /obj/item/storage/box/cups, /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/pills/lowchance, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"ndD" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"nds" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 11; + pixel_y = 14 }, -/area/fiorina/lz/near_lzII) -"ndQ" = ( -/obj/structure/machinery/recharge_station, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/largecrate/random/mini/chest/c, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"ndt" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"ndC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, /turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" + icon_state = "redfull" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/security) "ndZ" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" @@ -21656,65 +21928,49 @@ name = "astroturf" }, /area/fiorina/station/park) -"nez" = ( -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_5" +"nee" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, /turf/open/floor/prison{ dir = 1; - icon_state = "darkbrown2" + icon_state = "whitegreen" }, -/area/fiorina/station/park) -"neE" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/prison, -/area/fiorina/station/security) -"neT" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"neY" = ( +/area/fiorina/tumor/ice_lab) +"nej" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/fiorina/station/central_ring) -"nfe" = ( -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_psycopath_l"; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_ketchup_l"; - pixel_x = 8; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_guilty_l"; - pixel_x = -12; - pixel_y = 2 + icon_state = "floor_plate" }, +/area/fiorina/station/park) +"nes" = ( /turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"nfh" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 + dir = 6; + icon_state = "darkyellow2" }, +/area/fiorina/station/telecomm/lz1_tram) +"neD" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "whitegreen" }, -/area/fiorina/lz/near_lzII) -"nfu" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" +/area/fiorina/tumor/ice_lab) +"neH" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" }, +/area/fiorina/station/research_cells) +"neX" = ( +/obj/structure/platform, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/power_ring) "nfA" = ( /obj/structure/platform, /obj/item/stack/sheet/metal, @@ -21726,36 +21982,71 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"nfZ" = ( -/obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/medbay) +"nfI" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) "nga" = ( /turf/closed/wall/strata_ice/jungle{ desc = "It is made of Fiberbush(tm). It contains asbestos."; name = "synthetic vegetation" }, /area/fiorina/station/civres_blue) -"ngg" = ( -/obj/item/device/flashlight/lamp/tripod, +"ngd" = ( +/obj/item/trash/hotdog, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 8; + icon_state = "blue" }, /area/fiorina/station/power_ring) -"ngn" = ( -/obj/structure/machinery/deployable/barrier, +"ngk" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 4; + icon_state = "greenfull" }, -/area/fiorina/station/security) -"ngF" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue, +/area/fiorina/tumor/civres) +"ngq" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"ngr" = ( +/obj/structure/platform_decoration, +/obj/item/reagent_container/food/drinks/sillycup, /turf/open/floor/prison{ - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/flight_deck) +"ngG" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/tumor/aux_engi) +"nhd" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"nhi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/tumor/aux_engi) "nho" = ( /obj/structure/platform{ dir = 1 @@ -21766,25 +22057,23 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"nhM" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, +"nhz" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"nhX" = ( -/obj/structure/machinery/gibber, -/obj/effect/decal/cleanable/blood{ - pixel_x = -6; - pixel_y = 4 + icon_state = "whitepurplecorner" }, +/area/fiorina/station/research_cells) +"nhF" = ( +/obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison{ - icon_state = "blue_plate" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/botany) +/area/fiorina/station/medbay) +"nhR" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) "nhY" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, @@ -21793,24 +22082,20 @@ /obj/structure/sign/safety/fire_haz, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"nie" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "repairpanelslz" - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"nim" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/lz/near_lzI) "nip" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"nis" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + layer = 2.97; + pixel_y = -14 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) "niw" = ( /obj/structure/barricade/handrail{ dir = 8 @@ -21819,37 +22104,25 @@ name = "astroturf" }, /area/fiorina/station/research_cells) -"njg" = ( -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"njm" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"nju" = ( -/obj/item/gift, +"njq" = ( +/obj/item/tool/weldpack, /turf/open/floor/prison{ - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/station/park) -"njG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/civres_blue) +"njx" = ( +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"njC" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "darkyellow2" }, /area/fiorina/station/telecomm/lz1_cargo) "njK" = ( @@ -21866,50 +22139,16 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"njN" = ( -/obj/item/stock_parts/micro_laser/ultra, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"njY" = ( -/obj/structure/inflatable/popped, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"njT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder{ + pixel_x = 8; + pixel_y = 8 }, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"nkg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "darkredfull2" }, /area/fiorina/station/lowsec) -"nkF" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/park) -"nkJ" = ( -/obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"nkM" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) "nlw" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -21926,43 +22165,12 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"nmh" = ( -/obj/structure/window{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"nmi" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - dir = 1; - icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/research_cells) "nmm" = ( /turf/open/organic/grass{ name = "astroturf" }, /area/fiorina/station/research_cells) -"nmy" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) -"nmK" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"nmL" = ( +"nmx" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, @@ -21971,49 +22179,33 @@ icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"nmM" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) +"nmQ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/fiorina/station/research_cells) "nmT" = ( /obj/item/toy/crayon/blue, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"nnr" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"nny" = ( +"nnx" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_x = -2; + pixel_y = 7 }, -/area/fiorina/station/power_ring) -"nnC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"nnG" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 +/area/fiorina/tumor/civres) +"nnX" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" }, -/obj/structure/closet/emcloset, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) "noa" = ( /obj/structure/largecrate/supply/supplies/plasteel, /turf/open/floor/plating/prison, @@ -22024,22 +22216,27 @@ name = "astroturf" }, /area/fiorina/station/park) -"nor" = ( -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" +"noY" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"nph" = ( +/obj/item/stool, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "damaged2" }, -/area/fiorina/station/medbay) -"noz" = ( -/obj/structure/platform{ - dir = 8 +/area/fiorina/station/lowsec) +"npp" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) +/area/fiorina/station/botany) "npx" = ( /obj/structure/barricade/handrail/type_b{ dir = 4; @@ -22049,6 +22246,47 @@ name = "astroturf" }, /area/fiorina/station/civres_blue) +"npz" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_tram) +"npN" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/spawner/random/gun/pistol, +/turf/open/floor/prison{ + dir = 10; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"npV" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) +"nql" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"nqs" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) "nqL" = ( /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner, @@ -22060,110 +22298,112 @@ "nqN" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/security) -"nrd" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, +"nqV" = ( +/obj/item/device/cassette_tape/nam, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/botany) +/area/fiorina/station/medbay) "nre" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"nrn" = ( +"nrq" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"nrI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/plantspray/pests, /turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" + dir = 4; + icon_state = "blue_plate" }, -/area/fiorina/maintenance) -"nrU" = ( -/obj/item/tool/pickaxe, -/obj/item/tool/pickaxe{ - pixel_y = 5 +/area/fiorina/station/botany) +"nrL" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 }, -/obj/item/tool/pickaxe{ - pixel_y = 10 +/obj/structure/machinery/m56d_hmg, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"nrR" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "green" }, -/obj/structure/surface/rack, +/area/fiorina/station/transit_hub) +"nrY" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "bluecorner" }, -/area/fiorina/tumor/ice_lab) -"nsm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/area/fiorina/station/chapel) +"nsb" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 9; + icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"nss" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/research_cells) -"nsD" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 +"nse" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" }, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"nsg" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8; + icon_state = "green" }, /area/fiorina/tumor/civres) -"ntc" = ( +"nsn" = ( +/obj/structure/janitorialcart, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - dir = 4; - icon_state = "green" + dir = 1; + icon_state = "darkbrown2" }, -/area/fiorina/tumor/civres) -"ntf" = ( -/obj/item/implanter/compressed, -/obj/structure/safe, -/obj/effect/landmark/objective_landmark/science, +/area/fiorina/station/park) +"nsx" = ( +/obj/structure/closet/firecloset/full, +/obj/item/storage/pill_bottle/bicaridine/skillless, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/security) -"ntv" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"ntw" = ( +/area/fiorina/tumor/ice_lab) +"nsC" = ( +/obj/item/stack/sandbags_empty/half, /turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" + icon_state = "darkyellow2" }, /area/fiorina/lz/near_lzI) -"ntx" = ( +"nsH" = ( +/obj/structure/platform, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + dir = 8; + icon_state = "cell_stripe" }, -/area/fiorina/station/disco) -"ntE" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/station/security) +"ntg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + pixel_y = 6 }, -/area/fiorina/station/disco) +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"ntv" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) "ntH" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -22176,133 +22416,66 @@ }, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"ntM" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"ntZ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"nub" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"nuo" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) -"nup" = ( -/obj/structure/barricade/handrail/type_b, +"nuE" = ( +/obj/structure/inflatable/popped, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"nuN" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, +/area/fiorina/station/transit_hub) +"nvz" = ( +/obj/structure/flora/pottedplant/random, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"nuX" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" + icon_state = "kitchen" }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"nvi" = ( -/obj/structure/barricade/wooden{ +/area/fiorina/tumor/civres) +"nvC" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"nvn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/chapel) -"nvs" = ( /obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" + dir = 9 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 5; + icon_state = "whitegreen" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/ice_lab) "nvD" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/botany) -"nvK" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, +"nvF" = ( +/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"nvX" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"nwv" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ +/area/fiorina/station/medbay) +"nvO" = ( +/obj/structure/machinery/light/double/blue{ dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"nwS" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/station/telecomm/lz1_tram) -"nwT" = ( +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"nvZ" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/prison{ - dir = 1; - icon_state = "green" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/tumor/aux_engi) -"nxc" = ( -/obj/structure/sign/poster{ - icon_state = "poster18"; - pixel_y = 32 +/area/fiorina/tumor/ice_lab) +"nwh" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" }, +/obj/structure/bed/roller, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/medbay) "nxl" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -22313,66 +22486,61 @@ icon_state = "plate" }, /area/fiorina/station/civres_blue) -"nxq" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"nxW" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +"nxH" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" }, -/obj/structure/barricade/wooden{ - dir = 4 +/area/fiorina/station/medbay) +"nxM" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"nyk" = ( +/obj/structure/machinery/power/geothermal, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "bluecorner" }, -/area/fiorina/station/telecomm/lz1_cargo) -"nxY" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/area/fiorina/station/power_ring) +"nyl" = ( +/obj/structure/window{ + dir = 1 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/gloves/latex, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/medbay) -"nyq" = ( +/area/fiorina/tumor/servers) +"nyo" = ( /obj/structure/platform, -/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"nyy" = ( +/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison{ - icon_state = "whitegreen" + icon_state = "floor_plate" + }, +/area/fiorina/tumor/aux_engi) +"nyD" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/fiorina/station/medbay) -"nyC" = ( -/obj/item/stack/rods/plasteel, /turf/open/floor/prison{ - icon_state = "floorscorched2" + dir = 8; + icon_state = "red" }, /area/fiorina/station/security) -"nyF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, +"nyQ" = ( +/obj/structure/dropship_equipment/mg_holder, /turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/disco) -"nyO" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 + icon_state = "floor_plate" }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) +/area/fiorina/station/power_ring) "nyS" = ( /obj/structure/platform{ dir = 4 @@ -22383,34 +22551,24 @@ /obj/item/tool/extinguisher/mini, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"nzf" = ( -/obj/structure/machinery/processor, -/obj/effect/decal/cleanable/blood{ - pixel_y = 20 - }, -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"nzi" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"nzu" = ( -/obj/structure/reagent_dispensers/water_cooler, +"nza" = ( +/obj/structure/machinery/deployable/barrier, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/security) +"nzm" = ( +/obj/structure/platform, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security/wardens) -"nzw" = ( -/obj/item/clothing/head/soft/yellow, +/area/fiorina/station/security) +"nzp" = ( +/obj/item/clothing/gloves/boxing/blue, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" + dir = 9; + icon_state = "yellow" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/central_ring) "nzI" = ( /obj/structure/largecrate/random, /turf/open/floor/wood, @@ -22431,125 +22589,156 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"nAm" = ( +"nAr" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/fiorina/lz/near_lzII) -"nAs" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "bluefull" }, -/area/fiorina/station/lowsec) -"nAK" = ( +/area/fiorina/station/civres_blue) +"nBp" = ( +/obj/item/weapon/gun/smg/nailgun, +/obj/structure/surface/rack, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/lowsec) -"nBb" = ( +/area/fiorina/maintenance) +"nBu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) -"nBt" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "4" +/area/fiorina/station/transit_hub) +"nBB" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" }, -/obj/item/weapon/gun/shotgun/pump{ - starting_attachment_types = list(/obj/item/attachable/stock/shotgun) +/area/fiorina/lz/near_lzI) +"nBG" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" }, -/turf/open/floor/prison, /area/fiorina/station/medbay) -"nBw" = ( +"nBK" = ( +/obj/structure/platform{ + dir = 1 + }, /turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" + icon_state = "floor_plate" + }, +/area/fiorina/station/botany) +"nBM" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/ammo_magazine/shotgun/beanbag, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) +"nBO" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison{ + icon_state = "bluefull" }, /area/fiorina/station/power_ring) -"nCh" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +"nBR" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"nCm" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" + dir = 4; + icon_state = "darkyellowfull2" }, /area/fiorina/lz/near_lzI) -"nCt" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" +"nBV" = ( +/turf/open/floor/prison{ + icon_state = "darkpurple2" }, +/area/fiorina/tumor/servers) +"nCa" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison, -/area/fiorina/station/medbay) -"nCH" = ( -/obj/item/stack/rods, +/area/fiorina/tumor/aux_engi) +"nCl" = ( +/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/disco) -"nCV" = ( -/obj/item/ammo_casing{ - icon_state = "casing_7_1" +/area/fiorina/station/research_cells) +"nCu" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"nCw" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/telecomm/lz1_cargo) +"nCC" = ( +/obj/item/trash/candy, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/telecomm/lz1_cargo) "nCX" = ( /turf/open/organic/grass{ name = "astroturf" }, /area/fiorina/station/park) -"nDq" = ( -/obj/structure/bed/sofa/south/grey/left, +"nDJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "whitegreen" }, +/area/fiorina/tumor/ice_lab) +"nDT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handcuffs, +/turf/open/floor/prison, /area/fiorina/station/security) -"nDr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/autoname{ - name = "\improper Null Hatch REPLACE ME"; - req_access = null; - req_one_access = null +"nDW" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"nDI" = ( -/obj/item/stack/tile/plasteel, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8; + icon_state = "whitegreen" }, /area/fiorina/tumor/ice_lab) -"nEh" = ( -/obj/item/device/flashlight, +"nEs" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "blue" + icon_state = "greencorner" }, -/area/fiorina/station/civres_blue) -"nEB" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/tumor/civres) +"nEy" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/medbay) -"nEI" = ( -/obj/structure/machinery/deployable/barrier, /turf/open/floor/prison, /area/fiorina/station/security) "nEN" = ( @@ -22559,89 +22748,78 @@ name = "astroturf" }, /area/fiorina/station/research_cells) -"nEP" = ( -/obj/structure/closet, -/obj/item/reagent_container/spray/cleaner, -/obj/item/stack/sheet/plasteel/small_stack, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"nEW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) -"nFb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/emeraldgreen, -/obj/item/tool/lighter, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"nFc" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_1" - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison, -/area/fiorina/station/medbay) "nFB" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/gift, /turf/open/floor/wood, /area/fiorina/station/park) -"nFJ" = ( -/obj/structure/stairs/perspective{ +"nFI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/medbay) +"nGk" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/prison{ dir = 4; - icon_state = "p_stair_full" + icon_state = "darkyellowfull2" }, -/turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"nGp" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +"nGq" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/floor/prison, -/area/fiorina/station/disco) +/area/fiorina/station/medbay) "nGy" = ( /obj/item/newspaper, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"nGB" = ( +"nGz" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/park) +"nGI" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/disco) -"nGO" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +/area/fiorina/station/park) +"nGW" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/station/disco) -"nGV" = ( +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"nGX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"nHb" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 4; + pixel_x = 10; + pixel_y = -3 }, /turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"nGZ" = ( -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/chapel) "nHm" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/fancy/cigar, @@ -22650,23 +22828,29 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"nHZ" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_rightengine" +"nHG" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue" }, -/area/fiorina/station/medbay) -"nIb" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; +/area/fiorina/station/chapel) +"nHH" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; pixel_y = 13 }, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" + dir = 9; + icon_state = "whitegreen" }, -/area/fiorina/station/transit_hub) +/area/fiorina/station/medbay) +"nHZ" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_rightengine" + }, +/area/fiorina/station/medbay) "nIc" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -22684,41 +22868,74 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"nIw" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" +"nIf" = ( +/obj/structure/platform{ + dir = 4 }, +/obj/item/stool, +/obj/item/clothing/shoes/slippers_worn, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "bluefull" + }, +/area/fiorina/station/civres_blue) +"nIh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 4 }, +/turf/open/floor/prison, /area/fiorina/station/security) -"nJq" = ( -/obj/structure/platform{ - dir = 1 +"nIn" = ( +/obj/item/reagent_container/food/snacks/wrapped/booniebars, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/tumor/civres) +"nIo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "blue_plate" }, -/area/fiorina/station/transit_hub) -"nJu" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"nJT" = ( -/obj/structure/inflatable/popped/door, +/area/fiorina/station/botany) +"nIq" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" + dir = 1; + icon_state = "darkbrowncorners2" }, -/area/fiorina/station/medbay) -"nKf" = ( -/obj/structure/bed/chair{ - dir = 1 +/area/fiorina/tumor/aux_engi) +"nIy" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) +"nID" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) +/area/fiorina/lz/near_lzII) +"nJC" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"nJQ" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/maintenance) "nKl" = ( /obj/structure/platform{ dir = 1 @@ -22731,17 +22948,16 @@ }, /turf/open/gm/river/desert/deep, /area/fiorina/lz/near_lzII) -"nKo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - icon_state = "mwo"; - pixel_y = 6 +"nKq" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" + dir = 6; + icon_state = "blue" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/civres_blue) "nKG" = ( /obj/item/stack/sheet/metal, /turf/open/floor/almayer{ @@ -22760,77 +22976,38 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"nLS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 +"nLf" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/reagent_container/food/snacks/doughslice, /turf/open/floor/prison{ dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/flight_deck) -"nLV" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan27" + icon_state = "blue_plate" }, -/area/fiorina/tumor/aux_engi) -"nMg" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" +/area/fiorina/station/botany) +"nLh" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/telecomm/lz1_tram) -"nMi" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 }, -/area/fiorina/station/medbay) -"nMm" = ( /turf/open/floor/prison{ - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) -"nMn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/gun/pistol/lowchance, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"nMp" = ( +/area/fiorina/station/transit_hub) +"nLl" = ( /turf/open/floor/prison{ dir = 4; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"nMz" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "blue" }, -/area/fiorina/station/central_ring) -"nMI" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/power_ring) +"nLV" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" }, -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) +/area/fiorina/tumor/aux_engi) "nMZ" = ( /obj/structure/ice/thin/indestructible, /obj/structure/prop/invuln{ @@ -22850,36 +23027,6 @@ /obj/structure/surface/rack, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"nNS" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"nOe" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"nOg" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"nOi" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "nOw" = ( /obj/structure/ice/thin/indestructible{ dir = 1; @@ -22888,10 +23035,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"nOy" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) "nOz" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/candelabra{ @@ -22901,6 +23044,21 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) +"nOF" = ( +/turf/open/floor/prison{ + dir = 5; + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"nPa" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) "nPj" = ( /obj/item/clothing/glasses/gglasses, /turf/open/space, @@ -22916,113 +23074,76 @@ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) -"nQl" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" +"nPO" = ( +/obj/item/tool/pickaxe, +/obj/structure/platform{ + dir = 4 }, -/obj/item/stack/rods/plasteel, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 4; + icon_state = "whitegreen" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/ice_lab) "nQq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"nQu" = ( +"nQN" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "green" + }, +/area/fiorina/station/botany) +"nQS" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -11; + pixel_y = 13 }, -/area/fiorina/station/central_ring) -"nQE" = ( -/obj/item/stack/sheet/metal, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"nQF" = ( -/obj/structure/largecrate/random, +/area/fiorina/station/power_ring) +"nRb" = ( /turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"nQH" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/security/wardens) +"nRf" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison, +/area/fiorina/station/security) +"nRI" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_x = 11; + pixel_y = 10 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzII) -"nQJ" = ( +/area/fiorina/tumor/aux_engi) +"nSa" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - pixel_y = 32 - }, -/obj/item/tool/kitchen/knife/butcher, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, /turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"nRQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 + icon_state = "floor_plate" }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 +/area/fiorina/tumor/aux_engi) +"nSi" = ( +/obj/structure/machinery/door/window/eastright{ + dir = 2 }, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/flight_deck) -"nRT" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 + icon_state = "darkredfull2" }, +/area/fiorina/lz/near_lzI) +"nSx" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/disco) +"nSz" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" + icon_state = "yellowfull" }, -/area/fiorina/station/medbay) -"nRU" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"nSh" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"nSx" = ( -/turf/closed/wall/r_wall/prison, /area/fiorina/station/disco) -"nSS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/dropper, -/obj/item/attachable/bipod, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) "nSU" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/emergency, @@ -23033,33 +23154,20 @@ icon_state = "stan5" }, /area/fiorina/tumor/ship) -"nTv" = ( -/turf/open/floor/prison{ - icon_state = "bluecorner" +"nTD" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/chapel) -"nTV" = ( -/obj/structure/machinery/autolathe/full, +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 8; + icon_state = "whitegreen" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/tumor/ice_lab) "nUb" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"nUe" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - req_one_access = null - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"nUm" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) "nUr" = ( /obj/structure/ice/thin/indestructible, /obj/structure/prop/invuln{ @@ -23085,205 +23193,162 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"nUJ" = ( -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"nUS" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"nVu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" +"nUy" = ( +/obj/structure/machinery/door/morgue{ + dir = 2; + name = "Confession Booth" }, -/area/fiorina/station/research_cells) -"nVE" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"nVN" = ( -/obj/item/trash/cigbutt, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"nVR" = ( -/obj/effect/spawner/random/tool, +/area/fiorina/station/chapel) +"nUF" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" + icon_state = "darkbrownfull2" }, /area/fiorina/tumor/aux_engi) -"nWh" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"nWk" = ( -/obj/effect/spawner/random/gun/smg/midchance, +"nUJ" = ( +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"nVq" = ( /turf/open/floor/prison{ dir = 1; - icon_state = "darkbrown2" + icon_state = "blue" }, -/area/fiorina/station/park) -"nWv" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" +/area/fiorina/station/power_ring) +"nVA" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"nWx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"nWB" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" + dir = 4; + icon_state = "whitegreen" }, -/area/fiorina/maintenance) +/area/fiorina/tumor/ice_lab) +"nVH" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) "nWC" = ( /obj/item/clothing/shoes/yellow, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"nWM" = ( -/obj/structure/machinery/disposal, +"nWK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "redfull" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/security) "nXj" = ( /obj/structure/curtain/black, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"nXu" = ( -/obj/item/storage/backpack/satchel/lockable, -/turf/open/floor/prison, -/area/fiorina/station/security) -"nXE" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6_1" +"nXq" = ( +/turf/open/floor/prison{ + icon_state = "cell_stripe" }, -/obj/item/weapon/gun/smg/mp5, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"nXX" = ( -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison, -/area/fiorina/station/security) +/area/fiorina/station/disco) "nYi" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"nYB" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"nYE" = ( -/obj/item/tool/wrench, +"nYk" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"nYT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/barricade/handrail{ dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" + icon_state = "green" }, -/turf/open/space/basic, -/area/fiorina/oob) -"nZB" = ( +/area/fiorina/station/botany) +"nYw" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "sterile_white" }, -/area/fiorina/lz/near_lzII) -"nZI" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/station/civres_blue) +"nYA" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/fiorina/station/flight_deck) +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) "nZQ" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"nZU" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +"nZT" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/area/fiorina/station/flight_deck) -"oaa" = ( /turf/open/floor/prison{ dir = 10; icon_state = "floor_plate" }, /area/fiorina/station/flight_deck) -"obh" = ( -/obj/structure/window/framed/prison/reinforced, +"oan" = ( +/obj/item/trash/semki, /turf/open/floor/prison, -/area/fiorina/station/security) -"oby" = ( -/obj/structure/platform{ - dir = 4 +/area/fiorina/station/flight_deck) +"oaI" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 }, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + icon_state = "darkbrown2" }, -/area/fiorina/station/botany) +/area/fiorina/station/park) +"oaX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "obz" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"obE" = ( -/obj/structure/machinery/power/apc{ - start_charge = 0 - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) "obI" = ( /obj/effect/landmark/nightmare{ insert_tag = "engineeroffice" }, /turf/closed/wall/prison, /area/fiorina/tumor/civres) +"obL" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/tumor/ice_lab) +"obT" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue" + }, +/area/fiorina/station/civres_blue) "occ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/lime{ @@ -23311,156 +23376,171 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"ode" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"ocd" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"ocB" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"odl" = ( -/obj/structure/tunnel/maint_tunnel, +/obj/item/coin/uranium, +/obj/item/bedsheet/green, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 6; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"ocJ" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/prison{ + dir = 9; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"ocS" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 }, -/area/fiorina/tumor/servers) -"ody" = ( -/obj/structure/machinery/autolathe, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"odg" = ( +/obj/structure/inflatable/popped/door, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 6; + icon_state = "yellow" }, -/area/fiorina/tumor/civres) -"odC" = ( +/area/fiorina/station/lowsec) +"odH" = ( +/obj/item/trash/candle, /turf/open/floor/prison{ - icon_state = "platingdmg1" + icon_state = "darkyellow2" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/telecomm/lz1_cargo) +"odN" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue" + }, +/area/fiorina/station/power_ring) "odQ" = ( /obj/structure/largecrate/supply, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"oer" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"oev" = ( -/obj/item/stack/sheet/metal, +"oem" = ( +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + icon_state = "floor_plate" }, -/area/fiorina/tumor/civres) -"oeN" = ( -/obj/effect/landmark/corpsespawner/prison_security, +/area/fiorina/tumor/aux_engi) +"oex" = ( +/obj/structure/bed/chair, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"oeT" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"oeV" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 8; icon_state = "blue_plate" }, /area/fiorina/station/botany) -"oeY" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"ofl" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"oeG" = ( +/obj/structure/largecrate/random, +/obj/effect/spawner/random/powercell, +/obj/item/device/camera/oldcamera{ + pixel_y = 11 }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"oeZ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"ofb" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison, +/area/fiorina/station/security) +"ofo" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, /turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/disco) +/area/fiorina/tumor/aux_engi) "ofq" = ( /turf/closed/shuttle/elevator{ dir = 10 }, /area/fiorina/station/telecomm/lz1_cargo) +"ofr" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/disco) "ofw" = ( /obj/structure/machinery/newscaster, /turf/closed/wall/prison, /area/fiorina/station/transit_hub) -"ofA" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"ofQ" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"oga" = ( -/obj/structure/bed{ - icon_state = "psychbed" +"ofy" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison{ + icon_state = "darkredfull2" }, +/area/fiorina/station/research_cells) +"ofF" = ( +/obj/structure/prop/souto_land/pole, /turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" + icon_state = "darkbrown2" }, -/area/fiorina/station/medbay) -"ogf" = ( +/area/fiorina/station/park) +"ogd" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"ogo" = ( /obj/structure/monorail{ + dir = 9; name = "launch track" }, /turf/open/space, /area/fiorina/oob) -"ogs" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +"ogr" = ( +/obj/item/stack/cable_coil/pink, +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) "ogM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"ohc" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ogX" = ( +/obj/vehicle/powerloader{ + dir = 8 }, -/area/fiorina/station/security) -"ohl" = ( -/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" + icon_state = "floor_plate" }, -/area/fiorina/station/central_ring) -"ohx" = ( -/obj/item/tool/match, +/area/fiorina/station/power_ring) +"ohs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/goggles/lowchance, /turf/open/floor/prison{ icon_state = "redfull" }, @@ -23469,6 +23549,23 @@ /obj/structure/platform/kutjevo/smooth, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/ice_lab) +"ohI" = ( +/turf/open/floor/prison{ + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) +"ohN" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/fiorina/station/research_cells) "ohY" = ( /obj/item/circuitboard/machine/pacman/super, /obj/structure/machinery/constructable_frame{ @@ -23476,72 +23573,48 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"oib" = ( -/obj/item/trash/hotdog, +"oii" = ( +/obj/structure/inflatable/popped, /turf/open/floor/prison{ - dir = 8; - icon_state = "blue" + dir = 4; + icon_state = "whitegreen" }, -/area/fiorina/station/power_ring) -"oih" = ( -/obj/item/paper/crumpled/bloody, +/area/fiorina/station/medbay) +"oiu" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"oiF" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/double/blue{ dir = 1; - pixel_y = 21 + icon_state = "bluecorner" }, -/obj/effect/landmark/objective_landmark/science, +/area/fiorina/station/power_ring) +"oiR" = ( +/obj/effect/landmark/queen_spawn, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" + dir = 1; + icon_state = "darkbrown2" }, -/area/fiorina/tumor/servers) -"oiV" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" +/area/fiorina/tumor/aux_engi) +"oja" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/tumor/servers) -"oiX" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/telecomm/lz1_cargo) -"ojc" = ( -/obj/effect/alien/weeds/node, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"ojf" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, /turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"ojj" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 + icon_state = "whitepurple" }, +/area/fiorina/station/research_cells) +"ojh" = ( +/obj/item/stack/rods/plasteel, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"ojk" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"ojq" = ( -/obj/structure/monorail{ - name = "launch track" + dir = 5; + icon_state = "darkyellow2" }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) +/area/fiorina/lz/near_lzI) "ojv" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -23553,14 +23626,6 @@ "ojK" = ( /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"ojW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) "okg" = ( /obj/structure/barricade/handrail/type_b{ dir = 1 @@ -23570,13 +23635,6 @@ "okv" = ( /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"okE" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco) "okF" = ( /obj/structure/blocker/invisible_wall, /obj/structure/ice/thin/indestructible, @@ -23622,25 +23680,12 @@ }, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"okG" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, +"okM" = ( +/obj/structure/machinery/vending/dinnerware, /turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"okJ" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" + icon_state = "bluefull" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/power_ring) "okT" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, @@ -23661,18 +23706,33 @@ icon_state = "plate" }, /area/fiorina/tumor/ship) -"olg" = ( -/obj/structure/closet/crate/delta{ - desc = "A crate with delta squad's symbol on it. Now how did that get here? The words 'HEFA was never real' are scrawled on it in black ink."; - name = "crate" +"oli" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic{ + pixel_x = 3 }, -/obj/item/ammo_box/magazine/shotgun/buckshot, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"olk" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/paper_bin{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/security/wardens) +"olm" = ( +/obj/item/device/binoculars, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/fiberbush) "olo" = ( /obj/structure/machinery/disposal, /turf/open/organic/grass{ @@ -23688,6 +23748,38 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) +"olC" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "greencorner" + }, +/area/fiorina/station/chapel) +"olG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/tumor/ice_lab) +"olQ" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space/basic, +/area/fiorina/oob) +"olT" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/tumor/servers) "omb" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/guestpass, @@ -23699,119 +23791,76 @@ }, /turf/open/space, /area/fiorina/oob) -"omD" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"omI" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"omN" = ( -/obj/structure/platform_decoration{ - dir = 1 +"omi" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/botany) -"omO" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/area/fiorina/station/security/wardens) +"omw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/medbay) -"onb" = ( -/obj/structure/bed/chair{ +/obj/structure/platform{ dir = 8 }, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, /turf/open/floor/prison{ - icon_state = "darkbrown2" + dir = 10; + icon_state = "bright_clean2" }, /area/fiorina/station/park) -"onh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 +"omD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"omF" = ( +/obj/structure/curtain/shower, /turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"ont" = ( -/obj/structure/platform_decoration{ - dir = 1 + dir = 10; + icon_state = "kitchen" }, +/area/fiorina/tumor/civres) +"omI" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"ond" = ( +/obj/structure/machinery/computer3/server/rack, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/power_ring) -"onB" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/item/device/multitool, +/area/fiorina/tumor/servers) +"onw" = ( +/obj/structure/bed/chair, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"onW" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/research_cells) -"ooq" = ( -/obj/structure/platform_decoration{ - dir = 8 +/area/fiorina/tumor/servers) +"onz" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" }, /turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"oou" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/head/cmcap{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/clothing/glasses/mbcg{ - pixel_y = -14 + dir = 10; + icon_state = "whitegreenfull" }, -/turf/open/floor/prison, /area/fiorina/station/medbay) -"oox" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) "ooF" = ( /obj/structure/machinery/power/apc, /turf/open/floor/wood, /area/fiorina/station/park) -"ooO" = ( -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison, -/area/fiorina/station/disco) "oph" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/bottle/holywater, @@ -23821,44 +23870,49 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"opj" = ( -/obj/structure/sink{ +"opy" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison{ dir = 4; - pixel_x = 12 + icon_state = "whitegreen" }, -/obj/effect/decal/cleanable/blood/gibs, +/area/fiorina/station/medbay) +"opB" = ( +/obj/structure/machinery/constructable_frame, /turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" + icon_state = "floor_plate" }, /area/fiorina/station/lowsec) -"opM" = ( -/obj/structure/bed/chair, +"opC" = ( /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 10; + icon_state = "darkbrown2" + }, +/area/fiorina/maintenance) +"opV" = ( +/obj/structure/bed{ + icon_state = "psychbed" }, -/area/fiorina/station/power_ring) -"opN" = ( -/obj/item/stack/rods, /turf/open/floor/prison{ - dir = 8; - icon_state = "blue" + dir = 5; + icon_state = "whitegreen" }, -/area/fiorina/station/chapel) -"opP" = ( -/obj/effect/decal/cleanable/blood/oil, +/area/fiorina/station/medbay) +"oqn" = ( /turf/open/floor/prison{ dir = 8; - icon_state = "greenblue" + icon_state = "cell_stripe" }, /area/fiorina/station/botany) -"oqG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"oqu" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" }, -/area/fiorina/station/park) +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) "orr" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/candelabra{ @@ -23872,112 +23926,77 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"ort" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/fiorina/station/chapel) -"orB" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"orC" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) -"orD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery{ - name = "Lung Transplants for Dummies"; - pixel_y = 4 - }, +"ors" = ( +/obj/item/trash/candle, /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, /area/fiorina/station/telecomm/lz1_cargo) -"orV" = ( -/obj/item/tool/weldingtool, -/turf/open/auto_turf/sand/layer1, -/area/fiorina/tumor/civres) -"osv" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +"orx" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" + dir = 4; + icon_state = "cell_stripe" }, -/area/fiorina/station/park) -"osN" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/limb, +/area/fiorina/station/medbay) +"orA" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison, -/area/fiorina/station/lowsec) -"osQ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/bedsheet/green, +/area/fiorina/lz/near_lzI) +"orG" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"osO" = ( +/obj/structure/inflatable/door, /turf/open/floor/prison{ - dir = 10; + dir = 5; icon_state = "yellow" }, /area/fiorina/station/lowsec) +"osR" = ( +/obj/item/trash/semki, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) "osX" = ( /obj/structure/cable/heavyduty{ icon_state = "0-4" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"ota" = ( -/obj/effect/landmark/survivor_spawner, +"oti" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"otq" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "bluecorner" }, /area/fiorina/station/power_ring) -"otg" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"oty" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"otz" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/fancy/vials/random, -/obj/effect/landmark/objective_landmark/science, +"otB" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"otC" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 + dir = 4; + icon_state = "darkyellow2" }, -/turf/open/floor/prison, -/area/fiorina/station/security/wardens) -"otK" = ( +/area/fiorina/lz/near_lzI) +"otG" = ( +/obj/item/tool/scythe, /turf/open/floor/prison{ dir = 8; - icon_state = "floor_marked" + icon_state = "blue_plate" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/botany) +"otP" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "ouH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/med_data/laptop{ @@ -23985,29 +24004,58 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"ove" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"ovk" = ( -/obj/effect/spawner/random/tool, +"ouS" = ( +/obj/item/stack/rods, /turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"ovc" = ( +/obj/structure/sink{ dir = 4; - icon_state = "whitegreencorner" + pixel_x = 12 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 }, -/area/fiorina/tumor/ice_lab) -"ovq" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 6; + icon_state = "whitepurple" }, +/area/fiorina/station/research_cells) +"ovj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) "ovr" = ( /obj/structure/girder/displaced, /turf/open/floor/plating/prison, /area/fiorina/station/security) +"ovB" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "yellow" + }, +/area/fiorina/station/disco) +"ovC" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/fiorina/station/medbay) +"ovE" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellowcorners2" + }, +/area/fiorina/station/flight_deck) "ovJ" = ( /turf/open/floor/wood, /area/fiorina/station/medbay) @@ -24020,45 +24068,64 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"owd" = ( -/obj/item/storage/backpack/souto, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"owp" = ( -/obj/effect/landmark/static_comms/net_two, +"ovZ" = ( +/obj/structure/largecrate/supply/floodlights, /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzII) -"owS" = ( +/area/fiorina/station/telecomm/lz1_cargo) +"own" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/lz/near_lzI) +"owv" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/bedsheet/green, /obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; + dir = 4; + pixel_x = 10; pixel_y = 13 }, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" + dir = 4; + icon_state = "whitegreen" }, -/area/fiorina/station/research_cells) -"oxp" = ( -/obj/structure/platform{ +/area/fiorina/station/medbay) +"owG" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/prison{ dir = 4; - layer = 2 + icon_state = "darkyellowfull2" }, -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 +/area/fiorina/lz/near_lzI) +"oxg" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkpurplefull2" + }, +/area/fiorina/tumor/servers) +"oxk" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" }, -/area/fiorina/tumor/ice_lab) -"oxv" = ( -/obj/effect/alien/weeds/node, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "whitegreen" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/medbay) "oxA" = ( /turf/closed/shuttle/ert{ icon_state = "stan22" @@ -24070,115 +24137,158 @@ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) +"oxN" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) "oxS" = ( /obj/item/paper/crumpled/bloody, /turf/open/floor/prison/chapel_carpet{ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"oxU" = ( +"oxT" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/transit_hub) +/area/fiorina/station/medbay) +"oxZ" = ( +/obj/structure/inflatable/popped, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) "oyd" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"oyk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"oyo" = ( -/obj/structure/flora/pottedplant/random, +"oyg" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + dir = 8; + icon_state = "cell_stripe" }, -/area/fiorina/tumor/civres) -"oyy" = ( -/obj/structure/bed{ - icon_state = "abed" +/area/fiorina/station/security/wardens) +"oys" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" + dir = 8; + icon_state = "green" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/chapel) "oyC" = ( /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/wood, /area/fiorina/station/park) -"oyJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 +"ozg" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"oyO" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/obj/structure/platform{ + dir = 4 }, -/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 9 + }, +/obj/structure/largecrate/random, /turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" + icon_state = "floor_plate" }, /area/fiorina/station/power_ring) -"oyS" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison, +"ozh" = ( +/turf/open/floor/prison{ + dir = 6; + icon_state = "yellow" + }, /area/fiorina/station/disco) -"oyT" = ( +"ozH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" + dir = 1; + icon_state = "blue_plate" }, -/area/fiorina/station/park) -"oza" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/area/fiorina/station/botany) +"oAa" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" }, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 4; + icon_state = "greenfull" }, -/area/fiorina/station/medbay) -"ozC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 +/area/fiorina/station/chapel) +"oAm" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"oAv" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison, -/area/fiorina/station/security) -"oAf" = ( -/obj/item/trash/boonie, +/area/fiorina/station/flight_deck) +"oAH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"oAL" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_psycopath_l"; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_ketchup_l"; + pixel_x = 8; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_guilty_l"; + pixel_x = -12; + pixel_y = 2 + }, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "kitchen" }, -/area/fiorina/station/medbay) -"oAj" = ( -/obj/structure/machinery/bot/medbot{ - name = "Dr. O" +/area/fiorina/station/power_ring) +"oAQ" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" + }, +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 8; + icon_state = "whitegreen" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/ice_lab) +"oAV" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"oBd" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) "oBj" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, @@ -24191,81 +24301,54 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) +"oBP" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/fiorina/station/medbay) "oCe" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/park) -"oCn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, +"oCI" = ( /obj/structure/platform_decoration{ - dir = 9 + dir = 1 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/park) +/area/fiorina/station/botany) "oDe" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"oDg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/phone{ - pixel_x = 6; - pixel_y = -15 - }, -/obj/item/phone{ - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"oDh" = ( -/obj/item/stack/rods, +"oDn" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"oDH" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +/area/fiorina/lz/near_lzI) +"oDz" = ( +/obj/structure/bed/chair/comfy, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 6; + icon_state = "yellow" }, -/area/fiorina/station/research_cells) -"oDV" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/area/fiorina/station/disco) +"oDG" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/fiorina/station/medbay) -"oEi" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "blue" + dir = 8; + icon_state = "whitepurple" }, -/area/fiorina/station/civres_blue) -"oEn" = ( -/obj/structure/closet/crate/bravo, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/fuelCell, -/obj/item/stack/sheet/plasteel, -/obj/effect/landmark/objective_landmark/close, +/area/fiorina/station/research_cells) +"oEc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) +/area/fiorina/tumor/ice_lab) "oEs" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -24278,27 +24361,28 @@ name = "astroturf" }, /area/fiorina/station/civres_blue) -"oEu" = ( -/obj/structure/platform_decoration, -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" +"oEt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/security_space_law{ + pixel_x = 3; + pixel_y = 5 }, /turf/open/floor/prison{ - icon_state = "whitegreen" + icon_state = "darkredfull2" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/security) "oED" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"oEH" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +"oEI" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/disco) "oEK" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -24313,125 +24397,92 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"oEN" = ( -/obj/item/prop/almayer/comp_closed{ - pixel_x = -1 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"oEQ" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"oEX" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"oFf" = ( -/obj/item/reagent_container/food/drinks/cans/aspen, +"oEY" = ( +/obj/item/explosive/grenade/incendiary/molotov, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "red" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/security) "oFk" = ( /obj/structure/closet/secure_closet/engineering_personal, /turf/open/floor/almayer{ icon_state = "plate" }, /area/fiorina/tumor/ship) -"oFp" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, +"oFv" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + pixel_y = -1 }, /turf/open/floor/prison{ - dir = 1; icon_state = "yellow" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/disco) "oFI" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"oFO" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" - }, -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +"oFW" = ( +/obj/structure/platform, +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 }, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"oFU" = ( +"oGm" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; - pixel_y = 13 + pixel_y = -3 }, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/station/botany) -"oGg" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/area/fiorina/tumor/civres) +"oGT" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" + icon_state = "darkbrowncorners2" }, -/area/fiorina/tumor/aux_engi) -"oGy" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" +/area/fiorina/station/park) +"oGU" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/recharger{ + pixel_y = 4 }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/carpet, +/area/fiorina/station/civres_blue) +"oHk" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkyellow2" }, -/area/fiorina/tumor/ice_lab) -"oGR" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +/area/fiorina/station/telecomm/lz1_cargo) +"oHn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/imidazoline, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" }, +/area/fiorina/tumor/ice_lab) +"oHI" = ( /turf/open/floor/prison{ dir = 4; icon_state = "darkyellowfull2" }, -/area/fiorina/lz/near_lzI) -"oGU" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/carpet, -/area/fiorina/station/civres_blue) -"oHi" = ( -/obj/item/stool, -/turf/open/floor/prison, /area/fiorina/station/disco) -"oHm" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) "oHX" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -24440,13 +24491,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"oIg" = ( -/obj/structure/platform, -/obj/structure/reagent_dispensers/oxygentank{ - layer = 2.6 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) "oIq" = ( /obj/structure/ice/thin/indestructible{ dir = 1; @@ -24459,49 +24503,19 @@ }, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"oIz" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"oIE" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"oJd" = ( +"oIR" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"oJl" = ( -/obj/structure/machinery/light/double/blue{ dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" + icon_state = "bluecorner" }, -/area/fiorina/station/botany) -"oJm" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"oJK" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/storage/briefcase, -/obj/structure/surface/table/reinforced/prison, +/area/fiorina/station/chapel) +"oJs" = ( +/obj/structure/machinery/photocopier, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "bluefull" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/power_ring) "oJL" = ( /obj/structure/machinery/light/small{ dir = 8; @@ -24516,31 +24530,43 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"oJN" = ( -/obj/structure/surface/table/reinforced/prison{ - flipped = 1 +"oJO" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/eat_bar, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 4; + icon_state = "greenblue" + }, +/area/fiorina/station/botany) +"oJU" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/medbay) -"oJY" = ( -/obj/item/stack/sandbags/large_stack, /turf/open/floor/prison{ - dir = 6; - icon_state = "green" + dir = 1; + icon_state = "greenblue" }, -/area/fiorina/tumor/civres) -"oKf" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/area/fiorina/station/botany) +"oJW" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"oKa" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"oKl" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/transit_hub) "oKn" = ( /obj/structure/holohoop{ dir = 4; @@ -24558,71 +24584,60 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"oKQ" = ( +/obj/structure/machinery/floodlight{ + name = "Yard Floodlight" + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/central_ring) "oKV" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, /turf/open/floor/corsat{ icon_state = "plate" }, /area/fiorina/station/civres_blue) -"oLF" = ( -/obj/effect/landmark/objective_landmark/medium, +"oLd" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/prison{ - icon_state = "darkbrown2" + dir = 1; + icon_state = "whitepurple" }, -/area/fiorina/station/park) -"oLK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/objective, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/area/fiorina/station/research_cells) +"oLB" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/tumor/servers) -"oLV" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"oLX" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/prison{ - icon_state = "bluecorner" +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_half_cap" }, -/area/fiorina/station/power_ring) -"oMf" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"oMy" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 }, -/area/fiorina/station/security/wardens) -"oMu" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison, -/area/fiorina/station/park) -"oMw" = ( -/obj/structure/toilet{ +/turf/open/floor/prison{ dir = 8; - pixel_y = 8 + icon_state = "darkyellow2" }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 +/area/fiorina/lz/near_lzI) +"oMz" = ( +/obj/structure/inflatable, +/turf/open/floor/prison{ + dir = 9; + icon_state = "yellow" }, +/area/fiorina/station/lowsec) +"oMR" = ( +/obj/item/paper, /turf/open/floor/prison{ - dir = 5; + dir = 8; icon_state = "whitepurple" }, /area/fiorina/station/research_cells) -"oNu" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) "oNx" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -24631,37 +24646,6 @@ name = "astroturf" }, /area/fiorina/station/research_cells) -"oNC" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"oOg" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"oOh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) "oOi" = ( /obj/effect/decal/hefa_cult_decals/d32, /turf/open/floor/prison/chapel_carpet{ @@ -24669,76 +24653,76 @@ icon_state = "doubleside" }, /area/fiorina/maintenance) -"oOk" = ( -/obj/structure/platform, -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"oOp" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"oOw" = ( -/obj/structure/machinery/vending/coffee, +"oOs" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 5; + icon_state = "darkpurple2" }, -/area/fiorina/station/civres_blue) -"oOU" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -8; - pixel_y = 16 +/area/fiorina/station/central_ring) +"oOv" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"oOK" = ( +/obj/item/device/multitool, /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 9; + icon_state = "green" }, -/area/fiorina/station/research_cells) +/area/fiorina/tumor/civres) "oOV" = ( /obj/structure/machinery/filtration/console{ pixel_y = 22 }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"oPn" = ( -/obj/structure/bed/roller, +"oPC" = ( +/obj/structure/platform{ + dir = 4 + }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/park) +"oPJ" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/lowsec) "oPN" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"oPR" = ( +"oPW" = ( +/obj/structure/closet/crate/medical, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/gloves/latex, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/disco) -"oPU" = ( -/turf/open/floor/prison, -/area/fiorina/station/park) +/area/fiorina/station/medbay) "oPZ" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) -"oQk" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"oQz" = ( +/obj/item/prop/almayer/comp_closed{ + pixel_x = -1 }, -/area/fiorina/station/medbay) -"oQI" = ( +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"oQF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ + dir = 8; + icon_state = "greenblue" + }, +/area/fiorina/station/botany) +"oQI" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; name = "\improper arcade tickets"; @@ -24747,71 +24731,57 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"oQS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +"oQY" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + icon_state = "darkredfull2" }, -/area/fiorina/station/disco) -"oRg" = ( +/area/fiorina/station/security) +"oRb" = ( +/obj/item/trash/boonie, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/research_cells) "oRR" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/fiorina/station/park) -"oSn" = ( -/obj/structure/inflatable/door, +"oSo" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" + icon_state = "redfull" }, /area/fiorina/station/lowsec) -"oSz" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison{ +"oSK" = ( +/obj/structure/monorail{ dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"oTa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_y = 8 + name = "launch track" }, -/obj/item/trash/cigbutt, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"oSR" = ( +/obj/item/device/flashlight, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"oTi" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" + icon_state = "sterile_white" }, -/area/fiorina/station/medbay) -"oTy" = ( -/obj/structure/prop/structure_lattice{ - health = 300 +/area/fiorina/station/research_cells) +"oTe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 }, -/obj/structure/prop/structure_lattice{ - layer = 3.1; - pixel_y = 10 +/turf/open/floor/prison{ + icon_state = "darkredfull2" }, +/area/fiorina/station/security) +"oTl" = ( +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/chapel) "oTz" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -24824,27 +24794,24 @@ name = "astroturf" }, /area/fiorina/station/civres_blue) -"oTP" = ( +"oTG" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"oTH" = ( +/obj/structure/bed/chair, /turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" + icon_state = "redfull" }, -/area/fiorina/station/telecomm/lz1_tram) -"oTS" = ( -/obj/structure/stairs/perspective{ +/area/fiorina/station/security) +"oTU" = ( +/turf/open/floor/prison{ dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"oTT" = ( -/obj/structure/platform_decoration{ - dir = 8 + icon_state = "darkbrowncorners2" }, -/turf/open/floor/prison, /area/fiorina/station/park) "oUg" = ( /turf/closed/wall/prison, @@ -24857,87 +24824,75 @@ /turf/open/space, /area/fiorina/oob) "oVk" = ( -/obj/vehicle/train/cargo/trolley, +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/central_ring) +"oVn" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"oVC" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 6; + icon_state = "green" }, -/area/fiorina/station/transit_hub) -"oWw" = ( +/area/fiorina/tumor/civres) +"oWc" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) +"oWz" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"oWB" = ( +/obj/structure/prop/structure_lattice{ dir = 4; - icon_state = "darkbrowncorners2" + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/park) -"oWC" = ( -/obj/item/stack/sandbags/large_stack, /turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" + icon_state = "floor_plate" }, -/area/fiorina/station/disco) +/area/fiorina/station/research_cells) "oWF" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"oWG" = ( -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_10_1" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"oWY" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"oXb" = ( -/obj/item/stack/sheet/metal, +"oWV" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/security) -"oXg" = ( -/obj/effect/decal/cleanable/blood, +/area/fiorina/tumor/aux_engi) +"oWW" = ( /turf/open/floor/prison{ dir = 1; - icon_state = "yellow" + icon_state = "redcorner" }, -/area/fiorina/station/lowsec) -"oXk" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/area/fiorina/station/security) +"oXE" = ( +/obj/item/newspaper, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"oXJ" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/fiorina/tumor/servers) -"oXD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen, /turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" + icon_state = "kitchen" }, /area/fiorina/station/lowsec) -"oXI" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "oXR" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -24955,65 +24910,46 @@ /obj/item/stock_parts/manipulator/nano, /turf/open/floor/wood, /area/fiorina/station/park) -"oYs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"oYG" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" +"oYc" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 }, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"oYW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 + icon_state = "kitchen" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/area/fiorina/station/research_cells) +"oYm" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" }, -/area/fiorina/tumor/servers) -"oZf" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/clothing/suit/armor/vest/security, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "sterile_white" }, -/area/fiorina/tumor/ice_lab) -"oZi" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison, -/area/fiorina/station/security) -"oZj" = ( -/obj/effect/landmark/survivor_spawner, +/area/fiorina/station/medbay) +"oYH" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"oYM" = ( /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"oZk" = ( +/area/fiorina/station/power_ring) +"oYX" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" + icon_state = "darkbrown2" }, -/area/fiorina/tumor/ice_lab) -"oZx" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" +/area/fiorina/tumor/aux_engi) +"oZc" = ( +/turf/open/floor/prison{ + icon_state = "darkyellowcorners2" }, -/turf/open/floor/prison, /area/fiorina/station/flight_deck) "oZy" = ( /obj/structure/platform{ @@ -25031,20 +24967,15 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"oZS" = ( +"oZR" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/structure/machinery/door/window/eastright{ + dir = 1 }, -/area/fiorina/station/power_ring) -"oZU" = ( -/obj/structure/largecrate/random/case, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/security) "pab" = ( /obj/item/tool/weldpack{ pixel_x = 6 @@ -25055,69 +24986,70 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) -"pae" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) "pah" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"pai" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; - name = "\improper Fiorina Green Block Canteen Vendor" +"pan" = ( +/obj/item/reagent_container/food/snacks/meat, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + icon_state = "greenblue" + }, +/area/fiorina/station/botany) +"pat" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "blue" + }, +/area/fiorina/station/chapel) +"pax" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 }, -/area/fiorina/station/lowsec) -"paF" = ( -/obj/item/tool/shovel/etool, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"paI" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"paO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 +/area/fiorina/lz/near_lzII) +"paQ" = ( +/obj/structure/platform{ + dir = 4 }, +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 4; + icon_state = "whitegreen" }, -/area/fiorina/station/security) +/area/fiorina/tumor/ice_lab) "pbp" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, /turf/open/floor/corsat{ icon_state = "plate" }, /area/fiorina/station/telecomm/lz1_cargo) -"pbv" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, +"pbC" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"pbF" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "darkyellow2" }, -/area/fiorina/tumor/servers) +/area/fiorina/lz/near_lzI) +"pbS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray/empty, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) "pbV" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -25132,34 +25064,66 @@ }, /turf/open/space, /area/fiorina/oob) -"pbX" = ( +"pbZ" = ( +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, /turf/open/floor/prison{ - icon_state = "red" + dir = 8; + icon_state = "blue" }, -/area/fiorina/station/security) -"pca" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/area/fiorina/station/civres_blue) +"pcl" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/fiorina/station/lowsec) "pcu" = ( /turf/open/floor/almayer_hull, /area/fiorina/oob) +"pcD" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/tumor/civres) "pcK" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/drinks/cans/aspen, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"pcN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, +"pdf" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"pdm" = ( +/obj/structure/platform{ + dir = 8 + }, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 8; + icon_state = "whitegreen" }, -/area/fiorina/station/research_cells) +/area/fiorina/tumor/ice_lab) +"pdw" = ( +/obj/item/stack/rods, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) "pdB" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -25167,191 +25131,160 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) -"pdN" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"pdV" = ( +/obj/structure/machinery/shower{ + dir = 8 }, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"pdP" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"pdX" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_1" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" + icon_state = "kitchen" }, -/area/fiorina/station/central_ring) -"pen" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/prison{ - icon_state = "green" +/area/fiorina/station/research_cells) +"peh" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/station/transit_hub) -"peA" = ( -/obj/structure/machinery/computer/communications{ - dir = 4; - pixel_y = 5 +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" }, -/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/servers) -"peP" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 + dir = 10; + icon_state = "whitegreenfull" }, +/area/fiorina/station/medbay) +"pes" = ( +/obj/structure/bed/chair, /turf/open/floor/prison{ - icon_state = "darkyellow2" + icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"pgb" = ( +/area/fiorina/station/power_ring) +"peY" = ( /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 8; + icon_state = "darkbrown2" }, -/area/fiorina/tumor/ice_lab) -"pgx" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 8 +/area/fiorina/tumor/aux_engi) +"pfi" = ( +/obj/structure/monorail{ + dir = 6; + name = "launch track" }, +/turf/open/space, +/area/fiorina/oob) +"pfE" = ( +/obj/item/tool/wrench, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) -"pgQ" = ( +/area/fiorina/station/lowsec) +"pfW" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"pgH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"pgV" = ( +/obj/item/book/manual/atmospipes, /turf/open/floor/prison{ - dir = 10; - icon_state = "blue" + dir = 9; + icon_state = "whitepurple" }, -/area/fiorina/station/chapel) +/area/fiorina/station/research_cells) "phe" = ( /obj/structure/girder, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"pho" = ( -/obj/item/stack/sheet/wood, +"phg" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/research_cells) +/area/fiorina/tumor/ice_lab) "phz" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"phC" = ( -/obj/item/newspaper, +"pie" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + icon_state = "platingdmg3" }, -/area/fiorina/tumor/ice_lab) -"phQ" = ( -/obj/structure/platform{ +/area/fiorina/station/transit_hub) +"pip" = ( +/obj/structure/platform_decoration{ dir = 8 }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"piy" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"piL" = ( /turf/open/floor/prison{ dir = 8; - icon_state = "whitegreen" + icon_state = "darkbrowncorners2" + }, +/area/fiorina/tumor/aux_engi) +"pjT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"pka" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/ice_lab) -"pim" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 5; + icon_state = "whitepurple" }, -/area/fiorina/station/lowsec) -"piw" = ( -/obj/structure/platform{ - dir = 1 +/area/fiorina/station/research_cells) +"pkc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/dropper, +/obj/item/attachable/bipod, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" }, -/obj/structure/platform_decoration{ - dir = 9 +/area/fiorina/lz/near_lzI) +"pkp" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"pkw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, /obj/structure/platform{ - dir = 4 + dir = 8 }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"pjf" = ( -/obj/item/ammo_magazine/rifle/m16, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"pjg" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/fiorina/tumor/servers) -"pjE" = ( -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 8 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -8 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"pjR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/phone{ - pixel_x = 7; - pixel_y = -16 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 16 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"pjT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"pjW" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) -"pkB" = ( -/obj/effect/decal/cleanable/blood/oil, +/area/fiorina/station/central_ring) +"pkG" = ( +/obj/item/stool, /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + dir = 8; + icon_state = "blue" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/power_ring) "pkM" = ( /obj/structure/largecrate/machine, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"plh" = ( +"plc" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"plr" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - dir = 10; - icon_state = "greenblue" + icon_state = "blue_plate" }, /area/fiorina/station/botany) "plu" = ( @@ -25361,78 +25294,83 @@ "plK" = ( /turf/closed/wall/prison, /area/fiorina/station/security/wardens) -"pma" = ( -/obj/structure/foamed_metal, +"pmg" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"pmn" = ( -/obj/structure/surface/rack, -/obj/item/poster, -/obj/item/poster, +/area/fiorina/station/power_ring) +"pmo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" + dir = 4; + icon_state = "blue" }, -/area/fiorina/lz/near_lzI) -"pmv" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 +/area/fiorina/station/power_ring) +"pmy" = ( +/obj/item/device/t_scanner, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/civres_blue) +"pmM" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) -"pmC" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" +/area/fiorina/station/park) +"pnc" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, /turf/open/floor/prison{ - icon_state = "darkyellow2" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/telecomm/lz1_cargo) -"pnh" = ( +/area/fiorina/station/medbay) +"pnv" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + dir = 6; + icon_state = "greenblue" }, -/area/fiorina/tumor/servers) -"pnx" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"pnP" = ( -/obj/effect/landmark/corpsespawner/ua_riot, +/area/fiorina/station/botany) +"pnA" = ( +/obj/item/toy/handcard/uno_reverse_blue, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/research_cells) "pnS" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) -"poC" = ( -/obj/structure/machinery/photocopier, +"poo" = ( +/obj/item/tool/crowbar/red, /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 4; + icon_state = "darkbrown2" }, -/area/fiorina/station/research_cells) -"ppq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 10 +/area/fiorina/tumor/aux_engi) +"poD" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"ppb" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/security) +/area/fiorina/station/power_ring) "ppG" = ( /obj/item/stack/rods/plasteel, /turf/open/floor/plating/prison, @@ -25443,17 +25381,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"ppQ" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"ppS" = ( -/obj/structure/bed/sofa/vert/grey/top, +"ppK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 6 + }, /turf/open/floor/prison{ - dir = 1; - icon_state = "green" + icon_state = "bluefull" }, -/area/fiorina/station/transit_hub) +/area/fiorina/station/power_ring) +"ppO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) "ppX" = ( /obj/structure/closet/secure_closet/medical2{ req_access_txt = "100" @@ -25463,13 +25410,29 @@ icon_state = "squares" }, /area/fiorina/station/medbay) -"ppZ" = ( -/obj/structure/machinery/vending/cigarette/colony, +"ppY" = ( +/obj/structure/barricade/sandbags{ + dir = 4; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/obj/item/storage/pouch/tools/full, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "yellow" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/disco) +"pqq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/transit_hub) "pqz" = ( /obj/item/clothing/suit/storage/labcoat, /turf/open/organic/grass{ @@ -25480,18 +25443,19 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"pqG" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) "pqO" = ( /turf/closed/shuttle/ert{ icon_state = "stan20" }, /area/fiorina/tumor/ship) -"pqY" = ( -/obj/structure/monorail{ - dir = 9; - name = "launch track" - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) "prh" = ( /obj/structure/girder/reinforced, /turf/open/floor/almayer{ @@ -25499,170 +25463,127 @@ icon_state = "plating" }, /area/fiorina/tumor/ship) -"prC" = ( -/obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"prG" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/item/stack/flag/yellow, -/obj/item/stack/flag/yellow, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"prL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/space_heater{ - pixel_x = -1; - pixel_y = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"pse" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_5" - }, +"pri" = ( +/obj/structure/machinery/space_heater, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"psm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/fiorina/station/security) -"pst" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/area/fiorina/tumor/fiberbush) +"pry" = ( +/obj/structure/prop/resin_prop{ + icon_state = "coolanttank" }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/central_ring) -"psx" = ( -/obj/structure/platform, +/area/fiorina/tumor/aux_engi) +"prP" = ( /turf/open/floor/prison{ dir = 8; icon_state = "cell_stripe" }, -/area/fiorina/station/botany) -"psL" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" +/area/fiorina/station/power_ring) +"pso" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/item/bedsheet/ce{ - desc = "It crinkles, aggressively."; - name = "sterile wax sheet" +/obj/structure/platform{ + dir = 8 }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/structure/platform_decoration{ + dir = 5 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"psP" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 + dir = 9; + icon_state = "whitegreen" }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "redfull" +/area/fiorina/tumor/ice_lab) +"psO" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 }, -/area/fiorina/station/security) +/turf/open/floor/prison, +/area/fiorina/tumor/servers) "pte" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/power_ring) -"pti" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - icon_state = "bluefull" +"pty" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/power_ring) -"ptH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ +/turf/open/floor/prison{ dir = 4; - pixel_x = 11 + icon_state = "greenfull" }, -/obj/item/clothing/gloves/latex, +/area/fiorina/tumor/civres) +"ptV" = ( +/obj/vehicle/train/cargo/trolley, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/transit_hub) +"ptZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/russianRed{ + pixel_y = 9 + }, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "puw" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"puE" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"pvi" = ( -/obj/item/ammo_box/magazine/M16, +"puB" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, /obj/item/stack/sheet/metal{ amount = 5 }, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"pvz" = ( -/obj/structure/janitorialcart, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + dir = 10; + icon_state = "floor_plate" }, -/area/fiorina/station/park) +/area/fiorina/station/telecomm/lz1_cargo) +"puE" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_cargo) "pvD" = ( /turf/closed/wall/r_wall/prison_unmeltable{ desc = "A huge chunk of metal used to seperate rooms."; name = "metal wall" }, /area/fiorina/oob) -"pvE" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "yellowfull" +"pvT" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/lowsec) -"pvF" = ( /turf/open/floor/prison{ - icon_state = "whitegreencorner" + icon_state = "floor_plate" }, /area/fiorina/tumor/ice_lab) -"pwo" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"pwg" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"pwi" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/flight_deck) -"pwC" = ( -/obj/effect/spawner/random/gun/rifle/highchance, /turf/open/floor/prison{ - icon_state = "damaged3" + icon_state = "floor_plate" }, -/area/fiorina/station/security) +/area/fiorina/station/power_ring) "pwL" = ( /obj/item/stack/tile/plasteel{ pixel_x = 12; @@ -25670,12 +25591,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"pxf" = ( -/obj/structure/machinery/vending/snack, +"pwN" = ( +/obj/structure/barricade/handrail/type_b, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/flight_deck) +/area/fiorina/station/disco) +"pxa" = ( +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison{ + icon_state = "floorscorched1" + }, +/area/fiorina/tumor/servers) "pxk" = ( /obj/structure/closet/cabinet, /obj/item/reagent_container/pill/cyanide, @@ -25683,43 +25610,58 @@ /obj/item/reagent_container/syringe, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"pxr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 6 - }, +"pxu" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/security) -"pxL" = ( +/area/fiorina/tumor/aux_engi) +"pxI" = ( +/obj/item/reagent_container/food/snacks/eat_bar, /turf/open/floor/prison{ dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"pxW" = ( -/obj/structure/platform_decoration{ - dir = 1 + icon_state = "whitegreen" }, -/obj/item/tool/pickaxe, +/area/fiorina/station/medbay) +"pxR" = ( +/obj/structure/closet/crate/trashcart, /turf/open/floor/prison{ - icon_state = "whitegreen" + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"pxX" = ( -/obj/structure/largecrate/random/case/double, +/area/fiorina/station/chapel) +"pya" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - dir = 6; + dir = 1; icon_state = "whitepurple" }, /area/fiorina/station/research_cells) +"pyv" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/tumor/servers) "pyK" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, /turf/open/floor/corsat{ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) +"pyW" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenfull" + }, +/area/fiorina/tumor/civres) "pzh" = ( /obj/item/toy/beach_ball, /turf/open/gm/river{ @@ -25727,138 +25669,238 @@ name = "pool" }, /area/fiorina/station/park) -"pzE" = ( +"pzG" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"pzL" = ( -/obj/item/ammo_magazine/m56d, -/obj/item/ammo_magazine/m56d, /turf/open/floor/prison{ dir = 4; icon_state = "cell_stripe" }, -/area/fiorina/station/central_ring) -"pAl" = ( -/obj/structure/reagent_dispensers/watertank, +/area/fiorina/station/power_ring) +"pzN" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/stool, /turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" + icon_state = "yellowfull" }, -/area/fiorina/station/botany) -"pAr" = ( -/obj/structure/largecrate/random, +/area/fiorina/station/lowsec) +"pzQ" = ( +/obj/item/paper, +/obj/structure/inflatable/door, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) +"pzV" = ( +/obj/item/ammo_box/magazine/M16, +/obj/item/stack/sheet/metal{ + amount = 5 }, -/area/fiorina/station/park) -"pBb" = ( -/obj/structure/curtain/open/black, -/turf/open/floor/prison, -/area/fiorina/maintenance) -"pBe" = ( -/obj/effect/spawner/random/tool, /turf/open/floor/prison{ dir = 4; - icon_state = "green" + icon_state = "darkyellow2" }, -/area/fiorina/station/chapel) -"pBq" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"pBT" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" +/area/fiorina/lz/near_lzI) +"pAe" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison{ + icon_state = "whitegreen" }, -/turf/open/organic/grass{ - name = "astroturf" +/area/fiorina/tumor/ice_lab) +"pAt" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, -/area/fiorina/station/park) -"pBV" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" +/obj/item/stack/sheet/metal{ + amount = 5 }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"pBW" = ( -/obj/structure/largecrate/supply/floodlights, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"pCc" = ( -/obj/structure/ice/thin/indestructible{ dir = 8; - icon_state = "End" + icon_state = "darkyellow2" }, -/obj/structure/ice/thin/indestructible{ - dir = 8; - icon_state = "End" +/area/fiorina/station/flight_deck) +"pAB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/flight_deck) +"pAN" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"pCG" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"pCH" = ( -/obj/structure/monorail{ +"pAO" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"pBg" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/aux_engi) +"pBn" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison{ dir = 10; - name = "launch track" + icon_state = "whitegreenfull" }, +/area/fiorina/tumor/ice_lab) +"pBq" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"pCQ" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +/area/fiorina/tumor/fiberbush) +"pBT" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" }, -/obj/item/stool{ - pixel_x = 4; - pixel_y = 6 +/turf/open/organic/grass{ + name = "astroturf" + }, +/area/fiorina/station/park) +"pBV" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"pCc" = ( +/obj/structure/ice/thin/indestructible{ + dir = 8; + icon_state = "End" + }, +/obj/structure/ice/thin/indestructible{ + dir = 8; + icon_state = "End" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"pCF" = ( +/obj/structure/lz_sign/prison_sign, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"pCN" = ( +/obj/structure/toilet{ + dir = 1 }, /turf/open/floor/prison{ - icon_state = "yellowfull" + dir = 10; + icon_state = "kitchen" }, -/area/fiorina/station/lowsec) +/area/fiorina/tumor/civres) +"pCS" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "pCX" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"pDo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' +"pCZ" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) +"pDg" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) +"pDH" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/prison, +/area/fiorina/station/security) +"pDV" = ( +/obj/structure/bed{ + icon_state = "abed" }, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"pEe" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 13 }, -/area/fiorina/station/research_cells) -"pDQ" = ( -/obj/structure/bed/sofa/south/grey/right, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 10; + icon_state = "whitegreen" }, -/area/fiorina/station/security) -"pEt" = ( +/area/fiorina/station/medbay) +"pEw" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" + dir = 4; + icon_state = "darkyellow2" }, -/area/fiorina/maintenance) -"pFc" = ( -/obj/structure/machinery/vending/snack, +/area/fiorina/station/telecomm/lz1_tram) +"pEL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/spawner/random/gun/smg/lowchance, /turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) +"pER" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/tumor/aux_engi) +"pEY" = ( +/obj/structure/barricade/sandbags{ + dir = 4; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 + }, +/turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/flight_deck) +"pFg" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) "pFi" = ( /obj/structure/platform_decoration{ dir = 8 @@ -25884,21 +25926,37 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"pFW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"pFY" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) +"pGf" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/item/prop/almayer/handheld1, +/obj/structure/surface/rack, /turf/open/floor/prison, -/area/fiorina/station/power_ring) -"pGy" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" +/area/fiorina/lz/near_lzI) +"pGg" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) +/area/fiorina/tumor/aux_engi) +"pGi" = ( +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_tram) +"pGv" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/fiorina/lz/near_lzII) "pGH" = ( /turf/closed/shuttle/ert{ icon_state = "stan_white_t_up" @@ -25912,13 +25970,10 @@ name = "pool" }, /area/fiorina/station/park) -"pGS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +"pHc" = ( +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "floor_plate" }, /area/fiorina/station/lowsec) "pHh" = ( @@ -25933,29 +25988,28 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"pHi" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/space_heater, +"pHu" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "yellow" }, -/area/fiorina/tumor/ice_lab) -"pHx" = ( -/obj/structure/barricade/metal/wired{ +/area/fiorina/station/lowsec) +"pIi" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform{ dir = 4 }, -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreen" }, +/area/fiorina/tumor/ice_lab) +"pIo" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + icon_state = "blue" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/chapel) "pIs" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -25975,55 +26029,68 @@ /obj/item/reagent_container/food/snacks/grown/apple/poisoned, /turf/open/floor/wood, /area/fiorina/station/park) -"pIw" = ( -/obj/structure/machinery/light/double/blue, +"pIK" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"pIX" = ( +/obj/structure/inflatable/door, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/tumor/civres) -"pIA" = ( -/obj/structure/prop/structure_lattice{ +/area/fiorina/station/medbay) +"pJa" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, /turf/open/floor/prison, -/area/fiorina/station/park) -"pJc" = ( -/turf/open/floor/wood, -/area/fiorina/maintenance) +/area/fiorina/station/transit_hub) +"pJo" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) "pJK" = ( /obj/structure/surface/rack, /obj/item/reagent_container/glass/bucket/mopbucket, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"pJP" = ( +"pKd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, /turf/open/floor/prison{ - icon_state = "panelscorched" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/chapel) -"pKf" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/head/that{ +/area/fiorina/station/medbay) +"pKh" = ( +/obj/item/stool{ + pixel_x = -4; pixel_y = 10 }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/structure/sign/poster{ + icon_state = "poster1"; + pixel_y = 32 }, /turf/open/floor/prison{ - icon_state = "sterile_white" + dir = 1; + icon_state = "yellow" }, -/area/fiorina/station/civres_blue) -"pKu" = ( -/obj/item/tool/wet_sign, +/area/fiorina/station/lowsec) +"pKz" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 6; + icon_state = "yellow" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/disco) "pKJ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /obj/structure/barricade/wooden{ @@ -26037,69 +26104,50 @@ name = "astroturf" }, /area/fiorina/station/park) -"pKO" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) "pKY" = ( /obj/structure/cable/heavyduty{ icon_state = "2-4" }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"pLj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"pLE" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, +"pLh" = ( +/obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "green" }, -/area/fiorina/station/lowsec) -"pLM" = ( -/obj/item/trash/cigbutt, +/area/fiorina/station/transit_hub) +"pLk" = ( +/obj/structure/machinery/door/airlock/prison/horizontal, /turf/open/floor/prison{ - dir = 8; - icon_state = "blue" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/research_cells) "pLQ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"pLS" = ( -/obj/effect/decal/cleanable/blood, +"pMA" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" + icon_state = "bluefull" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/power_ring) "pNj" = ( /obj/structure/bookcase, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"pNG" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/eyes, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison, -/area/fiorina/station/medbay) "pNI" = ( /obj/item/stack/tile/plasteel{ pixel_x = 3; @@ -26107,27 +26155,46 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"pOU" = ( -/obj/structure/machinery/light/double/blue{ +"pNV" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/fiorina/station/medbay) +"pOd" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/flight_deck) +"pOm" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/tumor/aux_engi) +"pON" = ( +/obj/structure/closet, +/turf/open/floor/prison{ dir = 4; - pixel_x = 10; - pixel_y = -3 + icon_state = "bluecorner" }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) +/area/fiorina/station/power_ring) +"pPb" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/oob) "pPd" = ( /obj/structure/prop/resin_prop{ icon_state = "coolanttank" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"pPo" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) +"pPf" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison, +/area/fiorina/station/security) "pPG" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -26138,55 +26205,63 @@ }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) -"pQc" = ( -/obj/structure/closet/basketball, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"pPQ" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/research_cells) -"pQs" = ( -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"pQz" = ( /turf/open/floor/prison{ dir = 8; - icon_state = "bluecorner" + icon_state = "whitegreen" }, -/area/fiorina/station/civres_blue) -"pRa" = ( -/obj/structure/bed{ - icon_state = "abed" +/area/fiorina/tumor/ice_lab) +"pQb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" + icon_state = "redfull" }, -/area/fiorina/station/research_cells) -"pRp" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, +/area/fiorina/station/security) +"pQh" = ( +/obj/item/trash/liquidfood, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/transit_hub) -"pRx" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"pRz" = ( +/area/fiorina/tumor/ice_lab) +"pQq" = ( +/obj/item/tool/warning_cone, /turf/open/floor/prison{ - dir = 10; - icon_state = "red" + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) +"pQu" = ( +/obj/structure/holohoop{ + dir = 1 }, -/area/fiorina/station/power_ring) -"pRD" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" + dir = 1; + icon_state = "yellow" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/lowsec) +"pQD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"pRn" = ( +/obj/item/paper/crumpled, +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" + }, +/area/fiorina/tumor/civres) "pRG" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -26195,24 +26270,22 @@ /obj/item/weapon/wirerod, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"pSr" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"pSm" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 8 }, -/area/fiorina/station/medbay) -"pSs" = ( -/obj/item/ammo_box/magazine/misc/flares{ - layer = 3.1; - pixel_y = 16 +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -8 }, -/obj/structure/largecrate/random/secure, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "sterile_white" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/medbay) +"pSJ" = ( +/turf/open/floor/wood, +/area/fiorina/maintenance) "pSU" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/med_data/laptop, @@ -26221,6 +26294,14 @@ "pTj" = ( /turf/open/floor/plating/prison, /area/fiorina/station/security) +"pTA" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/fiorina/station/civres_blue) "pTR" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -26233,61 +26314,42 @@ dir = 5 }, /area/fiorina/station/telecomm/lz1_cargo) -"pUf" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +"pUS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/clothing/mask/cigarette, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_y = 8 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 }, -/obj/structure/platform_decoration, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "redfull" }, -/area/fiorina/station/disco) -"pUo" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +/area/fiorina/station/security) +"pVq" = ( +/turf/open/floor/prison, +/area/fiorina/station/research_cells) +"pVv" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"pVw" = ( +/obj/structure/mirror{ + pixel_x = -32 }, -/area/fiorina/station/disco) -"pUG" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/fiorina/station/research_cells) -"pUO" = ( -/obj/item/trash/boonie, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "kitchen" }, -/area/fiorina/tumor/ice_lab) -"pVc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"pVk" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"pVD" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) +/area/fiorina/tumor/civres) "pVR" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/bible/hefa{ @@ -26296,31 +26358,24 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/fiorina/station/chapel) -"pVY" = ( -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"pWc" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"pWm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/beer_pack{ + pixel_y = 7 }, -/area/fiorina/station/flight_deck) -"pWl" = ( -/obj/structure/machinery/power/geothermal, /turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" + icon_state = "yellowfull" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/lowsec) "pWp" = ( /turf/closed/shuttle/ert{ icon_state = "stan8" }, /area/fiorina/tumor/ship) +"pWH" = ( +/obj/item/clipboard, +/turf/open/floor/prison, +/area/fiorina/station/park) "pWO" = ( /obj/item/stack/rods, /obj/structure/cable/heavyduty{ @@ -26328,39 +26383,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"pWX" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"pXt" = ( -/obj/item/reagent_container/food/snacks/wrapped/booniebars, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) +"pXj" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/prison, +/area/fiorina/station/disco) "pXH" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"pXJ" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +"pXP" = ( +/obj/structure/bed/sofa/vert/grey/top, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) "pXY" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -26373,33 +26411,37 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"pYz" = ( -/obj/structure/closet/emcloset, +"pYh" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"pYp" = ( +/obj/item/stack/sandbags/large_stack, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 1; + icon_state = "darkyellow2" }, -/area/fiorina/maintenance) -"pYB" = ( +/area/fiorina/station/telecomm/lz1_cargo) +"pYI" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/bible/hefa, /turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"pYD" = ( -/obj/structure/monorail{ - dir = 5; - name = "launch track" + dir = 4; + icon_state = "greenfull" }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"pYL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/area/fiorina/station/chapel) +"pYO" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison{ + icon_state = "darkyellowcorners2" }, +/area/fiorina/station/telecomm/lz1_cargo) +"pZb" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8; + icon_state = "yellowcorner" }, -/area/fiorina/station/botany) +/area/fiorina/station/lowsec) "pZm" = ( /obj/structure/machinery/light/small{ dir = 8; @@ -26414,34 +26456,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"pZn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/fiorina/station/lowsec) -"pZp" = ( -/obj/item/tool/soap, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/research_cells) -"qaA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"qaL" = ( +"qam" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" + icon_state = "blue" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/civres_blue) "qaO" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -26453,14 +26473,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qaT" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "qbd" = ( /obj/structure/flora/bush/ausbushes/ausbush{ desc = "Fiberbush(tm) infestations are the leading cause in asbestos related deaths for 3 years in a row."; @@ -26472,32 +26484,39 @@ "qbl" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/lz/near_lzII) -"qbn" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"qbr" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_2" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" }, -/area/fiorina/maintenance) -"qby" = ( -/obj/item/stack/sheet/metal{ - amount = 5 +/area/fiorina/station/central_ring) +"qbu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"qbI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - pixel_y = 9 +/turf/open/floor/prison{ + icon_state = "redfull" }, -/turf/open/floor/prison, /area/fiorina/station/security) -"qbR" = ( +"qbD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/prison{ - icon_state = "kitchen" + dir = 4; + icon_state = "greenfull" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/transit_hub) +"qbT" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "qbW" = ( /obj/item/tool/candle{ pixel_x = -6; @@ -26512,67 +26531,73 @@ /obj/item/stack/catwalk, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"qcy" = ( -/obj/structure/barricade/wooden{ +"qcv" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "yellow" + }, +/area/fiorina/lz/near_lzII) +"qcK" = ( +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"qcM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/skills{ dir = 4 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + icon_state = "bluefull" }, -/area/fiorina/station/telecomm/lz1_cargo) -"qcX" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/station/power_ring) +"qcT" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, -/area/fiorina/station/park) +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "qdd" = ( /obj/structure/grille, /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"qdf" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"qdC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/civres) -"qdE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen, +"qdB" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, /area/fiorina/station/security) "qdJ" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"qes" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"qeh" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/prison, +/area/fiorina/station/security/wardens) +"qeu" = ( +/obj/structure/toilet{ + pixel_y = 4 }, -/area/fiorina/station/telecomm/lz1_tram) -"qet" = ( -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/security) +/area/fiorina/station/medbay) +"qew" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) "qeC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -26589,23 +26614,18 @@ /obj/effect/spawner/random/pills/highchance, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"qeN" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"qeR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 +"qeU" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_marked" + icon_state = "whitegreenfull" }, -/area/fiorina/station/park) +/area/fiorina/station/medbay) "qeX" = ( /obj/structure/surface/table/reinforced/prison{ flipped = 1 @@ -26623,17 +26643,39 @@ }, /turf/open/gm/river/desert/deep, /area/fiorina/lz/near_lzII) -"qfg" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"qfi" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/science, +"qfu" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/blocker/invisible_wall, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 6; + icon_state = "whitepurple" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/oob) +"qfE" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" + }, +/area/fiorina/station/central_ring) +"qfI" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"qfU" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenblue" + }, +/area/fiorina/station/botany) "qgd" = ( /obj/item/explosive/grenade/incendiary/molotov{ pixel_x = 8; @@ -26651,28 +26693,33 @@ }, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/civres) -"qgk" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 +"qgq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 9 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6 }, -/area/fiorina/lz/near_lzI) -"qgv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel/laser{ - pixel_x = -5; - pixel_y = 12 +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6; + pixel_y = 3 }, -/obj/item/tool/surgery/circular_saw{ - pixel_y = -2 +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6; + pixel_y = 6 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 6; + icon_state = "blue" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/power_ring) +"qgA" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) "qgB" = ( /obj/item/clothing/gloves/rainbow, /turf/open/floor/plating/prison, @@ -26681,190 +26728,238 @@ /obj/item/reagent_container/food/drinks/golden_cup, /turf/open/space, /area/fiorina/oob) -"qhk" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"qhC" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"qhD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, -/area/fiorina/station/power_ring) -"qhJ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, -/area/fiorina/station/power_ring) -"qhN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" +"qgS" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, +/obj/item/stack/barbed_wire, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"qhB" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/trash/kepler, +/turf/open/floor/prison, /area/fiorina/station/security) -"qhP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/obj/item/attachable/bipod, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"qhZ" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg3" - }, -/area/fiorina/station/transit_hub) -"qif" = ( -/obj/item/inflatable, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) "qiq" = ( /obj/item/trash/cigbutt, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"qiK" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"qjb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"qit" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, +/obj/structure/platform, +/turf/open/floor/prison, /area/fiorina/tumor/servers) -"qjh" = ( -/obj/item/reagent_container/food/snacks/boiledegg, -/obj/structure/surface/table/reinforced/prison, +"qjc" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"qjg" = ( +/obj/item/tool/shovel/etool, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) -"qjM" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b{ - dir = 4 +/area/fiorina/station/civres_blue) +"qjp" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 2; + pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 2; + pixel_y = 21 }, -/area/fiorina/station/medbay) -"qjR" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_y = 5 +/turf/open/floor/prison, +/area/fiorina/station/disco) +"qjC" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/surface/table/reinforced/prison, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) +"qjY" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "yellow" }, -/area/fiorina/tumor/aux_engi) -"qjX" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/lowsec) +"qkf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + layer = 3.5; + pixel_y = 6 }, /turf/open/floor/prison{ - dir = 1; - icon_state = "greenblue" + dir = 4; + icon_state = "greenfull" }, -/area/fiorina/station/botany) +/area/fiorina/station/transit_hub) "qkg" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/wood, /area/fiorina/station/park) -"qkn" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"qkq" = ( +"qkk" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" + icon_state = "darkpurple2" }, -/area/fiorina/oob) -"qkt" = ( -/obj/structure/bed/chair/office/dark, +/area/fiorina/tumor/servers) +"qks" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/tool/pen, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "redfull" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/security) "qkN" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) +"qkY" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison{ + dir = 10; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) "qlf" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"qmj" = ( -/obj/structure/closet/emcloset, -/obj/item/weapon/nullrod{ - desc = "The explosive tip has been deactivated."; - force = 25; - icon_state = "hefasword"; - name = "de-activated HEFA Sword" +"qmd" = ( +/obj/item/storage/toolbox/antag, +/turf/open/floor/prison{ + dir = 8; + icon_state = "green" + }, +/area/fiorina/tumor/civres) +"qms" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, /turf/open/floor/prison, +/area/fiorina/station/security) +"qmz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, /area/fiorina/station/medbay) -"qmv" = ( -/obj/structure/monorail{ +"qmC" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" + }, +/turf/open/floor/prison{ dir = 10; - name = "launch track" + icon_state = "whitegreenfull" }, -/turf/open/space, -/area/fiorina/oob) -"qnb" = ( -/obj/structure/bed/roller, +/area/fiorina/station/medbay) +"qmO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, +/obj/item/reagent_container/food/snacks/cheesyfries, /turf/open/floor/prison{ dir = 4; - icon_state = "whitegreen" + icon_state = "darkyellowfull2" + }, +/area/fiorina/station/flight_deck) +"qmS" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood/medium_stack, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/maintenance) +"qnc" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/station/medbay) -"qny" = ( -/obj/item/tool/wirecutters/clippers, +/turf/open/floor/prison{ + dir = 5; + icon_state = "blue" + }, +/area/fiorina/station/power_ring) +"qnq" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/prison{ dir = 9; + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) +"qnu" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "damaged1" + }, +/area/fiorina/station/disco) +"qnB" = ( +/obj/structure/monorail{ + dir = 6; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) +"qnE" = ( +/obj/structure/barricade/metal{ + dir = 4; + health = 85; + icon_state = "metal_1" + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"qnK" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison{ + dir = 4; icon_state = "greenfull" }, /area/fiorina/tumor/civres) +"qnQ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison, +/area/fiorina/station/security) "qob" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -26874,45 +26969,44 @@ icon_state = "plate" }, /area/fiorina/station/telecomm/lz1_cargo) -"qoc" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"qof" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" +"qos" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/fiorina/station/disco) -"qov" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "bluefull" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/power_ring) "qoG" = ( /obj/item/toy/crayon/rainbow, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"qph" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +"qoZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" + }, +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/tumor/servers) -"qpk" = ( +/area/fiorina/station/medbay) +"qpa" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, /turf/open/floor/prison{ - icon_state = "bluecorner" + dir = 10; + icon_state = "yellow" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/disco) +"qpw" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "qpB" = ( /obj/item/stack/cable_coil/blue, /turf/open/floor/plating/prison, @@ -26922,110 +27016,56 @@ icon_state = "stan_leftengine" }, /area/fiorina/station/power_ring) -"qpN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 +"qqa" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/item/coin/gold{ - desc = "Coin op, in this place, in this year, localized entirely on this table? .... I uh, yes."; - name = "arcade token"; - pixel_x = -6; - pixel_y = 3 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/platform_decoration{ + dir = 5 }, -/area/fiorina/station/flight_deck) -"qpX" = ( -/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) -"qqc" = ( -/obj/structure/inflatable/popped, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, +/area/fiorina/station/botany) +"qqu" = ( +/obj/structure/surface/rack, +/obj/item/poster, +/obj/item/poster, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"qqd" = ( -/obj/structure/stairs/perspective{ dir = 1; - icon_state = "p_stair_full" + icon_state = "darkyellow2" }, +/area/fiorina/lz/near_lzI) +"qqJ" = ( +/obj/item/stack/cable_coil, /turf/open/floor/prison, -/area/fiorina/station/security) -"qqC" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"qqQ" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/fiorina/station/transit_hub) -"qqW" = ( -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"qre" = ( -/obj/structure/platform_decoration, +/area/fiorina/station/disco) +"qqM" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/central_ring) -"qrn" = ( +/area/fiorina/station/medbay) +"qqX" = ( +/obj/item/disk, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"qrt" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light/double/blue, +/area/fiorina/tumor/servers) +"qqZ" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + dir = 8; + icon_state = "whitepurplecorner" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/research_cells) "qrz" = ( /obj/item/explosive/plastic, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) -"qrI" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/item/reagent_container/food/snacks/sandwich{ - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"qrU" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"qsc" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) "qso" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -27034,46 +27074,32 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"qss" = ( -/obj/structure/flora/pottedplant/random, +"qtq" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"qsE" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/obj/structure/platform{ - dir = 8 + icon_state = "bluefull" }, +/area/fiorina/station/civres_blue) +"qty" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/tumor/ice_lab) -"qsF" = ( +/area/fiorina/tumor/civres) +"qtX" = ( +/obj/structure/blocker/invisible_wall, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"qtP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/helmetgarb/raincover, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"qug" = ( -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 + dir = 10; + icon_state = "whitepurple" }, +/area/fiorina/oob) +"quk" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/prison{ - dir = 8; - icon_state = "blue" + dir = 5; + icon_state = "whitegreen" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/medbay) "qun" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -27085,12 +27111,28 @@ name = "astroturf" }, /area/fiorina/station/park) -"quL" = ( -/obj/structure/machinery/vending/cigarette/colony, +"quy" = ( +/obj/item/tool/wrench, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 6; + icon_state = "darkpurple2" }, -/area/fiorina/station/power_ring) +/area/fiorina/tumor/servers) +"quU" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) "qva" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/smg/mp5, @@ -27099,14 +27141,53 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"qvN" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" +"qvk" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"qvn" = ( +/obj/structure/monorail{ + dir = 10; + name = "launch track" + }, +/turf/open/space, +/area/fiorina/oob) +"qvx" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 4; + icon_state = "yellow" + }, +/area/fiorina/station/disco) +"qvL" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison{ + dir = 6; + icon_state = "blue" + }, +/area/fiorina/station/power_ring) +"qwh" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, +/obj/structure/barricade/wooden, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/civres_blue) +"qwl" = ( +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenfull" + }, +/area/fiorina/station/chapel) "qws" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "bee" @@ -27116,38 +27197,56 @@ icon_state = "doubleside" }, /area/fiorina/maintenance) -"qwG" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"qwH" = ( +"qwy" = ( +/obj/item/weapon/baton/cattleprod, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"qwJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 }, -/area/fiorina/station/lowsec) -"qwK" = ( /turf/open/floor/prison{ - icon_state = "floorscorched2" + icon_state = "bluefull" }, /area/fiorina/station/civres_blue) -"qxx" = ( -/obj/item/ammo_magazine/smg/mp5, +"qwU" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" + dir = 4; + icon_state = "darkbrowncorners2" + }, +/area/fiorina/maintenance) +"qwZ" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/research_cells) -"qxy" = ( -/obj/item/stack/sheet/metal, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 1; + icon_state = "whitegreen" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/central_ring) +"qxB" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"qxL" = ( +/obj/item/toy/deck, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) "qxN" = ( /obj/structure/barricade/sandbags{ dir = 8; @@ -27156,130 +27255,127 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"qxP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"qxZ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +"qyc" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"qyi" = ( +/obj/structure/platform_decoration{ + dir = 1 }, /turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"qya" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 + icon_state = "darkbrown2" }, -/obj/item/clothing/gloves/combat, -/obj/effect/landmark/objective_landmark/science, +/area/fiorina/station/park) +"qyk" = ( +/obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"qyq" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 5; + icon_state = "darkyellow2" }, -/obj/effect/landmark/objective_landmark/close, +/area/fiorina/lz/near_lzI) +"qyB" = ( +/obj/structure/platform_decoration, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"qyM" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/disco) -"qzb" = ( +/area/fiorina/station/park) +"qyX" = ( /obj/structure/stairs/perspective{ - dir = 4; + dir = 1; icon_state = "p_stair_sn_full_cap" }, /obj/structure/platform{ - dir = 4 + dir = 8 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"qzo" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison, -/area/fiorina/station/security) -"qzM" = ( -/obj/structure/largecrate/random/case, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) -"qzZ" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 +/area/fiorina/station/central_ring) +"qzl" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 8 }, /turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" + icon_state = "kitchen" }, -/area/fiorina/station/disco) -"qAe" = ( -/obj/item/trash/eat, +/area/fiorina/station/research_cells) +"qzn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 5; + icon_state = "whitegreen" }, -/area/fiorina/station/telecomm/lz1_cargo) -"qAk" = ( -/obj/item/shard{ - icon_state = "medium" +/area/fiorina/tumor/ice_lab) +"qzy" = ( +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/tumor/aux_engi) +"qzB" = ( +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 }, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "bluefull" }, -/area/fiorina/tumor/servers) -"qAl" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, +/area/fiorina/station/civres_blue) +"qzI" = ( +/obj/item/tool/crowbar/red, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"qAQ" = ( +/area/fiorina/station/flight_deck) +"qzS" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"qzW" = ( +/obj/effect/alien/weeds/node, /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + dir = 8; + icon_state = "darkbrown2" }, /area/fiorina/tumor/aux_engi) -"qBe" = ( -/turf/open/floor/prison, -/area/fiorina/station/disco) -"qBf" = ( +"qzX" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, /turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" + icon_state = "redfull" }, -/area/fiorina/station/central_ring) -"qBj" = ( -/obj/structure/window/reinforced{ - dir = 4 +/area/fiorina/station/security) +"qBh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/handcard/aceofspades, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" }, -/obj/item/storage/briefcase, +/area/fiorina/station/research_cells) +"qBk" = ( +/obj/item/reagent_container/food/drinks/cans/aspen, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security/wardens) -"qBB" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; +/area/fiorina/station/lowsec) +"qBs" = ( +/obj/item/tool/mop{ + pixel_y = 23 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"qBB" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; name = "\improper Souto Raffle Ticket"; pixel_x = -5; pixel_y = -5 @@ -27293,31 +27389,24 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qBI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) -"qBS" = ( -/obj/item/circuitboard/mecha/gygax/targeting, -/obj/structure/surface/rack, +"qBG" = ( +/obj/structure/inflatable/popped/door, +/obj/item/stack/barbed_wire, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 6; + icon_state = "whitegreen" }, -/area/fiorina/tumor/civres) -"qBT" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/area/fiorina/station/medbay) +"qBQ" = ( +/obj/item/storage/secure/briefcase{ + pixel_x = 9; + pixel_y = 18 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/lowsec) "qCa" = ( /obj/structure/prop/resin_prop{ dir = 1; @@ -27326,48 +27415,50 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"qCk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) -"qCx" = ( -/obj/item/reagent_container/food/drinks/sillycup, +"qCs" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/power_ring) -"qCE" = ( -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_y = 4 +/area/fiorina/tumor/aux_engi) +"qCw" = ( +/obj/structure/inflatable/popped/door, +/obj/item/ammo_casing{ + icon_state = "casing_1" }, -/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "sterile_white" }, /area/fiorina/station/medbay) -"qCK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, -/area/fiorina/station/lowsec) "qCW" = ( /turf/closed/shuttle/elevator{ dir = 6 }, /area/fiorina/tumor/aux_engi) +"qDc" = ( +/obj/structure/monorail{ + dir = 9; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"qDd" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"qDi" = ( +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/civres_blue) "qDn" = ( /obj/item/stool, /obj/structure/sign/poster{ @@ -27379,56 +27470,72 @@ icon_state = "doubleside" }, /area/fiorina/maintenance) -"qDq" = ( +"qDo" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"qDy" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/prison, +/area/fiorina/station/park) +"qDD" = ( /obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; + dir = 4; + pixel_x = 10; pixel_y = -3 }, +/obj/structure/largecrate/random/case, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"qDG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_tram) -"qDZ" = ( -/obj/item/stack/rods, +/area/fiorina/tumor/aux_engi) +"qDH" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" + dir = 10; + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"qEk" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"qDI" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 }, +/obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 9; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"qDY" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 }, -/area/fiorina/station/security/wardens) -"qEl" = ( -/obj/structure/closet/bodybag, /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"qEs" = ( +/area/fiorina/lz/near_lzI) +"qEn" = ( +/obj/structure/barricade/wooden, /turf/open/floor/prison{ dir = 4; - icon_state = "yellowcorner" - }, -/area/fiorina/station/lowsec) -"qEC" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" + icon_state = "whitepurple" }, -/area/fiorina/station/disco) -"qFf" = ( -/obj/item/tool/kitchen/rollingpin, +/area/fiorina/station/research_cells) +"qFg" = ( +/obj/item/stack/rods, /turf/open/floor/prison{ - icon_state = "kitchen" + icon_state = "floor_plate" }, /area/fiorina/station/power_ring) "qFi" = ( @@ -27442,108 +27549,109 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"qFs" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) "qFE" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 }, /turf/open/space/basic, /area/fiorina/oob) -"qFO" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"qGe" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +"qFQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/barricade/handrail/type_b{ + dir = 1 }, -/area/fiorina/lz/near_lzI) -"qGf" = ( -/obj/item/tool/scythe, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"qGl" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/station/botany) -"qGh" = ( -/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "yellow" }, -/area/fiorina/station/chapel) +/area/fiorina/station/disco) "qGn" = ( /turf/open/floor/corsat{ icon_state = "plate" }, /area/fiorina/station/telecomm/lz1_cargo) -"qGy" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"qGB" = ( -/obj/structure/barricade/wooden, +"qGX" = ( +/obj/structure/prop/structure_lattice{ + health = 300 + }, +/obj/structure/prop/structure_lattice{ + layer = 3.1; + pixel_y = 10 + }, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"qGO" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/double/blue, +/area/fiorina/tumor/aux_engi) +"qHC" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"qGP" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) +/area/fiorina/lz/near_lzI) "qHG" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = 25 }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"qHX" = ( -/obj/structure/window/reinforced{ - dir = 8 +"qHK" = ( +/obj/item/gift, +/turf/open/floor/prison{ + icon_state = "darkbrown2" }, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/area/fiorina/station/park) +"qHZ" = ( +/obj/item/tool/warning_cone, /turf/open/floor/prison, -/area/fiorina/station/security) +/area/fiorina/station/telecomm/lz1_cargo) +"qIk" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + layer = 3.5 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/power_ring) "qIq" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"qIT" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket" +"qIy" = ( +/obj/item/tool/match, +/turf/open/floor/prison{ + icon_state = "redfull" }, +/area/fiorina/station/security) +"qIO" = ( +/obj/item/stock_parts/manipulator/pico, /turf/open/floor/prison{ - icon_state = "blue" + icon_state = "darkpurple2" }, -/area/fiorina/station/chapel) +/area/fiorina/tumor/servers) +"qIZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/civres_blue) "qJf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/blue{ @@ -27571,32 +27679,15 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qJl" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"qJr" = ( -/turf/open/floor/prison, -/area/fiorina/tumor/fiberbush) -"qJv" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null +"qJJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 10; + icon_state = "blue" }, -/area/fiorina/station/security) +/area/fiorina/station/civres_blue) "qJK" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ @@ -27614,74 +27705,37 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qJP" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"qJQ" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"qJR" = ( -/obj/item/disk/data, +"qKs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/pepper, +/obj/item/clothing/glasses/sunglasses/sechud, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"qKq" = ( -/obj/structure/machinery/computer/arcade, -/obj/item/toy/syndicateballoon{ - anchored = 1; - pixel_x = 12; - pixel_y = 25 + icon_state = "redfull" }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - layer = 2.8; - pixel_x = 15; - pixel_y = 5 +/area/fiorina/station/security) +"qKF" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"qKx" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/station/disco) "qKT" = ( /obj/item/stack/rods/plasteel, /turf/open/auto_turf/sand/layer1, /area/fiorina/lz/near_lzII) -"qLa" = ( -/obj/item/weapon/baseballbat/metal, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"qLi" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +"qLp" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/fiorina/station/lowsec) -"qLv" = ( -/obj/structure/platform_decoration, /turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"qLH" = ( -/obj/item/trash/used_stasis_bag, +/area/fiorina/tumor/servers) +"qLz" = ( +/obj/structure/machinery/autolathe/medilathe/full, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/medbay) "qLI" = ( /obj/item/storage/toolbox, /obj/structure/machinery/light/double/blue{ @@ -27693,79 +27747,65 @@ icon_state = "plate" }, /area/fiorina/station/civres_blue) +"qLJ" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "qLN" = ( /obj/item/storage/toolbox/mechanical/green, /turf/open/floor/corsat{ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) -"qMi" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"qMs" = ( -/obj/item/stack/cable_coil/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"qMI" = ( -/turf/open/floor/prison{ - icon_state = "damaged3" - }, -/area/fiorina/station/security) -"qNj" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, +"qMV" = ( /obj/structure/platform_decoration{ - dir = 10 + dir = 1 }, -/obj/structure/closet/firecloset/full, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"qNu" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/clothing/accessory/storage/holster, -/obj/structure/window/reinforced{ - dir = 4 + icon_state = "blue" }, +/area/fiorina/station/power_ring) +"qNm" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "floor_plate" }, -/area/fiorina/station/security) +/area/fiorina/tumor/aux_engi) "qNv" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"qNy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 +"qNw" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/item/reagent_container/food/snacks/cheesyfries, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + icon_state = "floor_plate" }, -/area/fiorina/station/flight_deck) -"qNF" = ( +/area/fiorina/station/transit_hub) +"qNS" = ( +/obj/structure/machinery/vending/snack/packaged, /turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" + icon_state = "floor_plate" + }, +/area/fiorina/tumor/civres) +"qNW" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison{ + icon_state = "darkbrowncorners2" + }, +/area/fiorina/station/park) +"qOd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison{ + icon_state = "yellowfull" }, /area/fiorina/station/lowsec) "qOk" = ( @@ -27778,11 +27818,18 @@ /obj/structure/grille, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"qOu" = ( +"qOy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"qOG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups, /turf/open/floor/prison{ - icon_state = "damaged3" + icon_state = "floor_plate" }, -/area/fiorina/station/disco) +/area/fiorina/station/power_ring) "qON" = ( /obj/item/stack/cable_coil/cyan, /turf/open/floor/plating/prison, @@ -27799,13 +27846,17 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qPa" = ( -/obj/item/device/motiondetector, +"qOY" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) +/area/fiorina/tumor/ice_lab) "qPb" = ( /turf/open/organic/grass{ desc = "It'll get in your shoes no matter what you do."; @@ -27816,42 +27867,32 @@ /obj/item/ammo_magazine/smg/nailgun, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/maintenance) -"qPL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/obj/item/storage/syringe_case/burn{ - pixel_x = -10; - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"qQa" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/fiorina/station/central_ring) -"qQb" = ( +"qPC" = ( /obj/structure/stairs/perspective{ - dir = 4; + dir = 8; icon_state = "p_stair_full" }, /turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) -"qQd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 10 +/area/fiorina/station/park) +"qPG" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/prison{ + icon_state = "sterile_white" }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/civres_blue) +"qPT" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison{ + icon_state = "blue" }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) +/area/fiorina/station/civres_blue) +"qQf" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison{ + dir = 10; + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) "qQj" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, @@ -27865,15 +27906,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"qQy" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) "qQA" = ( /obj/item/reagent_container/food/drinks/bottle/holywater{ desc = "A flask of the holy HEFA grenade oil."; @@ -27883,30 +27915,15 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"qQM" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, +"qQO" = ( +/obj/item/tool/wet_sign, /turf/open/floor/prison, -/area/fiorina/station/disco) -"qRa" = ( -/obj/effect/decal/cleanable/blood/gibs/core, +/area/fiorina/tumor/servers) +"qQU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/helmetgarb/raincover, /turf/open/floor/prison, -/area/fiorina/station/lowsec) -"qRf" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +/area/fiorina/station/medbay) "qRg" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." @@ -27925,83 +27942,90 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"qRK" = ( +"qRD" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" + dir = 1; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"qSg" = ( +/obj/structure/machinery/bot/medbot{ + name = "Dr. O" }, -/area/fiorina/station/central_ring) -"qRS" = ( -/obj/item/trash/candy, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/telecomm/lz1_cargo) -"qRW" = ( -/obj/structure/stairs/perspective{ +/area/fiorina/station/medbay) +"qSv" = ( +/obj/structure/machinery/vending/snack/packaged, +/obj/structure/machinery/light/double/blue{ dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"qSm" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"qSy" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_y = 17 + pixel_x = -10; + pixel_y = -3 }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"qSz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) -"qSA" = ( -/obj/item/trash/candy, +/area/fiorina/station/civres_blue) +"qTa" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" + dir = 8; + icon_state = "cell_stripe" }, -/area/fiorina/tumor/ice_lab) -"qTe" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"qTt" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +/area/fiorina/station/security) +"qTp" = ( +/obj/structure/sink{ + pixel_y = 23 + }, +/obj/item/prop/helmetgarb/rabbitsfoot{ + pixel_y = 22 + }, +/obj/item/reagent_container/food/drinks/bottle/kahlua{ + pixel_x = 5; + pixel_y = 25 }, -/area/fiorina/station/disco) -"qTx" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "sterile_white" }, /area/fiorina/station/medbay) -"qTQ" = ( -/obj/structure/platform_decoration, -/obj/item/reagent_container/food/drinks/sillycup, +"qTr" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/tumor/ice_lab) +"qTy" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 11; + pixel_y = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 1; + pixel_y = 8 }, -/area/fiorina/station/flight_deck) -"qTW" = ( -/obj/effect/landmark/survivor_spawner, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue" + icon_state = "bluefull" }, /area/fiorina/station/power_ring) +"qUe" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_casing/shell{ + icon_state = "shell_9_1" + }, +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/floor/prison, +/area/fiorina/station/park) "qUo" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -28021,355 +28045,532 @@ name = "astroturf" }, /area/fiorina/station/park) -"qUw" = ( -/obj/item/device/multitool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"qUC" = ( -/obj/item/ammo_casing{ - dir = 2; - icon_state = "casing_5" +"qUp" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" }, +/obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/prison{ dir = 1; icon_state = "darkbrown2" }, -/area/fiorina/station/park) -"qVW" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/park) -"qXj" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/light/double/blue, +/area/fiorina/tumor/aux_engi) +"qUx" = ( +/obj/item/stack/tile/plasteel, /turf/open/floor/prison{ - icon_state = "kitchen" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/station/lowsec) -"qXM" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"qYZ" = ( -/obj/structure/bed/chair, +"qUQ" = ( +/obj/item/stack/cable_coil, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"qZc" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 + icon_state = "floor_plate" }, -/obj/structure/prop/structure_lattice{ +/area/fiorina/station/medbay) +"qUZ" = ( +/obj/structure/stairs/perspective{ dir = 4; - layer = 3.1; - pixel_y = 10 + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"qVe" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; + name = "\improper Fiorina Green Block Canteen Vendor" }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"qZv" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/area/fiorina/station/lowsec) +"qVq" = ( +/obj/item/ammo_box/magazine/misc/flares{ + layer = 3.1; + pixel_y = 16 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) +"qVt" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, /turf/open/floor/prison{ dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/station/telecomm/lz1_tram) +"qVD" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/prison{ + dir = 10; icon_state = "whitegreen" }, -/area/fiorina/station/central_ring) -"raC" = ( -/obj/effect/landmark/corpsespawner/ua_riot, +/area/fiorina/tumor/ice_lab) +"qVF" = ( +/obj/structure/platform, /turf/open/floor/prison{ - dir = 8; + icon_state = "floor_plate" + }, +/area/fiorina/station/botany) +"qWa" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison{ + dir = 9; icon_state = "darkyellow2" }, /area/fiorina/lz/near_lzI) -"raL" = ( +"qWf" = ( +/obj/item/trash/popcorn, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 1; + icon_state = "yellow" }, -/area/fiorina/station/civres_blue) -"raP" = ( -/obj/structure/barricade/wooden, +/area/fiorina/station/lowsec) +"qWi" = ( +/obj/structure/largecrate/guns/merc, +/obj/item/toy/deck/uno, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"rbp" = ( -/obj/structure/closet/crate/medical, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/gloves/latex, +/area/fiorina/station/power_ring) +"qWw" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark/corpsespawner/security/liaison, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"qWB" = ( +/obj/structure/largecrate/random, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"rbv" = ( -/obj/structure/surface/table/reinforced/prison, +/area/fiorina/tumor/civres) +"qWO" = ( +/obj/item/tool/weldingtool, +/turf/open/auto_turf/sand/layer1, +/area/fiorina/tumor/civres) +"qXl" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "floor_plate" + }, +/area/fiorina/station/security) +"qXM" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"qXP" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/fiorina/station/chapel) +"qYc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/tumor/servers) -"rbI" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"qYq" = ( +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"qZa" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" + }, /turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" + icon_state = "whitegreen" }, -/area/fiorina/lz/near_lzI) -"rbK" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"rbW" = ( -/obj/structure/cargo_container/grant/right{ - health = 5000; - unacidable = 1 +/area/fiorina/tumor/ice_lab) +"qZh" = ( +/obj/structure/platform_decoration, +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"rbZ" = ( -/obj/structure/inflatable/popped/door, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreen" + }, +/area/fiorina/tumor/ice_lab) +"qZx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + layer = 3.5; + pixel_y = 6 }, -/area/fiorina/station/medbay) -"rcc" = ( -/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" + icon_state = "floor_plate" }, -/area/fiorina/station/botany) -"rce" = ( +/area/fiorina/station/chapel) +"qZL" = ( +/obj/structure/machinery/computer/arcade, +/obj/item/toy/syndicateballoon{ + anchored = 1; + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + layer = 2.8; + pixel_x = 15; + pixel_y = 5 + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"qZW" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_y = 11 +/obj/item/storage/box/wy_mre{ + pixel_x = 5; + pixel_y = 2 }, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, /area/fiorina/station/research_cells) -"rcg" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"rcl" = ( -/obj/structure/monorail{ - name = "launch track" +"rac" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 }, -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"rcE" = ( -/obj/structure/inflatable/popped/door, -/obj/item/stack/barbed_wire, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" +/turf/open/space/basic, +/area/fiorina/oob) +"rar" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/fiorina/station/medbay) -"rcI" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, /turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/ice_lab) +"raD" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "whitegreencorner" + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/station/medbay) -"rdi" = ( -/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 4; + icon_state = "whitepurple" }, -/area/fiorina/station/transit_hub) -"rdo" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greenbluecorner" +/area/fiorina/station/research_cells) +"raF" = ( +/obj/item/card/id/silver/clearance_badge/cl{ + desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; + name = "certified powerloader operator card"; + registered_name = "John Forklift" }, -/area/fiorina/station/botany) -"rdt" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/prison{ + icon_state = "bluefull" }, -/turf/open/floor/prison, /area/fiorina/station/power_ring) -"red" = ( -/obj/structure/barricade/metal/wired{ +"rbD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 8 }, -/obj/structure/largecrate/random/secure, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/security) +"rbE" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"rbK" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"rcu" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) +"rcG" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, /area/fiorina/station/central_ring) -"rez" = ( +"rdS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) +"rdX" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenfull" }, +/area/fiorina/tumor/civres) +"rev" = ( /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "blue" }, -/area/fiorina/station/disco) -"reZ" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0" +/area/fiorina/station/power_ring) +"reD" = ( +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/lowsec) +"reO" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"rfa" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) "rfd" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/prison, /area/fiorina/tumor/ice_lab) -"rfe" = ( -/obj/structure/surface/rack, -/obj/item/tool/mop, +"rfo" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"rfq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 4; + icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"rft" = ( +"rfD" = ( +/obj/structure/barricade/wooden, /turf/open/floor/prison{ - icon_state = "greenblue" + dir = 8; + icon_state = "whitepurple" }, -/area/fiorina/station/botany) -"rfQ" = ( -/obj/effect/spawner/random/tech_supply, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/research_cells) +"rfG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical/green, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"rgc" = ( -/obj/item/device/binoculars/civ, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/maintenance) +"rfJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/mre_pack/meal4{ + name = "\improper prison food"; + pixel_y = 9 }, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/research_cells) +"rfR" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/turf/open/floor/prison{ + icon_state = "whitegreen" + }, +/area/fiorina/tumor/ice_lab) "rgg" = ( /obj/item/tool/candle{ pixel_x = -2 }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"rhf" = ( +"rgD" = ( +/obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/fiorina/station/research_cells) -"rhh" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" + icon_state = "floor_plate" }, +/area/fiorina/station/lowsec) +"rhF" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) -"rhH" = ( -/obj/structure/bed{ - icon_state = "abed" + icon_state = "floor_plate" }, +/area/fiorina/station/power_ring) +"rhK" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/research_cells) -"rie" = ( -/obj/effect/decal/cleanable/blood/oil, +/area/fiorina/tumor/aux_engi) +"rib" = ( +/obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/prison{ - dir = 8; + dir = 1; icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"riP" = ( -/obj/item/stack/tile/plasteel, +"ril" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/emeraldgreen, +/obj/item/tool/lighter, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) +"riu" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 1; + pixel_y = 8 + }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/power_ring) "rja" = ( /turf/closed/wall/prison, /area/fiorina/station/civres_blue) -"rjy" = ( -/obj/effect/landmark/objective_landmark/close, +"rjn" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + icon_state = "floor_plate" }, -/area/fiorina/tumor/civres) -"rjP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/area/fiorina/station/park) +"rjz" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gibarm_flesh" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"rjE" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "cell_stripe" }, /area/fiorina/station/medbay) -"rki" = ( -/obj/item/stack/tile/plasteel, +"rjM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery{ + name = "Lung Transplants for Dummies"; + pixel_y = 4 + }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/civres) -"rko" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"rkp" = ( -/obj/structure/toilet{ +/area/fiorina/station/telecomm/lz1_cargo) +"rkb" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light/double/blue{ dir = 4; - pixel_y = 8 + pixel_x = 10; + pixel_y = 13 }, -/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" + dir = 4; + icon_state = "darkbrown2" }, +/area/fiorina/maintenance) +"rkh" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/up, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, /area/fiorina/station/lowsec) -"rkv" = ( +"rkr" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" + dir = 5; + icon_state = "greenblue" }, -/area/fiorina/station/chapel) -"rkF" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/area/fiorina/station/botany) +"rkB" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/station/telecomm/lz1_cargo) +/obj/item/device/flashlight, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "rkH" = ( /obj/structure/grille, /obj/structure/lattice, /turf/open/space, /area/fiorina/oob) +"rkQ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/stack/rods, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenfull" + }, +/area/fiorina/station/chapel) "rkR" = ( /obj/item/clothing/glasses/science, /turf/open/space, @@ -28378,12 +28579,33 @@ /obj/item/stack/cable_coil/green, /turf/open/floor/wood, /area/fiorina/station/chapel) -"rlP" = ( -/obj/structure/largecrate/supply, +"rlC" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 + }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "bluefull" }, -/area/fiorina/station/medbay) +/area/fiorina/station/chapel) +"rmb" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/fiorina/station/research_cells) +"rmg" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/research_cells) "rmh" = ( /obj/structure/surface/rack, /obj/item/storage/bag/trash, @@ -28393,22 +28615,46 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"rmX" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +"rmA" = ( +/turf/open/floor/prison{ + icon_state = "platingdmg3" }, +/area/fiorina/station/security) +"rmG" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" + }, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/fiorina/station/flight_deck) +"rmI" = ( /obj/structure/platform{ - dir = 8 + dir = 1 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"rmZ" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" }, -/obj/structure/largecrate/random, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) +/turf/open/floor/prison{ + dir = 9; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"rmS" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) "rna" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -28419,264 +28665,210 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"rnl" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"rol" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" }, -/turf/open/floor/prison, +/turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"rnn" = ( -/obj/structure/largecrate/supply/explosives/mortar_flare, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"rnE" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"rnM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/crayons, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"roi" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 +"roo" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = 1 }, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"rot" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" + icon_state = "floor_plate" }, +/area/fiorina/lz/near_lzII) +"ror" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/ice_lab) -"roE" = ( -/obj/structure/platform_decoration{ - dir = 4 + dir = 9; + icon_state = "whitepurple" }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" +/area/fiorina/station/research_cells) +"rov" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, /turf/open/floor/prison{ - dir = 1; + dir = 4; icon_state = "whitegreen" }, -/area/fiorina/station/medbay) -"roF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/computer/cameras{ - dir = 8 +/area/fiorina/tumor/ice_lab) +"rox" = ( +/obj/structure/platform_decoration, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security) -"roH" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/oob) -"roQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, /area/fiorina/station/disco) -"rpf" = ( -/obj/structure/grille, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"rpt" = ( -/obj/effect/decal/cleanable/blood, +"roC" = ( +/obj/item/tool/weldpack, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"roN" = ( +/obj/structure/closet/crate/medical, +/obj/item/tool/surgery/bonegel, +/obj/item/tool/surgery/bonegel, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/disco) -"rpL" = ( +/area/fiorina/station/medbay) +"roS" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"rpT" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"rqh" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" + icon_state = "bluefull" }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"rqq" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/corpsespawner/ua_riot, +"roY" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"rqA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" + dir = 10; + icon_state = "sterile_white" }, +/area/fiorina/station/research_cells) +"rpe" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/turf/open/floor/prison, /area/fiorina/tumor/servers) -"rqC" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"rqG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, +"rqL" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"rrb" = ( +/obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"rqY" = ( -/obj/structure/filingcabinet/disk, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"rrs" = ( -/obj/item/stack/rods/plasteel, +/area/fiorina/station/security/wardens) +"rrj" = ( +/obj/item/clothing/under/color/orange, /turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" + icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/lowsec) "rru" = ( /obj/effect/spawner/random/goggles/midchance, /turf/open/organic/grass{ name = "astroturf" }, -/area/fiorina/station/research_cells) -"rrD" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 +/area/fiorina/station/research_cells) +"rrP" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison{ + dir = 4; + icon_state = "green" + }, +/area/fiorina/station/chapel) +"rsh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/weed{ + icon_state = "ucigoff" }, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + icon_state = "darkredfull2" }, -/area/fiorina/lz/near_lzI) -"rsg" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/station/park) +/area/fiorina/station/lowsec) "rsp" = ( /obj/item/toy/crayon/purple, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"rsH" = ( +"rss" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, /area/fiorina/station/medbay) -"rsQ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 +"rsz" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/obj/structure/platform_decoration{ - dir = 10 +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"rsR" = ( +/area/fiorina/tumor/civres) +"rsE" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, /turf/open/floor/prison{ - dir = 5; - icon_state = "blue" + dir = 10; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"rsW" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "yellow" + }, +/area/fiorina/station/disco) +"rth" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/power_ring) -"rsU" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"rtc" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"rtw" = ( +"rtM" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - layer = 2.8 + icon_state = "pottedplant_29"; + pixel_y = 6 }, -/obj/structure/barricade/handrail/type_b, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/flight_deck) -"rty" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/area/fiorina/station/security/wardens) +"rue" = ( +/obj/structure/monorail{ + dir = 10; + name = "launch track" }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"ruv" = ( /turf/open/floor/prison{ - dir = 5; - icon_state = "blue" + dir = 8; + icon_state = "green" }, -/area/fiorina/station/civres_blue) -"rtP" = ( -/obj/item/trash/cigbutt, +/area/fiorina/station/chapel) +"ruy" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"rur" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/area/fiorina/tumor/ice_lab) +"ruB" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" }, -/area/fiorina/station/park) -"ruu" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/alien/weeds/node, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/medbay) "ruD" = ( /turf/open/floor/wood, /area/fiorina/oob) +"ruE" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) "ruJ" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -28688,22 +28880,53 @@ }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) +"rvf" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 1; + icon_state = "human2" + }, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) +"rvu" = ( +/obj/structure/toilet, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/fiorina/station/civres_blue) +"rvR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"rvW" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison{ + icon_state = "bluecorner" + }, +/area/fiorina/station/power_ring) "rwj" = ( /obj/structure/barricade/plasteel, /turf/open/organic/grass{ name = "astroturf" }, /area/fiorina/station/park) -"rwm" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, +"rwt" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/power_ring) "rwu" = ( /obj/structure/bed/chair{ dir = 1 @@ -28716,89 +28939,99 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"rwK" = ( -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"rwQ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" +"rxh" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/botany) -"rxg" = ( /turf/open/floor/prison{ - icon_state = "redcorner" + dir = 1; + icon_state = "darkbrown2" }, -/area/fiorina/station/security) +/area/fiorina/station/park) "rxr" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/almayer_hull, /area/fiorina/oob) -"rxL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" +"rxu" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_3" }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"rxM" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" }, +/area/fiorina/station/central_ring) +"rxz" = ( +/obj/structure/curtain/open/black, /turf/open/floor/prison, -/area/fiorina/station/power_ring) +/area/fiorina/maintenance) +"rym" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"ryt" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison, +/area/fiorina/station/security) +"ryx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/tumor/aux_engi) "ryJ" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"rzp" = ( +"ryN" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" + dir = 5; + icon_state = "whitegreen" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/medbay) "rzt" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"rzF" = ( -/obj/structure/holohoop{ - pixel_y = 25 +"rzR" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison{ + dir = 8; + icon_state = "bluecorner" }, +/area/fiorina/station/power_ring) +"rAa" = ( +/obj/item/pamphlet/skill/powerloader, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - icon_state = "yellow" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/medbay) +"rAk" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "rAm" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"rAw" = ( -/obj/structure/bed/chair, +"rAt" = ( +/obj/structure/barricade/wooden, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "whitepurple" }, /area/fiorina/station/research_cells) "rAK" = ( @@ -28813,20 +29046,36 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"rAU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"rAQ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreen" }, +/area/fiorina/station/medbay) +"rAW" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/wooden, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/civres) -"rAY" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 +/area/fiorina/station/disco) +"rBa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, /area/fiorina/station/security) "rBr" = ( /obj/item/device/flashlight/lamp/tripod, @@ -28837,15 +29086,6 @@ icon_state = "plate" }, /area/fiorina/station/civres_blue) -"rBu" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) "rBz" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -28855,15 +29095,13 @@ "rBF" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/flight_deck) -"rCe" = ( -/obj/structure/platform{ - dir = 4 - }, +"rBR" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" + dir = 4; + icon_state = "cell_stripe" }, -/area/fiorina/station/disco) +/area/fiorina/lz/near_lzI) "rCq" = ( /obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/plating/prison, @@ -28874,49 +29112,102 @@ }, /turf/open/floor/wood, /area/fiorina/station/lowsec) -"rDu" = ( +"rCL" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/obj/item/bedsheet/ce{ + desc = "It crinkles, aggressively."; + name = "sterile wax sheet" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/medbay) +"rCO" = ( /obj/structure/stairs/perspective{ dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 + icon_state = "p_stair_ew_full_cap" }, +/obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"rDl" = ( +/obj/item/trash/hotdog, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"rDm" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, /area/fiorina/station/medbay) +"rEe" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/botany) +"rEg" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/item/storage/fancy/cigarettes/blackpack, +/turf/open/floor/prison{ + dir = 6; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"rEm" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"rEH" = ( +/turf/open/floor/prison{ + icon_state = "platingdmg1" + }, +/area/fiorina/oob) +"rFr" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison{ + icon_state = "damaged3" + }, +/area/fiorina/station/central_ring) "rFu" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/chapel_carpet{ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"rFw" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"rFF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +"rFH" = ( +/obj/structure/largecrate/random, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"rGc" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/area/fiorina/station/central_ring) +"rFT" = ( +/obj/item/ammo_casing{ + icon_state = "casing_7_1" }, -/area/fiorina/tumor/ice_lab) -"rGe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer3/laptop/secure_data, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/lowsec) "rGf" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/station/disco) @@ -28939,22 +29230,32 @@ name = "astroturf" }, /area/fiorina/station/park) -"rHf" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" +"rGV" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"rHh" = ( -/obj/effect/decal/cleanable/blood/drip, +/area/fiorina/station/lowsec) +"rHd" = ( +/obj/item/stock_parts/manipulator/pico, /turf/open/floor/prison{ - icon_state = "floorscorched1" + dir = 4; + icon_state = "darkpurple2" }, -/area/fiorina/station/chapel) +/area/fiorina/tumor/servers) +"rHj" = ( +/obj/structure/surface/table/reinforced/prison{ + flipped = 1 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) "rHr" = ( /obj/effect/alien/weeds/node, /turf/open/floor/plating/prison, @@ -28963,58 +29264,59 @@ /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"rHV" = ( -/obj/structure/bed/chair, +"rHx" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/tumor/servers) -"rHX" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) -"rIr" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 + dir = 4; + icon_state = "blue" }, +/area/fiorina/station/civres_blue) +"rIo" = ( /turf/open/floor/prison{ dir = 10; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"rIy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_y = 7 + icon_state = "whitegreenfull" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/area/fiorina/station/chapel) +"rIC" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/fiorina/station/security) +/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/station/disco) "rIE" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"rII" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "rIS" = ( /obj/structure/sign/poster{ icon_state = "poster6" }, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"rJc" = ( -/obj/effect/decal/cleanable/blood/drip, +"rIW" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "red" }, -/area/fiorina/station/chapel) +/area/fiorina/station/security) +"rIX" = ( +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/civres_blue) "rJh" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, @@ -29025,22 +29327,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"rJF" = ( +"rJK" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "blue" }, /area/fiorina/station/chapel) "rJO" = ( /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"rJW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, +"rJT" = ( +/obj/item/storage/bag/trash, /turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/disco) "rJZ" = ( /obj/item/stack/cable_coil/green, /turf/open/floor/plating/prison, @@ -29055,94 +29353,102 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"rKd" = ( -/obj/item/stool, -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_y = 32 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"rKm" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"rKs" = ( +"rKB" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups, +/obj/item/ammo_magazine/rifle/m16, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkyellow2" }, -/area/fiorina/station/power_ring) -"rKy" = ( +/area/fiorina/lz/near_lzI) +"rKO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"rKS" = ( +/obj/item/tool/wrench, /turf/open/floor/prison{ - dir = 1; - icon_state = "greenblue" + dir = 8; + icon_state = "darkpurple2" }, -/area/fiorina/station/botany) -"rKA" = ( -/obj/structure/bed/chair/comfy, +/area/fiorina/tumor/servers) +"rKX" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ + dir = 4; icon_state = "blue" }, /area/fiorina/station/civres_blue) -"rKG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"rLA" = ( -/obj/structure/platform, +"rKZ" = ( +/obj/item/storage/toolbox/electrical, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"rLb" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, /turf/open/floor/prison, -/area/fiorina/station/botany) -"rLG" = ( +/area/fiorina/tumor/aux_engi) +"rLC" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/item/circuitboard/machine/rdserver, /turf/open/floor/prison{ - icon_state = "whitepurple" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/research_cells) +/area/fiorina/tumor/servers) "rLJ" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/chapel) -"rMo" = ( -/obj/effect/landmark/objective_landmark/far, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"rMq" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/landmark/objective_landmark/science, +"rLT" = ( +/obj/structure/machinery/photocopier, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"rMw" = ( -/obj/item/device/flashlight/lamp/tripod, +"rMg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/station/disco) -"rMT" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_y = 21 +/area/fiorina/tumor/civres) +"rMt" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/tumor/servers) +"rME" = ( +/obj/structure/machinery/bot/medbot, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"rMP" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 }, /turf/open/floor/prison, -/area/fiorina/station/central_ring) +/area/fiorina/lz/near_lzI) +"rMS" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison{ + dir = 6; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) "rMY" = ( /obj/structure/machinery/light/small{ dir = 8; @@ -29164,25 +29470,46 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"rNK" = ( -/obj/effect/spawner/random/gun/pistol/lowchance, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"rNV" = ( -/obj/structure/surface/table/reinforced/prison, +"rNp" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"rNF" = ( +/obj/item/stack/sandbags/large_stack, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" + dir = 6; + icon_state = "green" }, /area/fiorina/tumor/civres) +"rOa" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"rOm" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"rOo" = ( +/obj/structure/monorail{ + dir = 9; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) "rOu" = ( /obj/structure/closet, /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"rOE" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/power_ring) "rOI" = ( /obj/structure/flora/bush/ausbushes/ausbush{ desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; @@ -29191,39 +29518,27 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"rOL" = ( -/obj/structure/machinery/floodlight{ - name = "Yard Floodlight" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) -"rPd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal/medium_stack, -/obj/effect/landmark/objective_landmark/medium, +"rON" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/storage/pill_bottle/kelotane/skillless, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/park) +"rPh" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"rPf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + icon_state = "darkpurplefull2" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/tumor/ice_lab) +"rPu" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/area/fiorina/station/transit_hub) -"rPD" = ( -/obj/item/stack/sheet/metal, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/station/lowsec) +/area/fiorina/lz/near_lzI) "rPI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/cherry{ @@ -29251,16 +29566,20 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"rPQ" = ( +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_x = -24 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/medbay) "rPS" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"rPW" = ( -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzI) "rPZ" = ( /obj/item/shard{ icon_state = "medium" @@ -29273,19 +29592,24 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"rQu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/orange, +"rQm" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/platform_decoration, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/maintenance) -"rQB" = ( +/area/fiorina/station/disco) +"rQF" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ dir = 8; - icon_state = "sterile_white" + icon_state = "greencorner" }, -/area/fiorina/station/lowsec) +/area/fiorina/tumor/aux_engi) "rQK" = ( /obj/item/bananapeel{ name = "tactical banana peel" @@ -29294,34 +29618,45 @@ icon_state = "squares" }, /area/fiorina/station/medbay) -"rQN" = ( +"rQP" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, /turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" + dir = 4; + icon_state = "bluecorner" }, /area/fiorina/station/power_ring) -"rRg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/plastic, +"rRb" = ( +/obj/item/shard{ + icon_state = "large" + }, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, /area/fiorina/tumor/servers) -"rRo" = ( -/turf/open/floor/prison{ +"rRO" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "darkyellow2" + pixel_y = 21 }, -/area/fiorina/station/telecomm/lz1_tram) -"rRz" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/prison, +/area/fiorina/station/security) +"rRT" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/security) +"rSh" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/prison{ - dir = 1; - icon_state = "blue" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/research_cells) "rSr" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -29329,38 +29664,19 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"rSN" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/autolathe/full{ - layer = 2.98 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"rSU" = ( -/obj/structure/barricade/sandbags{ - dir = 4; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"rTd" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, +"rSM" = ( +/obj/structure/inflatable/popped, /turf/open/floor/prison{ - dir = 8; icon_state = "whitegreen" }, -/area/fiorina/tumor/ice_lab) -"rTD" = ( -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison{ - icon_state = "bluefull" +/area/fiorina/station/medbay) +"rTb" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/fiorina/station/power_ring) +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) "rTH" = ( /obj/structure/sign/prop1{ layer = 2.5; @@ -29368,78 +29684,57 @@ }, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"rTV" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibup1" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +"rTL" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/area/fiorina/station/medbay) -"rTZ" = ( +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) +"rUc" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" + dir = 8; + icon_state = "cell_stripe" }, -/area/fiorina/station/research_cells) -"rUf" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +/area/fiorina/lz/near_lzI) +"rUr" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" }, -/area/fiorina/tumor/servers) +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) "rUA" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"rUQ" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_y = 21 - }, -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 17; - pixel_y = 21 - }, +"rUL" = ( +/obj/item/stack/cable_coil/green, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"rVi" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" +/area/fiorina/tumor/civres) +"rUT" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/fiorina/station/flight_deck) -"rVp" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" + icon_state = "redfull" }, -/area/fiorina/maintenance) -"rVL" = ( -/obj/structure/largecrate/supply, +/area/fiorina/station/security) +"rUY" = ( +/obj/structure/platform_decoration, /turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/disco) +"rVy" = ( +/obj/structure/stairs/perspective{ dir = 1; - icon_state = "yellow" + icon_state = "p_stair_full" }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison, +/area/fiorina/station/central_ring) "rVM" = ( /obj/structure/closet/crate/miningcar, /obj/structure/barricade/wooden{ @@ -29452,133 +29747,125 @@ /obj/item/reagent_container/food/drinks/cans/beer, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"rVQ" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"rVV" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"rVS" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"rWt" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/prison, /area/fiorina/tumor/servers) -"rWQ" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 +"rVZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"rXt" = ( -/obj/structure/surface/rack, -/obj/item/device/camera, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 6; + icon_state = "blue" }, -/area/fiorina/tumor/fiberbush) -"rYw" = ( -/obj/item/trash/liquidfood, +/area/fiorina/station/civres_blue) +"rWi" = ( +/obj/structure/machinery/vending/sovietsoda, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 1; + icon_state = "blue_plate" }, -/area/fiorina/tumor/ice_lab) -"rYy" = ( -/obj/item/stool{ - pixel_x = -4; - pixel_y = 10 +/area/fiorina/station/botany) +"rWB" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"rWX" = ( +/turf/open/floor/prison{ + icon_state = "damaged3" }, -/obj/structure/sign/poster{ - icon_state = "poster1"; - pixel_y = 32 +/area/fiorina/station/disco) +"rWZ" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_5" }, /turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" + dir = 10; + icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) -"rYK" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +/area/fiorina/station/telecomm/lz1_cargo) +"rXz" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" }, /turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"rYY" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/filtration/console{ - can_block_movement = 0; - pixel_y = 22 + dir = 10; + icon_state = "sterile_white" }, -/obj/item/trash/used_stasis_bag, -/turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"rZe" = ( -/obj/structure/machinery/light/double/blue, +"rXT" = ( +/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 4; + icon_state = "darkyellow2" }, -/area/fiorina/station/security/wardens) -"rZi" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_rightengine" +/area/fiorina/lz/near_lzI) +"rYC" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" }, -/area/fiorina/station/power_ring) -"rZI" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/security) +"rYJ" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 4; + icon_state = "darkbrown2" }, -/area/fiorina/station/medbay) -"rZN" = ( -/obj/structure/bed/chair/comfy{ +/area/fiorina/tumor/aux_engi) +"rZa" = ( +/obj/structure/barricade/metal/wired{ dir = 8 }, /turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" + icon_state = "floor_plate" }, -/area/fiorina/station/flight_deck) -"rZO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/area/fiorina/lz/near_lzI) +"rZh" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"rZi" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" }, -/area/fiorina/station/security) +/area/fiorina/station/power_ring) +"rZr" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) "rZP" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/aux_engi) -"saL" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 11; - pixel_y = 8 +"sad" = ( +/turf/open/floor/prison{ + dir = 9; + icon_state = "yellow" }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 1; - pixel_y = 8 +/area/fiorina/station/disco) +"saI" = ( +/obj/item/stack/rods, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" }, +/area/fiorina/tumor/aux_engi) +"saQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/inaprovaline/skillless, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "blue_plate" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/botany) "sbf" = ( /obj/effect/landmark/corpsespawner/prisoner, /turf/open/gm/river{ @@ -29586,64 +29873,88 @@ name = "pool" }, /area/fiorina/station/park) -"sbF" = ( +"sbg" = ( +/obj/item/trash/cigbutt, /turf/open/floor/prison{ - dir = 4; - icon_state = "red" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/security) -"sbL" = ( -/obj/structure/surface/rack, +/area/fiorina/station/medbay) +"sbj" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"sbp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, -/area/fiorina/tumor/ice_lab) -"sbU" = ( -/obj/item/trash/pistachios, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +/area/fiorina/station/medbay) +"sbM" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"sbW" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "greenbluecorner" + dir = 10; + icon_state = "yellow" }, -/area/fiorina/station/botany) -"scp" = ( +/area/fiorina/station/disco) +"sbQ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/uscm_mre, +/obj/effect/spawner/random/toolbox, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"scG" = ( -/obj/item/reagent_container/food/drinks/sillycup, +"sbY" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b, +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"scg" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/lowsec) +"sct" = ( +/obj/structure/closet/crate/delta{ + desc = "A crate with delta squad's symbol on it. Now how did that get here? The words 'HEFA was never real' are scrawled on it in black ink."; + name = "crate" + }, +/obj/item/ammo_box/magazine/shotgun/buckshot, /turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"scH" = ( -/obj/structure/machinery/washing_machine, +/area/fiorina/station/medbay) +"scw" = ( +/obj/item/storage/beer_pack{ + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - icon_state = "sterile_white" + icon_state = "yellow" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/lowsec) "scM" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/telecomm/lz1_tram) -"scS" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 +"scU" = ( +/obj/structure/window/reinforced{ + dir = 4 }, +/obj/item/storage/briefcase, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/disco) +/area/fiorina/station/security/wardens) "scZ" = ( /obj/structure/platform, /obj/structure/platform{ @@ -29654,24 +29965,21 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"sda" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"sdr" = ( -/obj/effect/landmark/corpsespawner/ua_riot, +"sde" = ( +/obj/item/tool/kitchen/utensil/fork, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"sdE" = ( -/obj/item/storage/wallet/random, +/area/fiorina/station/flight_deck) +"sdg" = ( +/obj/item/implanter/compressed, +/obj/structure/safe, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + icon_state = "redfull" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/security) "sdK" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp{ @@ -29681,68 +29989,47 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"sdR" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"sdV" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/telecomm/lz1_cargo) "sdY" = ( /obj/structure/largecrate/random, /turf/open/floor/corsat{ icon_state = "plate" }, /area/fiorina/station/civres_blue) -"seh" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"sel" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" }, -/area/fiorina/station/civres_blue) -"set" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/platform/stair_cut, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"seu" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"seF" = ( -/obj/structure/monorail{ - dir = 6; - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) "seW" = ( /turf/closed/shuttle/ert{ icon_state = "stan_r_w" }, /area/fiorina/tumor/ship) -"sfe" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, +"seY" = ( +/obj/item/frame/rack, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" + icon_state = "redfull" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/security) "sfi" = ( /obj/structure/platform_decoration{ dir = 1 @@ -29751,18 +30038,6 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"sfn" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) "sfs" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/fancy/candle_box, @@ -29771,69 +30046,29 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"sfu" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, +"sfw" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"sfI" = ( -/obj/structure/monorail{ - name = "launch track" + dir = 6; + icon_state = "darkbrown2" }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/power_ring) "sfW" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"sfZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/baton, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -6; - pixel_y = 12 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) -"sga" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/structure/barricade/metal/wired, +"sgb" = ( +/obj/item/ammo_box/magazine/misc/flares/empty, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "whitegreenfull" }, -/area/fiorina/station/flight_deck) -"sgt" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) +/area/fiorina/tumor/ice_lab) "sgw" = ( /obj/structure/window_frame/prison, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"sgJ" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/gun/flaregun/full, -/obj/item/storage/belt/gun/flaregun/full, -/obj/item/storage/belt/gun/flaregun/full, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) "sha" = ( /obj/item/storage/bible/hefa{ pixel_y = 3 @@ -29842,86 +30077,91 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"shh" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, +"shq" = ( +/obj/structure/machinery/space_heater, /turf/open/floor/prison{ - icon_state = "kitchen" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/research_cells) -"shH" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"sia" = ( -/obj/effect/landmark/objective_landmark/far, +/area/fiorina/tumor/ice_lab) +"shC" = ( +/obj/structure/machinery/autolathe/full, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkbrownfull2" }, /area/fiorina/tumor/aux_engi) -"sig" = ( +"shG" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, /obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/gloves/latex, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "redfull" + }, +/area/fiorina/station/medbay) +"siz" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/tumor/fiberbush) -"siy" = ( -/obj/item/stack/cable_coil, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/power_ring) -"siB" = ( -/obj/item/poster, +/area/fiorina/tumor/ice_lab) +"siR" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/item/tool/soap/syndie, +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/gun/special, +/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" + dir = 10; + icon_state = "kitchen" + }, +/area/fiorina/tumor/civres) +"sjc" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0" }, -/area/fiorina/station/research_cells) -"siE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "darkyellow2" }, -/area/fiorina/tumor/aux_engi) -"siK" = ( -/obj/structure/prop/resin_prop{ +/area/fiorina/station/telecomm/lz1_cargo) +"sjl" = ( +/obj/item/stack/nanopaste, +/turf/open/floor/prison{ dir = 1; - icon_state = "chair"; - pixel_y = 6 + icon_state = "blue" }, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"siW" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"sjd" = ( +/area/fiorina/station/civres_blue) +"sjn" = ( /obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"sjJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 + dir = 1; + icon_state = "p_stair_full" }, /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/security) -"sjM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/goggles/lowchance, +/area/fiorina/tumor/ice_lab) +"sjw" = ( /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "whitegreencorner" }, -/area/fiorina/station/security) +/area/fiorina/station/medbay) +"sjx" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "sjR" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -29934,114 +30174,60 @@ name = "astroturf" }, /area/fiorina/station/park) -"sjT" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 +"skM" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "repairpanelslz" }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"skO" = ( +/obj/item/trash/cigbutt, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) -"sjX" = ( -/obj/item/reagent_container/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenbluecorner" - }, -/area/fiorina/station/botany) -"sjZ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"skj" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, +/area/fiorina/station/telecomm/lz1_cargo) +"slG" = ( +/obj/structure/machinery/disposal, /turf/open/floor/prison{ - icon_state = "yellow" + icon_state = "bluefull" }, -/area/fiorina/station/lowsec) -"skG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +/area/fiorina/station/power_ring) +"slM" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/waffles, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"sma" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/tumor/servers) -"slc" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/park) -"slh" = ( -/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, -/area/fiorina/station/medbay) -"sli" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/tumor/ice_lab) +"smh" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/station/telecomm/lz1_cargo) -"sls" = ( -/obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"slR" = ( -/obj/effect/decal/cleanable/blood{ - desc = "Watch your step."; - icon_state = "gib6" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"slT" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 + icon_state = "floor_plate" }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"smj" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison, /area/fiorina/station/disco) -"sms" = ( +"smq" = ( +/obj/structure/closet/emcloset, /turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" + icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) +/area/fiorina/tumor/ice_lab) "smv" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; @@ -30049,40 +30235,68 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"smR" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 +"smz" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"smX" = ( +/obj/item/stock_parts/matter_bin/super, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkpurple2" }, +/area/fiorina/tumor/servers) +"snp" = ( +/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzI) -"snr" = ( +/area/fiorina/station/chapel) +"snq" = ( /obj/structure/platform{ - dir = 4 + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/item/stool, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"snW" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" +/area/fiorina/station/park) +"sns" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison, +/area/fiorina/station/security) +"snO" = ( +/turf/open/floor/prison{ + dir = 6; + icon_state = "blue" }, -/obj/structure/machinery/light/double/blue, +/area/fiorina/station/power_ring) +"soc" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/effect/spawner/random/gun/rifle, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 4; + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"sol" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/aux_engi) -"soj" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/botany) +/area/fiorina/station/medbay) "sov" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -30095,14 +30309,15 @@ /obj/item/clothing/suit/armor/det_suit, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"spb" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/landmark/objective_landmark/medium, +"soQ" = ( +/obj/structure/bed{ + icon_state = "abed" + }, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 10; + icon_state = "whitepurple" }, -/area/fiorina/station/botany) +/area/fiorina/station/research_cells) "spl" = ( /obj/item/stack/sheet/metal, /obj/structure/barricade/handrail{ @@ -30112,52 +30327,17 @@ name = "astroturf" }, /area/fiorina/station/research_cells) -"spm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - pixel_y = 9 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/security) -"spA" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"spH" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 - }, +"sqg" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 8; + icon_state = "whitegreen" }, /area/fiorina/tumor/ice_lab) -"spR" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) +"sql" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) "sqx" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; @@ -30165,62 +30345,60 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) +"sqB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "cell_stripe" + }, +/area/fiorina/station/park) "sqC" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison, /area/fiorina/station/lowsec) -"sqR" = ( +"sru" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/supply_kit, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"srp" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 7; + pixel_y = 22 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"srt" = ( -/obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/civres) -"srI" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"srQ" = ( -/obj/structure/barricade/handrail, +/area/fiorina/station/power_ring) +"srz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ dir = 5; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"ssb" = ( -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"ssc" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_2" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" + icon_state = "yellow" }, -/area/fiorina/station/central_ring) +/area/fiorina/station/disco) +"srI" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) "sso" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/bag/plants, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"ssC" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +"ssD" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" + }, +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/oob) "ssJ" = ( /obj/structure/lattice, /obj/structure/platform/kutjevo/smooth{ @@ -30228,191 +30406,123 @@ }, /turf/open/space, /area/fiorina/oob) -"ssM" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) "ssO" = ( /obj/item/ashtray/glass, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"ssR" = ( -/obj/item/clothing/under/shorts/black, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) "sta" = ( /obj/structure/machinery/door/airlock/almayer/marine{ icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"stf" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"stw" = ( -/obj/structure/machinery/line_nexter, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +"stq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/security) -"stC" = ( -/obj/structure/largecrate/random, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ dir = 9; - icon_state = "greenfull" + icon_state = "yellow" }, -/area/fiorina/tumor/civres) -"stP" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 +/area/fiorina/station/disco) +"stX" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "darkbrown2" }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"stU" = ( -/obj/structure/sign/poster{ - icon_state = "poster7"; - pixel_x = -26; - pixel_y = 6 +/area/fiorina/tumor/aux_engi) +"suj" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "darkyellow2" }, -/area/fiorina/station/medbay) -"sue" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/tracker, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" +/area/fiorina/station/telecomm/lz1_cargo) +"sun" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/disco) -"suq" = ( -/obj/item/stool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/lowsec) -"suX" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"suB" = ( +/obj/structure/dropship_equipment/fulton_system, /turf/open/floor/prison, -/area/fiorina/station/central_ring) -"suY" = ( -/obj/item/device/cassette_tape/nam, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/area/fiorina/station/power_ring) +"suE" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/area/fiorina/station/medbay) -"svc" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/reagent_container/glass/bottle/robot/antitoxin, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "redfull" }, /area/fiorina/station/security) -"sve" = ( -/obj/item/explosive/grenade/phosphorus, -/obj/item/explosive/grenade/phosphorus, -/obj/item/explosive/grenade/phosphorus, -/obj/structure/surface/rack, -/obj/item/explosive/grenade/phosphorus, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "svh" = ( /obj/structure/machinery/computer/telecomms/monitor, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"svN" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"svP" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"svW" = ( -/obj/structure/surface/rack, -/obj/item/clothing/gloves/latex, +"svo" = ( +/obj/structure/grille, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"svF" = ( +/obj/structure/blocker/invisible_wall, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 9; + icon_state = "whitepurple" }, +/area/fiorina/oob) +"svG" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/prison, /area/fiorina/station/medbay) "swg" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/space, /area/fiorina/oob) -"swj" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +"swh" = ( +/obj/structure/machinery/power/geothermal, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"sws" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/fiorina/tumor/civres) -"swJ" = ( -/obj/item/tool/shovel/snow, -/obj/item/device/flashlight, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/ice_lab) -"swT" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"syf" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b{ + dir = 4 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/tumor/ice_lab) -"sxc" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/station/medbay) +"syF" = ( +/obj/structure/machinery/microwave{ + desc = "So uh yeah, about that cat..."; + icon_state = "mwbloodyo"; + pixel_y = 6 }, -/area/fiorina/station/lowsec) -"sxk" = ( -/obj/effect/landmark/objective_landmark/science, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison, -/area/fiorina/tumor/servers) -"sxE" = ( -/turf/open/floor/prison{ - icon_state = "redcorner" - }, -/area/fiorina/station/power_ring) -"sxH" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"syj" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) +/area/fiorina/tumor/aux_engi) "syG" = ( /obj/item/tool/wirecutters/clippers, /turf/open/organic/grass{ @@ -30437,67 +30547,78 @@ /obj/structure/sign/safety/fridge, /turf/closed/wall/prison, /area/fiorina/station/power_ring) -"sze" = ( +"szK" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/wood, +/area/fiorina/station/park) +"szQ" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" + dir = 8; + icon_state = "whitegreen" }, -/area/fiorina/tumor/civres) -"szs" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" +/area/fiorina/tumor/ice_lab) +"sAe" = ( +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" }, +/area/fiorina/station/research_cells) +"sAk" = ( +/obj/item/stack/cable_coil, /turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" + icon_state = "floor_plate" }, -/area/fiorina/station/chapel) -"szD" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +/area/fiorina/station/power_ring) +"sAv" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"szK" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/wood, -/area/fiorina/station/park) -"szP" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"sAp" = ( +/area/fiorina/tumor/aux_engi) +"sAx" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison{ + dir = 6; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"sAK" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"sAF" = ( -/obj/item/inflatable, /turf/open/floor/prison{ dir = 1; - icon_state = "yellow" + icon_state = "greenblue" }, -/area/fiorina/station/lowsec) -"sBf" = ( -/obj/structure/platform{ - dir = 1 +/area/fiorina/station/botany) +"sBl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/bottle/spaceacillin{ + pixel_x = -6; + pixel_y = 4 }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/item/reagent_container/syringe{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bottle/spaceacillin{ + pixel_x = 6; + pixel_y = 12 }, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/park) -"sBj" = ( -/obj/structure/barricade/metal{ - health = 85; - icon_state = "metal_1" +/area/fiorina/tumor/ice_lab) +"sBr" = ( +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" }, -/turf/open/floor/prison, -/area/fiorina/station/park) +/area/fiorina/station/telecomm/lz1_cargo) "sBA" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -30505,57 +30626,58 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"sBM" = ( -/obj/effect/decal/cleanable/blood/splatter, +"sCh" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/card/id/silver/clearance_badge, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" + dir = 10; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"sCj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + icon_state = "mwo"; + pixel_y = 6 }, -/area/fiorina/station/medbay) -"sBO" = ( -/obj/structure/machinery/power/apc, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "kitchen" }, -/area/fiorina/station/medbay) -"sBW" = ( +/area/fiorina/station/civres_blue) +"sCo" = ( /obj/structure/platform{ - dir = 8 + dir = 1 }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"sBY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/goggles/lowchance, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/park) -"sCe" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +/area/fiorina/tumor/ice_lab) +"sCB" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" }, +/area/fiorina/tumor/aux_engi) +"sDp" = ( +/obj/structure/largecrate/random, /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/chapel) -"sCH" = ( -/obj/item/frame/rack, -/obj/item/clothing/under/marine/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" +/area/fiorina/station/disco) +"sDF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 7 }, -/area/fiorina/station/security) -"sDn" = ( -/obj/structure/inflatable/popped/door, /obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "whitegreen" + icon_state = "bluefull" }, -/area/fiorina/station/medbay) +/area/fiorina/station/power_ring) "sDL" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -30563,219 +30685,114 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"sDR" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 1; - icon_state = "human2" - }, +"sDV" = ( /turf/open/floor/prison{ - icon_state = "yellowfull" + dir = 5; + icon_state = "yellow" }, -/area/fiorina/station/lowsec) -"sDS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16, +/area/fiorina/station/central_ring) +"sEi" = ( /turf/open/floor/prison{ + dir = 8; icon_state = "darkyellow2" }, /area/fiorina/lz/near_lzI) +"sED" = ( +/turf/open/floor/prison{ + icon_state = "damaged2" + }, +/area/fiorina/station/disco) "sEO" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/lz/near_lzII) -"sFd" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "greenblue" +"sFf" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison, +/area/fiorina/station/security) +"sFn" = ( +/obj/structure/machinery/door/window/northleft{ + dir = 4 }, -/area/fiorina/station/botany) -"sFo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "redfull" }, -/area/fiorina/station/park) -"sFr" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 +/area/fiorina/station/security/wardens) +"sFI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Residential Archives" }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/flight_deck) -"sFH" = ( +/area/fiorina/tumor/civres) +"sFN" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/tool/stamp, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/lowsec) -"sFY" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"sGa" = ( -/obj/structure/platform_decoration, +/obj/structure/machinery/chem_dispenser/soda, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/disco) -"sGg" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/prison, /area/fiorina/station/power_ring) -"sGk" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 +"sGb" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, -/obj/item/newspaper, -/obj/item/bedsheet/green, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"sGx" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 5; + icon_state = "yellow" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/area/fiorina/station/disco) +"sGu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/bottle/spaceacillin{ + pixel_x = -6; + pixel_y = 4 }, -/area/fiorina/tumor/aux_engi) -"sGC" = ( -/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + icon_state = "darkredfull2" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/research_cells) "sGI" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/wood, /area/fiorina/station/park) -"sGX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/mre_pack/meal4{ - name = "\improper prison food"; - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"sHe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/subspace/amplifier{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/stock_parts/subspace/analyzer{ - pixel_x = -9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"sHj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"sHL" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"sHM" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell2deval" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"sHO" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ +"sHb" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/space, -/area/fiorina/oob) -"sIg" = ( -/obj/item/device/pinpointer, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"sIh" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"sIj" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"sIk" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 +/area/fiorina/station/park) +"sHw" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, /turf/open/floor/prison{ - icon_state = "kitchen" + icon_state = "yellowcorner" }, /area/fiorina/station/lowsec) -"sIs" = ( -/obj/item/weapon/gun/smg/nailgun, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"sHH" = ( +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"sHO" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, -/area/fiorina/maintenance) -"sIz" = ( -/obj/structure/machinery/computer/emails{ - pixel_y = 6 +/obj/structure/platform/kutjevo/smooth{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison, +/turf/open/space, +/area/fiorina/oob) +"sHQ" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/park) -"sIC" = ( -/turf/open/floor/prison, -/area/fiorina/tumor/civres) +/area/fiorina/station/medbay) "sII" = ( /obj/structure/bookcase{ icon_state = "book-5"; @@ -30787,76 +30804,103 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison, /area/fiorina/lz/near_lzI) +"sIQ" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenfull" + }, +/area/fiorina/tumor/civres) +"sIT" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/lz/near_lzII) +"sJc" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) +"sJl" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) "sJu" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"sJy" = ( -/obj/item/ammo_casing{ - icon_state = "casing_9_1" - }, +"sJw" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" + icon_state = "floorscorched1" }, -/area/fiorina/station/lowsec) -"sJB" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison, -/area/fiorina/station/security) +/area/fiorina/station/chapel) "sJN" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/lz/near_lzI) -"sJP" = ( -/obj/item/device/flashlight/lamp/tripod, +"sJT" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/lowsec) -"sKr" = ( -/obj/item/storage/secure/briefcase{ - pixel_x = 9; - pixel_y = 18 +/area/fiorina/tumor/aux_engi) +"sKn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison{ + dir = 6; + icon_state = "whitepurple" }, +/area/fiorina/station/research_cells) +"sKq" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8; + icon_state = "yellow" }, -/area/fiorina/station/lowsec) -"sKt" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 +/area/fiorina/lz/near_lzII) +"sKP" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 }, /turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) -"sKu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +/area/fiorina/station/power_ring) +"sKS" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"sKY" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"sLu" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" +/turf/open/floor/prison{ + dir = 6; + icon_state = "yellow" }, -/obj/structure/machinery/light/double/blue{ +/area/fiorina/station/disco) +"sLl" = ( +/turf/open/floor/prison{ dir = 1; - pixel_y = 21 + icon_state = "darkpurple2" + }, +/area/fiorina/station/central_ring) +"sLo" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 4; + icon_state = "darkyellowfull2" }, /area/fiorina/lz/near_lzI) "sLx" = ( @@ -30869,29 +30913,26 @@ }, /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/civres) -"sMe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/security_space_law{ - pixel_x = 3; - pixel_y = 5 - }, +"sLT" = ( +/obj/item/tool/weldingtool, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "floor_plate" }, -/area/fiorina/station/security) -"sMX" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/area/fiorina/station/civres_blue) +"sMj" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, -/area/fiorina/tumor/aux_engi) -"sMY" = ( -/obj/item/reagent_container/food/snacks/eat_bar, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"sMo" = ( +/obj/item/clothing/under/marine/ua_riot, +/obj/item/weapon/gun/rifle/m16, /turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" + icon_state = "floor_plate" }, -/area/fiorina/station/botany) +/area/fiorina/station/security) "sNb" = ( /obj/item/device/radio, /turf/open/organic/grass{ @@ -30899,54 +30940,43 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"sNg" = ( -/obj/structure/closet/firecloset/full, -/obj/item/storage/pill_bottle/bicaridine/skillless, +"sNd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, /area/fiorina/tumor/ice_lab) -"sNi" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"sNj" = ( -/obj/structure/barricade/metal/wired{ +"sNu" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/item/stack/sheet/metal{ - amount = 5 - }, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 6; + icon_state = "darkbrown2" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/maintenance) +"sNK" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "sNN" = ( /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"sNQ" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_tram) -"sNU" = ( +"sNT" = ( +/obj/effect/spawner/random/gun/pistol/lowchance, /turf/open/floor/prison{ dir = 1; - icon_state = "red" + icon_state = "darkbrown2" }, -/area/fiorina/station/security) +/area/fiorina/station/park) "sOf" = ( /obj/item/clothing/mask/cigarette/weed{ icon_state = "ucigoff" @@ -30962,16 +30992,21 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"sOj" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 +"sOn" = ( +/turf/open/floor/prison{ + icon_state = "redfull" }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/security/wardens) +"sOp" = ( +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" }, -/turf/open/floor/prison, -/area/fiorina/station/security) +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) "sOs" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/almayer{ @@ -30979,110 +31014,84 @@ icon_state = "plating" }, /area/fiorina/tumor/ship) -"sOM" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue{ +"sPk" = ( +/obj/structure/stairs/perspective{ dir = 1; - pixel_y = 21 + icon_state = "p_stair_full" }, /turf/open/floor/prison, -/area/fiorina/station/central_ring) -"sPh" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/area/fiorina/station/power_ring) +"sPC" = ( +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 }, -/area/fiorina/lz/near_lzI) -"sPi" = ( /turf/open/floor/prison{ dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"sPt" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" + icon_state = "blue" }, -/obj/structure/platform/shiva, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"sPJ" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/fiorina/station/civres_blue) +"sQK" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibdown1" }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/tumor/civres) -"sQr" = ( -/obj/structure/janitorialcart, -/obj/item/clothing/head/bio_hood/janitor{ - pixel_x = -4; - pixel_y = 5 +/area/fiorina/station/medbay) +"sQL" = ( +/obj/structure/platform, +/turf/open/gm/river{ + color = "#995555"; + name = "pool" + }, +/area/fiorina/station/park) +"sRb" = ( +/obj/item/trash/candy, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"sQy" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/gun/pistol/midchance, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 8; + icon_state = "whitegreen" }, -/area/fiorina/station/security) -"sQz" = ( -/obj/structure/closet/emcloset, +/area/fiorina/station/medbay) +"sRg" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"sQC" = ( -/obj/structure/surface/rack, +/area/fiorina/tumor/civres) +"sRk" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/station/park) +"sRH" = ( +/obj/item/pamphlet/engineer, +/obj/structure/closet, /obj/item/handcuffs, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ icon_state = "darkredfull2" }, -/area/fiorina/station/security) -"sQL" = ( -/obj/structure/platform, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, -/area/fiorina/station/park) -"sRv" = ( -/obj/item/clothing/shoes/marine/upp_knife, -/turf/open/floor/prison, /area/fiorina/station/lowsec) -"sRE" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, +"sRV" = ( /turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"sRJ" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + icon_state = "floor_plate" }, +/area/fiorina/station/security) +"sSJ" = ( +/obj/structure/inflatable/popped/door, /turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" + dir = 8; + icon_state = "floor_marked" }, /area/fiorina/station/lowsec) -"sSM" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) "sSY" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -31094,17 +31103,16 @@ }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) +"sTa" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "red" + }, +/area/fiorina/station/security) "sTd" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"sTm" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) "sTu" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -31114,86 +31122,34 @@ /obj/structure/blocker/invisible_wall, /turf/open/space, /area/fiorina/station/medbay) -"sTw" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +"sTB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/fiorina/station/telecomm/lz1_cargo) -"sTI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/machinery/light/double/blue, +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/prison{ dir = 10; icon_state = "sterile_white" }, -/area/fiorina/station/medbay) -"sTK" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"sTU" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"sUc" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"sUe" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, +/area/fiorina/station/research_cells) +"sTV" = ( /turf/open/floor/prison{ - icon_state = "darkbrown2" + dir = 10; + icon_state = "floor_marked" }, -/area/fiorina/station/park) +/area/fiorina/station/power_ring) "sUl" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"sUr" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/bible/hefa, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/chapel) -"sUt" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison, -/area/fiorina/station/park) -"sUV" = ( +"sUq" = ( +/obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/civres_blue) "sUX" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/organic/grass{ @@ -31206,36 +31162,63 @@ icon_state = "squares" }, /area/fiorina/station/civres_blue) -"sVd" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +"sVa" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue" }, +/area/fiorina/station/civres_blue) +"sVi" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison, -/area/fiorina/station/botany) +/area/fiorina/tumor/aux_engi) "sVv" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 }, /turf/open/space, /area/fiorina/oob) -"sVS" = ( -/obj/item/trash/pistachios, +"sVy" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/item/trash/barcardine, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, /area/fiorina/tumor/ice_lab) -"sVT" = ( -/obj/effect/spawner/random/tool, +"sVD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pamphlet/skill/powerloader, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreenfull" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/medbay) +"sVM" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/tumor/aux_engi) +"sVN" = ( +/obj/item/stack/rods, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/chapel) +"sVP" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) "sVU" = ( /obj/structure/largecrate/machine, /obj/item/reagent_container/food/drinks/cans/aspen{ @@ -31243,147 +31226,80 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"sVW" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +"sWu" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/fiorina/tumor/aux_engi) -"sVZ" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/spawner/random/pills/lowchance, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/botany) -"sWb" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 +/area/fiorina/station/medbay) +"sWF" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 +/obj/structure/platform{ + dir = 4 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"sWe" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"sWl" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"sWr" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"sWw" = ( -/obj/item/storage/bag/trash, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"sWX" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/research_cells) -"sXa" = ( -/obj/structure/machinery/filtration/console, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"sXe" = ( -/turf/open/floor/prison, -/area/fiorina/station/research_cells) +/area/fiorina/station/central_ring) "sXi" = ( /turf/open/floor/corsat{ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) -"sXt" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"sXP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/hardpoint/support/flare_launcher{ - pixel_x = -1; - pixel_y = 5 - }, +"sXy" = ( +/obj/structure/surface/rack, /turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"sYn" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"sYy" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" + icon_state = "floor_plate" }, +/area/fiorina/station/chapel) +"sYe" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 9; + icon_state = "yellow" }, -/area/fiorina/station/medbay) -"sYB" = ( +/area/fiorina/station/central_ring) +"sYn" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"sYM" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - dir = 9; icon_state = "darkyellow2" }, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/lz/near_lzI) "sYP" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"sZt" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) -"sZZ" = ( -/obj/structure/barricade/wooden, +"sZr" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"tad" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" + icon_state = "sterile_white" }, -/area/fiorina/station/disco) -"tai" = ( -/obj/structure/bed/chair, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 +/area/fiorina/station/medbay) +"tam" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/storage/belt/shotgun, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, /turf/open/floor/prison{ - icon_state = "darkbrown2" + icon_state = "redfull" }, -/area/fiorina/station/park) -"taj" = ( -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/security) "tan" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/oob) @@ -31393,135 +31309,108 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"taI" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"taL" = ( +"tax" = ( /obj/item/clothing/under/color/orange, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"taX" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/security) -"taS" = ( -/obj/item/stack/cable_coil, /turf/open/floor/prison{ - dir = 5; - icon_state = "blue" + icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) +/area/fiorina/tumor/civres) "taY" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/space/basic, /area/fiorina/lz/near_lzI) -"tbd" = ( -/obj/structure/inflatable, +"tbs" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"tbC" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 5; + icon_state = "green" }, -/area/fiorina/tumor/ship) -"tbj" = ( -/obj/item/stack/sandbags_empty/half, +/area/fiorina/tumor/aux_engi) +"tbZ" = ( +/obj/structure/filingcabinet, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "whitegreenfull" }, -/area/fiorina/station/flight_deck) -"tbm" = ( -/obj/item/stack/cable_coil, +/area/fiorina/station/medbay) +"tcl" = ( +/obj/structure/largecrate/random/mini/med, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"tbG" = ( -/obj/structure/bed{ - icon_state = "psychbed" + dir = 10; + icon_state = "whitegreenfull" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/area/fiorina/station/medbay) +"tcJ" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/fiorina/tumor/servers) -"tco" = ( -/obj/item/paper/crumpled/bloody/csheet, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzII) -"tcB" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"tcD" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"tcL" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, +/area/fiorina/station/botany) +"tcO" = ( /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 8; + icon_state = "bluecorner" }, /area/fiorina/station/chapel) -"tcW" = ( -/obj/structure/monorail{ - name = "launch track" - }, +"tdb" = ( /obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 + dir = 1; + pixel_y = 21 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"tde" = ( -/obj/structure/largecrate/random, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkpurple2" }, -/area/fiorina/station/central_ring) -"tdq" = ( -/obj/structure/platform_decoration{ - dir = 8 +/area/fiorina/tumor/servers) +"tdo" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" }, +/area/fiorina/station/park) +"tdA" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "redcorner" }, /area/fiorina/station/power_ring) -"tdr" = ( -/obj/structure/prop/resin_prop{ - dir = 4; - icon_state = "chair"; - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"tdG" = ( +/obj/item/storage/backpack/satchel/lockable, +/turf/open/floor/prison, +/area/fiorina/station/security) +"tdZ" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison, +/area/fiorina/station/park) +"tef" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + layer = 2.5 }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison, +/area/fiorina/station/medbay) "tel" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/medbay) -"teq" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) "tet" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -31532,42 +31421,19 @@ icon_state = "plate" }, /area/fiorina/station/telecomm/lz1_cargo) -"teu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"teI" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, +"teH" = ( +/obj/structure/platform_decoration, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"teK" = ( -/obj/structure/bed/chair{ - dir = 4 + icon_state = "darkbrown2" }, +/area/fiorina/station/park) +"teT" = ( +/obj/item/paper/crumpled, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "sterile_white" }, /area/fiorina/station/medbay) -"tfl" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"tfw" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) "tfx" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -31581,223 +31447,130 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"tge" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +"tgc" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/tumor/servers) +"tgv" = ( +/obj/structure/machinery/computer/emails{ + pixel_y = 6 }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/park) "tgB" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"tgK" = ( -/obj/structure/machinery/landinglight/ds1/delayone, +"the" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"tgL" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + icon_state = "floorscorched1" }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"thz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/lockbox/vials{ - pixel_x = -4; - pixel_y = 4 +/area/fiorina/station/security) +"thi" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" }, +/area/fiorina/tumor/aux_engi) +"thU" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkredfull2" }, -/area/fiorina/station/lowsec) -"thI" = ( +/area/fiorina/lz/near_lzI) +"tih" = ( +/obj/item/tool/warning_cone, /obj/structure/machinery/light/double/blue{ dir = 8; pixel_x = -10; pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"tik" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/area/fiorina/station/civres_blue) -"thV" = ( -/obj/item/tool/kitchen/utensil/pfork, /turf/open/floor/prison{ - dir = 4; + dir = 1; icon_state = "blue" }, -/area/fiorina/station/power_ring) -"tii" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"til" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/stool, -/obj/item/clothing/shoes/slippers_worn, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, /area/fiorina/station/civres_blue) -"tir" = ( -/obj/item/ammo_magazine/rifle/m16, +"tiW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/chunk, /turf/open/floor/prison, -/area/fiorina/station/security) -"tis" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b, -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"tiM" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/power_ring) "tiX" = ( /obj/item/stack/sheet/mineral/plastic, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"tiY" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched2" - }, -/area/fiorina/tumor/civres) -"tiZ" = ( +"tjo" = ( +/obj/structure/machinery/vending/coffee/simple, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" + icon_state = "floor_plate" }, /area/fiorina/station/park) -"tja" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"tji" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - layer = 2.5 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"tjp" = ( -/obj/item/tool/warning_cone, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"tjw" = ( -/obj/structure/platform_decoration, -/obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"tjR" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/research_cells) -"tkd" = ( -/obj/structure/filingcabinet, -/obj/structure/filingcabinet{ - pixel_x = 16 +"tjM" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"tkg" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/park) -"tkj" = ( +/area/fiorina/station/lowsec) +"tjQ" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"tkP" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" + dir = 8; + icon_state = "green" }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) -"tkZ" = ( +/area/fiorina/station/chapel) +"tjU" = ( /obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; + dir = 4; + pixel_x = 10; pixel_y = -3 }, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/research_cells) -"tle" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 +/area/fiorina/tumor/servers) +"tke" = ( +/obj/structure/monorail{ + name = "launch track" }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"tkk" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "whitegreen" }, -/area/fiorina/tumor/civres) -"tlj" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/fiorina/station/medbay) +"tld" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"tlp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 7 }, /turf/open/floor/prison{ - icon_state = "bluecorner" + icon_state = "bluefull" }, /area/fiorina/station/power_ring) "tlq" = ( @@ -31816,46 +31589,24 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"tlC" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"tlF" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) -"tlJ" = ( -/obj/item/shard{ - icon_state = "medium" - }, +"tlM" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/station/medbay) +/area/fiorina/station/transit_hub) "tlQ" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"tlS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) "tlV" = ( /obj/structure/machinery/space_heater, /obj/item/device/flashlight/lamp{ @@ -31863,10 +31614,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"tmo" = ( -/obj/structure/stairs/perspective, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) +"tmi" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) "tmx" = ( /obj/structure/bed/chair{ dir = 1 @@ -31878,53 +31632,75 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"tmF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ +"tna" = ( +/obj/structure/bed/sofa/pews{ + dir = 4 + }, +/obj/structure/bed/sofa/pews{ dir = 1; - icon_state = "whitegreen" + pixel_y = 22 }, -/area/fiorina/tumor/ice_lab) -"tmI" = ( -/obj/effect/alien/weeds/node, +/turf/open/floor/wood, +/area/fiorina/station/chapel) +"tnd" = ( +/obj/structure/largecrate/supply/medicine/medkits, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/tumor/aux_engi) -"tmL" = ( -/obj/item/device/flashlight/lamp/tripod, +/area/fiorina/station/medbay) +"tng" = ( +/obj/structure/computerframe, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"tmX" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison, -/area/fiorina/station/park) -"tna" = ( -/obj/structure/bed/sofa/pews{ - dir = 4 +/area/fiorina/station/medbay) +"tnj" = ( +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison{ + dir = 9; + icon_state = "yellow" }, -/obj/structure/bed/sofa/pews{ +/area/fiorina/station/lowsec) +"tno" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison{ + dir = 1; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"tnr" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"tnA" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/disco) +"tnH" = ( +/obj/structure/machinery/light/double/blue{ dir = 1; - pixel_y = 22 + pixel_y = 21 }, -/turf/open/floor/wood, -/area/fiorina/station/chapel) -"tnw" = ( -/obj/effect/landmark/queen_spawn, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) -"tnY" = ( -/obj/structure/platform_decoration, +/area/fiorina/station/power_ring) +"tnP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/pills/lowchance, /turf/open/floor/prison{ - icon_state = "whitegreen" + icon_state = "yellowfull" }, -/area/fiorina/station/medbay) +/area/fiorina/station/lowsec) "tob" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -31932,9 +31708,36 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"tom" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"tov" = ( +/obj/effect/spawner/random/gun/smg/midchance, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) "toE" = ( /turf/open/floor/carpet, /area/fiorina/station/civres_blue) +"toJ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/security) "tpa" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -31955,116 +31758,91 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"tpw" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/largecrate/random/case, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"tpz" = ( -/obj/item/paper/carbon, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"tpO" = ( +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_y = 5 }, -/area/fiorina/station/medbay) -"tpE" = ( -/obj/item/tank/jetpack/carbondioxide, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "Holy shit"; + pixel_y = 18 }, -/area/fiorina/tumor/servers) -"tpF" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" +/obj/item/storage/pill_bottle/kelotane/skillless{ + desc = "Don't touch -Dr. O"; + pixel_x = 6; + pixel_y = 31 }, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison, +/area/fiorina/station/medbay) "tpY" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"tpZ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" +"tqa" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, +/turf/open/space/basic, +/area/fiorina/oob) +"tqM" = ( +/obj/structure/filingcabinet, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"tql" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/tumor/aux_engi) +"tqN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 }, /turf/open/floor/prison{ - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"tqw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"tqx" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" + dir = 10; + icon_state = "kitchen" }, -/obj/item/storage/toolbox, -/obj/item/storage/toolbox, +/area/fiorina/station/civres_blue) +"tqQ" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/tumor/servers) -"tqP" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 + dir = 1; + icon_state = "darkyellowcorners2" }, -/obj/structure/platform/kutjevo/smooth{ +/area/fiorina/lz/near_lzI) +"tqR" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail{ +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/prison{ dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" + icon_state = "whitegreen" }, -/turf/open/space/basic, -/area/fiorina/oob) +/area/fiorina/station/medbay) "trl" = ( /obj/item/trash/buritto, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"trJ" = ( +"trB" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - icon_state = "darkpurple2" + icon_state = "floor_plate" + }, +/area/fiorina/station/chapel) +"trH" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 }, -/area/fiorina/station/central_ring) -"trN" = ( -/obj/item/stack/barbed_wire, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"trR" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/item/storage/fancy/cigarettes/blackpack, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "trS" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -32072,73 +31850,47 @@ /obj/structure/barricade/wooden, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"tsc" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - indestructible = 1; - name = "launch bay door" - }, -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) "tsf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 9 +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"tsi" = ( +/obj/structure/barricade/metal/wired, /turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"tsr" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" + icon_state = "floor_plate" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/area/fiorina/station/lowsec) +"tsu" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/station/medbay) -"tss" = ( -/obj/structure/bookcase/manuals/engineering, /turf/open/floor/prison{ dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"tst" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "blue" }, -/area/fiorina/oob) -"tsA" = ( -/obj/structure/barricade/metal{ - dir = 8; - health = 150; - icon_state = "metal_2" +/area/fiorina/station/power_ring) +"tsQ" = ( +/obj/structure/platform_decoration{ + dir = 8 }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"tts" = ( +/obj/structure/machinery/landinglight/ds2, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/ice_lab) -"tsH" = ( -/obj/structure/tunnel, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"tsN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 + icon_state = "floor_plate" }, +/area/fiorina/lz/near_lzII) +"ttK" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "floor_plate" }, -/area/fiorina/station/security) +/area/fiorina/lz/near_lzII) "tuf" = ( /obj/item/clothing/shoes/jackboots{ name = "Awesome Guy" @@ -32148,18 +31900,52 @@ }, /turf/open/space, /area/fiorina/oob) -"tuk" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-4-8" +"tuo" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"tuA" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) +"tur" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" + dir = 6; + icon_state = "whitegreen" }, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/station/medbay) +"tuB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/power_ring) +"tuD" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"tuH" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/bed/chair{ + dir = 1; + layer = 2.8 + }, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/disco) "tuX" = ( /obj/structure/platform{ dir = 1 @@ -32172,95 +31958,119 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"tvi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +"tvu" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "bluefull" }, -/area/fiorina/tumor/ice_lab) -"twb" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/maintenance) -"twR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/area/fiorina/station/power_ring) +"tvI" = ( +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/area/fiorina/station/central_ring) +"tvM" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/tumor/ice_lab) -"txb" = ( -/obj/structure/window/framed/prison/reinforced{ - opacity = 1 +/obj/structure/platform_decoration{ + dir = 9 }, -/obj/structure/machinery/door/poddoor/shutters/almayer, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"tvU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"tvX" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "blue" }, /area/fiorina/station/chapel) -"txf" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" +"twb" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/maintenance) +"twd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkbrown2" }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/park) +"twB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, /turf/open/floor/prison{ icon_state = "darkredfull2" }, -/area/fiorina/station/research_cells) -"txh" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/prison, /area/fiorina/station/security) -"txY" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 +"twL" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"txS" = ( +/obj/item/stack/sandbags, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/fiorina/station/power_ring) +"tyb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/lockbox/vials{ + pixel_x = -4; + pixel_y = 4 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/station/park) -"tyj" = ( +/area/fiorina/station/lowsec) +"tyk" = ( +/obj/structure/barricade/handrail, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue" + dir = 1; + icon_state = "whitepurple" }, -/area/fiorina/station/chapel) -"tyt" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" +/area/fiorina/station/research_cells) +"tyO" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/botany) +"tyQ" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 }, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" + icon_state = "bluefull" }, -/area/fiorina/station/flight_deck) -"tyC" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 +/area/fiorina/station/power_ring) +"tzj" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "greencorner" }, +/area/fiorina/tumor/civres) +"tzx" = ( +/obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison{ icon_state = "floor_plate" }, /area/fiorina/lz/near_lzII) -"tyJ" = ( -/obj/item/reagent_container/food/snacks/xenoburger, -/obj/item/reagent_container/food/snacks/xenoburger, -/obj/item/reagent_container/food/snacks/xenoburger, -/obj/structure/closet/crate/freezer, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) "tzy" = ( /obj/item/ammo_magazine/smg/mp5, /obj/structure/extinguisher_cabinet{ @@ -32268,33 +32078,19 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"tzM" = ( -/obj/structure/platform_decoration{ - dir = 8 +"tzF" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"tzN" = ( -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/platform{ dir = 4 }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"tzU" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"tzW" = ( -/obj/effect/landmark/xeno_spawn, /turf/open/floor/prison{ dir = 10; - icon_state = "darkbrown2" + icon_state = "whitegreenfull" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/central_ring) "tAb" = ( /obj/structure/surface/rack, /obj/item/storage/backpack/general_belt{ @@ -32303,54 +32099,115 @@ /obj/item/storage/backpack/general_belt, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"tAj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"tAf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/medbay) -"tAE" = ( -/obj/structure/barricade/handrail, +/area/fiorina/station/research_cells) +"tAk" = ( +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"tAI" = ( +/obj/item/stack/rods, /turf/open/floor/prison{ dir = 1; - icon_state = "whitepurple" + icon_state = "whitegreen" }, -/area/fiorina/station/research_cells) -"tAR" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar{ - pixel_x = 5; - pixel_y = -5 +/area/fiorina/station/medbay) +"tBa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison{ + icon_state = "yellowfull" }, -/obj/item/tool/crowbar, +/area/fiorina/station/disco) +"tBe" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/obj/item/device/flashlight/flare, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 8; + icon_state = "darkyellow2" }, -/area/fiorina/station/medbay) +/area/fiorina/station/telecomm/lz1_cargo) +"tBt" = ( +/obj/item/newspaper, +/turf/open/floor/prison{ + icon_state = "green" + }, +/area/fiorina/station/transit_hub) +"tBy" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, +/area/fiorina/station/telecomm/lz1_tram) +"tBD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/security) "tBP" = ( /obj/structure/machinery/shower{ dir = 1 }, /turf/open/floor/interior/plastic, /area/fiorina/station/research_cells) -"tCv" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, +"tBR" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, /turf/open/floor/prison{ dir = 4; - icon_state = "greenfull" + icon_state = "darkyellowfull2" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"tBU" = ( +/obj/item/paper/crumpled/bloody/csheet, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/lz/near_lzII) +"tCf" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/flight_deck) +"tCj" = ( +/obj/structure/machinery/power/apc{ + dir = 8 }, -/area/fiorina/tumor/civres) -"tCH" = ( -/obj/item/stack/folding_barricade, /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, +/area/fiorina/station/telecomm/lz1_cargo) +"tCu" = ( +/obj/item/frame/rack, +/obj/item/clothing/under/marine/ua_riot, +/turf/open/floor/prison{ + icon_state = "redfull" + }, /area/fiorina/station/security) "tCZ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -32373,12 +32230,6 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"tDC" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) "tDE" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -32394,12 +32245,28 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"tEA" = ( -/obj/item/reagent_container/glass/bucket/janibucket, +"tDY" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/item/tool/pickaxe, +/turf/open/floor/prison{ + icon_state = "whitegreen" + }, +/area/fiorina/tumor/ice_lab) +"tEb" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"tEj" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/chapel) +/area/fiorina/tumor/aux_engi) "tEH" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -32411,25 +32278,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"tEX" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"tEY" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 32 - }, +"tFu" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, -/area/fiorina/station/security) -"tFo" = ( -/obj/structure/reagent_dispensers/watertank{ - layer = 2.6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, /area/fiorina/lz/near_lzII) "tFA" = ( /obj/structure/platform{ @@ -32437,67 +32288,67 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"tFY" = ( -/obj/structure/platform, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, +"tGi" = ( /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"tGl" = ( +/obj/structure/bed/sofa/vert/grey, /turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" + icon_state = "floor_plate" + }, +/area/fiorina/lz/near_lzII) +"tGF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/obj/item/attachable/bipod, +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) +"tGO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 }, -/area/fiorina/station/medbay) -"tGU" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/pill_bottle/tramadol/skillless, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "sterile_white" }, -/area/fiorina/station/medbay) -"tGY" = ( +/area/fiorina/tumor/ice_lab) +"tHh" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 12 +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security/wardens) +/area/fiorina/tumor/fiberbush) "tHl" = ( /obj/structure/inflatable, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"tHw" = ( -/obj/item/stack/rods, +"tHr" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" + icon_state = "floor_plate" }, /area/fiorina/tumor/aux_engi) -"tHF" = ( -/obj/structure/platform{ - dir = 8 - }, +"tHs" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "redfull" }, -/area/fiorina/station/medbay) -"tHJ" = ( -/obj/structure/closet/firecloset, -/obj/effect/landmark/objective_landmark/medium, +/area/fiorina/station/security) +"tHu" = ( +/obj/structure/inflatable, /turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" + icon_state = "whitepurple" }, -/area/fiorina/maintenance) +/area/fiorina/station/research_cells) "tHL" = ( /obj/structure/blocker/invisible_wall, /turf/closed/shuttle/ert{ @@ -32505,29 +32356,29 @@ opacity = 0 }, /area/fiorina/station/medbay) -"tIf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, +"tHP" = ( +/obj/item/ammo_magazine/smg/mp5, /turf/open/floor/prison{ - icon_state = "kitchen" + dir = 4; + icon_state = "darkyellow2" }, -/area/fiorina/station/power_ring) -"tIn" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison, -/area/fiorina/station/chapel) -"tIp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 +/area/fiorina/station/telecomm/lz1_cargo) +"tHU" = ( +/obj/structure/monorail{ + dir = 5; + name = "launch track" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"tHX" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" }, -/turf/open/space/basic, -/area/fiorina/oob) +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "tIC" = ( /obj/structure/flora/bush/ausbushes/ausbush{ desc = "Fiberbush(tm) infestations are the leading cause in asbestos related deaths for 3 years in a row."; @@ -32539,44 +32390,43 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) +"tII" = ( +/obj/item/reagent_container/food/drinks/bottle/rum, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) +"tIK" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison{ + dir = 10; + icon_state = "green" + }, +/area/fiorina/tumor/civres) "tIU" = ( /obj/item/tool/candle, /turf/open/floor/prison/chapel_carpet, /area/fiorina/maintenance) -"tIW" = ( +"tJe" = ( /turf/open/floor/prison{ dir = 10; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"tJw" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"tJC" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" + icon_state = "green" }, -/area/fiorina/station/botany) -"tJH" = ( -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/area/fiorina/station/chapel) +"tJn" = ( +/obj/item/tool/wirecutters, +/obj/structure/platform/shiva{ + dir = 1 }, -/area/fiorina/station/telecomm/lz1_cargo) -"tJQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/tarbacks, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"tJM" = ( +/obj/item/prop/helmetgarb/riot_shield, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/chapel) +/area/fiorina/station/security) "tJR" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ pixel_y = 7 @@ -32584,6 +32434,12 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"tJT" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "yellow" + }, +/area/fiorina/station/central_ring) "tJU" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light/double/blue{ @@ -32596,16 +32452,15 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"tKk" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +"tKs" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison, +/area/fiorina/station/chapel) "tKv" = ( /obj/structure/machinery/computer/secure_data{ dir = 8 @@ -32613,89 +32468,130 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"tKN" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison{ +"tLd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 4; - icon_state = "green" + pixel_y = 5 }, -/area/fiorina/tumor/civres) -"tLk" = ( -/obj/item/paper/crumpled, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/power_ring) "tLC" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"tMb" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, +"tLT" = ( +/obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/floor/prison{ - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/station/park) -"tMs" = ( -/obj/item/weapon/gun/smg/mp5, -/obj/effect/decal/cleanable/blood, +/area/fiorina/tumor/civres) +"tLY" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ dir = 4; - icon_state = "darkyellow2" + icon_state = "whitegreen" }, -/area/fiorina/station/telecomm/lz1_cargo) -"tMS" = ( -/obj/effect/alien/weeds/node, -/obj/structure/prop/resin_prop{ - icon_state = "rack" +/area/fiorina/tumor/ice_lab) +"tMe" = ( +/turf/open/floor/prison{ + icon_state = "redcorner" + }, +/area/fiorina/station/power_ring) +"tMn" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/transit_hub) +"tMr" = ( +/obj/item/toy/deck, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) +"tMx" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/security) +"tMz" = ( +/obj/structure/closet/crate/bravo, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/fuelCell, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/prison{ + icon_state = "bluefull" }, +/area/fiorina/station/power_ring) +"tMA" = ( +/obj/structure/machinery/fuelcell_recycler, /turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"tMU" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +/area/fiorina/station/telecomm/lz1_cargo) +"tMF" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, +/area/fiorina/station/disco) +"tML" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/cell/super{ + pixel_y = 12 + }, +/obj/item/cell/super, +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenfull" + }, /area/fiorina/tumor/civres) -"tMV" = ( -/obj/structure/closet/firecloset/full, +"tMP" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"tNs" = ( +/obj/structure/platform_decoration, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"tNf" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, +/area/fiorina/station/civres_blue) +"tNt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/cigbutt/bcigbutt, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "bluefull" }, -/area/fiorina/tumor/ice_lab) -"tNF" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null +/area/fiorina/station/power_ring) +"tNu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/hardpoint/support/flare_launcher{ + pixel_x = -1; + pixel_y = 5 }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/storage/belt/marine, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "darkyellow2" }, -/area/fiorina/station/security) +/area/fiorina/lz/near_lzI) +"tNS" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "tNV" = ( /obj/item/stack/sheet/wood, /turf/open/floor/plating/prison, @@ -32703,23 +32599,39 @@ "tOc" = ( /turf/open/floor/wood, /area/fiorina/station/disco) +"tOo" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) "tOp" = ( /obj/structure/window/framed/prison/cell, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) +"tOr" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitegreen" + }, +/area/fiorina/tumor/ice_lab) "tOG" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/pill_bottle/kelotane/skillless, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"tOM" = ( -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"tOP" = ( -/obj/structure/platform, -/obj/structure/closet/radiation, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +"tOK" = ( +/obj/structure/inflatable, +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) "tOS" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/item/reagent_container/food/snacks/grown/eggplant{ @@ -32730,6 +32642,26 @@ name = "astroturf" }, /area/fiorina/station/park) +"tOZ" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"tPi" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) "tPz" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/candelabra{ @@ -32742,196 +32674,279 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"tPA" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"tPB" = ( +"tPN" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"tPP" = ( +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ - dir = 6; + dir = 9; icon_state = "whitepurple" }, /area/fiorina/station/research_cells) -"tPC" = ( +"tPQ" = ( /turf/open/floor/prison{ - icon_state = "darkyellowcorners2" + icon_state = "platingdmg1" }, -/area/fiorina/station/flight_deck) -"tPN" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"tQk" = ( -/obj/item/shard{ - icon_state = "medium" +/area/fiorina/station/security) +"tQi" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 }, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8; + icon_state = "darkbrown2" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/park) "tQm" = ( /obj/item/trash/boonie, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"tQB" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"tRH" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/botany) -"tSl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/plastic, +"tQn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) -"tSm" = ( +/area/fiorina/tumor/fiberbush) +"tQq" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "greencorner" + }, +/area/fiorina/tumor/civres) +"tQs" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison{ dir = 8; icon_state = "greenblue" }, /area/fiorina/station/botany) -"tSL" = ( +"tQB" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"tQJ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison{ + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"tQL" = ( /obj/structure/platform{ dir = 1 }, /obj/structure/platform{ - dir = 4 + dir = 8 }, /obj/structure/platform_decoration{ - dir = 9 + dir = 5 }, -/obj/structure/largecrate/random, /turf/open/floor/prison{ icon_state = "floor_plate" }, /area/fiorina/station/power_ring) -"tSY" = ( -/obj/structure/machinery/light/double/blue, +"tRa" = ( +/turf/open/floor/prison{ + dir = 9; + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) +"tRt" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison{ + dir = 1; + icon_state = "greenblue" + }, +/area/fiorina/station/botany) +"tRH" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/botany) +"tSi" = ( +/obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"tTm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stool{ - pixel_y = 12 +/area/fiorina/lz/near_lzII) +"tSn" = ( +/turf/open/floor/prison{ + icon_state = "cell_stripe" }, +/area/fiorina/station/medbay) +"tST" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - icon_state = "yellowfull" + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) +"tTr" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/station/lowsec) -"tTv" = ( -/obj/item/stack/sandbags/large_stack, /turf/open/floor/prison{ dir = 8; - icon_state = "darkyellow2" + icon_state = "bluecorner" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/power_ring) +"tTu" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/security) "tTA" = ( /obj/structure/prop/souto_land/pole{ dir = 1 }, /turf/open/floor/wood, /area/fiorina/station/park) -"tTB" = ( -/obj/item/clothing/gloves/boxing/green, +"tTK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_7" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"tTM" = ( +/obj/structure/machinery/iv_drip, /turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" + icon_state = "floor_plate" }, -/area/fiorina/station/central_ring) -"tTI" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" +/area/fiorina/station/telecomm/lz1_cargo) +"tTV" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"tUe" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/botany) +"tUr" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkbrown2" + }, +/area/fiorina/maintenance) "tUs" = ( /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"tUC" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"tUD" = ( -/obj/structure/closet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"tUA" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/station/flight_deck) -"tUG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical/green, +/obj/item/explosive/grenade/incendiary/molotov, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 10; + icon_state = "yellow" }, -/area/fiorina/maintenance) +/area/fiorina/station/lowsec) "tUS" = ( /obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"tVf" = ( -/obj/structure/closet/crate/bravo, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/fuelCell, -/obj/item/stack/sheet/plasteel, -/turf/open/floor/prison{ - icon_state = "bluefull" +"tVt" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/fiorina/station/power_ring) -"tVI" = ( -/obj/structure/inflatable/popped/door, /turf/open/floor/prison{ dir = 10; icon_state = "sterile_white" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/medbay) +"tVu" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"tVB" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "casing_6" + }, +/obj/structure/barricade/metal{ + dir = 8; + health = 150; + icon_state = "metal_2" + }, +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison{ + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"tVG" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "tVV" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"tVY" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"tWf" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) -"tWh" = ( -/obj/structure/closet/secure_closet/hydroponics, +"tVX" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + icon_state = "darkredfull2" }, -/area/fiorina/station/botany) -"tWs" = ( -/obj/item/toy/deck, +/area/fiorina/lz/near_lzI) +"tVZ" = ( +/obj/structure/machinery/vending/security, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "redfull" }, -/area/fiorina/station/research_cells) -"tWz" = ( +/area/fiorina/station/security) +"tWe" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"tWo" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison{ + icon_state = "greenblue" + }, +/area/fiorina/station/botany) +"tWq" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue/clicky, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "kitchen" }, /area/fiorina/station/power_ring) "tWI" = ( @@ -32941,32 +32956,31 @@ }, /turf/open/space, /area/fiorina/oob) -"tXt" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"tXi" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, +/obj/item/storage/box/pillbottles, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + icon_state = "redfull" }, -/area/fiorina/station/transit_hub) -"tXD" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" +/area/fiorina/station/security) +"tXQ" = ( +/turf/open/floor/prison{ + icon_state = "platingdmg1" }, -/obj/structure/platform{ - dir = 4 +/area/fiorina/tumor/servers) +"tYc" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"tXT" = ( -/obj/structure/machinery/vending/cola, /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "darkyellow2" }, -/area/fiorina/station/security) +/area/fiorina/station/telecomm/lz1_cargo) "tYd" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -32977,136 +32991,100 @@ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) -"tYg" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/tumor/servers) -"tYt" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +"tYr" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "tYw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/civres) -"tYD" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" +"tYx" = ( +/obj/structure/surface/rack, +/obj/item/tool/lighter, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"tZo" = ( +/obj/item/newspaper, +/turf/open/floor/prison, +/area/fiorina/station/security) +"tZs" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/area/fiorina/station/power_ring) -"tYQ" = ( -/obj/structure/bed/chair, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" + icon_state = "floor_plate" }, -/area/fiorina/station/botany) -"tYU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, +/area/fiorina/lz/near_lzII) +"tZN" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) -"tZe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" + icon_state = "floor_plate" }, +/area/fiorina/tumor/servers) +"tZS" = ( /turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "platingdmg1" }, -/area/fiorina/station/lowsec) -"tZk" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/area/fiorina/tumor/civres) +"tZV" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/area/fiorina/tumor/aux_engi) -"tZz" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 4; + icon_state = "darkyellowfull2" }, /area/fiorina/lz/near_lzI) -"tZO" = ( -/obj/item/frame/rack, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) "tZW" = ( /obj/item/tool/wet_sign, /turf/open/floor/almayer{ icon_state = "plate" }, /area/fiorina/tumor/ship) +"tZX" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) "uap" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uaL" = ( -/obj/item/stack/sheet/wood, +"uat" = ( /turf/open/floor/prison{ dir = 8; icon_state = "darkbrown2" }, -/area/fiorina/station/park) -"uaM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/maintenance) "ubc" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"ubh" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"ubo" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, +"ubk" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"ubA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 4 + icon_state = "floorscorched1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/area/fiorina/tumor/aux_engi) +"ubH" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/fiorina/station/medbay) +/turf/open/floor/prison, +/area/fiorina/station/security) "ubN" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; opacity = 0 }, /area/fiorina/tumor/aux_engi) -"ubP" = ( -/turf/open/floor/prison, -/area/fiorina/station/security) "ubQ" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -33115,84 +33093,65 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"ubX" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"uci" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"ubT" = ( +/obj/structure/platform_decoration{ + dir = 1 }, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "bluefull" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/power_ring) +"uch" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco) "ucj" = ( /turf/closed/shuttle/ert{ icon_state = "stan25" }, /area/fiorina/station/power_ring) -"ucu" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, +"ucr" = ( /turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"ucN" = ( -/obj/structure/tunnel, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" + dir = 10; + icon_state = "darkyellow2" }, -/area/fiorina/station/central_ring) +/area/fiorina/station/telecomm/lz1_cargo) "ucS" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) -"udj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"uds" = ( +/obj/item/ammo_casing{ + dir = 2; + icon_state = "casing_5" }, -/area/fiorina/tumor/civres) -"udt" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/prison{ dir = 1; - pixel_y = 2 + icon_state = "darkbrown2" }, -/obj/structure/barricade/handrail{ +/area/fiorina/station/park) +"udY" = ( +/obj/structure/platform{ dir = 8 }, +/obj/item/prop/almayer/flight_recorder, /turf/open/floor/prison, -/area/fiorina/station/security) -"udB" = ( -/obj/structure/bed/roller, -/obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, /area/fiorina/lz/near_lzI) -"udE" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +"ued" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, -/area/fiorina/lz/near_lzI) -"uen" = ( -/obj/item/weapon/gun/rifle/m16, +/turf/closed/wall/prison, +/area/fiorina/station/central_ring) +"uef" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "whitegreenfull" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/tumor/ice_lab) "uep" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, @@ -33205,150 +33164,121 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"ueI" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"ueP" = ( -/obj/item/paper/crumpled, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"ueX" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"ueA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "sterile_white" }, /area/fiorina/station/medbay) -"ufE" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"ufL" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"ufN" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, -/area/fiorina/tumor/aux_engi) -"ufR" = ( +"ueF" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" + icon_state = "yellow" }, -/area/fiorina/station/research_cells) -"ugg" = ( +/area/fiorina/station/lowsec) +"ufo" = ( /obj/structure/closet/crate/miningcar{ name = "\improper materials storage bin" }, /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"ugk" = ( +"ufX" = ( +/obj/item/reagent_container/food/drinks/sillycup, /turf/open/floor/prison{ - icon_state = "darkbrowncorners2" + icon_state = "bluefull" }, -/area/fiorina/tumor/aux_engi) -"ugm" = ( -/obj/structure/prop/resin_prop{ - icon_state = "coolanttank" +/area/fiorina/station/power_ring) +"ugC" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/tumor/servers) +"ugH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 1; + icon_state = "darkpurple2" }, +/area/fiorina/tumor/servers) +"ugT" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"ugq" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibdown1" - }, +"ugU" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"ugv" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 + dir = 8; + icon_state = "yellow" }, -/turf/open/space/basic, -/area/fiorina/oob) -"ugP" = ( +/area/fiorina/station/lowsec) +"uhb" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; pixel_x = 1; - pixel_y = 3 + pixel_y = -1 }, -/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison, -/area/fiorina/station/power_ring) -"ugT" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"uha" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" - }, +/area/fiorina/station/flight_deck) +"uhd" = ( /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 10; + icon_state = "darkpurple2" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/tumor/servers) "uhm" = ( /obj/structure/window_frame/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"uhA" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"uhH" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/area/fiorina/station/research_cells) -"uhX" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/station/medbay) -"uia" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/lz/near_lzI) +"uin" = ( +/obj/item/ammo_box/magazine/misc/flares/empty{ + pixel_x = -1; + pixel_y = 7 }, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/botany) -"uiD" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/area/fiorina/station/telecomm/lz1_cargo) +"uix" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison, +/area/fiorina/station/disco) +"uiK" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, /turf/open/floor/prison{ - icon_state = "darkbrown2" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/park) +/area/fiorina/station/medbay) +"uiR" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) "uiV" = ( /obj/structure/platform{ dir = 4 @@ -33359,43 +33289,60 @@ pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"ujb" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"ujs" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" + }, +/turf/open/organic/grass{ + name = "astroturf" + }, +/area/fiorina/station/research_cells) +"ujC" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/fiorina/station/civres_blue) +"ujJ" = ( +/obj/structure/monorail{ + dir = 5; + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) +"ujO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 8 }, -/area/fiorina/station/telecomm/lz1_cargo) -"ujo" = ( -/obj/effect/landmark/xeno_spawn, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"ujs" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" + icon_state = "floor_marked" }, -/turf/open/organic/grass{ - name = "astroturf" +/area/fiorina/station/park) +"ukk" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/fiorina/station/research_cells) -"ujz" = ( -/obj/item/paper/prison_station/inmate_handbook, +/obj/effect/spawner/random/pills/lowchance, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"ukg" = ( -/obj/item/trash/candle, -/turf/open/floor/prison{ - icon_state = "darkyellow2" + icon_state = "whitepurple" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/research_cells) "ukr" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -33404,55 +33351,58 @@ name = "astroturf" }, /area/fiorina/station/park) -"uky" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 +"ukz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkpurple2" }, +/area/fiorina/tumor/servers) +"ukI" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" + dir = 4; + icon_state = "whitegreencorner" }, /area/fiorina/tumor/ice_lab) +"ukN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/security) "ukR" = ( /obj/structure/window/framed/prison/reinforced/hull, /obj/structure/window/framed/prison/reinforced/hull, /turf/open/space/basic, /area/fiorina/lz/near_lzI) -"ulc" = ( -/obj/item/paper, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"ume" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 11; - pixel_y = 14 - }, +"ulJ" = ( /obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/chest/c, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"umg" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "blue" + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/civres_blue) -"umm" = ( /turf/open/floor/prison{ dir = 1; icon_state = "yellow" }, -/area/fiorina/station/central_ring) +/area/fiorina/station/lowsec) +"ulW" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/tumor/servers) +"umq" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) "umy" = ( /obj/structure/prop/resin_prop{ dir = 4; @@ -33461,20 +33411,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"umz" = ( -/obj/item/trash/kepler, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"umI" = ( -/obj/item/clothing/gloves/boxing/blue, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/central_ring) "umW" = ( /obj/structure/bed/sofa/pews, /turf/open/floor/wood, @@ -33483,102 +33419,52 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"uno" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"unp" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"unu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"unz" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/box/flashbangs, +"unc" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/storage/CMB, /turf/open/floor/prison{ icon_state = "redfull" }, /area/fiorina/station/security) -"unA" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, -/area/fiorina/station/civres_blue) -"unF" = ( -/obj/item/tool/wirecutters, -/obj/structure/platform/shiva{ - dir = 1 +"unW" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"uou" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 +/turf/open/floor/prison{ + icon_state = "kitchen" }, -/obj/item/storage/toolbox/syndicate, +/area/fiorina/station/research_cells) +"uod" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison, -/area/fiorina/station/disco) -"uoH" = ( -/obj/structure/barricade/sandbags{ - dir = 4; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +/area/fiorina/station/power_ring) +"uol" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/area/fiorina/station/disco) -"upf" = ( -/obj/structure/closet/toolcloset, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/maintenance) -"upr" = ( +/area/fiorina/lz/near_lzI) +"upt" = ( /obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"upw" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/fiorina/lz/near_lzII) -"upK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) +"upF" = ( +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; pixel_x = -2; pixel_y = 10 }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" + dir = 10; + icon_state = "kitchen" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/civres_blue) "upM" = ( /obj/structure/disposalpipe/broken, /turf/open/floor/plating/prison, @@ -33587,107 +33473,118 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/prison, /area/fiorina/station/security/wardens) -"upY" = ( -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"uqd" = ( -/obj/item/pamphlet/skill/powerloader, -/obj/structure/surface/table/reinforced/prison, +"uqa" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" + }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"uqj" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +/area/fiorina/station/chapel) +"uqo" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreencorner" }, -/obj/structure/platform{ - dir = 8 +/area/fiorina/tumor/ice_lab) +"uqp" = ( +/obj/structure/bed/sofa/vert/grey/bot{ + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"urc" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" + dir = 5; + icon_state = "yellow" }, -/area/fiorina/station/park) -"uqV" = ( -/obj/structure/inflatable, +/area/fiorina/station/disco) +"uri" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"urw" = ( +/obj/structure/machinery/vending/snack/packaged, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" + icon_state = "darkpurplefull2" }, /area/fiorina/station/research_cells) -"urv" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) "urJ" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/floor/almayer_hull, /area/fiorina/oob) +"urS" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"usa" = ( +/turf/open/floor/prison{ + dir = 5; + icon_state = "green" + }, +/area/fiorina/station/chapel) "usg" = ( /obj/effect/spawner/random/attachment, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"uts" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"utw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data{ - dir = 4 +"usq" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"usz" = ( +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) +"usA" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 6; + icon_state = "whitepurple" }, /area/fiorina/station/research_cells) -"utG" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +"utf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + icon_state = "bluefull" }, -/obj/item/clothing/gloves/boxing/blue, +/area/fiorina/station/power_ring) +"uts" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) +"utC" = ( +/obj/item/stool, /turf/open/floor/prison{ dir = 1; - icon_state = "yellow" + icon_state = "cell_stripe" }, -/area/fiorina/station/lowsec) -"utL" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ +/area/fiorina/station/flight_deck) +"utV" = ( +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "darkbrown2" + pixel_y = 21 }, -/area/fiorina/station/park) -"utW" = ( -/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - dir = 1; + dir = 5; icon_state = "darkyellow2" }, /area/fiorina/lz/near_lzI) -"uud" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"uuk" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"uuG" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) "uuJ" = ( /obj/structure/holohoop{ dir = 8; @@ -33712,86 +33609,93 @@ /obj/item/prop/helmetgarb/gunoil, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uvn" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"uvu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/fiorina/station/power_ring) -"uvF" = ( -/obj/structure/prop/structure_lattice{ +"uvh" = ( +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/fiorina/maintenance) -"uvS" = ( -/obj/structure/blocker/invisible_wall, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" + icon_state = "darkpurplefull2" }, -/area/fiorina/oob) -"uvV" = ( -/obj/structure/coatrack, +/area/fiorina/station/research_cells) +"uvi" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"uvZ" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 + icon_state = "darkbrownfull2" }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 +/area/fiorina/station/park) +"uvy" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" }, +/obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "whitegreencorner" }, -/area/fiorina/station/civres_blue) -"uwb" = ( -/obj/structure/largecrate/supply/supplies/water, +/area/fiorina/tumor/ice_lab) +"uvG" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/down, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "whitegreenfull" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/medbay) +"uvM" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"uwg" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/fiorina/tumor/ice_lab) "uwk" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"uws" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +"uwI" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"uwT" = ( -/obj/structure/sign/poster{ - icon_state = "poster10"; - pixel_x = 32 +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" }, +/area/fiorina/tumor/aux_engi) +"uwP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/plastic, /turf/open/floor/prison, -/area/fiorina/station/power_ring) -"uxd" = ( -/obj/effect/spawner/random/tool, +/area/fiorina/tumor/servers) +"uwY" = ( +/obj/structure/lattice, +/obj/structure/platform/kutjevo/smooth, +/turf/open/space, +/area/fiorina/oob) +"uxa" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, /area/fiorina/tumor/aux_engi) +"uxi" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"uxp" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/chapel) "uxv" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, @@ -33803,51 +33707,52 @@ name = "pool" }, /area/fiorina/station/park) -"uye" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/fiorina/station/security) -"uyp" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison, +"uxO" = ( +/obj/effect/landmark/objective_landmark/far, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/maintenance) +"uxY" = ( +/turf/open/floor/prison{ + dir = 6; + icon_state = "darkyellow2" + }, /area/fiorina/lz/near_lzI) -"uyw" = ( +"uyb" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/disco) +"uyd" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"uym" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"uyq" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/prison{ icon_state = "bluefull" }, /area/fiorina/station/power_ring) -"uyC" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, +"uyr" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - icon_state = "kitchen" + icon_state = "green" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/chapel) "uyM" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"uyN" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) "uza" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gibup1" @@ -33855,35 +33760,64 @@ /obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"uzi" = ( -/obj/effect/landmark/monkey_spawn, +"uzd" = ( /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 1; + icon_state = "darkpurple2" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/disco) "uzw" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"uzy" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"uzO" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"uzX" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/research_cells) +"uAd" = ( +/obj/item/clothing/gloves/boxing/green, +/turf/open/floor/prison{ + dir = 6; + icon_state = "yellow" + }, +/area/fiorina/station/central_ring) +"uAi" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"uzG" = ( +/obj/item/clothing/suit/armor/bulletproof/badge, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + dir = 6; + icon_state = "yellow" }, -/area/fiorina/tumor/aux_engi) -"uAg" = ( +/area/fiorina/station/lowsec) +"uAv" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" + dir = 10; + icon_state = "blue" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/civres_blue) +"uAG" = ( +/obj/structure/inflatable, +/turf/open/floor/prison{ + dir = 6; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) "uAX" = ( /obj/effect/decal/hefa_cult_decals/d32, /turf/open/floor/prison/chapel_carpet{ @@ -33898,116 +33832,136 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uBV" = ( -/obj/structure/platform_decoration{ - dir = 4 +"uBS" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" }, +/area/fiorina/tumor/servers) +"uBW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/cigbutt, /turf/open/floor/prison{ icon_state = "bluefull" }, /area/fiorina/station/power_ring) -"uCO" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"uCa" = ( +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/power_ring) -"uCX" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/area/fiorina/station/medbay) +"uCu" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"uDX" = ( -/obj/structure/prop/structure_lattice{ - health = 300 +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" }, -/obj/structure/prop/structure_lattice{ - pixel_y = 10 +/area/fiorina/station/flight_deck) +"uCz" = ( +/obj/structure/sink{ + pixel_y = 23 + }, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = -5 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/tumor/aux_engi) -"uEh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/guestpass{ - dir = 4; - reason = "Visitor" +/area/fiorina/station/medbay) +"uCD" = ( +/turf/open/floor/prison{ + icon_state = "cell_stripe" }, +/area/fiorina/station/research_cells) +"uCW" = ( +/obj/item/reagent_container/glass/bucket/janibucket, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/chapel) "uEj" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"uEy" = ( -/obj/effect/decal/cleanable/blood/oil, +"uEm" = ( /turf/open/floor/prison{ dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/tumor/servers) -"uEM" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" + icon_state = "red" }, +/area/fiorina/station/security) +"uEN" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/fiorina/station/chapel) -"uEY" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 + icon_state = "floor_plate" }, +/area/fiorina/lz/near_lzII) +"uFc" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"uFd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + icon_state = "darkredfull2" }, -/obj/structure/barricade/wooden{ - dir = 8 +/area/fiorina/station/disco) +"uFh" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "yellow" }, +/area/fiorina/station/lowsec) +"uFE" = ( +/obj/item/stack/sandbags_empty/half, /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"uFg" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "birthday" +/area/fiorina/station/flight_deck) +"uFM" = ( +/obj/structure/surface/table/reinforced/prison{ + dir = 4; + flipped = 1 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/power_ring) -"uFs" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +/area/fiorina/station/medbay) +"uFX" = ( +/turf/open/floor/prison{ + dir = 6; + icon_state = "darkpurple2" }, -/obj/structure/platform{ - dir = 1 +/area/fiorina/tumor/servers) +"uGb" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"uFC" = ( -/obj/structure/barricade/metal/wired, +/obj/effect/spawner/random/sentry/midchance, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 1; + icon_state = "darkyellow2" }, /area/fiorina/station/telecomm/lz1_cargo) +"uGq" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) "uGu" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "3" @@ -34017,24 +33971,14 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"uGI" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzI) -"uGL" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/disco) +"uGD" = ( +/obj/item/tool/kitchen/knife, +/obj/structure/bed/roller, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"uGM" = ( +/turf/open/floor/prison, +/area/fiorina/station/park) "uGT" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -34042,40 +33986,73 @@ "uGY" = ( /turf/closed/wall/prison, /area/fiorina/station/security) -"uHl" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"uIg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 +"uHL" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 23 }, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 1; + icon_state = "yellow" }, -/area/fiorina/maintenance) -"uIB" = ( -/obj/structure/bed/chair{ +/area/fiorina/station/lowsec) +"uHX" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/civres_blue) +"uIa" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"uIb" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"uIl" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, /turf/open/floor/prison{ dir = 10; icon_state = "sterile_white" }, /area/fiorina/station/medbay) -"uIL" = ( +"uIu" = ( +/obj/item/storage/toolbox/electrical, +/obj/structure/surface/rack, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/tumor/civres) +"uIA" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, /obj/structure/machinery/light/double/blue{ - pixel_y = -1 + dir = 8; + pixel_x = -10 }, -/obj/structure/bed/chair{ - dir = 1; - layer = 2.8 +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"uIG" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/disco) +/turf/open/floor/prison, +/area/fiorina/tumor/civres) "uIS" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -34088,93 +34065,49 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"uJi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) -"uJp" = ( -/obj/structure/inflatable, +"uJj" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" + dir = 10; + icon_state = "whitepurple" }, -/area/fiorina/station/lowsec) -"uJG" = ( -/obj/item/ammo_casing{ - icon_state = "casing_10_1" +/area/fiorina/station/research_cells) +"uJk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "yellowfull" }, -/area/fiorina/station/medbay) -"uJQ" = ( -/obj/item/stack/cable_coil, +/area/fiorina/station/lowsec) +"uJM" = ( /turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"uJR" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ppflowers_2" + dir = 1; + icon_state = "darkbrowncorners2" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +/area/fiorina/maintenance) +"uJX" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/park) +"uKh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ + dir = 8 }, -/area/fiorina/station/central_ring) -"uKb" = ( -/obj/item/stack/tile/plasteel, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/flight_deck) +/area/fiorina/station/security) "uKx" = ( /turf/closed/shuttle/ert, /area/fiorina/lz/near_lzI) -"uKE" = ( -/obj/item/clipboard, +"uLd" = ( +/obj/structure/foamed_metal, /turf/open/floor/prison, -/area/fiorina/station/park) -"uKK" = ( -/obj/structure/bed/roller, -/obj/item/bedsheet/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"uKX" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security/wardens) -"uLf" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"uLj" = ( -/obj/effect/decal/cleanable/blood/gibs/robot/limb, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"uLq" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/station/civres_blue) "uLr" = ( /obj/vehicle/powerloader, /obj/structure/platform{ @@ -34185,36 +34118,28 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"uLH" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/power_ring) "uLJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/station_alert, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"uLM" = ( -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/chapel) -"uLV" = ( -/obj/item/bedsheet, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"uMc" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison, -/area/fiorina/station/security) -"uMm" = ( -/obj/effect/decal/cleanable/blood, +"uLX" = ( +/obj/structure/machinery/computer/arcade, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/medbay) "uMq" = ( /obj/structure/machinery/light/small{ dir = 4; @@ -34227,108 +34152,56 @@ "uMw" = ( /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"uMN" = ( -/obj/item/trash/semki, +"uMH" = ( +/obj/item/ammo_magazine/smg/mp5, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitepurple" }, -/area/fiorina/station/power_ring) -"uMT" = ( +/area/fiorina/station/research_cells) +"uNM" = ( +/turf/closed/wall/prison, +/area/fiorina/tumor/aux_engi) +"uNR" = ( +/obj/item/stack/cable_coil, /turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/fiorina/station/medbay) -"uMZ" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 + icon_state = "darkpurple2" }, -/turf/open/floor/prison, /area/fiorina/tumor/servers) -"uNm" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison, -/area/fiorina/station/security) -"uNp" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"uNs" = ( -/obj/structure/machinery/landinglight/ds1, +"uNX" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"uNG" = ( -/obj/structure/machinery/power/apc{ - dir = 1 + icon_state = "darkbrowncorners2" }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"uNI" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) -"uNM" = ( -/turf/closed/wall/prison, /area/fiorina/tumor/aux_engi) -"uOu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +"uOb" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"uOx" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "bee" +/obj/item/stack/cable_coil, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"uOR" = ( +/obj/structure/platform_decoration{ + dir = 4 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) -"uOC" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/fiorina/tumor/servers) -"uOM" = ( -/obj/structure/curtain, +/area/fiorina/station/botany) +"uPg" = ( +/obj/item/circuitboard/mecha/gygax/targeting, +/obj/structure/surface/rack, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"uOP" = ( -/obj/item/newspaper, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"uPi" = ( -/obj/item/device/binoculars, -/obj/structure/surface/table/reinforced/prison, +/area/fiorina/tumor/civres) +"uPz" = ( +/obj/structure/closet/firecloset/full, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/fiberbush) -"uPl" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/tumor/ice_lab) "uPA" = ( /obj/structure/platform{ dir = 1 @@ -34341,18 +34214,15 @@ }, /turf/open/gm/river/desert/deep, /area/fiorina/lz/near_lzII) -"uPX" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" +"uPD" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, -/area/fiorina/tumor/civres) -"uQk" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "yellowfull" }, -/area/fiorina/tumor/fiberbush) +/area/fiorina/station/lowsec) "uQE" = ( /obj/item/stack/tile/plasteel{ pixel_x = 3; @@ -34360,49 +34230,70 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"uQJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +"uQF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/area/fiorina/tumor/servers) -"uQT" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison{ - dir = 6; + dir = 10; icon_state = "whitegreen" }, -/area/fiorina/tumor/ice_lab) -"uRv" = ( -/obj/structure/machinery/light/double/blue{ +/area/fiorina/station/medbay) +"uRe" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/disco) +"uRu" = ( +/turf/open/floor/prison{ dir = 4; - pixel_x = 10; - pixel_y = -3 + icon_state = "yellow" }, -/turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"uRF" = ( +"uRK" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/park) +"uRO" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" + dir = 1; + icon_state = "green" }, -/area/fiorina/station/medbay) -"uRI" = ( +/area/fiorina/station/chapel) +"uRX" = ( +/obj/item/tool/shovel/spade, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) +"uRY" = ( +/obj/item/ammo_magazine/rifle/mar40, /turf/open/floor/prison{ + dir = 8; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"uSb" = ( +/obj/structure/barricade/wooden{ dir = 4; - icon_state = "darkbrowncorners2" + pixel_y = 4 }, -/area/fiorina/maintenance) -"uRT" = ( -/obj/item/device/flashlight, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "damaged1" + }, +/area/fiorina/station/central_ring) +"uSo" = ( +/obj/item/poster, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/area/fiorina/tumor/ice_lab) -"uRZ" = ( -/obj/item/trash/barcardine, -/turf/open/floor/prison, /area/fiorina/station/security) "uSA" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -34413,19 +34304,16 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzII) -"uSU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 +"uST" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzII) -"uSX" = ( -/obj/item/tool/kitchen/utensil/pknife, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +/area/fiorina/tumor/civres) "uSY" = ( /obj/structure/platform{ dir = 8 @@ -34436,110 +34324,67 @@ /obj/vehicle/powerloader/ft, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uTb" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"uTr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +"uTi" = ( /turf/open/floor/prison{ dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"uTs" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"uTt" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - dir = 1; icon_state = "darkyellowcorners2" }, /area/fiorina/station/telecomm/lz1_cargo) -"uTw" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +"uTk" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison, /area/fiorina/station/power_ring) -"uTA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/spawner/random/gun/rifle/midchance, +"uTp" = ( +/obj/structure/bed/chair, /turf/open/floor/prison{ - dir = 8; - icon_state = "blue" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/power_ring) -"uTR" = ( -/obj/structure/machinery/vending/cigarette/colony, +/area/fiorina/station/research_cells) +"uTS" = ( +/obj/item/stock_parts/micro_laser/ultra, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"uTX" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"uVk" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" + dir = 1; + icon_state = "darkpurple2" }, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +/area/fiorina/tumor/servers) +"uUT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/card/id/gold{ + pixel_x = 2; + pixel_y = 4 }, /turf/open/floor/prison{ - icon_state = "darkyellow2" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/research_cells) "uVn" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_w_1" }, /area/fiorina/tumor/ship) +"uVo" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"uVv" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) "uVD" = ( /turf/open/floor/corsat{ icon_state = "squares" }, /area/fiorina/station/medbay) -"uVH" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"uVL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, +"uVQ" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, -/area/fiorina/station/power_ring) -"uVO" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) +/area/fiorina/station/disco) "uVX" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4; @@ -34553,34 +34398,20 @@ /obj/item/trash/candy, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"uWe" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"uWA" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"uWO" = ( -/obj/structure/platform_decoration, +"uWg" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ icon_state = "darkbrown2" }, -/area/fiorina/station/park) +/area/fiorina/tumor/aux_engi) +"uWs" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) "uWQ" = ( /obj/structure/platform{ dir = 8 @@ -34591,6 +34422,42 @@ }, /turf/open/gm/river/desert/deep, /area/fiorina/lz/near_lzII) +"uWS" = ( +/obj/item/ammo_casing{ + icon_state = "casing_8" + }, +/obj/structure/surface/table/reinforced/prison{ + dir = 4; + flipped = 1 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) +"uXa" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) +"uXc" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"uXm" = ( +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "uXn" = ( /obj/structure/flora/bush/ausbushes/ausbush{ desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; @@ -34602,6 +34469,12 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) +"uXu" = ( +/obj/item/stock_parts/matter_bin/super, +/turf/open/floor/prison{ + icon_state = "darkpurple2" + }, +/area/fiorina/tumor/servers) "uXw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/skills, @@ -34616,71 +34489,58 @@ "uXD" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ship) -"uXK" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "bluefull" +"uXM" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/fiorina/station/power_ring) -"uXP" = ( -/obj/item/reagent_container/food/drinks/bottle/pwine, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "yellow" }, -/area/fiorina/tumor/civres) -"uXY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 32 +/area/fiorina/station/disco) +"uXW" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, /turf/open/floor/prison{ dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) -"uYi" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"uYo" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" + icon_state = "whitegreenfull" }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) +/area/fiorina/station/medbay) "uYx" = ( /obj/structure/prop/resin_prop{ icon_state = "coolanttank" }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"uYS" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"uYR" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"uZt" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/security/wardens) +"uZe" = ( +/obj/item/stack/sheet/wood, /turf/open/floor/prison{ - icon_state = "darkbrown2" + dir = 6; + icon_state = "whitepurple" }, -/area/fiorina/station/park) -"uZu" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/research_cells) +"uZn" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/security/wardens) +"uZr" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" }, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + icon_state = "floor_plate" }, /area/fiorina/tumor/aux_engi) "uZA" = ( @@ -34688,188 +34548,235 @@ icon_state = "stan2" }, /area/fiorina/tumor/ship) -"uZP" = ( -/obj/effect/spawner/random/gun/rifle/lowchance, +"uZD" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 + }, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "kitchen" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/tumor/civres) +"uZM" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison{ + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) "uZX" = ( /obj/structure/curtain, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uZZ" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 +"vaj" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) +"vaO" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/attachment, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"vbd" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) +"vbe" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/item/device/flashlight/flare, /turf/open/floor/prison{ dir = 8; - icon_state = "darkyellow2" + icon_state = "whitegreen" }, -/area/fiorina/station/telecomm/lz1_cargo) -"vao" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"vaC" = ( +/area/fiorina/station/central_ring) +"vbl" = ( /obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, /area/fiorina/tumor/aux_engi) +"vbn" = ( +/obj/item/ammo_box/magazine/M16, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) +"vbt" = ( +/obj/structure/surface/table/reinforced/prison{ + dir = 8; + flipped = 1 + }, +/obj/item/storage/box/ids, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_x = 14; + pixel_y = 7 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/research_cells) +"vbF" = ( +/obj/item/stack/rods, +/turf/open/floor/prison{ + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) "vbG" = ( /obj/structure/prop/structure_lattice{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"vbV" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) +"vbY" = ( +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_5" + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) "vcf" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" }, /area/fiorina/oob) -"vci" = ( -/obj/effect/spawner/random/toolbox, +"vco" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 5; + icon_state = "darkpurple2" }, -/area/fiorina/station/medbay) -"vcq" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" +/area/fiorina/tumor/servers) +"vcr" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/botany) -"vcu" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 2; + pixel_y = 21 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, /area/fiorina/station/disco) -"vcv" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison{ - icon_state = "yellowfull" +"vcy" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison, +/area/fiorina/station/medbay) "vcC" = ( /obj/item/stack/rods, /turf/open/space, /area/fiorina/oob) -"vcN" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/station/park) -"vdn" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_2" - }, +"vdG" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"vds" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +"vdI" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/lowsec) -"vdH" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"vdZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/frame/firstaid_arm_assembly, +/obj/item/stack/nanopaste{ + pixel_x = 11; + pixel_y = 6 }, /turf/open/floor/prison{ - icon_state = "blue_plate" + icon_state = "floor_plate" + }, +/area/fiorina/station/security/wardens) +"vea" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, -/area/fiorina/station/botany) -"vdJ" = ( -/obj/effect/spawner/random/gun/smg, /turf/open/floor/prison{ dir = 8; - icon_state = "green" + icon_state = "darkyellow2" }, -/area/fiorina/tumor/civres) -"vdN" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/area/fiorina/station/flight_deck) +"vee" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 }, -/area/fiorina/station/telecomm/lz1_cargo) -"vdW" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "yellow" }, -/area/fiorina/station/disco) -"vel" = ( -/obj/structure/machinery/vending/coffee, +/area/fiorina/station/lowsec) +"vei" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "yellow" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/lowsec) "vem" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1" }, /area/fiorina/lz/near_lzI) -"vev" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - layer = 3; - opacity = 0 - }, -/area/fiorina/oob) -"veJ" = ( -/obj/item/clothing/head/helmet/marine/specialist/hefa, -/turf/open/floor/prison, -/area/fiorina/station/park) -"veP" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"ven" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" }, -/area/fiorina/tumor/aux_engi) -"veR" = ( -/obj/structure/inflatable, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreen" + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"veW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +"veB" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "yellow" }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) +/area/fiorina/station/lowsec) +"veM" = ( +/obj/item/stock_parts/micro_laser/ultra, +/turf/open/floor/prison{ + icon_state = "darkpurple2" + }, +/area/fiorina/tumor/servers) "vfz" = ( /obj/item/storage/box/donkpockets, /obj/structure/surface/table/reinforced/prison, @@ -34879,121 +34786,86 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"vfL" = ( -/obj/item/storage/box/flashbangs, -/obj/structure/surface/table/reinforced/prison, +"vfJ" = ( +/obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/station/security) "vfM" = ( /turf/closed/shuttle/ert{ icon_state = "stan27" }, /area/fiorina/station/power_ring) -"vfO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, -/area/fiorina/station/lowsec) -"vgi" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"vgw" = ( -/obj/item/storage/toolbox/antag, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/fiorina/tumor/civres) -"vgC" = ( -/obj/structure/machinery/light/double/blue{ +"vfQ" = ( +/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/station/park) +"vfR" = ( +/obj/structure/stairs/perspective{ dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/lz/near_lzI) -"vgL" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null +/obj/structure/platform{ + dir = 8 }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/storage/pill_bottle/alkysine, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"vgP" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/fiorina/station/central_ring) +"vgS" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 1; + icon_state = "whitepurple" }, -/area/fiorina/station/security) -"vhd" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/area/fiorina/station/research_cells) +"vha" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, -/area/fiorina/lz/near_lzI) -"vhk" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison{ + icon_state = "greenblue" }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"vhy" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, +/area/fiorina/station/botany) +"vhe" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/under/color/orange, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + icon_state = "yellowfull" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/lowsec) "vhB" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) +"vhC" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison{ + icon_state = "greenblue" + }, +/area/fiorina/station/botany) "vhI" = ( /turf/open/gm/river{ color = "#990000"; name = "pool" }, /area/fiorina/station/park) -"viL" = ( -/obj/item/stock_parts/micro_laser/ultra, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"viX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space/basic, -/area/fiorina/oob) -"vja" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, +"viH" = ( +/obj/item/clipboard, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + icon_state = "darkpurplefull2" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/tumor/servers) +"viV" = ( +/obj/structure/monorail{ + dir = 5; + name = "launch track" + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "vjl" = ( /obj/structure/closet/crate/trashcart, /obj/effect/spawner/random/tool, @@ -35005,10 +34877,28 @@ icon_state = "leftengine_1" }, /area/fiorina/station/power_ring) +"vjz" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/transit_hub) "vjG" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) +"vjH" = ( +/obj/structure/machinery/computer/communications{ + dir = 4; + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenfull" + }, +/area/fiorina/tumor/servers) "vjR" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/prison, @@ -35025,67 +34915,67 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"vki" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/green, -/obj/structure/machinery/light/double/blue{ +"vky" = ( +/turf/open/floor/prison{ dir = 4; - pixel_x = 10; - pixel_y = 13 + icon_state = "blue" }, +/area/fiorina/station/civres_blue) +"vkC" = ( +/obj/structure/inflatable/popped/door, /turf/open/floor/prison{ - dir = 4; icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"vkt" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +"vkM" = ( +/obj/item/reagent_container/food/drinks/bottle/pwine, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"vlK" = ( -/obj/structure/surface/rack, +/area/fiorina/tumor/civres) +"vkZ" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"vli" = ( +/obj/structure/bed/chair/comfy, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" + icon_state = "yellowfull" }, -/area/fiorina/station/medbay) -"vlN" = ( -/obj/structure/surface/rack, -/obj/item/frame/table/almayer, -/obj/item/frame/table/almayer, +/area/fiorina/station/disco) +"vlm" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"vlt" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/civres) -"vlO" = ( -/obj/structure/machinery/light/double/blue, +/area/fiorina/station/flight_deck) +"vlT" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + dir = 10; + icon_state = "darkyellow2" }, -/area/fiorina/station/central_ring) -"vlS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - pixel_y = 9 +/area/fiorina/station/telecomm/lz1_tram) +"vlX" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, -/obj/structure/machinery/light/double/blue{ +/obj/item/clothing/gloves/combat, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison{ dir = 1; - pixel_y = 21 + icon_state = "whitepurple" }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"vlU" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/research_cells) "vmj" = ( /obj/effect/landmark/nightmare{ insert_tag = "podholder" @@ -35094,83 +34984,53 @@ icon_state = "leftengine_1" }, /area/fiorina/station/medbay) -"vmt" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"vmL" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +"vmr" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/telecomm/lz1_cargo) -"vmT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, +/area/fiorina/station/medbay) +"vmH" = ( +/obj/item/tool/mop, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/aux_engi) -"vnl" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/barricade/wooden{ - dir = 4 +/area/fiorina/station/chapel) +"vmW" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + icon_state = "darkredfull2" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/research_cells) "vnr" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/telecomm/lz1_cargo) -"vnA" = ( -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"vnG" = ( +"voa" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison, -/area/fiorina/maintenance) -"vnM" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" +/area/fiorina/station/telecomm/lz1_tram) +"vok" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/fiorina/lz/near_lzI) -"voh" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/obj/item/phone{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/phone{ + pixel_x = 9; + pixel_y = -10 }, -/area/fiorina/station/lowsec) -"voi" = ( /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "floor_plate" }, -/area/fiorina/station/park) +/area/fiorina/station/security) "voq" = ( /obj/structure/machinery/computer/secure_data{ dir = 1 @@ -35178,80 +35038,95 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"vov" = ( -/obj/structure/platform_decoration{ - dir = 8 +"voS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) +"vpk" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, /turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"voI" = ( -/obj/item/tool/wrench, +/area/fiorina/station/flight_deck) +"vpB" = ( +/obj/effect/alien/weeds/node, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "whitegreen" }, -/area/fiorina/station/power_ring) -"voK" = ( +/area/fiorina/tumor/ice_lab) +"vpJ" = ( /obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 + dir = 8; + icon_state = "p_stair_full" }, +/obj/structure/platform, /turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"voO" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "yellow" +/area/fiorina/station/civres_blue) +"vqb" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/fiorina/station/lowsec) -"voP" = ( -/obj/structure/dropship_equipment/medevac_system, +/turf/open/floor/prison, +/area/fiorina/station/botany) +"vqg" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" + icon_state = "whitegreen" }, -/area/fiorina/station/power_ring) -"voV" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6_1" +/area/fiorina/tumor/ice_lab) +"vqi" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "cell_stripe" }, /area/fiorina/station/lowsec) -"vpN" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) -"vql" = ( +"vqM" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/item/reagent_container/food/snacks/tomatosoup, +/turf/open/floor/prison{ + icon_state = "blue" + }, +/area/fiorina/station/power_ring) +"vqZ" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" }, +/area/fiorina/tumor/aux_engi) +"vrc" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "floor_marked" }, /area/fiorina/station/transit_hub) -"vqs" = ( -/obj/item/paper/prison_station/inmate_handbook, +"vrf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 6 + }, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "redfull" }, -/area/fiorina/station/research_cells) -"vqW" = ( -/obj/item/stack/sheet/cardboard, +/area/fiorina/station/security) +"vro" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" + dir = 10; + icon_state = "sterile_white" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/medbay) "vrp" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Corner" @@ -35259,173 +35134,170 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"vrA" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, +"vrw" = ( +/obj/structure/machinery/vending/snack/packaged, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/park) "vrF" = ( /obj/item/toy/crayon/green, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"vrH" = ( -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"vrO" = ( -/obj/structure/closet/secure_closet/engineering_materials, +"vrM" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/book/manual/security_space_law, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"vrR" = ( -/obj/structure/platform_decoration, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 + icon_state = "darkredfull2" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/station/security) +"vrN" = ( +/obj/structure/monorail{ + name = "launch track" }, -/area/fiorina/station/disco) -"vrS" = ( -/obj/item/reagent_container/food/snacks/donkpocket, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" }, -/area/fiorina/station/transit_hub) +/turf/open/floor/plating/prison, +/area/fiorina/oob) "vrT" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"vsr" = ( -/obj/structure/barricade/handrail, +"vrX" = ( +/obj/item/newspaper, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" + icon_state = "whitepurplecorner" }, /area/fiorina/station/research_cells) -"vsL" = ( -/obj/structure/prop/dam/crane, +"vsc" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" + icon_state = "floorscorched1" }, -/area/fiorina/tumor/servers) -"vsM" = ( -/obj/structure/bed{ - icon_state = "abed" +/area/fiorina/station/civres_blue) +"vsg" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison{ + dir = 10; + icon_state = "darkbrown2" }, -/obj/item/ammo_magazine/smg/mp5, +/area/fiorina/maintenance) +"vsq" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" + dir = 8; + icon_state = "darkyellowcorners2" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/telecomm/lz1_cargo) +"vsz" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) "vsT" = ( /obj/structure/cable/heavyduty{ icon_state = "1-8" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"vtc" = ( -/obj/structure/toilet{ - dir = 4 +"vtf" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/fiorina/station/civres_blue) -"vtk" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_casing/shell{ - icon_state = "shell_9_1" - }, -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" + dir = 10; + icon_state = "whitegreenfull" }, -/turf/open/floor/prison, -/area/fiorina/station/park) +/area/fiorina/tumor/ice_lab) "vtl" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/wood, /area/fiorina/station/park) -"vtr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/beaker{ - pixel_x = -5; - pixel_y = 15 +"vtn" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitegreen" }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5; - pixel_y = 2 +/area/fiorina/station/medbay) +"vtG" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, -/area/fiorina/tumor/ice_lab) -"vts" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/sand/layer1, -/area/fiorina/tumor/civres) -"vtX" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/area/fiorina/station/medbay) +"vtJ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"vub" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/area/fiorina/station/disco) -"vuK" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/prison, -/area/fiorina/station/security) -"vuS" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, /area/fiorina/station/civres_blue) -"vuT" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +"vuc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"vuE" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"vuW" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 11; + pixel_y = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 1; + pixel_y = 8 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/fiorina/station/power_ring) -"vuV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" + icon_state = "floor_plate" }, -/turf/open/floor/prison, /area/fiorina/station/power_ring) -"vuX" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +"vvk" = ( +/obj/structure/barricade/handrail, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 9; + icon_state = "whitepurple" }, -/area/fiorina/station/park) +/area/fiorina/station/research_cells) "vvp" = ( /obj/item/tool/candle{ pixel_x = 5; @@ -35444,128 +35316,120 @@ icon_state = "squares" }, /area/fiorina/station/telecomm/lz1_cargo) -"vvT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "So uh yeah, about that cat..."; - icon_state = "mwbloodyo"; - pixel_y = 6 +"vvX" = ( +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + dir = 5; + icon_state = "yellow" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/disco) +"vwc" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) "vwt" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"vwx" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"vwD" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) "vwM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"vwN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"vwX" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"vxm" = ( -/obj/structure/platform{ - dir = 4 - }, +"vxp" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" + icon_state = "yellow" }, -/area/fiorina/station/botany) +/area/fiorina/station/disco) +"vxr" = ( +/obj/item/newspaper, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "vxs" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_w_2" }, /area/fiorina/tumor/ship) -"vxu" = ( -/obj/effect/landmark/objective_landmark/medium, +"vxV" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + icon_state = "greenblue" + }, +/area/fiorina/station/botany) +"vyu" = ( +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"vyz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, /area/fiorina/station/park) -"vxz" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - indestructible = 1; - name = "launch bay door" +"vyA" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/prison{ +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ dir = 8; - icon_state = "cell_stripe" + pixel_y = 24 }, -/area/fiorina/oob) -"vxI" = ( -/obj/structure/largecrate/random/case/small, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "darkbrown2" }, /area/fiorina/station/park) -"vyu" = ( -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"vyv" = ( -/obj/structure/platform_decoration{ - dir = 1 +"vyF" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/obj/structure/inflatable/popped, /turf/open/floor/prison{ - icon_state = "whitegreen" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"vyw" = ( +/area/fiorina/station/power_ring) +"vyU" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" + dir = 10; + icon_state = "floor_plate" }, /area/fiorina/station/telecomm/lz1_cargo) -"vyK" = ( -/obj/structure/barricade/sandbags{ - dir = 1; - icon_state = "sandbag_0" - }, +"vyX" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ dir = 4; - icon_state = "darkyellow2" + icon_state = "blue_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/botany) +"vza" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/lowsec) "vzh" = ( /obj/structure/foamed_metal, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"vzk" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison{ + icon_state = "darkpurple2" + }, +/area/fiorina/tumor/servers) "vzn" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -35577,14 +35441,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"vzp" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) "vzB" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ indestructible = 1; @@ -35592,60 +35448,48 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"vzT" = ( -/obj/item/frame/toolbox_tiles_sensor, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) "vzU" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/fiorina/tumor/ship) -"vAU" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/barricade/wooden, +"vzZ" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"vAX" = ( +/area/fiorina/station/flight_deck) +"vAi" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"vAZ" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" + icon_state = "floor_plate" }, -/area/fiorina/station/botany) -"vBa" = ( -/obj/structure/machinery/shower{ - dir = 4 +/area/fiorina/tumor/civres) +"vBc" = ( +/obj/structure/surface/table/reinforced/prison{ + dir = 8; + flipped = 1 }, +/obj/item/device/flashlight/lamp, /turf/open/floor/prison{ - icon_state = "kitchen" + icon_state = "darkredfull2" }, /area/fiorina/station/research_cells) -"vBF" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"vBO" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/area/fiorina/station/medbay) -"vBH" = ( -/obj/item/storage/firstaid/regular, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 1; + icon_state = "whitegreen" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/ice_lab) "vBP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -35653,81 +35497,74 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"vBX" = ( -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"vBZ" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"vCl" = ( -/obj/item/tool/shovel/spade, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"vBQ" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/station/botany) -"vCm" = ( -/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"vBV" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/botany) -"vCu" = ( -/obj/item/storage/bible/hefa, +/area/fiorina/station/medbay) +"vBY" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/prison{ dir = 1; - icon_state = "green" + icon_state = "blue" }, -/area/fiorina/station/chapel) -"vCL" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 2; - pixel_y = 21 +/area/fiorina/station/civres_blue) +"vCv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"vCT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "whitepurple" }, -/area/fiorina/station/medbay) -"vCQ" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 +/area/fiorina/station/research_cells) +"vDc" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/item/reagent_container/food/snacks/sandwich{ + pixel_y = 2 }, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue" + icon_state = "floor_plate" }, -/area/fiorina/station/chapel) -"vDf" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/security) +"vDj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, +/obj/item/clothing/gloves/latex, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "redfull" }, -/area/fiorina/station/transit_hub) -"vDL" = ( -/obj/structure/barricade/wooden, +/area/fiorina/station/medbay) +"vDx" = ( +/obj/item/clothing/shoes/marine/upp_knife, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"vDK" = ( +/obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + icon_state = "floor_plate" }, -/area/fiorina/station/central_ring) +/area/fiorina/station/power_ring) "vDO" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 @@ -35746,21 +35583,32 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"vED" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) +"vEF" = ( +/obj/item/circuitboard/robot_module/janitor, +/turf/open/floor/prison, +/area/fiorina/station/disco) "vEK" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/power_ring) -"vFc" = ( -/obj/item/tool/warning_cone, -/obj/structure/barricade/metal{ - dir = 8; - health = 150; - icon_state = "metal_2" +"vEX" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + dir = 10; + icon_state = "yellow" }, -/area/fiorina/station/park) +/area/fiorina/station/disco) "vFi" = ( /obj/structure/window_frame/prison, /obj/item/shard{ @@ -35790,55 +35638,71 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"vFA" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"vFS" = ( -/obj/item/device/flashlight/lamp/tripod, +"vFF" = ( +/obj/item/trash/candy, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 4; + icon_state = "whitegreen" }, /area/fiorina/tumor/ice_lab) -"vFV" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +"vFQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/lowsec) +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/civres) "vFY" = ( /obj/item/reagent_container/glass/bucket, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"vGM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 +"vGe" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/security) +"vGv" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/structure/largecrate/random, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"vGO" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/disco) +"vGV" = ( +/obj/item/shard{ + icon_state = "large" }, -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 4; - icon_state = "darkyellowfull2" + icon_state = "greenfull" }, -/area/fiorina/station/flight_deck) -"vHo" = ( +/area/fiorina/station/transit_hub) +"vHG" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/prison{ - dir = 5; - icon_state = "blue" + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) +"vHK" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/fiorina/tumor/servers) -"vHD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/cigbutt, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "darkbrown2" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/park) +"vHR" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) "vHU" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin{ @@ -35847,26 +35711,23 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"vHX" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 +"vIF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + icon_state = "mwo"; + pixel_y = 6 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "greenfull" }, -/area/fiorina/tumor/ice_lab) -"vIG" = ( +/area/fiorina/tumor/civres) +"vII" = ( /turf/open/floor/prison{ - icon_state = "platingdmg2" + dir = 4; + icon_state = "whitepurple" }, -/area/fiorina/station/security) +/area/fiorina/station/research_cells) "vJh" = ( /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/plating/prison, @@ -35877,22 +35738,23 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/transit_hub) -"vJo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, +"vJp" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"vJq" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 8; + icon_state = "whitegreencorner" }, -/area/fiorina/station/medbay) -"vJL" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/tumor/ice_lab) +"vJD" = ( +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/station/research_cells) "vJN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/electrical{ @@ -35901,47 +35763,41 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"vKz" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +"vKj" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/area/fiorina/lz/near_lzI) -"vKP" = ( -/obj/structure/surface/rack, -/obj/item/weapon/sword/katana, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"vLe" = ( -/obj/structure/closet/toolcloset, -/obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/maintenance) +/area/fiorina/station/security) "vLH" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/wood, /area/fiorina/station/park) -"vLO" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +"vLV" = ( +/obj/item/inflatable, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/central_ring) -"vLX" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, +/area/fiorina/station/chapel) +"vMb" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + icon_state = "darkredfull2" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/security) +"vMh" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) "vMk" = ( /obj/structure/machinery/vending/snack/packaged, /turf/open/organic/grass{ @@ -35949,60 +35805,96 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"vMs" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) "vMK" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/power_ring) -"vMN" = ( -/obj/structure/platform_decoration{ - dir = 4 +"vMQ" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "green" + }, +/area/fiorina/station/chapel) +"vMS" = ( +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" + icon_state = "floor_plate" + }, +/area/fiorina/station/power_ring) +"vMX" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "cell_stripe" + }, +/area/fiorina/station/central_ring) +"vNq" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"vNr" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 8; + pixel_y = 24 + }, +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/prison, /area/fiorina/station/park) -"vMT" = ( +"vNt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + dir = 10; + icon_state = "green" }, -/area/fiorina/station/flight_deck) -"vNd" = ( +/area/fiorina/station/chapel) +"vNx" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/obj/item/toy/beach_ball, /turf/open/floor/prison{ - icon_state = "yellowfull" + dir = 1; + icon_state = "darkbrown2" }, -/area/fiorina/station/disco) -"vNq" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"vOm" = ( +/area/fiorina/tumor/aux_engi) +"vNF" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" + dir = 1; + icon_state = "greencorner" }, -/area/fiorina/station/botany) -"vOD" = ( +/area/fiorina/station/chapel) +"vNY" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/prison{ + dir = 4; + icon_state = "blue" + }, +/area/fiorina/station/power_ring) +"vOj" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"vOO" = ( -/obj/item/device/flashlight/lamp/tripod, +/area/fiorina/station/security) +"vOp" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, /turf/open/floor/prison{ - icon_state = "green" + icon_state = "floor_plate" }, -/area/fiorina/station/chapel) +/area/fiorina/station/park) +"vOz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) "vOP" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -36013,263 +35905,222 @@ }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) -"vOZ" = ( -/obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"vPF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/prize/honk{ - anchored = 1; - layer = 2.9; - pixel_x = -1; - pixel_y = 13 +"vPa" = ( +/obj/item/tool/soap, +/turf/open/floor/prison{ + icon_state = "kitchen" }, -/obj/structure/barricade/handrail/type_b, +/area/fiorina/station/lowsec) +"vPk" = ( +/obj/structure/window/framed/prison, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "blue_plate" }, -/area/fiorina/station/flight_deck) +/area/fiorina/station/botany) +"vPA" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) "vPM" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) +/area/fiorina/station/central_ring) "vPR" = ( /turf/closed/shuttle/ert{ icon_state = "stan1" }, /area/fiorina/tumor/ship) -"vQi" = ( -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison{ +"vQr" = ( +/obj/structure/barricade/sandbags{ dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"vQC" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/storage/pill_bottle/kelotane/skillless, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/park) -"vQJ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" + icon_state = "sandbag_0"; + pixel_y = 2 }, -/area/fiorina/maintenance) -"vRk" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 }, -/area/fiorina/station/power_ring) -"vRu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"vQN" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/blocker/invisible_wall, +/obj/structure/platform, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) +"vRj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" + icon_state = "darkpurplefull2" }, -/area/fiorina/oob) +/area/fiorina/station/research_cells) "vRA" = ( /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"vRF" = ( +"vSk" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"vRH" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"vRP" = ( -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"vSC" = ( -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 +/obj/item/storage/box/cups{ + pixel_x = -3; + pixel_y = 6 }, +/obj/item/storage/box/cups, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"vSW" = ( -/obj/structure/closet/crate/internals, -/obj/item/tool/crew_monitor, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"vTq" = ( -/obj/structure/prop/resin_prop, +/area/fiorina/station/power_ring) +"vTl" = ( +/obj/item/stack/rods, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 5; + icon_state = "yellow" }, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/disco) "vTv" = ( /turf/closed/shuttle/elevator{ dir = 5 }, /area/fiorina/station/civres_blue) -"vTA" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" +"vTB" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 }, -/area/fiorina/station/flight_deck) -"vTI" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"vTT" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 }, -/area/fiorina/station/transit_hub) -"vTL" = ( -/obj/item/trash/hotdog, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"vUa" = ( +/obj/structure/inflatable, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"vTM" = ( -/obj/item/storage/donut_box{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"vTR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) +/area/fiorina/station/transit_hub) "vUf" = ( /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"vUl" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +"vUn" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/area/fiorina/station/lowsec) +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) "vUv" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced, /obj/item/reagent_container/food/snacks/donut/normal, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"vUF" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/fiorina/tumor/civres) -"vUP" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"vUZ" = ( -/obj/structure/platform{ - dir = 1 - }, +"vUE" = ( +/obj/structure/machinery/computer/prisoner, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "redfull" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/security) "vVi" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"vVx" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" +"vVu" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/nailgun, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) -"vVN" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/area/fiorina/maintenance) +"vVJ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/transit_hub) +"vVR" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/central_ring) "vWe" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"vWj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, +"vWs" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" + dir = 8; + icon_state = "cell_stripe" + }, +/area/fiorina/station/power_ring) +"vWE" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/tumor/servers) -"vWL" = ( -/obj/item/stock_parts/matter_bin/super, /turf/open/floor/prison{ - icon_state = "darkpurple2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) -"vXk" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +/area/fiorina/station/central_ring) +"vWI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" + icon_state = "yellowfull" + }, +/area/fiorina/station/disco) +"vXi" = ( +/obj/item/storage/briefcase, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/botany) -"vXl" = ( -/obj/structure/surface/rack, -/obj/item/folder/black, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, /area/fiorina/station/medbay) -"vXy" = ( +"vXr" = ( +/obj/structure/machinery/disposal, /turf/open/floor/prison{ - dir = 6; - icon_state = "green" + dir = 10; + icon_state = "kitchen" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/civres_blue) +"vXB" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) +"vXS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) "vXT" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -36280,35 +36131,84 @@ icon_state = "plate" }, /area/fiorina/tumor/ship) -"vYX" = ( -/obj/item/roller, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"vYY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - layer = 3.5; - pixel_y = 6 +"vYA" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "yellow" + }, +/area/fiorina/station/disco) +"vYE" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_1" + }, +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" + }, +/area/fiorina/station/central_ring) +"vYL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/chapel) +"vYM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, +/area/fiorina/lz/near_lzI) +"vYP" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 }, /turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/fiorina/station/research_cells) +"vZc" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; dir = 4; - icon_state = "greenfull" + layer = 6; + name = "overhead pipe"; + pixel_y = 20 }, -/area/fiorina/station/transit_hub) -"vZs" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) +"vZx" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison{ + dir = 4; + icon_state = "blue" + }, +/area/fiorina/station/power_ring) +"vZz" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) +/area/fiorina/station/central_ring) "vZD" = ( /obj/item/storage/box/donkpockets, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"vZL" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) +"vZU" = ( +/obj/item/paper/crumpled, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) "vZV" = ( /turf/closed/wall/strata_ice/jungle{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -36318,10 +36218,24 @@ "vZX" = ( /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"wam" = ( -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) +"war" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/park) +"waz" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/disco) "waN" = ( /obj/structure/platform{ dir = 1 @@ -36334,16 +36248,23 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"waQ" = ( +"waP" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/park) "waU" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) +"wbn" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/aux_engi) "wbp" = ( /obj/item/inflatable, /turf/open/organic/grass{ @@ -36351,14 +36272,21 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"wbr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"wby" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, -/area/fiorina/station/medbay) +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space, +/area/fiorina/oob) "wbB" = ( /obj/structure/computerframe, /obj/structure/machinery/light/double/blue{ @@ -36378,39 +36306,12 @@ "wbI" = ( /turf/open/floor/wood, /area/fiorina/station/park) -"wbL" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/prop/almayer/comp_open{ - pixel_y = 6 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"wbP" = ( -/obj/item/storage/toolbox, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"wbW" = ( -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"wcB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/gun/pistol/midchance, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"wcC" = ( -/obj/structure/closet/basketball, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/effect/landmark/objective_landmark/science, +"wcm" = ( +/obj/structure/bed/chair, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "greenblue" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/botany) "wcP" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/plating/prison, @@ -36419,81 +36320,99 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"wdl" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, +"wcX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/hypospray, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/station/disco) -"wdo" = ( -/obj/structure/closet, +/area/fiorina/station/botany) +"wdA" = ( +/obj/item/trash/used_stasis_bag, /turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) -"wdL" = ( -/obj/structure/barricade/wooden{ - dir = 8 + icon_state = "floor_plate" }, +/area/fiorina/lz/near_lzI) +"wdX" = ( +/obj/structure/prop/almayer/computers/mapping_computer, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" + icon_state = "darkredfull2" }, /area/fiorina/station/research_cells) -"wdU" = ( -/obj/structure/foamed_metal, +"wef" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells) +"wek" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"wef" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"wet" = ( -/obj/item/stack/sandbags/large_stack, +/area/fiorina/station/civres_blue) +"wen" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"wew" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, /turf/open/floor/prison{ - dir = 1; + dir = 5; icon_state = "darkyellow2" }, -/area/fiorina/station/telecomm/lz1_cargo) -"weB" = ( -/obj/structure/machinery/light/double/blue{ +/area/fiorina/lz/near_lzI) +"weH" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ dir = 4; - pixel_x = 10; - pixel_y = 13 + layer = 3.25 }, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) +"weK" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/station/transit_hub) -"weE" = ( /turf/open/floor/prison{ - icon_state = "panelscorched" + dir = 8; + icon_state = "darkbrowncorners2" }, -/area/fiorina/oob) -"weM" = ( -/obj/effect/decal/cleanable/blood, +/area/fiorina/station/park) +"weN" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/prison{ - icon_state = "yellow" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/lowsec) -"weV" = ( -/obj/structure/sink{ +/area/fiorina/tumor/aux_engi) +"weQ" = ( +/obj/structure/stairs/perspective{ dir = 8; - pixel_x = -12; - pixel_y = 2 + icon_state = "p_stair_full" }, -/obj/structure/mirror{ - pixel_x = -29 +/obj/structure/platform, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/security) +"weS" = ( +/obj/structure/machinery/processor, +/obj/effect/decal/cleanable/blood{ + pixel_y = 20 }, /turf/open/floor/prison{ - icon_state = "sterile_white" + icon_state = "blue_plate" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/botany) "weX" = ( /obj/structure/barricade/metal{ health = 250; @@ -36501,51 +36420,30 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"wfc" = ( -/obj/structure/machinery/disposal, -/obj/item/tool/kitchen/rollingpin{ - pixel_y = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +"wfi" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + icon_state = "green" }, -/area/fiorina/station/civres_blue) -"wfo" = ( -/obj/structure/coatrack, -/obj/item/clothing/head/bowlerhat{ - pixel_y = 15 +/area/fiorina/station/chapel) +"wfp" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/obj/structure/machinery/light/double/blue{ +/turf/open/floor/prison{ dir = 4; - pixel_x = 10; - pixel_y = -3 + icon_state = "darkyellowfull2" }, +/area/fiorina/lz/near_lzI) +"wfy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, /turf/open/floor/prison{ dir = 4; icon_state = "greenfull" }, /area/fiorina/tumor/civres) -"wfu" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"wfw" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "damaged3" - }, -/area/fiorina/station/central_ring) "wfV" = ( /obj/effect/landmark/monkey_spawn, /turf/open/organic/grass{ @@ -36563,137 +36461,114 @@ }, /turf/open/space, /area/fiorina/oob) -"wgq" = ( +"wgH" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"wgs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/beret/eng{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/book/manual/engineering_guide{ - pixel_x = -4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"wgO" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/park) +/area/fiorina/tumor/aux_engi) "whf" = ( /turf/closed/shuttle/elevator{ dir = 4 }, /area/fiorina/station/civres_blue) -"whl" = ( +"whp" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"whu" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/tumor/civres) +"whL" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor/prison{ icon_state = "floor_plate" }, /area/fiorina/tumor/aux_engi) -"whr" = ( -/obj/structure/machinery/disposal, +"whR" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" + icon_state = "bluefull" }, -/area/fiorina/station/civres_blue) -"whu" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/tumor/civres) -"wis" = ( -/obj/structure/platform_decoration{ - dir = 8 +/area/fiorina/station/power_ring) +"wir" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "redfull" + }, +/area/fiorina/station/security) +"wiQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 16 + }, +/obj/item/device/radio{ + pixel_x = 6; + pixel_y = 7 }, -/area/fiorina/station/disco) -"wiR" = ( -/obj/structure/surface/rack, -/obj/item/key, -/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" + icon_state = "redfull" }, -/area/fiorina/station/medbay) -"wjC" = ( -/obj/effect/landmark/xeno_spawn, +/area/fiorina/station/security) +"wjk" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" + dir = 5; + icon_state = "blue" }, -/area/fiorina/tumor/aux_engi) +/area/fiorina/station/chapel) +"wjx" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) "wjH" = ( /obj/item/stack/barbed_wire, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"wjO" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison, -/area/fiorina/station/park) -"wjT" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_7" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) "wkd" = ( /obj/structure/machinery/status_display, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"wkg" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/down, +"wkp" = ( +/obj/structure/machinery/iv_drip, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"wky" = ( -/obj/structure/tunnel/maint_tunnel, +"wkD" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/prison, -/area/fiorina/tumor/aux_engi) -"wkA" = ( +/area/fiorina/station/central_ring) +"wkZ" = ( /turf/open/floor/prison{ dir = 8; icon_state = "cell_stripe" }, -/area/fiorina/station/power_ring) -"wkL" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"wln" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/ice_lab) -"wlv" = ( -/obj/item/trash/barcardine, +/area/fiorina/station/disco) +"wlp" = ( +/obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/transit_hub) "wly" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/lz/near_lzII) +"wlz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) "wlG" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, @@ -36703,29 +36578,33 @@ /obj/item/bedsheet/blue, /turf/open/floor/almayer, /area/fiorina/tumor/ship) +"wlR" = ( +/obj/item/bodybag, +/obj/item/bodybag{ + pixel_y = 2 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/medbay) "wmd" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/fiberbush) -"wmm" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"wmx" = ( -/obj/item/stack/folding_barricade, +"wmp" = ( +/obj/structure/closet/secure_closet/freezer/fridge, /turf/open/floor/prison{ - dir = 8; - icon_state = "red" + dir = 10; + icon_state = "kitchen" }, -/area/fiorina/station/security) -"wnh" = ( -/obj/item/stack/sheet/metal, +/area/fiorina/station/civres_blue) +"wmG" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b, /turf/open/floor/prison{ - dir = 1; - icon_state = "blue" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/civres_blue) +/area/fiorina/station/medbay) "wnq" = ( /obj/item/tool/match, /turf/open/floor/plating/plating_catwalk/prison, @@ -36736,78 +36615,68 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"wnD" = ( +"wnz" = ( /turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, -/area/fiorina/tumor/fiberbush) -"wnM" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical{ - pixel_y = -3 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/structure/machinery/light/double/blue, +/area/fiorina/station/lowsec) +"wnB" = ( /turf/open/floor/prison{ - icon_state = "darkbrown2" + dir = 9; + icon_state = "darkpurple2" }, -/area/fiorina/maintenance) -"woh" = ( -/obj/structure/platform{ - dir = 1 +/area/fiorina/station/central_ring) +"wnW" = ( +/obj/structure/toilet{ + pixel_y = 4 + }, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = 2; + pixel_y = 25 }, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + dir = 10; + icon_state = "sterile_white" }, /area/fiorina/station/medbay) -"wol" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, +"wot" = ( +/obj/item/weapon/baseballbat/metal, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" + dir = 8; + icon_state = "blue" }, -/area/fiorina/tumor/ice_lab) -"wou" = ( -/obj/structure/machinery/light/double/blue, +/area/fiorina/station/chapel) +"woI" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ dir = 10; - icon_state = "whitegreenfull" + icon_state = "kitchen" }, -/area/fiorina/tumor/ice_lab) -"wow" = ( -/obj/structure/closet/crate/medical, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/objective_landmark/close, +/area/fiorina/station/civres_blue) +"wpf" = ( +/obj/structure/bed/chair/comfy, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"wps" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 6; + icon_state = "darkyellow2" }, +/area/fiorina/station/flight_deck) +"wpp" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 6; + icon_state = "darkyellow2" + }, +/area/fiorina/station/power_ring) +"wpu" = ( +/obj/item/tool/soap, +/obj/structure/machinery/shower{ + dir = 8 }, -/area/fiorina/station/transit_hub) -"wpy" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" + icon_state = "kitchen" }, -/area/fiorina/station/chapel) +/area/fiorina/station/research_cells) "wpD" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 @@ -36831,119 +36700,60 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"wqs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/poster, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"wqz" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/combat, +"wqx" = ( +/obj/item/tool/wrench, /turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"wqY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "floor_plate" }, +/area/fiorina/station/power_ring) +"wqM" = ( +/obj/structure/platform, +/obj/structure/closet/radiation, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"wrQ" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 1; + icon_state = "whitepurplecorner" }, /area/fiorina/station/research_cells) "wrR" = ( /turf/closed/wall/prison, /area/fiorina/station/botany) -"wrT" = ( -/obj/item/shard{ - icon_state = "large" +"wsy" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" }, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"wsw" = ( -/obj/effect/spawner/random/tool, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 4; + icon_state = "cell_stripe" }, -/area/fiorina/station/research_cells) -"wsz" = ( +/area/fiorina/oob) +"wsN" = ( +/obj/item/tool/surgery/cautery, /turf/open/floor/prison{ dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"wsM" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"wsX" = ( -/obj/item/trash/snack_bowl, -/turf/open/floor/prison{ - dir = 5; icon_state = "yellow" }, /area/fiorina/station/lowsec) -"wtm" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) -"wty" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/classic_baton, +"wsY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/margherita, /turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"wua" = ( -/obj/structure/platform_decoration{ - dir = 1 + dir = 10; + icon_state = "whitegreenfull" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" +/area/fiorina/station/medbay) +"wtx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_y = 11 }, -/area/fiorina/station/power_ring) -"wun" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/fiorina/tumor/ice_lab) -"wuz" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 + icon_state = "darkpurplefull2" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) +/area/fiorina/station/research_cells) "wuA" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/smg/nailgun, @@ -36964,69 +36774,110 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"wuN" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +"wuP" = ( +/obj/structure/machinery/power/apc, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 4; + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) +"wuT" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/tumor/aux_engi) -"wuW" = ( -/obj/item/tool/warning_cone, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/disco) +/area/fiorina/station/central_ring) +"wvf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + pixel_y = 9 + }, +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"wvu" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) "wvH" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/chapel_carpet{ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"wvL" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"wvU" = ( -/obj/structure/largecrate/supply/explosives/mines, +"wvS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"wvY" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +/area/fiorina/station/park) +"wwr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"wwa" = ( /turf/open/floor/prison{ - icon_state = "floorscorched1" + icon_state = "darkredfull2" }, -/area/fiorina/tumor/civres) -"wwo" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; - name = "\improper Fiorina Engineering Canteen Vendor" +/area/fiorina/station/research_cells) +"wwH" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/lowsec) +"wwR" = ( +/obj/structure/largecrate/random/case, +/obj/item/storage/toolbox/emergency{ + pixel_y = 4 }, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 9; + icon_state = "whitepurple" }, -/area/fiorina/station/power_ring) -"wxl" = ( -/obj/structure/machinery/recharge_station, +/area/fiorina/station/research_cells) +"wwZ" = ( +/obj/structure/bed/sofa/south/grey/right, /turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" + icon_state = "floor_plate" }, -/area/fiorina/maintenance) -"wxW" = ( -/obj/structure/prop/almayer/computers/mapping_computer, +/area/fiorina/station/civres_blue) +"wxj" = ( +/obj/item/newspaper, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"wxo" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/botany) "wxX" = ( /obj/structure/machinery/computer/cameras{ dir = 8; @@ -37035,12 +36886,6 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"wxY" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) "wxZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -37052,44 +36897,18 @@ /obj/structure/machinery/computer/cameras, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"wyd" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/botany) "wyl" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"wyK" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/oob) -"wyQ" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison{ - icon_state = "yellowfull" +"wyP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison, +/area/fiorina/station/park) "wyT" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -37100,99 +36919,104 @@ name = "astroturf" }, /area/fiorina/station/research_cells) -"wzd" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" +"wzE" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/lowsec) +"wzS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 }, /turf/open/floor/prison, /area/fiorina/station/security) -"wzg" = ( -/obj/item/device/flashlight/lamp/tripod, +"wAa" = ( +/obj/structure/machinery/vending/snack/packaged, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/flight_deck) -"wzE" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/lowsec) -"wzH" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"wzK" = ( -/obj/structure/platform{ - dir = 8 +/area/fiorina/station/civres_blue) +"wAj" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/obj/item/prop/almayer/flight_recorder, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"wzT" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/shower{ + dir = 4 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 +/turf/open/floor/prison{ + icon_state = "kitchen" }, -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.6 +/area/fiorina/station/lowsec) +"wAl" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison{ + dir = 10; + icon_state = "kitchen" }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/tumor/civres) "wAn" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"wAt" = ( +"wAr" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/lz/near_lzI) -"wAQ" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/item/phone{ + pixel_y = -4 }, -/area/fiorina/tumor/ice_lab) -"wBx" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 6; - pixel_y = 7 +/obj/item/phone{ + pixel_x = 7; + pixel_y = 10 }, +/obj/item/tool/pen, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"wBB" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 + icon_state = "floor_plate" }, +/area/fiorina/station/security) +"wAv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, /turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" + icon_state = "floor_plate" + }, +/area/fiorina/station/power_ring) +"wAD" = ( +/obj/item/shard{ + icon_state = "large" }, +/turf/open/floor/prison, /area/fiorina/station/disco) -"wBE" = ( +"wAR" = ( +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 16 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"wAT" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/trash/cigbutt, /turf/open/floor/prison{ - icon_state = "darkyellow2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/medbay) +"wBr" = ( +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) "wBK" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/plating/prison, @@ -37201,76 +37025,65 @@ /obj/structure/largecrate/supply/supplies, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"wCI" = ( +"wCA" = ( +/obj/item/reagent_container/glass/bucket/janibucket, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" + icon_state = "floor_plate" }, -/area/fiorina/station/park) -"wCJ" = ( -/obj/effect/landmark/corpsespawner/ua_riot, +/area/fiorina/station/civres_blue) +"wCV" = ( +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/structure/surface/rack, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "darkbrownfull2" + }, +/area/fiorina/maintenance) +"wDF" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/fiorina/station/medbay) -"wDe" = ( -/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison{ - icon_state = "greenblue" + icon_state = "bluefull" }, -/area/fiorina/station/botany) -"wDw" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" +/area/fiorina/station/power_ring) +"wDV" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 1; + icon_state = "darkyellow2" }, -/area/fiorina/station/medbay) -"wDz" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison, -/area/fiorina/station/security) -"wDJ" = ( -/obj/structure/machinery/vending/cola, +/area/fiorina/station/flight_deck) +"wEa" = ( +/obj/item/stack/rods, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/tumor/fiberbush) -"wDK" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/curtain/shower, -/obj/structure/window{ +/area/fiorina/station/civres_blue) +"wEn" = ( +/obj/structure/barricade/handrail/type_b{ dir = 8 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"wED" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +/area/fiorina/station/flight_deck) +"wEQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue" + dir = 6; + icon_state = "yellow" }, -/area/fiorina/station/civres_blue) -"wEE" = ( -/obj/item/tool/crowbar/red, +/area/fiorina/station/disco) +"wER" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "panelscorched" }, -/area/fiorina/station/medbay) +/area/fiorina/oob) "wEX" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -37281,73 +37094,90 @@ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) -"wFd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +"wEY" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" + icon_state = "floor_plate" }, -/area/fiorina/tumor/servers) -"wFp" = ( -/obj/item/stack/cable_coil/pink, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/area/fiorina/station/chapel) +"wFk" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/area/fiorina/station/medbay) -"wFB" = ( -/obj/structure/machinery/light/double/blue{ +/turf/open/floor/prison{ dir = 4; - pixel_x = 10; - pixel_y = 13 + icon_state = "darkyellowfull2" }, +/area/fiorina/lz/near_lzI) +"wFo" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"wFM" = ( -/obj/structure/machinery/power/apc{ - dir = 8 + icon_state = "floorscorched1" }, +/area/fiorina/tumor/civres) +"wFD" = ( +/obj/structure/bed/sofa/south/grey/right, /turf/open/floor/prison{ - dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"wFS" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" +/area/fiorina/station/security) +"wFE" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/fiorina/station/chapel) +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 6; + pixel_y = -7 + }, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 + }, +/turf/open/floor/prison, +/area/fiorina/station/park) "wFU" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"wGb" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" +"wGa" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = -3 }, +/turf/open/floor/prison, /area/fiorina/station/central_ring) +"wGe" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) "wGf" = ( /obj/item/stack/rods, /turf/open/floor/wood, /area/fiorina/station/park) -"wGA" = ( +"wGm" = ( /obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 + pixel_y = -1 + }, +/turf/open/floor/prison{ + icon_state = "darkyellow2" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"wGD" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/park) "wGM" = ( /obj/item/device/taperecorder{ pixel_x = 1; @@ -37356,18 +37186,6 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/chapel) -"wGX" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) "wHl" = ( /obj/structure/platform_decoration{ dir = 8 @@ -37378,67 +37196,40 @@ /obj/effect/landmark/static_comms/net_two, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"wHr" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/fiorina/station/security) "wHw" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"wHC" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/clothing/gloves/botanic_leather, +"wHx" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/botany) -"wId" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"wIk" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4 + icon_state = "darkpurplefull2" }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"wIp" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"wIx" = ( -/obj/item/stack/sheet/metal, +/area/fiorina/lz/near_lzI) +"wHE" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - dir = 4; - icon_state = "red" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/security) -"wIy" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/area/fiorina/tumor/aux_engi) +"wHX" = ( +/obj/item/tool/lighter/random, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "kitchen" }, -/area/fiorina/tumor/servers) -"wIG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 +/area/fiorina/tumor/civres) +"wII" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" +/turf/open/floor/prison{ + dir = 5; + icon_state = "yellow" }, -/turf/open/space/basic, -/area/fiorina/oob) +/area/fiorina/station/lowsec) "wIJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -37453,18 +37244,34 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"wIL" = ( -/obj/effect/decal/cleanable/blood/oil/streak, +"wJa" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/chapel) +/area/fiorina/tumor/civres) "wJd" = ( /obj/structure/barricade/handrail, /turf/open/organic/grass{ name = "astroturf" }, /area/fiorina/station/research_cells) +"wJf" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkyellowfull2" + }, +/area/fiorina/lz/near_lzI) +"wJt" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison{ + icon_state = "redfull" + }, +/area/fiorina/station/security) "wJw" = ( /obj/structure/closet/crate/trashcart, /obj/item/weapon/gun/rifle/m16, @@ -37474,86 +37281,95 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"wJJ" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison{ + dir = 9; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"wJX" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) "wKb" = ( /obj/effect/spawner/random/gun/rifle/midchance, /turf/open/floor/wood, /area/fiorina/station/park) -"wKl" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"wKn" = ( +/obj/structure/barricade/metal/wired{ + health = 120; + icon_state = "metal_2" }, -/area/fiorina/station/civres_blue) -"wKm" = ( -/obj/item/stack/sheet/cardboard, /turf/open/floor/prison, -/area/fiorina/station/disco) -"wKx" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) +/area/fiorina/lz/near_lzII) "wKE" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"wKR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"wKF" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" }, +/area/fiorina/maintenance) +"wLf" = ( +/obj/structure/machinery/deployable/barrier, /turf/open/floor/prison{ icon_state = "redfull" }, -/area/fiorina/station/medbay) +/area/fiorina/station/security) "wLA" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/security) -"wLS" = ( -/obj/item/tool/wrench, +"wLI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_box/magazine/misc/flares, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" + icon_state = "floor_plate" }, /area/fiorina/tumor/servers) -"wLT" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 +"wLJ" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 +/turf/open/floor/prison{ + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"wLN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/skills{ + dir = 4 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/tumor/civres) -"wMe" = ( +/area/fiorina/station/medbay) +"wLP" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/blood/empty{ - pixel_x = -7; - pixel_y = 4 +/obj/item/clipboard, +/turf/open/floor/prison{ + icon_state = "darkpurple2" }, -/obj/item/reagent_container/blood/BMinus{ - pixel_x = 7; - pixel_y = 4 +/area/fiorina/tumor/servers) +"wLX" = ( +/obj/item/stack/cable_coil, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkpurple2" }, -/area/fiorina/station/telecomm/lz1_cargo) -"wMh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/prison, /area/fiorina/tumor/servers) "wMi" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -37561,26 +37377,57 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"wMv" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) "wMz" = ( /obj/structure/machinery/faxmachine, /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"wMA" = ( -/obj/item/disk/botany, +"wMG" = ( +/obj/item/stack/rods, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) +"wMI" = ( +/obj/item/storage/box/gloves, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/transit_hub) +"wMP" = ( +/obj/item/stool, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/civres_blue) +"wMQ" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/fiorina/station/power_ring) +"wMR" = ( +/obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/lz/near_lzII) +"wMS" = ( +/obj/structure/sink{ dir = 4; - icon_state = "blue_plate" + pixel_x = 12 }, -/area/fiorina/station/botany) +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison{ + dir = 6; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) "wNi" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/prison, @@ -37594,122 +37441,142 @@ icon_state = "doubleside" }, /area/fiorina/station/chapel) -"wNB" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +"wNw" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + dir = 9; + icon_state = "darkpurple2" }, -/area/fiorina/station/medbay) -"wND" = ( -/obj/structure/bed/chair/comfy{ +/area/fiorina/tumor/servers) +"wOc" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 8 }, +/obj/structure/platform_decoration{ + dir = 10 + }, /turf/open/floor/prison{ - dir = 9; - icon_state = "blue" + icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"wNG" = ( +/area/fiorina/station/power_ring) +"wOD" = ( /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 8; + icon_state = "floor_marked" }, -/area/fiorina/station/security) -"wNM" = ( -/obj/item/tool/weldingtool, +/area/fiorina/tumor/servers) +"wOM" = ( +/obj/item/tool/kitchen/knife, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) +"wOR" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "greenblue" }, -/area/fiorina/station/civres_blue) -"wNX" = ( +/area/fiorina/station/botany) +"wOS" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "green" + icon_state = "redcorner" }, -/area/fiorina/station/chapel) -"wOG" = ( -/obj/structure/largecrate/random, +/area/fiorina/station/security) +"wOT" = ( +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "sterile_white" }, -/area/fiorina/station/disco) +/area/fiorina/station/medbay) "wPz" = ( /turf/closed/shuttle/elevator, /area/fiorina/station/telecomm/lz1_cargo) -"wQb" = ( +"wPF" = ( +/obj/item/trash/semki, /turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"wQg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 1 + icon_state = "floor_plate" }, +/area/fiorina/station/power_ring) +"wPL" = ( +/obj/structure/platform_decoration, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "bluefull" }, -/area/fiorina/station/security) -"wQD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 1 +/area/fiorina/station/power_ring) +"wQh" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/item/weapon/gun/energy/taser, /turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/research_cells) +"wQn" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison{ + dir = 10; icon_state = "floor_plate" }, -/area/fiorina/station/security) +/area/fiorina/station/telecomm/lz1_cargo) +"wQs" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/fiorina/station/park) "wQN" = ( /obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"wQR" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) "wQT" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"wQW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +"wRg" = ( +/obj/item/stack/sheet/metal, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"wRh" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitegreen" }, +/area/fiorina/station/medbay) +"wRn" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/park) -"wQY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, +"wRo" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, /turf/open/floor/prison{ dir = 10; icon_state = "whitegreenfull" }, -/area/fiorina/tumor/ice_lab) -"wRg" = ( -/obj/item/stack/sheet/metal, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" +/area/fiorina/station/medbay) +"wRv" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison{ + icon_state = "darkpurple2" }, -/turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"wRz" = ( -/obj/structure/barricade/wooden, +"wRG" = ( +/obj/structure/platform{ + dir = 8 + }, /turf/open/floor/prison{ dir = 8; - icon_state = "cell_stripe" + icon_state = "blue" }, -/area/fiorina/station/central_ring) +/area/fiorina/station/power_ring) "wRP" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -37717,119 +37584,130 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"wSb" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"wSc" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; +"wRW" = ( +/obj/structure/prop/resin_prop{ dir = 1; - health = 25000; - pixel_y = 19 + icon_state = "chair"; + pixel_y = 6 }, -/obj/item/stack/sheet/wood, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "Somehow, it still functions."; - layer = 3.1; - name = "discarded camera console"; - pixel_x = -6; - pixel_y = 5 +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"wRZ" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" }, +/area/fiorina/station/botany) +"wSe" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "cell_stripe" }, /area/fiorina/tumor/servers) "wSm" = ( /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"wSo" = ( -/obj/structure/platform_decoration{ - dir = 8 +"wTo" = ( +/obj/structure/platform{ + dir = 4 }, +/obj/item/stool, /turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" + icon_state = "bluefull" }, -/area/fiorina/station/park) -"wSt" = ( -/obj/structure/monorail{ - dir = 9; - name = "launch track" +/area/fiorina/station/civres_blue) +"wTy" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"wSC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/bottle/spaceacillin{ - pixel_x = -6; - pixel_y = 4 +/turf/open/floor/prison, +/area/fiorina/station/security) +"wTz" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, -/obj/effect/landmark/objective_landmark/science, +/area/fiorina/station/security) +"wTO" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/reagent_container/food/drinks/flask/marine, /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 10; + icon_state = "whitepurple" }, /area/fiorina/station/research_cells) -"wSD" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"wSN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, +"wTV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, /turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 10; + icon_state = "sterile_white" }, /area/fiorina/station/research_cells) -"wSU" = ( +"wUA" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "green" }, -/area/fiorina/station/transit_hub) -"wSX" = ( -/obj/vehicle/train/cargo/trolley, +/area/fiorina/tumor/aux_engi) +"wUN" = ( +/obj/item/reagent_container/food/drinks/cans/sodawater, /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/transit_hub) -"wTC" = ( +/area/fiorina/station/central_ring) +"wVu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/telecomm/lz1_cargo) -"wTW" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"wUs" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" +/area/fiorina/tumor/aux_engi) +"wVI" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/fiorina/station/civres_blue) -"wUz" = ( -/obj/item/frame/toolbox_tiles, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ - dir = 9; + dir = 10; icon_state = "whitepurple" }, /area/fiorina/station/research_cells) -"wVc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 11; - pixel_y = 14 +"wVK" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkpurple2" + }, +/area/fiorina/tumor/servers) +"wVL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8; + icon_state = "whitegreen" }, -/area/fiorina/tumor/fiberbush) +/area/fiorina/station/medbay) "wWs" = ( /turf/open/floor/greengrid, /area/fiorina/station/security) +"wWF" = ( +/obj/item/frame/rack, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"wWT" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) "wWW" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -37839,286 +37717,271 @@ }, /turf/open/floor/almayer_hull, /area/fiorina/station/medbay) -"wXe" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, +"wXf" = ( /turf/open/floor/prison{ - icon_state = "redfull" + dir = 10; + icon_state = "floor_plate" }, -/area/fiorina/station/security) -"wXy" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +/area/fiorina/station/flight_deck) +"wXP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/turf/open/floor/prison{ + icon_state = "darkpurple2" }, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"wXN" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, +/area/fiorina/tumor/servers) +"wYx" = ( +/obj/item/storage/box/flashbangs, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"wXQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, +"wYE" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8; + icon_state = "cell_stripe" }, -/area/fiorina/station/lowsec) -"wYq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/fiorina/lz/near_lzII) +"wYG" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/fiorina/station/power_ring) -"wYP" = ( -/obj/structure/platform, -/obj/item/clothing/gloves/botanic_leather, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8; + icon_state = "darkyellow2" }, -/area/fiorina/station/botany) -"wYT" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, +/area/fiorina/station/telecomm/lz1_cargo) +"wZn" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, /turf/open/floor/prison{ - dir = 6; - icon_state = "blue" + icon_state = "redfull" + }, +/area/fiorina/station/security) +"wZo" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/station/power_ring) -"wZt" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/civres_blue) "wZv" = ( /obj/item/stack/sheet/metal, /turf/open/floor/wood, /area/fiorina/station/park) -"wZH" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"wZN" = ( -/obj/item/reagent_container/food/drinks/bottle/melonliquor, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) -"xak" = ( -/obj/structure/closet/emcloset, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"wZE" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/fiorina/tumor/ice_lab) -"xat" = ( -/obj/item/stool, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "darkpurplefull2" }, +/area/fiorina/station/research_cells) +"wZN" = ( +/obj/item/reagent_container/food/drinks/bottle/melonliquor, +/turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"xaO" = ( -/obj/structure/reagent_dispensers/fueltank, +"xaK" = ( +/obj/structure/barricade/handrail/type_b, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/medbay) -"xbc" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/power_ring) +"xaS" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" }, +/area/fiorina/tumor/servers) +"xbq" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" + dir = 8; + icon_state = "blue" }, -/area/fiorina/station/central_ring) -"xbm" = ( -/obj/structure/machinery/line_nexter{ - id = "line2"; - pixel_x = -2 +/area/fiorina/station/civres_blue) +"xbu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/prize/honk{ + anchored = 1; + layer = 2.9; + pixel_x = -1; + pixel_y = 13 }, /obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison, -/area/fiorina/station/disco) -"xbo" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 - }, /turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"xbp" = ( -/obj/item/card/id/silver/clearance_badge/cl{ - desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; - name = "certified powerloader operator card"; - registered_name = "John Forklift" + icon_state = "floor_plate" }, +/area/fiorina/station/flight_deck) +"xbB" = ( /turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"xbr" = ( -/obj/structure/machinery/power/apc{ - dir = 4 + icon_state = "darkyellow2" }, +/area/fiorina/station/flight_deck) +"xbQ" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "green" + icon_state = "panelscorched" }, -/area/fiorina/station/transit_hub) -"xbE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, +/area/fiorina/station/civres_blue) +"xca" = ( /turf/open/floor/prison{ - icon_state = "yellowfull" + icon_state = "platingdmg2" }, -/area/fiorina/station/disco) -"xbM" = ( +/area/fiorina/station/security) +"xcf" = ( +/obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/transit_hub) "xck" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) -"xcz" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"xcS" = ( +"xcJ" = ( +/obj/structure/platform, /obj/structure/platform{ - dir = 8 + dir = 4 }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +/obj/structure/platform_decoration{ + dir = 6 }, /turf/open/floor/prison{ icon_state = "floor_plate" }, /area/fiorina/station/power_ring) -"xdb" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison, -/area/fiorina/station/lowsec) -"xdt" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 +"xdy" = ( +/turf/open/floor/prison{ + icon_state = "darkredfull2" }, -/turf/open/space/basic, /area/fiorina/oob) "xdE" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"xdL" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"xdT" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"xdZ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, +/area/fiorina/station/telecomm/lz1_tram) +"xec" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "kitchen" }, -/area/fiorina/station/lowsec) -"xei" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +/area/fiorina/station/research_cells) +"xed" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/fiorina/station/central_ring) -"xel" = ( -/obj/effect/landmark/survivor_spawner, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/prison, +/area/fiorina/station/security) +"xeh" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/tool/crowbar, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/medbay) "xew" = ( /turf/closed/shuttle/ert{ icon_state = "stan_leftengine" }, /area/fiorina/lz/near_lzI) +"xeD" = ( +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison{ + dir = 4; + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) "xeO" = ( /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"xeX" = ( +"xfd" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"xfq" = ( +/obj/effect/alien/weeds/node, /turf/open/floor/prison{ - icon_state = "platingdmg1" + dir = 9; + icon_state = "whitegreen" + }, +/area/fiorina/tumor/ice_lab) +"xfw" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison{ + dir = 4; + icon_state = "darkpurple2" }, /area/fiorina/tumor/servers) -"xfb" = ( -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"xfh" = ( -/obj/structure/barricade/wooden{ +"xfA" = ( +/obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + icon_state = "floor_plate" + }, +/area/fiorina/tumor/civres) +"xfG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"xgb" = ( +"xfR" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "darkpurple2" }, -/area/fiorina/tumor/civres) +/area/fiorina/tumor/servers) +"xfV" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/fiorina/station/botany) "xgn" = ( /obj/structure/machinery/optable, /turf/open/floor/corsat{ icon_state = "squares" }, /area/fiorina/station/medbay) +"xgr" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) "xgx" = ( /obj/structure/machinery/defenses/tesla_coil{ faction_group = list("USCM") @@ -38127,54 +37990,16 @@ name = "astroturf" }, /area/fiorina/station/park) -"xgC" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/disco) "xgF" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"xgH" = ( -/obj/item/toy/handcard/uno_reverse_blue, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"xgU" = ( -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, -/area/fiorina/tumor/servers) -"xhL" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopleft" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"xhM" = ( -/obj/structure/curtain/red, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/fiorina/station/civres_blue) -"xia" = ( -/obj/item/ammo_magazine/smg/mp5, +"xhc" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 4; + icon_state = "greenfull" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/station/transit_hub) "xiF" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light/double/blue{ @@ -38183,18 +38008,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/security) -"xiL" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"xiO" = ( -/obj/structure/machinery/vending/cigarette/free, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) "xja" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -38205,63 +38018,84 @@ /obj/structure/computerframe, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"xjM" = ( +"xjv" = ( /turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" + dir = 4; + icon_state = "cell_stripe" + }, +/area/fiorina/station/power_ring) +"xjw" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/area/fiorina/station/security) -"xkm" = ( -/obj/effect/landmark/static_comms/net_two, /turf/open/floor/prison{ - icon_state = "bluefull" + dir = 4; + icon_state = "darkyellowfull2" }, -/area/fiorina/station/power_ring) -"xkq" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 +/area/fiorina/lz/near_lzI) +"xjK" = ( +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" }, -/obj/structure/platform_decoration{ - dir = 6 +/area/fiorina/tumor/ice_lab) +"xjW" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkyellowcorners2" }, +/area/fiorina/station/telecomm/lz1_cargo) +"xkj" = ( +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/civres_blue) "xkv" = ( /turf/closed/wall/prison, /area/fiorina/station/telecomm/lz1_tram) -"xlb" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 +"xkC" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/structure/machinery/m56d_hmg/mg_turret/dropship{ + dir = 4 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + icon_state = "cell_stripe" }, -/area/fiorina/station/civres_blue) -"xlk" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" +/area/fiorina/station/central_ring) +"xkG" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + icon_state = "floor_plate" }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/civres) +"xkP" = ( +/obj/item/tool/mop, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/park) "xlp" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/wood, /area/fiorina/station/research_cells) -"xlx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/tomatosoup, +"xlq" = ( +/obj/structure/largecrate/supply, /turf/open/floor/prison{ - icon_state = "blue" + dir = 1; + icon_state = "yellow" }, -/area/fiorina/station/power_ring) +/area/fiorina/station/lowsec) "xlZ" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/pillbottles, @@ -38272,58 +38106,167 @@ icon_state = "stan27" }, /area/fiorina/oob) +"xmg" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) "xmj" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"xmC" = ( -/obj/item/device/flashlight/flare/on, +"xmH" = ( /turf/open/floor/prison{ dir = 1; - icon_state = "whitegreen" + icon_state = "green" + }, +/area/fiorina/tumor/aux_engi) +"xmM" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 }, -/area/fiorina/tumor/ice_lab) -"xmV" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 10; icon_state = "darkyellow2" }, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/lz/near_lzI) +"xmX" = ( +/obj/structure/cargo_container/grant/right{ + health = 5000; + unacidable = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "xna" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"xng" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkyellow2" + }, +/area/fiorina/station/flight_deck) "xno" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"xnt" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +"xnp" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"xnq" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/obj/item/clothing/gloves/combat, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" + dir = 10; + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/telecomm/lz1_cargo) +"xns" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"xnA" = ( +/obj/structure/curtain/red, +/turf/open/floor/prison{ + icon_state = "sterile_white" + }, +/area/fiorina/station/civres_blue) +"xnE" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/key/cargo_train, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"xnK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"xnM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"xnN" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"xnR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups, +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup"; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"xnS" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, +/area/fiorina/station/park) "xnU" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) +"xnW" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"xog" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/fiorina/station/medbay) "xoi" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"xow" = ( +"xoB" = ( +/obj/item/trash/chunk, /turf/open/floor/prison{ - dir = 4; - icon_state = "green" + dir = 10; + icon_state = "floor_plate" }, -/area/fiorina/station/chapel) +/area/fiorina/station/telecomm/lz1_cargo) +"xoF" = ( +/turf/open/floor/prison{ + dir = 9; + icon_state = "blue" + }, +/area/fiorina/station/power_ring) +"xoI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/objective, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/park) "xoK" = ( /obj/structure/closet, /obj/item/handcuffs, @@ -38331,147 +38274,138 @@ /obj/item/weapon/chainofcommand, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"xoR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/atmos_alert, +"xoQ" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"xpj" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_4" +/area/fiorina/tumor/civres) +"xpB" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +/area/fiorina/station/medbay) +"xqf" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" }, -/area/fiorina/station/central_ring) -"xpw" = ( -/obj/structure/machinery/power/apc{ - dir = 8 +/area/fiorina/tumor/aux_engi) +"xqh" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_2" }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"xpx" = ( -/obj/item/storage/belt/marine, -/turf/open/floor/prison, -/area/fiorina/station/security) -"xpM" = ( -/obj/structure/platform, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"xpO" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/area/fiorina/station/central_ring) +"xqj" = ( +/obj/structure/bed{ + icon_state = "abed" }, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 4; + icon_state = "whitepurple" }, -/area/fiorina/tumor/aux_engi) -"xqP" = ( -/obj/structure/surface/rack, -/obj/item/tool/plantspray/weeds, +/area/fiorina/station/research_cells) +"xqD" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/prison, +/area/fiorina/station/security) +"xqG" = ( +/obj/item/stack/rods, /turf/open/floor/prison{ dir = 4; - icon_state = "blue_plate" + icon_state = "greencorner" }, -/area/fiorina/station/botany) -"xqY" = ( -/obj/effect/spawner/random/tool, +/area/fiorina/station/chapel) +"xri" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"xrd" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/structure/barricade/handrail/type_b{ - dir = 4 + dir = 4; + icon_state = "yellow" }, -/turf/open/floor/prison, -/area/fiorina/tumor/servers) -"xro" = ( +/area/fiorina/station/lowsec) +"xrn" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/skills{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +/obj/effect/spawner/random/gun/pistol/lowchance, +/turf/open/floor/prison, /area/fiorina/station/power_ring) -"xrz" = ( -/obj/item/clothing/head/cmcap, +"xrs" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 + }, /turf/open/floor/prison{ - icon_state = "green" + dir = 4; + icon_state = "greenfull" }, /area/fiorina/station/transit_hub) +"xrG" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) "xrH" = ( /obj/structure/machinery/landinglight/ds2{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"xrZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"xrJ" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/tumor/aux_engi) +"xrT" = ( +/obj/structure/inflatable, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/civres_blue) -"xsh" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 +/area/fiorina/tumor/ship) +"xrU" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/transit_hub) +"xsa" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/item/bedsheet/green, /turf/open/floor/prison{ + dir = 8; + icon_state = "redcorner" + }, +/area/fiorina/station/power_ring) +"xsg" = ( +/obj/item/trash/pistachios, +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "whitegreen" + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "xst" = ( /obj/structure/platform, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"xsC" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"xsS" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"xsX" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"xtd" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/key/cargo_train, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) "xte" = ( /obj/structure/platform_decoration, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) -"xtm" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) "xtP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -38486,30 +38420,68 @@ }, /turf/open/space, /area/fiorina/oob) -"xuQ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" +"xub" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/park) +"xup" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"xuw" = ( +/obj/item/stool, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/research_cells) +"xuH" = ( +/obj/item/ammo_casing{ + icon_state = "casing_7_1" + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" }, +/area/fiorina/station/medbay) +"xvs" = ( +/obj/item/stack/rods, /turf/open/floor/prison{ dir = 10; icon_state = "sterile_white" }, +/area/fiorina/station/research_cells) +"xvt" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison{ + dir = 8; + icon_state = "whitegreen" + }, /area/fiorina/station/medbay) -"xvv" = ( -/turf/open/floor/prison, -/area/fiorina/station/botany) "xvB" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access{ name = "greenhouse airlock" }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"xvC" = ( -/obj/structure/bed/chair, +"xvD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/ricepudding, /turf/open/floor/prison{ - icon_state = "darkpurple2" + icon_state = "floor_plate" }, /area/fiorina/tumor/servers) +"xvH" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/security) "xvI" = ( /obj/structure/disposalpipe/segment{ icon_state = "delivery_outlet"; @@ -38520,14 +38492,24 @@ /obj/item/trash/eat, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"xwo" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/sprays, +"xvR" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/prison{ dir = 9; icon_state = "greenfull" }, -/area/fiorina/station/botany) +/area/fiorina/tumor/civres) +"xwi" = ( +/obj/item/explosive/grenade/phosphorus, +/obj/item/explosive/grenade/phosphorus, +/obj/item/explosive/grenade/phosphorus, +/obj/structure/surface/rack, +/obj/item/explosive/grenade/phosphorus, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) "xwt" = ( /obj/structure/bed/chair/comfy, /turf/open/organic/grass{ @@ -38535,12 +38517,49 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) +"xwy" = ( +/obj/structure/closet/firecloset, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"xwA" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6_1" + }, +/obj/item/weapon/gun/smg/mp5, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) "xwC" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/fiberbush) +"xwD" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/prison, +/area/fiorina/station/civres_blue) +"xxd" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + dir = 6; + icon_state = "darkbrown2" + }, +/area/fiorina/maintenance) +"xxh" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) "xxD" = ( /turf/open/floor/wood, /area/fiorina/station/civres_blue) +"xxE" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison{ + icon_state = "damaged3" + }, +/area/fiorina/station/security) "xxP" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "lavendergrass_2" @@ -38550,37 +38569,65 @@ name = "astroturf" }, /area/fiorina/station/civres_blue) -"xxU" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) "xxX" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gib4" }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"xyq" = ( -/obj/structure/bed/chair{ +"xyf" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_cargo) +"xyy" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth, +/turf/open/space, +/area/fiorina/oob) +"xyK" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ dir = 8 }, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"xyR" = ( +/obj/structure/bedsheetbin, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" + dir = 8; + icon_state = "yellow" }, -/area/fiorina/station/botany) -"xyw" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) +/area/fiorina/station/lowsec) +"xzb" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison{ + dir = 10; + icon_state = "sterile_white" + }, +/area/fiorina/station/medbay) "xzj" = ( /turf/open/floor/carpet, /area/fiorina/tumor/civres) +"xzr" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/prison, +/area/fiorina/maintenance) "xzs" = ( /obj/structure/machinery/space_heater, /turf/open/organic/grass{ @@ -38588,33 +38635,40 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"xzN" = ( +"xzI" = ( +/obj/item/tool/warning_cone, +/obj/structure/barricade/metal{ + dir = 8; + health = 150; + icon_state = "metal_2" + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"xzW" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/explosive/mine/pmc, +/obj/effect/spawner/random/gun/smg, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + icon_state = "yellowfull" + }, +/area/fiorina/station/lowsec) +"xAi" = ( +/obj/structure/machinery/vending/sovietsoda, /turf/open/floor/prison{ dir = 9; - icon_state = "blue" + icon_state = "greenfull" }, -/area/fiorina/station/chapel) +/area/fiorina/station/botany) "xAl" = ( /obj/structure/cargo_container/grant/right{ desc = "A huge industrial shipping container. You're not sure how it got here." }, /turf/open/space, /area/fiorina/oob) -"xAo" = ( -/obj/item/trash/cigbutt/bcigbutt, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"xAq" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) "xAs" = ( /obj/item/device/reagent_scanner, /turf/open/organic/grass{ @@ -38622,23 +38676,26 @@ name = "astroturf" }, /area/fiorina/tumor/fiberbush) -"xAY" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" - }, -/obj/effect/landmark/ert_spawns/groundside_xeno, +"xAw" = ( /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" + dir = 8; + icon_state = "sterile_white" + }, +/area/fiorina/station/lowsec) +"xAR" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/tumor/ice_lab) -"xBc" = ( -/obj/structure/barricade/wooden, /turf/open/floor/prison{ - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/park) "xBl" = ( /obj/structure/surface/table/woodentable, /obj/item/circuitboard/apc, @@ -38653,73 +38710,103 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"xBu" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/spawner/random/tool, +"xBv" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/prison, -/area/fiorina/station/power_ring) -"xBN" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; +/area/fiorina/station/lowsec) +"xBI" = ( +/turf/open/floor/prison{ + dir = 4; + icon_state = "cell_stripe" + }, +/area/fiorina/lz/near_lzII) +"xBK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; pixel_x = 1; - pixel_y = -1 + pixel_y = 10 }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"xBR" = ( +/obj/structure/machinery/light/double/blue, /turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "redfull" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/security/wardens) +"xBT" = ( +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/security/wardens) "xCa" = ( /obj/item/toy/crayon/rainbow, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"xCg" = ( -/obj/item/stack/sheet/metal, +"xCm" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 + }, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) -"xCh" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/fiorina/station/flight_deck) +"xCo" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 }, /turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "floor_plate" + }, +/area/fiorina/tumor/civres) +"xCs" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell1decal" }, -/area/fiorina/station/research_cells) -"xCp" = ( -/obj/structure/inflatable/popped, /turf/open/floor/prison{ icon_state = "whitegreen" }, /area/fiorina/station/medbay) -"xCr" = ( -/obj/structure/curtain/shower, +"xCy" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/fiorina/station/research_cells) +"xCW" = ( +/obj/structure/grille, /turf/open/floor/prison{ dir = 10; - icon_state = "kitchen" + icon_state = "sterile_white" }, -/area/fiorina/tumor/civres) -"xCv" = ( -/obj/structure/platform{ - dir = 4 +/area/fiorina/station/research_cells) +"xDe" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison{ + icon_state = "green" }, +/area/fiorina/station/chapel) +"xDg" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/station/medbay) -"xCV" = ( -/obj/item/reagent_container/food/drinks/bottle/orangejuice, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"xDk" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) "xDq" = ( /turf/closed/shuttle/ert{ icon_state = "stan20" @@ -38729,135 +38816,120 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"xEi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 +"xDz" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 }, +/turf/open/floor/prison, +/area/fiorina/station/botany) +"xDQ" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "cell_stripe" }, -/area/fiorina/station/power_ring) -"xEy" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +/area/fiorina/station/security) +"xEa" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/clothing/accessory/storage/holster, +/obj/structure/window/reinforced{ + dir = 4 }, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "redfull" }, -/area/fiorina/tumor/civres) -"xEH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/area/fiorina/station/security) +"xEE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + indestructible = 1 }, -/area/fiorina/station/medbay) -"xEW" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/clothing/head/that{ + anchored = 1; + indestructible = 1; + pixel_y = 7 }, -/area/fiorina/station/power_ring) -"xEX" = ( -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" +/turf/open/floor/plating/prison, +/area/fiorina/tumor/civres) +"xFe" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/fiorina/lz/near_lzI) +/obj/structure/platform, +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) "xFf" = ( /obj/structure/largecrate/random, /turf/open/floor/corsat{ icon_state = "plate" }, /area/fiorina/tumor/aux_engi) -"xFg" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/central_ring) -"xFJ" = ( -/obj/item/tool/soap, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"xFL" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" - }, +"xFx" = ( /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "green" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/tumor/civres) +"xFB" = ( +/obj/structure/platform, +/turf/open/floor/prison, +/area/fiorina/station/botany) "xFP" = ( /turf/closed/shuttle/ert{ icon_state = "stan_rightengine" }, /area/fiorina/lz/near_lzI) -"xGc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"xGt" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"xGY" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 }, -/area/fiorina/station/civres_blue) -"xGd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/weed{ - icon_state = "ucigoff" +/turf/open/floor/prison{ + dir = 10; + icon_state = "bright_clean_marked" }, +/area/fiorina/station/medbay) +"xHV" = ( +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/tumor/civres) +"xHY" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/lowsec) -"xGi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/area/fiorina/tumor/aux_engi) +"xIb" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.5 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 }, -/area/fiorina/tumor/civres) -"xGl" = ( -/obj/structure/barricade/wooden, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"xGr" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"xGt" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"xGD" = ( -/obj/structure/machinery/deployable/barrier, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/security) -"xHi" = ( -/obj/item/trash/candle, +/area/fiorina/tumor/ice_lab) +"xIg" = ( +/obj/structure/largecrate/supply/medicine/medivend, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "whitegreenfull" }, -/area/fiorina/station/telecomm/lz1_cargo) -"xHV" = ( -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/civres) +/area/fiorina/station/medbay) "xIh" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/double/blue{ @@ -38867,121 +38939,73 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"xIq" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/platform_decoration{ - dir = 1 - }, +"xIo" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 6; + icon_state = "darkbrown2" }, -/area/fiorina/station/disco) +/area/fiorina/station/park) "xIx" = ( /obj/structure/largecrate/random, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"xJn" = ( -/obj/structure/surface/table/reinforced/prison, +"xJg" = ( +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, /turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "floor_plate" }, -/area/fiorina/station/disco) +/area/fiorina/tumor/ice_lab) "xJw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/civres_blue) -"xJQ" = ( +"xKf" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 4; + pixel_x = 10; + pixel_y = -3 }, /turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" + dir = 4; + icon_state = "blue" }, -/area/fiorina/station/lowsec) +/area/fiorina/station/civres_blue) "xKj" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"xKA" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"xKE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/lowsec) -"xKP" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) "xKX" = ( /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"xLd" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"xLf" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibmid1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"xLi" = ( -/turf/closed/wall/prison, -/area/fiorina/tumor/ice_lab) -"xLj" = ( -/obj/item/reagent_container/food/drinks/bottle/patron, -/turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"xLn" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"xLx" = ( -/obj/item/bedsheet, +"xLa" = ( /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4; + icon_state = "whitegreen" }, -/area/fiorina/station/lowsec) -"xLD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/oob) +"xLi" = ( +/turf/closed/wall/prison, +/area/fiorina/tumor/ice_lab) +"xLI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_y = 8 }, /turf/open/floor/prison{ - icon_state = "bluefull" + icon_state = "floor_plate" }, /area/fiorina/station/power_ring) +"xLP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison{ + icon_state = "whitegreen" + }, +/area/fiorina/tumor/ice_lab) "xLQ" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -38991,17 +39015,41 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"xMp" = ( -/obj/item/trash/c_tube, +"xMg" = ( /turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 9; + icon_state = "whitegreen" }, -/area/fiorina/station/medbay) -"xMO" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) +/area/fiorina/tumor/ice_lab) +"xMs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison{ + icon_state = "bluefull" + }, +/area/fiorina/station/power_ring) +"xMN" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison{ + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/botany) +"xMR" = ( +/turf/open/floor/prison{ + dir = 1; + icon_state = "whitepurple" + }, +/area/fiorina/station/research_cells) +"xMT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "bluecorner" + }, +/area/fiorina/station/power_ring) "xMW" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -39016,13 +39064,14 @@ }, /turf/open/space, /area/fiorina/oob) -"xMX" = ( -/obj/structure/inflatable/door, +"xNf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/card/id/guest, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" + icon_state = "redfull" }, -/area/fiorina/station/medbay) +/area/fiorina/station/security) "xNg" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "2" @@ -39035,63 +39084,22 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison, /area/fiorina/station/security) -"xNn" = ( +"xNQ" = ( /obj/structure/stairs/perspective{ + dir = 8; icon_state = "p_stair_sn_full_cap" }, /obj/structure/platform{ - dir = 8 + dir = 4 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"xNw" = ( -/obj/item/fuelCell, /turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"xNG" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"xNJ" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/obj/item/frame/rack, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, /area/fiorina/station/disco) -"xNU" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"xOm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +"xOa" = ( +/obj/structure/bookcase/manuals/engineering, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/power_ring) -"xOs" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +/area/fiorina/tumor/civres) "xOE" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 @@ -39100,149 +39108,217 @@ icon_state = "plate" }, /area/fiorina/tumor/ship) -"xOU" = ( -/obj/structure/largecrate/random/case/small, +"xOI" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" + icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) -"xPk" = ( +/area/fiorina/station/flight_deck) +"xOQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"xOV" = ( +/obj/structure/machinery/gibber, /turf/open/floor/prison{ dir = 8; - icon_state = "greencorner" + icon_state = "blue_plate" }, -/area/fiorina/tumor/civres) +/area/fiorina/station/botany) "xPG" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"xQx" = ( +"xPO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison{ + dir = 1; + icon_state = "yellow" + }, +/area/fiorina/station/lowsec) +"xPX" = ( +/obj/structure/machinery/disposal, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security/wardens) -"xQC" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +/area/fiorina/station/transit_hub) +"xQb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/beaker{ + pixel_x = -5; + pixel_y = 15 }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"xRl" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5; + pixel_y = 2 }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_cargo) -"xRo" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"xRw" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison{ - dir = 1; - icon_state = "blue" + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/tumor/ice_lab) +"xQs" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" }, -/area/fiorina/station/power_ring) -"xRI" = ( /turf/open/floor/prison{ - dir = 4; + dir = 5; icon_state = "yellow" }, +/area/fiorina/station/central_ring) +"xQC" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) +"xQE" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/prison, /area/fiorina/station/lowsec) -"xRY" = ( -/obj/structure/bed{ - icon_state = "abed" +"xRg" = ( +/obj/item/trash/popcorn, +/turf/open/floor/prison{ + dir = 8; + icon_state = "blue" }, -/obj/item/card/id/visa, +/area/fiorina/station/power_ring) +"xRh" = ( /turf/open/floor/prison{ - icon_state = "whitepurple" + dir = 10; + icon_state = "whitegreen" }, -/area/fiorina/station/research_cells) -"xSz" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 +/area/fiorina/tumor/ice_lab) +"xSd" = ( +/turf/open/floor/prison{ + dir = 5; + icon_state = "blue" }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"xSM" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" +/area/fiorina/station/civres_blue) +"xSg" = ( +/obj/structure/flora/pottedplant/random, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/tumor/civres) +"xSB" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, /turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + dir = 9; + icon_state = "greenfull" + }, +/area/fiorina/station/transit_hub) +"xTa" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/station/central_ring) -"xTf" = ( -/obj/item/tool/kitchen/utensil/pspoon, /turf/open/floor/prison{ dir = 4; + icon_state = "greenblue" + }, +/area/fiorina/station/botany) +"xTe" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison{ + dir = 9; icon_state = "blue" }, /area/fiorina/station/power_ring) -"xTD" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" +"xTi" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 }, /turf/open/floor/prison{ dir = 4; - icon_state = "whitegreen" + icon_state = "darkbrown2" + }, +/area/fiorina/station/park) +"xTy" = ( +/obj/structure/barricade/deployable{ + dir = 4 }, -/area/fiorina/station/medbay) -"xTW" = ( -/obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzII) +/area/fiorina/station/security) "xUi" = ( /obj/structure/surface/rack, /obj/item/device/camera, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"xUn" = ( -/obj/structure/machinery/door/poddoor/almayer{ - density = 0; - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) "xUo" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"xUr" = ( -/obj/structure/largecrate/random/case/double, +"xUq" = ( +/obj/item/stack/barbed_wire, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 10; + icon_state = "whitegreenfull" }, -/area/fiorina/station/park) -"xVw" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/medbay) +"xUt" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/civres_blue) +"xUz" = ( /turf/open/floor/prison{ - dir = 1; + dir = 8; + icon_state = "bluecorner" + }, +/area/fiorina/station/power_ring) +"xVh" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"xVm" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/security) +"xVv" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison{ + dir = 6; icon_state = "whitepurple" }, /area/fiorina/station/research_cells) -"xVJ" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green, +"xVD" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "floor_plate" }, -/area/fiorina/maintenance) +/area/fiorina/tumor/aux_engi) "xVK" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -39254,138 +39330,118 @@ name = "astroturf" }, /area/fiorina/station/park) -"xVW" = ( +"xVP" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" + dir = 1; + icon_state = "darkyellowcorners2" }, -/area/fiorina/station/park) +/area/fiorina/station/telecomm/lz1_cargo) +"xVR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + pixel_y = 32 + }, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/fiorina/station/power_ring) "xWc" = ( /obj/item/clothing/shoes/dress, /turf/open/space, /area/fiorina/oob) -"xWE" = ( -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) -"xWG" = ( -/obj/item/weapon/twohanded/spear, +"xWp" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/prison{ dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"xWV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/phone{ - pixel_y = -4 - }, -/obj/item/phone{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/tool/pen, -/turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "whitegreenfull" }, -/area/fiorina/station/security) -"xXh" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 +/area/fiorina/tumor/ice_lab) +"xWH" = ( +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_y = 4 }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - icon_state = "redfull" + dir = 10; + icon_state = "whitegreenfull" }, /area/fiorina/station/medbay) -"xXl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/central_ring) -"xXt" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"xXY" = ( -/obj/effect/decal/cleanable/blood/oil, +"xWN" = ( +/obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/flight_deck) -"xYe" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"xXw" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/organic/grass{ + desc = "It'll get in your shoes no matter what you do."; + name = "astroturf" + }, +/area/fiorina/station/central_ring) "xYg" = ( /obj/docking_port/stationary/marine_dropship/lz2, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"xYo" = ( -/obj/structure/machinery/power/apc{ - dir = 8 - }, +"xYA" = ( /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 8; + icon_state = "blue_plate" }, -/area/fiorina/tumor/aux_engi) -"xYJ" = ( -/obj/structure/bed{ - icon_state = "abed" +/area/fiorina/station/botany) +"xYB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 }, +/obj/item/reagent_container/food/snacks/doughslice, /turf/open/floor/prison{ dir = 4; - icon_state = "whitepurple" + icon_state = "darkyellowfull2" + }, +/area/fiorina/station/flight_deck) +"xYY" = ( +/obj/item/stool, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/research_cells) -"xYN" = ( -/obj/item/device/t_scanner, /turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "bluefull" }, /area/fiorina/station/civres_blue) -"xYR" = ( -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 +"xZb" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/fiorina/station/park) +"xZk" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" }, /turf/open/floor/prison{ dir = 8; - icon_state = "blue" + icon_state = "darkyellowcorners2" }, -/area/fiorina/station/civres_blue) -"xZx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/area/fiorina/station/telecomm/lz1_cargo) +"xZo" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 }, -/area/fiorina/tumor/civres) -"xZA" = ( /turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" + icon_state = "blue" }, -/area/fiorina/station/telecomm/lz1_tram) +/area/fiorina/station/chapel) "xZD" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -39395,77 +39451,35 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"xZI" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) -"xZM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/fiorina/tumor/civres) -"xZN" = ( -/obj/item/clothing/under/shorts/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/central_ring) "xZR" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"xZU" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) -"xZV" = ( -/obj/item/trash/semki, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"yar" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"yat" = ( -/obj/item/inflatable/door, -/obj/item/inflatable/door, -/obj/item/inflatable/door, -/obj/structure/surface/rack, +"yaz" = ( +/obj/structure/platform, +/obj/structure/closet/firecloset/full, +/obj/item/paper/prison_station/inmate_handbook, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"yaC" = ( +/obj/structure/machinery/vending/cigarette/free, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/fiorina/tumor/aux_engi) "yaJ" = ( /obj/structure/machinery/vending/sovietsoda, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"yaU" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison{ + dir = 1; + icon_state = "darkbrown2" + }, +/area/fiorina/tumor/aux_engi) "yaY" = ( /obj/item/stack/sheet/metal, /turf/open/space, @@ -39490,37 +39504,64 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"ybx" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +"ybs" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison, -/area/fiorina/station/botany) +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/central_ring) +"ybR" = ( +/obj/item/stack/sheet/metal{ + amount = 5 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) "ybU" = ( /obj/structure/prop/resin_prop{ icon_state = "sheater0" }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"ycf" = ( -/obj/structure/closet/secure_closet/security_empty, +"ybY" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"ycd" = ( /turf/open/floor/prison{ - icon_state = "redfull" + icon_state = "darkbrownfull2" }, -/area/fiorina/station/security) -"ycw" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +/area/fiorina/maintenance) +"ycg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"ycj" = ( +/obj/structure/platform{ + dir = 1 }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"ycn" = ( /turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" + dir = 1; + icon_state = "darkbrowncorners2" }, -/area/fiorina/tumor/civres) +/area/fiorina/tumor/aux_engi) +"ycw" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) "ycC" = ( /turf/open/floor/plating/prison, /area/fiorina/station/chapel) @@ -39528,91 +39569,72 @@ /obj/item/storage/pouch/radio, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"ycT" = ( -/obj/structure/machinery/space_heater, +"ycN" = ( +/obj/item/tool/wrench, /turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) -"ydb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 + icon_state = "bluefull" }, +/area/fiorina/station/power_ring) +"ycX" = ( /turf/open/floor/prison, -/area/fiorina/station/civres_blue) -"ydd" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"ydK" = ( +/area/fiorina/station/telecomm/lz1_cargo) +"ydk" = ( +/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"ydQ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + icon_state = "floorscorched1" }, +/area/fiorina/station/chapel) +"ydX" = ( /turf/open/floor/prison{ - icon_state = "whitegreen" + dir = 9; + icon_state = "darkyellow2" }, -/area/fiorina/tumor/ice_lab) -"yet" = ( +/area/fiorina/station/telecomm/lz1_tram) +"ydY" = ( +/obj/structure/surface/rack, /turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 6; + icon_state = "darkbrown2" }, /area/fiorina/maintenance) -"yeA" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"yeX" = ( -/obj/structure/bed/sofa/vert/grey/top, +"yft" = ( +/obj/item/clothing/under/color/orange, /turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"yfp" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/security) +"yfB" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, +/obj/item/stack/cable_coil/blue, /turf/open/floor/prison{ dir = 10; - icon_state = "floor_plate" + icon_state = "sterile_white" }, -/area/fiorina/station/disco) -"yfA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/area/fiorina/station/medbay) +"yfC" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, /turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" + icon_state = "floor_plate" }, -/area/fiorina/station/telecomm/lz1_cargo) +/area/fiorina/lz/near_lzII) "yfE" = ( /obj/structure/disposalpipe/junction{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"yfK" = ( +"yfH" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, /turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" + icon_state = "sterile_white" }, -/area/fiorina/maintenance) +/area/fiorina/station/civres_blue) "yge" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -39626,31 +39648,10 @@ name = "astroturf" }, /area/fiorina/station/park) -"ygk" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, -/area/fiorina/station/lowsec) -"ygr" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/security) -"ygs" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) +"ygv" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "ygw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -39665,44 +39666,61 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"yhs" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/pill_bottle/dexalin/skillless, +"ygH" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" + }, /turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10; + icon_state = "sterile_white" }, /area/fiorina/station/medbay) +"ygS" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "yellow" + }, +/area/fiorina/station/disco) "yhu" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"yhJ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 - }, +"yhE" = ( +/obj/structure/machinery/vending/hydroseeds, /turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" + dir = 9; + icon_state = "greenfull" }, -/area/fiorina/station/research_cells) +/area/fiorina/station/botany) "yhR" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/medbay) -"yif" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) +"yhT" = ( +/obj/structure/largecrate/supply/ammo, +/obj/item/storage/fancy/crayons, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_plate" + }, +/area/fiorina/station/telecomm/lz1_cargo) +"yil" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/obj/item/bedsheet/green, +/turf/open/floor/prison{ + dir = 4; + icon_state = "whitegreen" + }, +/area/fiorina/station/medbay) "yio" = ( /turf/closed/shuttle/ert, /area/fiorina/tumor/aux_engi) @@ -39712,37 +39730,45 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"yiL" = ( -/obj/item/trash/cigbutt/bcigbutt, +"yiD" = ( +/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison{ icon_state = "darkredfull2" }, -/area/fiorina/station/security) -"yiR" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" +/area/fiorina/lz/near_lzI) +"yiG" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/station/civres_blue) -"yiT" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 +/turf/open/floor/prison{ + icon_state = "floor_plate" }, +/area/fiorina/station/disco) +"yjs" = ( +/obj/item/reagent_container/food/snacks/eat_bar, /turf/open/floor/prison{ dir = 10; + icon_state = "whitegreenfull" + }, +/area/fiorina/station/medbay) +"yjO" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/lz/near_lzI) -"yjW" = ( -/obj/effect/landmark/corpsespawner/ua_riot, +/area/fiorina/tumor/civres) +"yke" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/fiorina/station/research_cells) +"ykI" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/prison{ icon_state = "floor_plate" }, -/area/fiorina/station/security) -"ykw" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) +/area/fiorina/station/medbay) "ykO" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Corner" @@ -39750,42 +39776,34 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) +"ykT" = ( +/turf/open/floor/prison{ + dir = 8; + icon_state = "darkpurple2" + }, +/area/fiorina/tumor/servers) "ykX" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"yli" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/central_ring) -"ylr" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, +"ylf" = ( +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" + icon_state = "floor_plate" }, -/area/fiorina/station/research_cells) +/area/fiorina/tumor/fiberbush) +"yls" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) "ylu" = ( /obj/item/tool/wrench, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"ylW" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) (1,1,1) = {" bQM @@ -41587,12 +41605,12 @@ xHV xHV xHV xHV -lIt -swj -swj -swj -swj -swj +ejk +hDx +hDx +hDx +hDx +hDx sUl qPb qPb @@ -41793,18 +41811,18 @@ xHV xHV dXG dIo -swj +hDx dXG -gPo -vgw -eWr -gPo -oeT -gPo -eYz -gPo -eYz -iad +diP +qmd +xFx +diP +kDO +diP +qty +diP +qty +oOK sUl kVg kbT @@ -42005,18 +42023,18 @@ xHV dXG dXG dIo -swj +hDx dXG -cFT +bjx dXG -vXy -uPX -oeT -uPX -eYz -uPX -qny -uPX +oVC +lhQ +kDO +lhQ +qty +lhQ +gcr +lhQ aEi pRH qPb @@ -42217,18 +42235,18 @@ dIo dIo dXG dIo -cKb +wJa dXG -uPX +lhQ dXG -eRl -swj -lIt -swj -swj -swj -swj -qMs +vAZ +hDx +ejk +hDx +hDx +hDx +hDx +rUL sUl kbT rNc @@ -42429,16 +42447,16 @@ dXG dIo dXG dIo -swj -swj +hDx +hDx qXM -eYz -swj +qty +hDx naW sLx xHV clu -swj +hDx xHV xHV dHd @@ -42448,9 +42466,9 @@ kow tfP tfP tfP -rXt -wnD -wnD +dwk +lso +lso gmT jyM jjM @@ -42460,7 +42478,7 @@ kbT kbT kbT qPb -uyN +jTe tfP xwC xwC @@ -42636,22 +42654,22 @@ xHV xHV xHV xHV -nsD -nsD +rsz +rsz dIo dIo dIo -jsp -swj +mtm +hDx dXG -eYz -swj +qty +hDx naW xHV -xCr -jQy -jQy -jQy +omF +lKd +lKd +lKd xHV naW bQM @@ -42660,9 +42678,9 @@ bQM bQM tfP tfP -ycT -wnD -wnD +pri +lso +lso enH gmT enH @@ -42853,17 +42871,17 @@ dXG clu dXG dXG -swj -swj +hDx +hDx dXG -eYz +qty xHV naW xHV naW -sfn -jQy -bMz +uZD +lKd +wHX naW xHV xHV @@ -42873,8 +42891,8 @@ kPz kPz tfP tfP -eyi -uPi +tHh +olm qPb qPb qPb @@ -42896,11 +42914,11 @@ xwC jhG nTq gUj -tbd +xrT uXD -mYG +fSY uXD -tbd +xrT jhG kIo msn @@ -43066,18 +43084,18 @@ clu dXG dXG uVZ -swj +hDx dXG -eYz +qty xHV xHV -mlU -xCr -jQy +siR +omF +lKd lLe -jQy -jQy -dyY +lKd +lKd +pCN xHV bQM bQM @@ -43107,18 +43125,18 @@ xwC xwC xwC xwC -gBx -tbd +eOo +xrT kNN -mYG +fSY uXD -tbd -gBx +xrT +eOo cTr kbT kbT kbT -gBx +eOo xwC xwC xwC @@ -43269,7 +43287,7 @@ xHV xHV xHV xHV -swj +hDx dXG dXG dXG @@ -43278,16 +43296,16 @@ dIo dIo dIo dXG -swj +hDx lLe -eYz +qty xHV xHV naW naW -jQy +lKd lLe -jQy +lKd naW xHV xHV @@ -43318,12 +43336,12 @@ xwC qPb dnK qPb -wnD -wnD +lso +lso hLM -uQk +gdn tfP -uQk +gdn hLM pBq kbT @@ -43482,25 +43500,25 @@ xHV xHV xHV xHV -eYz +qty clu clu dIo xHV xHV -gPo -eYz -gPo -eYz +diP +qty +diP +qty dXG -swj +hDx dXG -bFL -bFL -jQy -jQy -jQy -ihn +pVw +pVw +lKd +lKd +lKd +pRn xHV xHV xHV @@ -43526,19 +43544,19 @@ qPb kbT kbT qPb -ieJ -wnD -wnD -wnD +tQn +lso +lso +lso qPb qPb kbT kbT kbT -wnD -wnD +lso +lso kbT -wnD +lso kbT kbT kbT @@ -43692,25 +43710,25 @@ xHV xHV xHV dIo -swj -swj +hDx +hDx dXG clu dXG dIo xHV -eYz -uPX -eYz -uPX -eYz -eYz -swj +qty +lhQ +qty +lhQ +qty +qty +hDx dXG -jQy -jQy -jQy -jQy +lKd +lKd +lKd +lKd xHV xHV xHV @@ -43735,13 +43753,13 @@ xwC gwH gwH qPb -wnD +lso kbT kbT -ieJ -wnD -wnD -wnD +tQn +lso +lso +lso qPb qPb qPb @@ -43904,20 +43922,20 @@ xHV xHV xHV dIo -eYz -eYz -eYz +qty +qty +qty dIo dXG -nsD -swj +rsz +hDx whu whu whu -swj -eYz -eYz -qss +hDx +qty +qty +xSg naW naW naW @@ -44116,26 +44134,26 @@ xHV xHV xHV dIo -cKb -swj -swj +wJa +hDx +hDx pwL oKq -swj -gPo -eYz -gPo -eYz -gPo -eYz -eYz -swj +hDx +diP +qty +diP +qty +diP +qty +qty +hDx naW xHV xHV -jQy -ifc -oyo +lKd +coh +nvz xHV xHV bQM @@ -44165,19 +44183,19 @@ kbT ogM kbT kbT -wnD +lso qPb qPb -wnD +lso kbT kbT -wnD -wnD +lso +lso kbT wbp qPb qPb -gBx +eOo kbT kbT kbT @@ -44324,30 +44342,30 @@ xHV xHV dXG xHV -eYz +qty xHV xHV dIo -eYz -eYz -eYz +qty +qty +qty dXG dXG -swj -uPX -eYz -uPX -eYz -uPX +hDx +lhQ +qty +lhQ +qty +lhQ dXG -eYz -swj +qty +hDx xHV xHV xHV -ihn -jQy -jQy +pRn +lKd +lKd naW naW xHV @@ -44371,20 +44389,20 @@ bQM xwC xwC xwC -wDJ +gzz qPb kbT ogM kbT kbT -wnD +lso qPb qPb -wnD -gBx +lso +eOo xwC xwC -wnD +lso xwC qPb qPb @@ -44409,9 +44427,9 @@ lHx lHx jlk jlk -tDC -hvL -tDC +sAv +sJT +sAv jlk baC baC @@ -44535,33 +44553,33 @@ xHV xHV xHV lLe -swj -eYz +hDx +qty xHV xHV dIo -swj -swj -swj +hDx +hDx +hDx dXG dXG dXG -swj +hDx xHV dIo xHV -swj +hDx dXG -eYz +qty xHV naW naW naW -uXY +ecF jSD -jQy -rjy -dyY +lKd +fDo +pCN xHV xHV kPz @@ -44586,8 +44604,8 @@ xwC xwC uXn qPb -ieJ -wnD +tQn +lso kbT kbT qPb @@ -44599,7 +44617,7 @@ xwC xwC xwC xwt -wVc +jOt qPb wfV qPb @@ -44616,14 +44634,14 @@ jlk jlk vZV vZV -mkI -lCl -uTR +syF +kZQ +nyy jlk jlk -hAI -hvL -hAI +qDG +sJT +qDG jlk jlk rZP @@ -44745,16 +44763,16 @@ tYw tYw tYw dIo -eYz -eYz -eYz +qty +qty +qty dXG -eYz -eYz -swj -eYz -eYz -eYz +qty +qty +hDx +qty +qty +qty dXG dXG xHV @@ -44762,16 +44780,16 @@ xHV xHV xHV xHV -swj -eYz -eYz +hDx +qty +qty xHV naW -lWn -xCr -jQy +mAG +omF +lKd jSD -sdE +gkd naW xHV xHV @@ -44782,12 +44800,12 @@ bQM tfP tfP tfP -gBx +eOo qPb qPb qPb qPb -gBx +eOo gwH gwH xwC @@ -44800,8 +44818,8 @@ gwH gwH xwC qPb -wnD -wnD +lso +lso kbT qPb xwC @@ -44811,33 +44829,33 @@ tfP tfP tfP xwt -lrI +mtr qPb -gBx +eOo kbT kbT -wnD -wnD -wnD -wnD -uyN +lso +lso +lso +lso +jTe xwC -cJY -qxP -uDX +fVA +gUf +gHb jlk vZV jmp -svP +aKW cyb -hAI +qDG jlk -lLS -svP -hvL -svP -hAI -tDC +uZr +aKW +sJT +aKW +qDG +sAv lHx bQM bQM @@ -44957,16 +44975,16 @@ tYw xHV xHV dIo -cKb +wJa lLe dXG -eYz +qty lLe dXG dXG -swj -swj -swj +hDx +hDx +hDx xHV xHV xHV @@ -44974,17 +44992,17 @@ xHV xHV xHV xHV -swj +hDx dXG -eYz +qty xHV naW naW naW -sfn -jQy -jQy -lFV +uZD +lKd +lKd +wAl xHV kPz kPz @@ -45025,31 +45043,31 @@ tfP xwt xwC qPb -wnD -wnD +lso +lso qPb qPb -wnD +lso kbT kbT kbT -ieJ -uzG -nMm -sia +tQn +sVP +gCX +bZF rGq -taj -lzq +hjP +euT rGq fAt -taj +hjP knh -hvL -hvL -hvL -uzi -hvL -hvL +sJT +sJT +sJT +wgH +sJT +sJT lHx bQM bQM @@ -45169,10 +45187,10 @@ tYw xHV xHV dIo -rAU -swj +mLB +hDx dXG -eYz +qty dXG dXG dXG @@ -45188,14 +45206,14 @@ xHV doD doD doD -eYz +qty xHV naW -lWn -xCr -jQy -jQy -jQy +mAG +omF +lKd +lKd +lKd xHV naW bQM @@ -45236,32 +45254,32 @@ gwH tfP dwQ dwQ -wnD +lso dwQ dwQ -wnD +lso dwQ dwQ kbT dwQ dwQ ogM -uzG +sVP lyf -svP +aKW rOI -taj -taj -taj -taj -taj +hjP +hjP +hjP +hjP +hjP knh -svP -svP -hvL -svP -hAI -myK +aKW +aKW +sJT +aKW +qDG +pxu lHx bQM bQM @@ -45382,32 +45400,32 @@ xHV xHV dIo dIo -rAU -swj -eYz -swj -swj +mLB +hDx +qty +hDx +hDx dXG -oev -eYz -eYz +xvR +qty +qty dIo -nsD +rsz qgB qoG dIo dXG dXG dXG -eYz +qty ame -swj +hDx naW naW xHV -swj +hDx dXG -swj +hDx xHV dHd kow @@ -45418,15 +45436,15 @@ gwH tfP gwH gwH -gBx +eOo qPb rNc qPb qPb -gBx +eOo qPb qPb -gBx +eOo gwH tfP kow @@ -45446,34 +45464,34 @@ ycK qPb qPb qPb -wnD -wnD +lso +lso qPb -wnD -wnD -wnD +lso +lso +lso uXn -wnD -wnD -wnD -wnD +lso +lso +lso +lso ogM -uzG -nMm +sVP +gCX uNM -taj +hjP rGq -lSb -vbV +mbc +aFn jlk -taj +hjP knh rGq -svP -hvL -svP -taj -nvK +aKW +sJT +aKW +hjP +oVn rZP bQM baC @@ -45599,37 +45617,37 @@ dIo dIo xHV xHV -swj +hDx dXG -swj -swj +hDx +hDx dIo dIo xHV avY dIo dXG -nsD +rsz dXG -gPo -eWr -swj -ftb -swj -swj -swj -swj -swj -swj +diP +xFx +hDx +sRg +hDx +hDx +hDx +hDx +hDx +hDx sUl qPb dnK dnK qPb gwH -gBx +eOo gwH -gBx +eOo xzs qPb qPb @@ -45658,10 +45676,10 @@ qPb fpB kbT kbT -wnD -lZo -wnD -wnD +lso +kIF +lso +lso xwC xwC xwC @@ -45670,8 +45688,8 @@ ogM ogM ogM xwC -uzG -nMm +sVP +gCX uNM yhu yhu @@ -45681,10 +45699,10 @@ uNM jlk jlk rZP -ble -hvL -svP -taj +xVD +sJT +aKW +hjP dpH jlk baC @@ -45812,10 +45830,10 @@ xHV xHV xHV dIo -eYz -eYz -eYz -nsD +qty +qty +qty +rsz xHV xHV xHV @@ -45823,16 +45841,16 @@ xHV dXG dXG dXG -cFT -xPk -eWr -gPo -eYz -gPo -eYz -gPo -eYz -gPo +bjx +tQq +xFx +diP +qty +diP +qty +diP +qty +diP sUl qPb qPb @@ -45844,7 +45862,7 @@ qPb qPb qPb qPb -tsH +mEg kbT qPb qPb @@ -45878,26 +45896,26 @@ xwC xwC xwC xwC -wnD -wnD -wnD +lso +lso +lso ogM -uzG -dMt -wsz -wsz -wsz -wsz -wsz -wsz +sVP +piL +peY +peY +peY +peY +peY +peY jlk jlk rZP -ble -hvL -svP -taj -hNU +xVD +sJT +aKW +hjP +hlq jlk baC baC @@ -46024,9 +46042,9 @@ xHV xHV xHV dIo -swj -swj -swj +hDx +hDx +hDx dXG xHV xHV @@ -46035,16 +46053,16 @@ xHV xHV xHV xHV -uPX -ntc -vXy -uPX -eYz -uPX -eYz -uPX -eYz -uPX +lhQ +fpp +oVC +lhQ +qty +lhQ +qty +lhQ +qty +lhQ sUl qPb qPb @@ -46094,21 +46112,21 @@ kbT kbT kbT ogM -oHm -mLY +jVH +bEn qbd -mLY -mLY -mLY -mLY -mLY -bZD -nMm +bEn +bEn +bEn +bEn +bEn +ycn +gCX rZP -ble -hvL -svP -taj +xVD +sJT +aKW +hjP dxE jlk baC @@ -46219,9 +46237,9 @@ xHV xHV xHV dXG -xGi -swj -xGi +pty +hDx +pty xHV xHV xHV @@ -46238,7 +46256,7 @@ xHV dIo dXG qXM -swj +hDx xHV gCE xHV @@ -46247,16 +46265,16 @@ xHV xHV xHV xHV -sIC +bby dXG qXM -swj -eYz -eYz -eYz -swj -swj -swj +hDx +qty +qty +qty +hDx +hDx +hDx sUl qPb cwB @@ -46299,27 +46317,27 @@ xwC xwC xwC xwC -uyN +jTe qPb qPb kbT kbT qPb jCA -svP +aKW fpn fpn -svP +aKW fpn fpn -svP +aKW lyf -uzG -ddY +sVP +stX rZP jlk -hvL -svP +sJT +aKW bfF rGq rZP @@ -46430,10 +46448,10 @@ xHV xHV xHV xHV -nsD -rqC -swj -rqC +rsz +fBP +hDx +fBP xHV xHV xHV @@ -46450,25 +46468,25 @@ xHV dIo dXG dXG -swj +hDx xHV xHV xHV xHV xHV dXG -swj -swj -sIC +hDx +hDx +bby dXG dXG -swj -eYz +hDx +qty xHV xHV xHV xHV -swj +hDx dHd kow kow @@ -46476,8 +46494,8 @@ kow tfP tfP tfP -sig -sig +ylf +ylf qPb qPb qPb @@ -46486,7 +46504,7 @@ qPb qPb xzs gwH -gBx +eOo tfP tfP kow @@ -46512,7 +46530,7 @@ xwC qPb qPb qPb -wnD +lso qPb kbT kbT @@ -46525,13 +46543,13 @@ jlk jlk jlk jlk -svP -uzG -nMm +aKW +sVP +gCX rZP jlk jlk -svP +aKW bfF rGq rZP @@ -46638,14 +46656,14 @@ xHV xHV xHV xHV -eYz -eYz -eYz -eYz -swj -xGi -swj -rqC +qty +qty +qty +qty +hDx +pty +hDx +fBP xHV xHV xHV @@ -46659,10 +46677,10 @@ dIo dIo dIo dIo -swj +hDx dXG -eYz -swj +qty +hDx xHV xHV xHV @@ -46674,9 +46692,9 @@ dXG dXG dXG dXG -swj -eYz -stC +hDx +qty +lsf xHV xHV xHV @@ -46689,13 +46707,13 @@ bQM tfP tfP kPY -jkw +cnU rNc qPb qPb qPb qPb -gBx +eOo gwH gwH gwH @@ -46722,11 +46740,11 @@ gwH xwC qPb qPb -wnD +lso kbT kbT kbT -wnD +lso kbT gwH gwH @@ -46737,13 +46755,13 @@ rZP rZP jlk jlk -mJc -jFz -aik +bMd +hIo +iDE rZP jlk jlk -svP +aKW bfF rGq lHx @@ -46849,46 +46867,46 @@ jXz xHV xHV xHV -eYz -swj -swj -swj -eYz +qty +hDx +hDx +hDx +qty dXG -rqC +fBP dXG -rqC -nsD -swj -swj +fBP +rsz +hDx +hDx nIc cmP dIo xHV xHV xHV -swj -swj -swj -swj -swj +hDx +hDx +hDx +hDx +hDx dXG dXG -swj +hDx xHV xHV xHV xHV dXG dXG -swj -sIC -sIC -swj +hDx +bby +bby +hDx dXG -swj -eYz -eYz +hDx +qty +qty xHV xHV xHV @@ -46901,7 +46919,7 @@ bQM bQM tfP kPY -sig +ylf xzs qPb qPb @@ -46933,12 +46951,12 @@ qPb gwH gwH qPb -wnD +lso kbT kbT kbT kbT -qJr +lmV qPb gwH gwH @@ -46949,9 +46967,9 @@ xKj jlk jlk jlk -svP -uzG -nMm +aKW +sVP +gCX rZP jlk jlk @@ -47052,56 +47070,56 @@ agi aWV agi jXz -tbG -ach +ezr +gks jXz -peA -tbG +vjH +ezr jXz -cPs +kPe xHV xHV -pXt -swj -swj -swj -eYz +nIn +hDx +hDx +hDx +qty dXG -rqC +fBP dXG dXG dXG dXG vwt -bxE +xCo yis dIo -swj -swj -swj -eYz -eYz +hDx +hDx +hDx +qty +qty dXG -eYz -eYz -eYz -eYz +qty +qty +qty +qty dXG xHV xHV xHV -nsD +rsz dXG dXG dXG xHV -nsD +rsz xHV -nsD -swj -eYz -eYz -eYz +rsz +hDx +qty +qty +qty xHV xHV xHV @@ -47114,12 +47132,12 @@ xHV tfP tfP kPY -mnr -hSG -hSG -hSG -hSG -mnr +bxW +gFe +gFe +gFe +gFe +bxW uNM uNM rZP @@ -47143,8 +47161,8 @@ kPY kbT kbT kbT -wnD -wnD +lso +lso kbT kbT kbT @@ -47159,11 +47177,11 @@ xKj jlk xKj rGq -kXs +jhi rGq -svP -uzG -ddY +aKW +sVP +stX rZP jlk jlk @@ -47264,33 +47282,33 @@ agi agi agi jXz -oiF -ach +eOH +gks jXz -dyh -gve +hng +jnr jXz -cPs +kPe xHV xHV -eYz -swj -swj -swj -eYz +qty +hDx +hDx +hDx +qty dXG lLe dXG dXG dXG dXG -swj +hDx lbt dXG -nsD +rsz dXG dXG -eYz +qty dXG qXM dXG @@ -47299,10 +47317,10 @@ dXG dXG dXG lLe -eYz -swj +qty +hDx xHV -swj +hDx dXG lLe dXG @@ -47310,11 +47328,11 @@ clu dXG clu dXG -swj -oev -eYz -eYz -rki +hDx +xvR +qty +qty +hCT xHV xHV pqC @@ -47327,36 +47345,36 @@ dIo uNM uNM uNM -hvL -hvL -hvL -hvL +sJT +sJT +sJT +sJT uNM uNM uNM uNM -taj -taj -taj -taj -taj -taj -taj -taj -pLj -taj -iQJ -tZk -tZk -tZk -tZk -iQJ +hjP +hjP +hjP +hjP +hjP +hjP +hjP +hjP +rth +hjP +mrn +qzy +qzy +qzy +qzy +mrn uNM -qJr +lmV kbT -qJr +lmV kbT -wnD +lso kbT kbT qPb @@ -47373,12 +47391,12 @@ xKj rGq rGq bDU -svP -mYy -nMm +aKW +yaU +gCX rZP jlk -kXs +jhi rGq osX rGq @@ -47477,24 +47495,24 @@ agi agi jXz jXz -jPY +gKu jXz -jPY +gKu jXz jXz -jHz +fGb xHV xHV -eYz -eYz -eYz -eYz +qty +qty +qty +qty dXG -swj -rqC -swj -rqC -nsD +hDx +fBP +hDx +fBP +rsz dXG dXG lbt @@ -47504,30 +47522,30 @@ dXG dXG dXG dXG -rAU -swj -eYz -swj +mLB +hDx +qty +hDx dXG eHD dXG dXG dXG -eYz -sIC +qty +bby qXM dXG dXG xHV dXG xHV -nsD -swj -eYz -eYz -eYz -swj -rki +rsz +hDx +qty +qty +qty +hDx +hCT xHV naW naW @@ -47539,15 +47557,15 @@ xHV jlk uNM uNM -uzG +sVP rGq rOI -dMt -wsz -wsz -iRn -wsz -qxP +piL +peY +peY +ppO +peY +gUf rGq rGq rGq @@ -47557,12 +47575,12 @@ rZP xKj xKj xKj -svP -svP -svP -svP -svP -svP +aKW +aKW +aKW +aKW +aKW +aKW jlk tfP kbT @@ -47585,9 +47603,9 @@ xKj rGq rGq rGq -svP -uzG -nMm +aKW +sVP +gCX jlk jlk rGq @@ -47681,31 +47699,31 @@ agi aWV agi agi -lvD +lwK agi agi agi agi mjx -dDT -pjg -gir -pjg -gir -pjg -dDT -pjg -gir +eda +eQR +efz +eQR +efz +eQR +eda +eQR +efz dXG -swj -swj -swj +hDx +hDx +hDx dXG xHV -swj -rqC -swj -rqC +hDx +fBP +hDx +fBP dXG wKE dXG @@ -47714,33 +47732,33 @@ dXG dXG dXG dXG -swj -rAU +hDx +mLB dIo -rqC -rqC +fBP +fBP dIo dIo dIo obI -dxP +wlz dXG -eYz +qty dXG dXG -sIC -swj -nsD +bby +hDx +rsz dXG dXG dXG -swj -eYz -eYz -eYz -swj -swj -swj +hDx +qty +qty +qty +hDx +hDx +hDx xHV xHV xHV @@ -47751,30 +47769,30 @@ xHV jlk uNM uNM -uzG +sVP fpn fpn -taj +hjP fpn -taj +hjP fpn fpn -nMm -uDX +gCX +gHb rGq rGq -svP -svP -svP -jWg +aKW +aKW +aKW +jEf jlk -jWg -svP -svP -svP -svP -uDX -svP +jEf +aKW +aKW +aKW +aKW +gHb +aKW jlk jlk jlk @@ -47797,15 +47815,15 @@ xKj rGq rGq gJu -heA -tmI -nMm +joy +fBg +gCX rGq knh rGq rGq -bfF -rGq +ycw +hjP jlk baC baC @@ -47893,21 +47911,21 @@ agi agi agi agi -rbv -aeb -otg -dLL +cBU +wNw +ykT +uhd hoZ mjx -gir -mDn -gir -mDn -gir -mDn -gir -mDn -gir +efz +fLq +efz +fLq +efz +fLq +efz +fLq +efz dXG dXG dXG @@ -47915,9 +47933,9 @@ dXG xHV xHV xHV -rqC -swj -rqC +fBP +hDx +fBP dXG dXG dXG @@ -47927,34 +47945,34 @@ lLe dXG dXG dXG -eYz -rqC -rqC -iYJ +qty +fBP +fBP +aae dIo -kKt -rqC +aat +fBP dCu -eYz +qty dXG dXG dXG dXG -sIC +bby dIo dIo -nsD +rsz dIo dIo -swj -eYz -eYz -eYz -gPo -eYz -gPo -byJ -eWr +hDx +qty +qty +qty +diP +qty +diP +nsg +xFx xHV dIo naW @@ -47963,32 +47981,32 @@ xHV jlk uNM uNM -oHm -mLY -arG -mLY -mLY -mLY -mLY -bZD -nMm -svP -svP -svP -svP -svP -svP -jWg -jWg -dZj -tcB -xtm -tcB -hvL -svP -svP -svP -svP +jVH +bEn +gPO +bEn +bEn +bEn +bEn +ycn +gCX +aKW +aKW +aKW +aKW +aKW +aKW +jEf +jEf +jDj +awF +xHY +awF +sJT +aKW +aKW +aKW +aKW jlk rGq rGq @@ -48009,15 +48027,15 @@ rGq rGq rGq jFl -svP -fAr -nMm +aKW +xgr +gCX rGq knh -taj +hjP pWO -tuk -wky +nse +pgH jlk baC baC @@ -48105,74 +48123,74 @@ agi agi agi hoZ -igc -jnU -nUS -oiV -lvD -jHz -gNJ +dpE +uTX +dPC +nBV +lwK +fGb +ege mjx mjx -gNJ +ege mjx mjx -gNJ +ege mjx mjx -rAU -swj -swj -swj +mLB +hDx +hDx +hDx xHV xHV xHV -hgh -swj -rqC -nsD -swj -swj -bxE +jDX +hDx +fBP +rsz +hDx +hDx +xCo dXG dXG dXG dXG -eYz +qty lLe -rqC -nKo -jri +fBP +vIF +pyW dIo -fCF -wfo +tML +iQu dIo -swj -eYz +hDx +qty dXG -swj -swj +hDx +hDx xHV dIo -vzT -rPd -vlN +iHn +fqZ +hoY dIo -iNk -eYz -eYz -eYz -uPX -eYz -uPX -sze -lgH -swj +qWB +qty +qty +qty +lhQ +qty +lhQ +tzj +lvs +hDx dIo naW xHV xHV -iaE +geU amF amF amF @@ -48181,26 +48199,26 @@ amF amF amF amF -iaE -uzG -nMm -uDX -svP -uDX -svP -svP -uDX -jWg +geU +sVP +gCX +gHb +aKW +gHb +aKW +aKW +gHb +jEf jlk -dZj -wjC -wsz -tzW -hvL -uDX -svP -uDX -svP +jDj +qnq +peY +qQf +sJT +gHb +aKW +gHb +aKW rGq rGq rGq @@ -48216,19 +48234,19 @@ rZP jlk jlk rGq -nYE +kgP rGq rGq rGq gJu -heA -tmI -nMm -svP +joy +fBg +gCX +aKW knh rGq -hlT -bfF +dkR +ycw jlk jlk baC @@ -48317,40 +48335,40 @@ agi agi agi hoZ -rbv -jCe -hrw -ddN -lvD +cBU +vco +wVK +uFX +lwK mjx -gir -pjg -gir -pjg -gir -pjg -gir -pjg -gir +efz +eQR +efz +eQR +efz +eQR +efz +eQR +efz doD doD doD xHV xHV -rqC -rqC -rqC -swj -rqC -swj +fBP +fBP +fBP +hDx +fBP +hDx xHV xHV nIc dXG -nsD +rsz dXG dXG -eYz +qty nib dIo dIo @@ -48359,32 +48377,32 @@ dIo dIo dIo dIo -bbU -eYz +cua +qty dXG -swj +hDx xHV xHV dIo -ojW -rqC -eGO +xfA +fBP +uIu dIo dIo dIo dIo dIo dIo -swj -swj -uPX -vXy -byJ -byJ -byJ -eWr -xHV -iaE +hDx +hDx +lhQ +oVC +nsg +nsg +nsg +xFx +xHV +geU amF fjX jXZ @@ -48393,28 +48411,28 @@ jXZ jXZ lZf amF -iaE -uzG -nMm -hvL -hvL -hvL -hvL -hvL -hvL -dZj -dZj -dZj -tmI -pnx -mSZ -hvL -hvL -hvL -svP -svP +geU +sVP +gCX +sJT +sJT +sJT +sJT +sJT +sJT +jDj +jDj +jDj +fBg +ePx +lYc +sJT +sJT +sJT +aKW +aKW rGq -taj +hjP rGq rGq knh @@ -48422,21 +48440,21 @@ bfF rGq rGq rGq -svP +aKW jlk rZP daK rGq rGq -svP +aKW rGq rGq rGq wcP -svP -uzG -nMm -svP +aKW +sVP +gCX +aKW jlk jlk rZP @@ -48529,30 +48547,30 @@ agi agi agi hoZ -lvD -lvD -lvD -dSM -lvD +lwK +lwK +lwK +dCl +lwK mjx -qph -mDn -gir -mDn -gir -mDn -iZm -mDn -gir +egY +fLq +efz +fLq +efz +fLq +kur +fLq +efz hoZ -jHz -swj +fGb +hDx xHV xHV -swj -swj -swj -swj +hDx +hDx +hDx +hDx xHV xHV xHV @@ -48562,25 +48580,25 @@ cmP dIo dXG dXG -eYz -eYz +qty +qty dCu -rqC -wgs +fBP +eaL dIo -tle -rqC +gol +fBP dCu -eYz +qty dXG dXG dXG dXG dXG dXG -rqC -hbn -swj +fBP +aZU +hDx dIo xHV xHV @@ -48588,14 +48606,14 @@ xHV xHV dIo dIo -qoc -eYz -eYz -swj +hSF +qty +qty +hDx whu -srt -lgH -pIw +tLT +lvs +xoQ amF amF hiO @@ -48606,25 +48624,25 @@ kZS hiO amF amF -uZu -dMt -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -tnw -taj -nMm -wsz -qxP -hvL -svP -svP +vNx +piL +peY +peY +peY +peY +peY +peY +peY +peY +peY +oiR +hjP +gCX +peY +gUf +sJT +aKW +aKW rGq rGq rGq @@ -48634,21 +48652,21 @@ bfF rGq rGq rGq -svP +aKW rZP rZP rGq rGq rGq -svP -svP +aKW +aKW fpn fpn -ace -svP -uzG -nMm -svP +mcG +aKW +sVP +gCX +aKW jlk jlk rZP @@ -48739,32 +48757,32 @@ agi agi agi agi -nub +gEF pCX -lvD -aeb -otg -dLL -lvD +lwK +wNw +ykT +uhd +lwK jXz jXz -nub +gEF gLv jXz -jPY +gKu jXz jXz -aDc +liX hoZ -lLQ -jHz -sIC +njx +fGb +bby xHV -rqC -swj -rqC -rqC -rqC +fBP +hDx +fBP +fBP +fBP xHV xHV xHV @@ -48772,27 +48790,27 @@ xHV nIc yis dIo -ody +fuF dXG dXG dXG dIo -rqC -uWA +fBP +gaZ dIo -bbp -iQj +mAB +hLt dIo -kVW -swj -eYz +mii +hDx +qty dXG -swj +hDx xHV dIo -qBS -sHL -swj +uPg +ctJ +hDx dIo dXG dXG @@ -48800,14 +48818,14 @@ xHV xHV xHV dIo -qoc -gPo -eWr -swj -swj -ifm -vXy -swj +hSF +diP +xFx +hDx +hDx +nEs +oVC +hDx pyK sXi pyK @@ -48818,25 +48836,25 @@ rGq pyK sXi pyK -uzG -taj +sVP +hjP fpn fpn -taj +hjP fpn fpn -taj +hjP fpn fpn -taj -ajZ -taj -nMm -nOy -nMm -hvL -svP -svP +hjP +qUp +hjP +gCX +ruE +gCX +sJT +aKW +aKW rGq rGq jlk @@ -48846,21 +48864,21 @@ vsT rGq rGq rGq -svP -hlk -xiO +aKW +mhW +yaC rGq bDU rGq -wsz -wsz -wsz -wsz -cBG -sVW -hgD -nMm -svP +peY +peY +peY +peY +qzW +nqs +crH +gCX +aKW okT jlk rZP @@ -48953,28 +48971,28 @@ aWV hoZ hoZ hoZ -kCS -jnU -nUS -oiV -lvD -jHz +dBY +uTX +dPC +nBV +lwK +fGb erl hoZ hoZ jXz -ach +gks agi jXz agi -lLQ -lLQ -jHz -swj +njx +njx +fGb +hDx xHV -rqC -swj -rqC +fBP +hDx +fBP dIo dIo dIo @@ -48984,10 +49002,10 @@ xHV nIc dIo dIo -qoc +hSF dXG dXG -dxP +wlz dIo dIo dIo @@ -48995,16 +49013,16 @@ dIo dIo dIo dIo -cbE +xEE dXG -eYz +qty dXG -swj +hDx xHV dIo -rAU -tCv -teI +mLB +hgz +yjO dIo xHV mfe @@ -49012,14 +49030,14 @@ xHV xHV xHV dIo -qoc -eYz -eYz -ntc -ntc -vXy -eYz -eYz +hSF +qty +qty +fpp +fpp +oVC +qty +qty sXi fpn sXi @@ -49030,25 +49048,25 @@ rGq sXi fpn sXi -uzG -ugk -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -uzG -taj -nMm -mLY -aJv -hvL -svP -svP +sVP +hxC +bEn +bEn +bEn +bEn +bEn +bEn +bEn +bEn +bEn +sVP +hjP +gCX +bEn +lwG +sJT +aKW +aKW rGq rGq knh @@ -49059,20 +49077,20 @@ oDe rGq rGq rGq -svP -hvL +aKW +sJT rGq rGq rGq -mLY -mLY -mLY -mLY -oIE -uaM -hzL -aJv -svP +bEn +bEn +bEn +bEn +ftY +nIq +uNX +lwG +aKW rGq jlk rZP @@ -49163,14 +49181,14 @@ bQM bQM aWV cVQ -nub +gEF hoZ -lvD -jCe -hrw -ddN -lvD -jHz +lwK +vco +wVK +uFX +lwK +fGb hoZ hoZ agi @@ -49179,14 +49197,14 @@ agi agi agi agi -lLQ -lLQ -jHz -jHz -jHz -rqC -swj -rqC +njx +njx +fGb +fGb +fGb +fBP +hDx +fBP dIo tYw tYw @@ -49196,9 +49214,9 @@ xHV qgi xHV xHV -fBr +gGG dXG -eYz +qty dXG xHV xHV @@ -49209,10 +49227,10 @@ dXG dXG dXG egL -eYz +qty qXM dXG -swj +hDx dIo dIo dXG @@ -49224,14 +49242,14 @@ xHV xHV dIo dIo -qoc -gPo -eWr -vdJ -byJ -eWr -eYz -eYz +hSF +diP +xFx +igA +nsg +xFx +qty +qty sXi fpn sXi @@ -49242,26 +49260,26 @@ rGq sXi fpn sXi -uzG -nMm -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -tmI -pnx -mSZ -hvL -hvL -hvL -svP +sVP +gCX +sJT +sJT +sJT +sJT +sJT +sJT +sJT +sJT +sJT +fBg +ePx +lYc +sJT +sJT +sJT +aKW rGq -taj +hjP boe jlk rGq @@ -49271,20 +49289,20 @@ rGq rGq rGq rGq -svP -hvL +aKW +sJT rGq rGq rGq -svP +aKW rZP -svP -svP -jtM -fAr -mSZ -svP -svP +aKW +aKW +ezb +xgr +lYc +aKW +aKW rGq jlk rZP @@ -49377,11 +49395,11 @@ aWV pCX hoZ hoZ -dSM -lvD -hbt -lvD -lvD +dCl +lwK +dQA +lwK +lwK hoZ hoZ hoZ @@ -49392,13 +49410,13 @@ gQK agi aWV aWV -jHz +fGb hoZ hoZ hoZ -rqC -swj -rqC +fBP +hDx +fBP dIo tYw tYw @@ -49408,42 +49426,42 @@ xHV qgi xHV xHV -fBr +gGG dXG -eYz +qty dXG -swj +hDx xHV -swj -eYz -eYz -eYz -eYz +hDx +qty +qty +qty +qty dXG dXG dXG dXG -eYz -swj +qty +hDx dXG -swj -eYz -rAU +hDx +qty +mLB dIo dIo dIo dIo dIo dIo -swj -dUf -eYz -eYz -swj +hDx +rMg +qty +qty +hDx whu -xPk -eWr -swj +tQq +xFx +hDx sXi sXi sXi @@ -49454,24 +49472,24 @@ rGq sXi sXi sXi -uzG -nMm -uDX -svP -uDX -svP -svP -uDX -svP -uDX -hvL -fAr -rsU -lIA -hvL -uDX -svP -uDX +sVP +gCX +gHb +aKW +gHb +aKW +aKW +gHb +aKW +gHb +sJT +xgr +gjX +uZM +sJT +gHb +aKW +gHb rGq rGq jlk @@ -49482,20 +49500,20 @@ knh knh jlk jlk -svP -svP -hvL +aKW +aKW +sJT rGq rGq rGq -htD +jmy rZP jDR rGq -svP -uzG -nMm -svP +aKW +sVP +gCX +aKW rGq rGq rGq @@ -49587,13 +49605,13 @@ bQM bQM aWV hoZ -nub +gEF hoZ -lvD -aeb -otg -dLL -lvD +lwK +wNw +ykT +uhd +lwK jXz oED hoZ @@ -49603,14 +49621,14 @@ agi gQK agi agi -lLQ -jHz +njx +fGb hoZ pCX hoZ -rqC -bdE -rqC +fBP +dsv +fBP dIo dIo dIo @@ -49623,39 +49641,39 @@ xHV xHV dXG dXG -eYz +qty dXG -eYz +qty dXG dXG lLe dXG dXG -vLX -eYz -eYz -eYz -eYz +muB +qty +qty +qty +qty dXG dXG dXG -eYz -swj -qdC -swj +qty +hDx +vFQ +hDx whu -swj +hDx whu -swj -dUf -swj -gPo -vUF -swj -swj -swj -lgH -pIw +hDx +rMg +hDx +diP +tIK +hDx +hDx +hDx +lvs +xoQ amF amF hiO @@ -49666,23 +49684,23 @@ nPA hiO amF amF -uZu -nMm -svP -fAS -svP -svP -svP -svP -svP -svP -hvL -tmI -pnx -mSZ -hvL -svP -svP +vNx +gCX +aKW +xrJ +aKW +aKW +aKW +aKW +aKW +aKW +sJT +fBg +ePx +lYc +sJT +aKW +aKW rGq rGq jlk @@ -49692,22 +49710,22 @@ jlk bfF rGq rGq -mMk +jEG rZP rZP -msF -sMX -svP -svP -dZo -dae +qNm +myg +aKW +aKW +gvT +eev rZP rGq rGq -svP -uzG -nMm -svP +aKW +sVP +gCX +aKW rGq oyd rGq @@ -49801,31 +49819,31 @@ aWV cVQ hoZ pCX -lvD -jnU -nUS -oiV -lvD +lwK +uTX +dPC +nBV +lwK jXz hoZ -jHz -nub +fGb +gEF gVx hro jor jXz hoZ -lLQ -jHz +njx +fGb oED hoZ hoZ -rqC -swj -rqC -rqC -rqC -rqC +fBP +hDx +fBP +fBP +fBP +fBP pqC bQM bQM @@ -49833,8 +49851,8 @@ bQM pqC xHV xHV -swj -swj +hDx +hDx dXG dXG dXG @@ -49846,29 +49864,29 @@ dXG dXG dXG xHV -eYz -eYz -gPo -eYz -gPo -eYz -gPo -eYz -gPo -eYz -gPo -eYz -gPo -eYz -gPo -bhW -lgH -gPo -cPC -eWr -oJY -swj -wLT +qty +qty +diP +qty +diP +qty +diP +qty +diP +qty +diP +qty +diP +qty +diP +hcb +lvs +diP +foZ +xFx +rNF +hDx +taX amF aXn jXZ @@ -49877,22 +49895,22 @@ jXZ jXZ qCW amF -iaE -oHm -aJv -svP -svP -dVR -svP -svP -svP -svP -uDX -hvL -uzG -taj -nMm -hvL +geU +jVH +lwG +aKW +aKW +oem +aKW +aKW +aKW +aKW +gHb +sJT +sVP +hjP +gCX +sJT uNM yhu uNM @@ -49900,11 +49918,11 @@ jlk jlk jlk jlk -uEY +uwI kpp rGq rGq -snW +nUF rZP rZP rZP @@ -49917,8 +49935,8 @@ rZP rGq rGq rGq -uzG -nMm +sVP +gCX rGq lzJ lzJ @@ -50011,33 +50029,33 @@ agi agi aWV hoZ -nub +gEF hoZ -lvD -jCe -hrw -ddN -lvD -nub -jHz -jHz +lwK +vco +wVK +uFX +lwK +gEF +fGb +fGb jXz hhL hro jqs -nub +gEF hoZ -lLQ -jHz -jHz -jHz -jHz -rqC -swj -swj -swj -swj -rqC +njx +fGb +fGb +fGb +fGb +fBP +hDx +hDx +hDx +hDx +fBP pqC bQM bQM @@ -50045,42 +50063,42 @@ bQM pqC xHV xHV -swj +hDx dXG -swj -xEy -swj -swj -xgb -rqC -rqC -swj -swj -xHV -xHV -xHV -eYz -uPX -eYz -uPX -eYz -uPX -eYz -uPX -eYz -uPX -eYz -uPX -eYz -uPX -sze -lgH -uPX -gLV -enx -eWr +hDx +xkG +hDx +hDx +jcg +fBP +fBP +hDx +hDx +xHV +xHV +xHV +qty +lhQ +qty +lhQ +qty +lhQ +qty +lhQ +qty +lhQ +qty +lhQ +qty +lhQ +tzj +lvs +lhQ +aUM +lsl +xFx apw -wLT +taX amF amF amF @@ -50089,34 +50107,34 @@ amF amF amF amF -iaE +geU jlk jlk jlk -svP -svP -svP -svP -bcz -svP +aKW +aKW +aKW +aKW +nRI +aKW jlk -hvL -uzG -taj -nMm -hvL +sJT +sVP +hjP +gCX +sJT yhu -tMS +jlJ jlk jlk jlk jlk jlk -uEY +uwI vsT rGq rGq -uha +amj rZP jlk jlk @@ -50134,7 +50152,7 @@ jlk ctc lzJ lzJ -oPU +uGM lzJ lzJ hUi @@ -50225,14 +50243,14 @@ aWV jXz jXz hoZ -lvD -lvD -lvD -lvD -lvD +lwK +lwK +lwK +lwK +lwK jXz jXz -jHz +fGb agi gQK agi @@ -50245,11 +50263,11 @@ aWV aWV aWV aWV -rqC -rqC -wgq -swj -rqC +fBP +fBP +ngk +hDx +fBP pqC bQM bQM @@ -50263,34 +50281,34 @@ dIo dIo dIo dIo -rAU -eYz -eYz -rAU -sIC +mLB +qty +qty +mLB +bby xHV xHV xHV xHV xHV -tiY +fGY dXG -eYz -swj -qdC -swj +qty +hDx +vFQ +hDx whu -swj +hDx whu -swj -dUf -swj -uPX -vXy -udj -swj -cRx -vts +hDx +rMg +hDx +lhQ +oVC +dKN +hDx +jUy +hDq apw apw amF @@ -50305,18 +50323,18 @@ amF rZP rZP rZP -uDX -oTy -oTy +gHb +qGX +qGX rZP rZP jlk jlk -hvL -uzG -taj -nMm -hvL +sJT +sVP +hjP +gCX +sJT uNM jlk jlk @@ -50328,7 +50346,7 @@ rZP jDR rGq rGq -ugm +pry jlk jlk jlk @@ -50340,13 +50358,13 @@ rGq rGq rGq rGq -kXs +jhi jlk jlk jlk lzJ lzJ -oPU +uGM lzJ lzJ lzJ @@ -50436,14 +50454,14 @@ rmu aWV vOP aWV -jHz -jHz -jHz -oxv -wxY -oxv -jHz -jHz +fGb +fGb +fGb +ipy +iSG +ipy +fGb +fGb hoZ hoZ mJq @@ -50458,10 +50476,10 @@ pab pnS aWV agi -swj -rqC -swj -rqC +hDx +fBP +hDx +fBP tYw xHV xHV @@ -50475,34 +50493,34 @@ dIo dIo dIo dIo -swj -rqC -rqC -swj +hDx +fBP +fBP +hDx xHV xHV xHV xHV xHV xHV -swj -odC -iGw -rAU +hDx +tZS +qUx +mLB dIo dIo dIo kUj kUj kUj -swj -dUf -eYz -eYz -swj +hDx +rMg +qty +qty +hDx whu -swj -orV +hDx +qWO mZo apw amF @@ -50516,19 +50534,19 @@ amF amF amF rZP -afW -taj -taj -taj -lhJ +qzS +hjP +hjP +hjP +bHY jlk rZP jlk -kZl -uzG -taj -nMm -dkz +rhK +sVP +hjP +gCX +vqZ jlk jlk jlk @@ -50552,7 +50570,7 @@ rGq oyd rGq rGq -kXs +jhi jlk jlk jlk @@ -50563,7 +50581,7 @@ fyO lzJ lzJ lzJ -tkj +cdD irB irB baC @@ -50641,15 +50659,15 @@ agi agi aWV jXz -lLQ -hWv -lLQ -jHC +njx +rpe +njx +tYx jXz pPG jXz hoZ -jHz +fGb hoZ gFg hoZ @@ -50659,38 +50677,38 @@ hoZ hoZ hoZ hoZ -nub -qxy -gir -nub -gir -qxy -nub -gir -gir -nub +gEF +jEl +efz +gEF +efz +jEl +gEF +efz +efz +gEF pCX -swj -rqC -eRl -rqC -swj -gyA +hDx +fBP +vAZ +fBP +hDx +diX xHV xHV xHV -nsD -swj -swj +rsz +hDx +hDx dIo -swj -tMU -swj +hDx +uST +hDx tYw xHV -eYz -eYz -swj +qty +qty +hDx xHV xHV xHV @@ -50699,24 +50717,24 @@ xHV xHV dIo dIo -dOk -wwa +jit +wFo dIo -krb -krb -swj -swj +xOa +xOa +hDx +hDx kUj kUj xHV -uPX -vXy -kzs -ntc -tKN -vXy +lhQ +oVC +gWT +fpp +bln +oVC apw -wLT +taX amF amF amF @@ -50725,26 +50743,26 @@ amF amF amF amF -iaE +geU jlk mHR -olk -xtd -taj -taj -pdP +oBd +xnE +hjP +hjP +bBX jlk rZP jlk -kZl -uzG -taj -nMm -aHJ +rhK +sVP +hjP +gCX +sVM jlk jlk -xNw -xNw +iqt +iqt jlk jlk umy @@ -50771,11 +50789,11 @@ jlk lzJ lzJ lzJ -eVK +xAR lzJ lzJ lzJ -tkj +cdD lzJ irB irB @@ -50852,14 +50870,14 @@ agi agi aWV jXz -lLQ -lLQ -lLQ -lLQ -lLQ -lvD -efI -lvD +njx +njx +njx +njx +njx +lwK +vTB +lwK hoZ hoZ hoZ @@ -50882,26 +50900,26 @@ hoZ pCX hoZ hoZ -nub -rqC -swj -rqC -swj -sPJ -swj -nsD -nsD -swj +gEF +fBP +hDx +fBP +hDx +jje +hDx +rsz +rsz +hDx qXM -swj -iwZ +hDx +sFI lLe -eYz -eYz +qty +qty fJj -swj -rqC -rqC +hDx +fBP +fBP qXM xHV xHV @@ -50910,25 +50928,25 @@ tYw tYw tYw dIo -tss -rqC -rqC -rqC -eYz -rqC -rqC -rqC -eYz +pcD +fBP +fBP +fBP +qty +fBP +fBP +fBP +qty kUj kUj -eYz -vLX -byJ -byJ -xZM +qty +muB +nsg +nsg +iKf apw -swj -wLT +hDx +taX amF fjX jXZ @@ -50937,27 +50955,27 @@ jXZ jXZ lZf amF -iaE +geU xFf rZP rZP -oTy -oTy -oTy +qGX +qGX +qGX rZP rZP rZP jlk jlk -uzG -taj -nMm -hvL -kXs -gQL -taj -taj -taj +sVP +hjP +gCX +sJT +jhi +rLb +hjP +hjP +hjP knh rGq rGq @@ -50988,7 +51006,7 @@ irB uYx lzJ lzJ -oer +ajK plu lzJ irB @@ -51063,15 +51081,15 @@ bQM agi agi rmu -qGy -lLQ -lLQ -lLQ -lLQ -lLQ -lvD -bez -lvD +cBY +njx +njx +njx +njx +njx +lwK +vTT +lwK hoZ hoZ gGx @@ -51095,26 +51113,26 @@ hoZ hoZ hoZ hoZ -loj -swj -rqC +hGZ +hDx +fBP jRk -fcg -swj -swj -eRl +nnx +hDx +hDx +vAZ dXG lLe dXG qXM dXG -eYz -eYz +qty +qty dXG -swj -eYz -eYz -swj +hDx +qty +qty +hDx xHV xHV tYw @@ -51122,24 +51140,24 @@ tYw tYw tYw dIo -rNV +qnK xzj kdK xzj -rqC +fBP xzj xzj xzj -rqC +fBP xHV kUj -uPX -vXy -swj -swj -swj -lgH -pIw +lhQ +oVC +hDx +hDx +hDx +lvs +xoQ amF amF hiO @@ -51153,24 +51171,24 @@ amF bDx jlk jlk -taj -taj -taj -pdP +hjP +hjP +hjP +bBX rZP kbb rZP jlk jlk -stf -nMm -hvL -svP -svP -svP -svP -svP -mJc +whp +gCX +sJT +aKW +aKW +aKW +aKW +aKW +bMd rGq rGq rGq @@ -51200,7 +51218,7 @@ irB irB lzJ lzJ -oer +ajK lzJ lzJ lzJ @@ -51275,15 +51293,15 @@ bQM agi agi rmu -lLQ -lLQ -lLQ -lLQ -lLQ -lLQ -lvD -uMZ -lvD +njx +njx +njx +njx +njx +njx +lwK +vZc +lwK hoZ hoZ fqF @@ -51307,51 +51325,51 @@ hoZ hoZ hoZ pCX -rqC -swj -rqC -rqC -rqC -rqC -gxR +fBP +hDx +fBP +fBP +fBP +fBP +sIQ dXG -swj +hDx dXG -nsD +rsz dIo -eWA -eYz -eWA +moJ +qty +moJ dIo -swj -rqC -rqC -swj -guU +hDx +fBP +fBP +hDx +uIG xHV tYw tYw tYw tYw dIo -xZx +wfy xzj xzj xzj -rqC +fBP xzj xzj xzj xHV xHV kUj -eYz -eYz -swj +qty +qty +hDx whu -ifm -vXy -swj +nEs +oVC +hDx pyK sXi pyK @@ -51362,27 +51380,27 @@ rGq pyK sXi pyK -kCH -qxP -hvL -hvL -hvL -veP +ncn +gUf +sJT +sJT +sJT +pOm fmY -xYo -hvL +aao +sJT jlk jlk jlk -taj -nMm -hvL -hvL -hvL -uxd -hvL -svP -mJc +hjP +gCX +sJT +sJT +sJT +iAL +sJT +aKW +bMd rGq bDU rGq @@ -51393,30 +51411,30 @@ rZP rZP jlk jlk -rur -oPU -oPU -voi +uvi +uGM +uGM +jUI fjr jgu jgu jgu irB -oer +ajK lzJ lzJ -oPU +uGM mCA irB irB irB irB -tkj +cdD lzJ lzJ lzJ fyO -oPU +uGM irB irB irB @@ -51487,17 +51505,17 @@ agi agi agi rmu -mVO -lLQ -lLQ -lLQ -lLQ -odl +cEf +njx +njx +njx +njx +lvJ jXz pPG jXz -jHz -jHz +fGb +fGb hoZ vjT gFg @@ -51520,25 +51538,25 @@ hoZ hoZ hoZ lLe -swj -swj -swj -swj -swj -rqC +hDx +hDx +hDx +hDx +hDx +fBP xHV -nsD +rsz xHV xHV dIo -eWA -eYz -eWA +moJ +qty +moJ dIo -cKb -eYz -eYz -pIw +wJa +qty +qty +xoQ tYw tYw tYw @@ -51546,24 +51564,24 @@ tYw tYw tYw dIo -cTx +rdX xzj xzj xzj -rqC +fBP xzj xzj dXG xHV xHV dIo -uPX -vXy -ntc -ntc -vXy -eYz -eYz +lhQ +oVC +fpp +fpp +oVC +qty +qty sXi fpn sXi @@ -51574,26 +51592,26 @@ rGq sXi fpn sXi -uzG -dMt -wsz -uMm -wsz +sVP +piL +peY +cJa +peY ddM iQK ddM -wsz -wsz -ruu -wsz -taj -dMt -wsz -wsz -wsz -qxP -hvL -svP +peY +peY +bST +peY +hjP +piL +peY +peY +peY +gUf +sJT +aKW jlk jlk jlk @@ -51605,17 +51623,17 @@ dxE rZP jlk jlk -vxI -oPU -oPU -voi -bBB +tdo +uGM +uGM +jUI +iZA jgu jgu jgu -pvz -oer -oPU +nsn +ajK +uGM lzJ lzJ irB @@ -51623,9 +51641,9 @@ irB irB irB irB -tkj -oer -pIA +cdD +ajK +iSh lzJ lzJ lzJ @@ -51634,7 +51652,7 @@ irB irB irB irB -gOd +iAO wbI itN baC @@ -51699,9 +51717,9 @@ agi agi aWV jXz -lvD -lvD -lvD +lwK +lwK +lwK jXz aWV aWV @@ -51719,63 +51737,63 @@ hoZ hoZ hoZ hoZ -nub -qxy -gir -nub -qxy -gir -nub -qxy -gir -nub +gEF +jEl +efz +gEF +jEl +efz +gEF +jEl +efz +gEF agi hoZ dXG -jEz -swj -swj -swj -swj -rqC +fon +hDx +hDx +hDx +hDx +fBP dIo tYw xHV xHV dIo -eWA -ycw -eWA +moJ +oGm +moJ dIo -bnM -rqC -rqC -swj +iPZ +fBP +fBP +hDx tYw -vel -lAQ +gto +qNS tYw tYw tYw dIo -tss -rqC -rqC -rqC -eYz +pcD +fBP +fBP +fBP +qty xHV -rqC +fBP xHV xHV xHV -swj -eYz -eYz -byJ -byJ -eWr -eYz -eYz +hDx +qty +qty +nsg +nsg +xFx +qty +qty sXi fpn sXi @@ -51786,30 +51804,30 @@ rGq sXi fpn sXi -uzG -ugk -mLY -inO -mLY -mEY -nWh -ugk -mLY -mLY -oGg -mLY -mLY -mLY -mLY -bZD -svP -nMm -hvL -svP -iXV +sVP +hxC +bEn +kCg +bEn +ajh +ihC +hxC +bEn +bEn +aQM +bEn +bEn +bEn +bEn +ycn +aKW +gCX +sJT +aKW +dro jlk jlk -kXs +jhi rGq rGq rGq @@ -51817,16 +51835,16 @@ rGq rZP jlk jlk -xUr -oPU -oPU -wgO -wgO -wgO +lrC +uGM +uGM +xub +xub +xub vhB -wgO -tkj -oer +xub +cdD +ajK lzJ lzJ irB @@ -51835,18 +51853,18 @@ irB irB irB irB -tkj -oer +cdD +ajK irB irB lzJ lzJ -oPU +uGM irB irB irB -hub -uiD +nfI +vHK wbI itN baC @@ -51911,9 +51929,9 @@ agi agi sSY ruJ -lZs -evd -rWQ +ocS +psO +qew ruJ sSY aWV @@ -51945,11 +51963,11 @@ agi agi xHV xHV -rqC -rqC -rqC -rqC -rqC +fBP +fBP +fBP +fBP +fBP dIo xHV xHV @@ -51959,14 +51977,14 @@ dIo dIo dIo dIo -rqG -kLz -kLz -bNE -bNE -bNE -bNE -rqG +cDj +rIX +rIX +gma +gma +gma +gma +cDj xJw xJw rja @@ -51979,15 +51997,15 @@ egv egv egv egv -bNE +gma apf -uPX -vXy -swj -uXP -xPk -eWr -swj +lhQ +oVC +hDx +vkM +tQq +xFx +hDx sXi sXi sXi @@ -51998,27 +52016,27 @@ rGq sXi sXi sXi -oHm -aJv +jVH +lwG jlk jlk -gmN -uzG -taj -nMm -hvL +mWi +sVP +hjP +gCX +sJT jlk jlk jlk -veP -hvL -hvL -uzG -taj -nMm -hvL -svP -yif +pOm +sJT +sJT +sVP +hjP +gCX +sJT +aKW +tMP jlk jlk aHg @@ -52029,17 +52047,17 @@ cye jlk jlk jlk -xUr -oPU -oPU -wgO -wgO -wgO +lrC +uGM +uGM +xub +xub +xub vhB -wgO -tkj -oer -oPU +xub +cdD +ajK +uGM lzJ irB irB @@ -52047,18 +52065,18 @@ irB irB irB irB -tkj -oer -oPU -oPU -oPU -oPU -oPU -oPU -oPU -oPU -tkj -gOd +cdD +ajK +uGM +uGM +uGM +uGM +uGM +uGM +uGM +uGM +cdD +iAO qkg itN baC @@ -52123,25 +52141,25 @@ agi agi aWV jXz -lvD -lvD -lvD +lwK +lwK +lwK jXz jXz jXz jXz -kME -kME -imN +uwP +uwP +dmu jXz -lvD -lLQ +lwK +njx hoZ hoZ hoZ hoZ -jHz -jHz +fGb +fGb hoZ aWV aWV @@ -52157,48 +52175,48 @@ agi agi xJw xJw -gAh +eWu apf apf bvY apf -gAh +eWu egv -rqG -bNE -bNE -bNE -bNE -pQs -pQs -pQs -pQs -bNE -bNE -raL -rty -iXJ -raL -rqG +cDj +gma +gma +gma +gma +bfZ +bfZ +bfZ +bfZ +gma +gma +nAr +gbD +rVZ +nAr +cDj xJw rja -uvZ +vub apf apf -uvZ +vub egv egv egv egv egv -bNE +gma xna -eYz -eYz -swj -swj -swj -lgH +qty +qty +hDx +hDx +hDx +lvs rZP amF amF @@ -52215,25 +52233,25 @@ jlk jlk jlk jlk -uzG -taj -nMm -cHK +sVP +hjP +gCX +eyM jlk jlk jlk jlk -aKN -hvL -uzG -taj -nMm -hvL +jXB +sJT +sVP +hjP +gCX +sJT jlk jlk jlk jlk -kXs +jhi rGq rGq rGq @@ -52241,36 +52259,36 @@ rGq jlk jlk jlk -vxI -oPU -oPU -voi -vcN +tdo +uGM +uGM +jUI +waP jgu jgu jgu -bxm -oer -oPU -vQC -oPU -jls +rxh +ajK +uGM +rON +uGM +qDy irB irB irB irB -tkj -uWO -gSX -gSX -oTT -oPU -oPU -oPU -gAn -oPU -tkj -oer +cdD +teH +oAV +oAV +tsQ +uGM +uGM +uGM +lRI +uGM +cdD +ajK jFO itN itN @@ -52334,85 +52352,85 @@ agi agi agi aWV -rqY -hFC -lLQ -lLQ -lvD -lLQ -lLQ -lLQ -lvD -fuw -lLQ -lLQ -lvD -lLQ +cxl +cOq +njx +njx +lwK +njx +njx +njx +lwK +dfz +njx +njx +lwK +njx hoZ hoZ hoZ hoZ hoZ -jHz -jHz +fGb +fGb agi agi agi agi hoZ -jHz -qFs +fGb +eEo agi agi agi aWV aWV xJw -gAh -oEi -kyF -kyF -xDk +eWu +dUs +iOt +iOt +uAv apf -bNE -bNE -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -rKA -qCk -cvd -rRz -cjG +gma +gma +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +qPT +ddE +qwJ +eTn +mbN xJw rja -bNE -yiR +gma +xbQ xna -bNE +gma egv egv egv egv apf apf -wUs -odC -vXy -ntc -ntc -ntc -vXy +vsc +tZS +oVC +fpp +fpp +fpp +oVC rZP -iaE +geU amF aXn jXZ @@ -52421,68 +52439,68 @@ jXZ jXZ qCW amF -iaE +geU lev jlk jlk -oOp -xpO -uzG -taj -nMm +mpO +evc +sVP +hjP +gCX jlk jlk jlk jlk jlk jlk -hvL -uzG -taj -khd -hvL +sJT +sVP +hjP +oYX +sJT jlk jlk jlk rZP -mWO -svP +ofo +aKW rGq rGq rGq jlk jlk rZP -lwA -oPU -oPU -voi +sRk +uGM +uGM +jUI xck jgu oCe jgu -tkj -oer -oPU -uKE -oPU -rsg -kDa +cdD +ajK +uGM +pWH +uGM +tdZ +oPC irB jgu jgu -cPL -uCX +rZh +dMc jgu jgu -hcY -wgO -gqM -gSX -gSX -oTT -tkj -oer +dxd +xub +qyB +oAV +oAV +tsQ +cdD +ajK vLH itN aju @@ -52546,34 +52564,34 @@ agi agi agi aWV -rRg -lLQ -lLQ -lLQ -lvD -lLQ -lLQ -lLQ -lvD -lLQ -lLQ -lLQ -lvD -otg -dLL -agi -nub +cBB +njx +njx +njx +lwK +njx +njx +njx +lwK +njx +njx +njx +lwK +ykT +uhd +agi +gEF hoZ hoZ -jHz -jHz +fGb +fGb agi agi agi agi agi -jHz -qFs +fGb +eEo agi jXz jXz @@ -52581,48 +52599,48 @@ aWV aWV xJw xJw -nhM +tik mMH aBs -cOj -pQs +gFG +bfZ apf -pQs -pQs -pQs -pQs -xLj -pQs -pQs -pQs -pQs -pQs -pQs -pQs -raL -wND -imp -raL -bNE +bfZ +bfZ +bfZ +bfZ +gEe +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +nAr +mXY +qJJ +nAr +gma rja rja -bNE +gma apf apf -wUs -uvZ +vsc +vub egv -uvZ +vub apf -yiR +xbQ apf -bNE -eYz -eYz +gma +qty +qty tYw -swj -swj -swj +hDx +hDx +hDx uNM uNM uNM @@ -52636,74 +52654,74 @@ amF uNM uNM uNM -taj -oOp -xpO -hBf -taj -nMm +hjP +mpO +evc +kKZ +hjP +gCX jlk jlk jlk jlk jlk jlk -wuN -jFz +wVu +hIo jlk -aik -wuN +iDE +wVu jlk jlk jlk rZP -uci -svP +aBk +aKW rGq rGq rGq -bjR -mvY +ivM +nhi glG -voi -oPU -oPU -voi +jUI +uGM +uGM +jUI oPZ jgu oCe jgu -tkj -oer -oPU -rsg -kDa -sTU +cdD +ajK +uGM +tdZ +oPC +war jgu kXD jgu qOW -mWs -dCK +lDe +ofF chT jgu -cPL -sTm -uCX +rZh +qPC +dMc jgu jgu -hcY -tkj -oer -xVW -oyT -oyT -oyT -uaL +dxd +cdD +ajK +hhy +vwc +vwc +vwc +fuA qNv -sUt +iVt jgu -veJ +hMg irB baC baC @@ -52758,21 +52776,21 @@ agi agi agi aWV -oLK -lLQ -lLQ -lLQ -lvD -lLQ -lLQ -lLQ -lvD -lLQ -lLQ -lLQ -lvD -lLQ -oiV +jJh +njx +njx +njx +lwK +njx +njx +njx +lwK +njx +njx +njx +lwK +njx +nBV jXz hoZ hoZ @@ -52785,7 +52803,7 @@ agi agi hoZ hoZ -qFs +eEo egv xJw xJw @@ -52793,110 +52811,110 @@ xJw xJw xJw rja -nhM +tik dGx kLI -cOj -pQs -pQs -qGP -pQs -pQs -pQs -pQs -pQs -gAh -pQs -pQs -pQs -gAh -pQs -pQs -pQs -pQs -pQs -bNE +gFG +bfZ +bfZ +mJe +bfZ +bfZ +bfZ +bfZ +bfZ +eWu +bfZ +bfZ +bfZ +eWu +bfZ +bfZ +bfZ +bfZ +bfZ +gma apf apf -yiR -bNE +xbQ +gma apf apf apf apf apf apf -bNE -bNE +gma +gma apf -gPo +diP qXM -rAU +mLB tYw tYw dXG uNM -qjR +avf uNM -eUo -wXy -taj +pYh +elY +hjP uNM -taj -wXy -eUo +hjP +elY +pYh uNM uNM uNM -taj -vaC -hvL -uzG -taj -hpn -hvL +hjP +xqf +sJT +sVP +hjP +uWg +sJT jlk jlk jlk jlk -svP -hvL -uzG -wIp -nMm -hvL -svP +aKW +sJT +sVP +sVi +gCX +sJT +aKW jlk jlk rZP -mJg -svP +wHE +aKW rGq rGq rGq -svP -nTV +aKW +shC glG -voi -oPU -oPU -voi -ktq +jUI +uGM +uGM +jUI +nGI jgu jgu jgu -bxm -oer -oPU -uLf +rxh +ajK +uGM +btz jgu kXD jgu wbI wbI wbI -tkj -oer +cdD +ajK wbI eVf wnu @@ -52904,16 +52922,16 @@ wnu dqE tNV kXD -hcY -tkj -oer +dxd +cdD +ajK lzJ -mtG -tiZ -tiZ -tiZ +mEc +bDN +bDN +bDN qNv -cbA +xZb jgu irB irB @@ -52970,21 +52988,21 @@ agi agi agi aWV -rqY -lLQ -lLQ -lLQ -lvD -lLQ -lLQ -lLQ -lvD -lLQ -lLQ -lLQ -lvD -hrw -ddN +cxl +njx +njx +njx +lwK +njx +njx +njx +lwK +njx +njx +njx +lwK +wVK +uFX jXz agi agi @@ -52996,8 +53014,8 @@ hoZ agi agi hoZ -jHz -jHz +fGb +fGb egv xJw xJw @@ -53005,119 +53023,119 @@ xJw xJw xJw rja -lge -sWe -sWe -lRr +xSd +vky +vky +dOs apf -pQs -pQs -pQs -pQs -pQs -bNE -aPO -bNE -bNE -bNE -aPO -bNE -pQs -pQs -pQs -pQs -pQs -pQs -wUs +bfZ +bfZ +bfZ +bfZ +bfZ +gma +iht +gma +gma +gma +iht +gma +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +vsc hSH apf -wUs -unA +vsc +hyz apf apf apf -bNE -bNE +gma +gma apf egv egv -nwT -pLS -fTd -taj -taj -taj -taj -svP -svP -svP -svP -svP -svP -svP -svP -svP -hvL -bUt -taj -taj -hvL -uxd -uzG -cDb -nMm -hvL +xmH +rQF +fyA +hjP +hjP +hjP +hjP +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +sJT +foV +hjP +hjP +sJT +iAL +sVP +jah +gCX +sJT jlk jlk jlk -svP -svP -hvL -uzG -wIp -nMm -hvL -svP +aKW +aKW +sJT +sVP +sVi +gCX +sJT +aKW jlk jlk jlk -kXs +jhi rGq rGq rGq rGq -svP -siE +aKW +sCB glG -xUr -oPU -oPU -wgO -wgO -wgO +lrC +uGM +uGM +xub +xub +xub vhB -wgO -tkj -oer -rsg -sTU +xub +cdD +ajK +tdZ +war kXD oRR dLq -xVW -oyT -oyT -oWw -exI -oyT -oyT -ijt +hhy +vwc +vwc +oTU +mkB +vwc +vwc +aNn wbI wbI lzJ kXD -hcY -tkj +dxd +cdD lzJ irB lzJ @@ -53183,24 +53201,24 @@ agi agi aWV aWV -cYV -fUz -edu +rCO +iJE +qit aWV jXz jXz jXz aWV -cYV -fUz -mIf +rCO +iJE +dEI jXz -otg -dLL +ykT +uhd jXz agi agi -jHz +fGb hoZ hoZ idi @@ -53208,25 +53226,25 @@ hoZ agi agi hoZ -jHz -jHz +fGb +fGb rja rja rja rja rja rja -rqG -pQs -pQs +cDj +bfZ +bfZ apf -pQs -pQs -bNE -bNE -bNE -bNE -bNE +bfZ +bfZ +gma +gma +gma +gma +gma rja rja rja @@ -53234,15 +53252,15 @@ rja rja rja rja -rqG -bNE -pQs -pQs -pQs -pQs -pQs -qwK -unA +cDj +gma +bfZ +bfZ +bfZ +bfZ +bfZ +hOW +hyz rja rja xJw @@ -53253,43 +53271,43 @@ apf egv egv egv -cYI -tpF -gFW -taj -taj -taj -svP -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL -hvL +tbC +wUA +fmU +hjP +hjP +hjP +aKW +sJT +sJT +sJT +sJT +sJT +sJT +sJT +sJT +sJT +sJT +sJT +sJT +sJT +sJT uNM -jFz -wIp -aik +hIo +sVi +iDE uNM -whl -vmT -fxL -svP -svP -hvL -uzG -wIp -nMm -hvL -svP +whL +nSa +tqM +aKW +aKW +sJT +sVP +sVi +gCX +sJT +aKW jlk jlk jlk @@ -53301,36 +53319,36 @@ rGq jlk jlk rZP -aIB -bFC -oPU -wgO -wgO -wgO +pmM +cFn +uGM +xub +xub +xub vhB -wgO -tkj -oer -uLf +xub +cdD +ajK +btz jgu jgu wbI wbI -tkj -gZM -tiZ -oJd -tiZ -tiZ -wCI -oer +cdD +oGT +bDN +twd +bDN +bDN +gqH +ajK wbI wbI wbI kXD -hcY -mPX -tiZ +dxd +iFj +bDN irB irB wbI @@ -53395,30 +53413,30 @@ aWV aWV jXz jXz -eim -lLQ -orB +cQG +njx +qkk jXz -pgx -pgx -pgx +olT +olT +olT jXz -eim -lLQ -orB +cQG +njx +qkk gKi -lLQ -oiV +njx +nBV jXz agi agi agi -jHz +fGb hoZ -jNw -rqA -rqA -skG +ied +kdG +kdG +lEI hoZ cto hoZ @@ -53428,12 +53446,12 @@ rja rja rja rja -fLX -pQs -pQs -pQs -pQs -bNE +xWN +bfZ +bfZ +bfZ +bfZ +gma rja rja vVi @@ -53448,15 +53466,15 @@ xUi rja rja rja -aPO -bNE -pQs -pQs -pQs -pQs +iht +gma +bfZ +bfZ +bfZ +bfZ apf -bNE -rqG +gma +cDj rja xJw xJw @@ -53468,11 +53486,11 @@ egv jlk jlk jlk -svP -taj -taj -svP -hvL +aKW +hjP +hjP +aKW +sJT uNM sgw vFi @@ -53486,26 +53504,26 @@ sgw vFi yhu uNM -hvL -uzG -taj -hpn -hvL -hvL -hvL -hvL -hvL -hvL -hvL +sJT +sVP +hjP +uWg +sJT +sJT +sJT +sJT +sJT +sJT +sJT jlk jlk -nMm -hvL -svP +gCX +sJT +aKW jlk jlk jlk -kXs +jhi rGq rGq rGq @@ -53516,31 +53534,31 @@ jlk irB irB irB -lwA -ktq +sRk +nGI jgu jgu jgu -bxm -uWO -sTU +rxh +teH +war kXD wbI jcv djf -tkj -oer -hPi -jUG -jUG -oKf -lxT -alP +cdD +ajK +sel +qjc +qjc +pAO +hoN +bWE wbI jcv wbI kXD -oCn +vOp wHl wbI irB @@ -53605,53 +53623,53 @@ agi agi aWV aWV -pbv -pbv -lvD -lLQ -oiV -pbv -jHz -rWt -jHz -pbv -lvD -lLQ -oiV +cvf +cvf +lwK +njx +nBV +cvf +fGb +pkp +fGb +cvf +lwK +njx +nBV gKi -hrw -ddN +wVK +uFX jXz agi agi agi agi hoZ -iuN +iMm krn kJS -mcH +lMM hoZ -jHz -jHz +fGb +fGb egv xJw xJw xJw xJw rja -wKl -pQs -pQs -xCV -pQs -cjG +wwZ +bfZ +bfZ +iJJ +bfZ +mbN rja -wfc -jYK -jYK -jYK -jYK +gRV +bMr +bMr +bMr +bMr mDz toE mDz @@ -53662,16 +53680,16 @@ eTC rja rja rja -bNE -pQs -pQs -pQs -pQs -pQs -pQs -bNE -bNE -cjG +gma +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +gma +gma +mbN rja xJw xJw @@ -53680,41 +53698,41 @@ egv jlk bQM lHx -dRs -jrN -ltA -riP -hvL -kCH -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -nwv -nVR -sUV -taj -dMt -uMm -wsz -wsz -wsz -wsz +ezz +cyL +ubk +hAY +sJT +ncn +peY +peY +peY +peY +peY +peY +peY +peY +peY +peY +peY +hwn +xxh +eUk +hjP +piL +cJa +peY +peY +peY +peY jlk jlk jlk jlk -nMm -hvL -svP -svP +gCX +sJT +aKW +aKW jlk jlk rGq @@ -53728,35 +53746,35 @@ jlk irB itN irB -xUr +lrC xck jgu itN jgu -tkj -bcT +cdD +jqg jgu jgu jBQ bvK dLq -tkj -oer +cdD +ajK pGK jfd hRX mjB -tkj -oer +cdD +ajK jBQ oRR dLq jgu jgu -hcY +dxd wbI -tkj -oer +cdD +ajK lzJ wbI irB @@ -53817,19 +53835,19 @@ agi aWV aWV jXz -pbv -pbv -lvD +cvf +cvf +lwK hoZ -lvD -pbv -vwD -jHz -lvD -pbv -lvD -lvD -lvD +lwK +cvf +cQX +fGb +lwK +cvf +lwK +lwK +lwK gKi gKi gKi @@ -53839,13 +53857,13 @@ agi agi agi hoZ -iuN +iMm ksV kNW -mcH +lMM hoZ -jHz -jHz +fGb +fGb rja xJw xJw @@ -53853,17 +53871,17 @@ xJw xJw rja rja -bNE -bNE -pQs -pQs -bNE +gma +gma +bfZ +bfZ +gma rja rja -kAc -mIQ -hDb -jYK +tqN +jre +woI +bMr xxD xxD xxD @@ -53875,15 +53893,15 @@ xxD hHq rja rja -bNE -pQs -pQs -pQs -oEi -kyF -kyF -xDk -bNE +gma +bfZ +bfZ +bfZ +dUs +iOt +iOt +uAv +gma rja rja rja @@ -53892,45 +53910,45 @@ egv bQM bQM lHx -qjh -taj +jay +hjP dlA -svP -hvL -uzG -taj -taj -taj -taj -taj -taj -taj -taj -taj -taj -taj -mJc -taj -taj -taj -taj -taj -stf -taj -taj +aKW +sJT +sVP +hjP +hjP +hjP +hjP +hjP +hjP +hjP +hjP +hjP +hjP +hjP +bMd +hjP +hjP +hjP +hjP +hjP +whp +hjP +hjP jlk jlk jlk jlk jlk jlk -hvL -svP -svP +sJT +aKW +aKW rGq knh -hvL -svP +sJT +aKW rGq rGq jlk @@ -53945,30 +53963,30 @@ irB jgu itN jgu -tkj -sRE +cdD +iDo jgu anu wbI rBz wbI -tkj -oer +cdD +ajK pGK hRX pzh sQL -nez -oer +vbY +ajK wbI rBz wbI qkg jgu -sBf +snq wbI -tkj -oer +cdD +ajK wbI vtl irB @@ -54029,48 +54047,48 @@ agi jXz jXz jXz -otg -lLQ -lLQ -otg -otg -otg +ykT +njx +njx +ykT +ykT +ykT gzb -otg -otg -otg +ykT +ykT +ykT wRg -otg -otg -otg +ykT +ykT +ykT gzb wRg gzb -otg -otg -otg -otg +ykT +ykT +ykT +ykT hoZ -vHo -lIj -uQJ -uOC -jHz -jHz -bNE -ydb -pQs +iWy +kty +kOb +iaO +fGb +fGb +gma +blb +bfZ xJw egv egv egv rja rja -bNE -pQs -pQs -pQs -bNE +gma +bfZ +bfZ +bfZ +gma rja vVi vVi @@ -54088,16 +54106,16 @@ xxD xxD rja rja -bNE -pQs -pQs -nhM +gma +bfZ +bfZ +tik mMH aBs -cOj -bNE -bNE -cjG +gFG +gma +gma +mbN rja xJw egv @@ -54106,30 +54124,30 @@ bQM rZP lHx rZP -taj -svP -ftU -uzG -taj -ugk -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -oGg -lFD -mLY -mLY -mLY -mLY -bZD -ugk -adE +hjP +aKW +ryx +sVP +hjP +hxC +bEn +bEn +bEn +bEn +bEn +bEn +bEn +bEn +bEn +aQM +poo +bEn +bEn +bEn +bEn +ycn +hxC +rYJ rZP rZP rZP @@ -54137,12 +54155,12 @@ rZP jlk jlk jlk -svP +aKW rGq rGq knh -hvL -svP +sJT +aKW rGq rGq jlk @@ -54157,30 +54175,30 @@ irB jgu jgu jgu -tkj -osv -iyk -oyT -oyT -oyT -oyT -oWw -oer +cdD +weK +gSG +vwc +vwc +vwc +vwc +oTU +ajK pGK mxs vhI fgM -tkj -lzP -oyT -oyT -oyT -eNn -uqj -bFi -oyT -oWw -oer +cdD +ixb +vwc +vwc +vwc +cpS +omw +kGh +vwc +oTU +ajK fyO oyC wbI @@ -54231,34 +54249,34 @@ cAW agi agi aPD -tpE -rUf -jHz -jHz -jHz +bpC +bIX +fGb +fGb +fGb hoZ hoZ hoZ mjx -lLQ -lLQ -jHz -jHz -jHz -haJ -jHz -lLQ -lLQ -lLQ -jHz -jHz -jHz -jHz -jHz -jHz -jHz -jHz -jHz +njx +njx +fGb +fGb +fGb +qqX +fGb +njx +njx +njx +fGb +fGb +fGb +fGb +fGb +fGb +fGb +fGb +fGb hoZ hoZ pCX @@ -54266,33 +54284,33 @@ hoZ hoZ hoZ hoZ -qSm -jNw -kyF -kyF -xDk -pQs +ngq +ied +iOt +iOt +uAv +bfZ rja egv -pQs -pQs +bfZ +bfZ egv ccH -bNE -gAh -pQs -pQs -pQs -pQs -bNE -bNE -bNE -bNE -bNE +gma +eWu +bfZ +bfZ +bfZ +bfZ +gma +gma +gma +gma +gma rja kze rja -lzE +wAa rja rja tDQ @@ -54301,15 +54319,15 @@ xxD xxD rja rja -rqG -pQs -nhM +cDj +bfZ +tik dGx kLI -cOj -pQs -pQs -bNE +gFG +bfZ +bfZ +gma rja xJw egv @@ -54318,20 +54336,20 @@ bQM bQM bQM lHx -svP -svP -hvL -hBf -taj -nMm -hvL -hvL -hvL -hvL -hvL -gsU -iON -vrO +aKW +aKW +sJT +kKZ +hjP +gCX +sJT +sJT +sJT +sJT +sJT +ngG +vbl +pER jlk jlk jlk @@ -54339,8 +54357,8 @@ jlk jlk jlk jlk -uzG -nMm +sVP +gCX jlk jlk jlk @@ -54349,12 +54367,12 @@ jlk jlk jlk jlk -svP +aKW rGq rGq knh -hvL -svP +sJT +aKW rGq rGq rGq @@ -54368,31 +54386,31 @@ irB irB itN itN -oPU -tkj -fdR -spA -tiZ -tiZ -tiZ -tiZ -wCI -lAn +uGM +cdD +qNW +xTi +bDN +bDN +bDN +bDN +gqH +tQJ dqa sbf vhI sQL -oWG -mtG -tiZ -tiZ -tiZ -uVO -tXD -wSo -tiZ -tiZ -qhk +mRz +mEc +bDN +bDN +bDN +hqF +hmd +itC +bDN +bDN +xIo wbI wbI wbI @@ -54443,8 +54461,8 @@ cAW agi agi aPD -tpE -gXF +bpC +bJz bPK clN clN @@ -54452,76 +54470,76 @@ clN clN clN crM -uYS -mlu -hrw -hrw -hrw -hrw -hrw -lvD -lLQ -lvD -hrw -hrw -hrw -hrw -hrw -lvD -hrw -hrw -hrw -jHz +csH +cxd +wVK +wVK +wVK +wVK +wVK +lwK +njx +lwK +wVK +wVK +wVK +wVK +wVK +lwK +wVK +wVK +wVK +fGb hoZ hoZ -hrw -hrw -hrw -hrw -jHz -nhM +wVK +wVK +wVK +wVK +fGb +tik mQG oEs -cOj -bNE -bNE +gFG +gma +gma apf -bNE -bNE +gma +gma lag -bNE -bNE -pQs -pQs -pQs -pQs -pQs -pQs -pQs +gma +gma +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ apf gHy -pQs -unA -bNE -bNE -pQs -ioE +bfZ +hyz +gma +gma +bfZ +cMJ rja jta jta rja -xhM +xnA rja rja rja -bNE -lge -sWe -sWe -lRr -bNE -bNE -bNE +gma +xSd +vky +vky +dOs +gma +gma +gma rja xJw egv @@ -54532,17 +54550,17 @@ bQM rZP lHx rZP -hvL -uzG -taj -nMm -hvL -oTy -oTy -oTy -oTy -oTy -oTy +sJT +sVP +hjP +gCX +sJT +qGX +qGX +qGX +qGX +qGX +qGX jlk jlk jlk @@ -54551,15 +54569,15 @@ jlk jlk jlk jlk -jFz -aik +hIo +iDE jlk jlk jlk jlk jlk jlk -svP +aKW rGq rGq rGq @@ -54580,22 +54598,22 @@ irB irB itN itN -oPU -tkj -sRE +uGM +cdD +iDo jgu anu wbI jcv wbI -tkj -oer +cdD +ajK pGK uxN gTc sQL -nWk -oer +tov +ajK wbI jcv wbI @@ -54655,8 +54673,8 @@ cAW agi agi aPD -uOx -gXF +bpG +bJz bQh hoZ hoZ @@ -54664,73 +54682,73 @@ hoZ hoZ jXz jXz -jcG -hsl +dBC +naj jXz -pgx -pgx -pgx +olT +olT +olT jXz -wFd -jHz -hsl +tdb +fGb +naj aWV -pgx -pgx -pgx +olT +olT +olT aWV -wFd +tdb hoZ hoZ hoZ hoZ -jHz +fGb hoZ hoZ -jHz -jHz -jHz -bNE -nhM +fGb +fGb +fGb +gma +tik npx oTz -cOj -bNE -bNE -bNE +gFG +gma +gma +gma apf -bNE +gma lag apf apf -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -bNE -gAh +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +gma +eWu rja rja rja rja -hKN -hKN -weV +nYw +nYw +lmX rja -paF -pQs +qjg +bfZ apf -aHH -bNE +imH +gma rja vVi vVi @@ -54744,45 +54762,45 @@ bQM bQM bQM lHx -hvL -uzG -taj -nMm -hvL -hvL -bHR -bHR -bHR -hvL -hvL -bHR -bHR +sJT +sVP +hjP +gCX +sJT +sJT +pGg +pGg +pGg +sJT +sJT +pGg +pGg jlk jlk jlk jlk -svP -ing -uzG -nMm -svP -svP +aKW +bVh +sVP +gCX +aKW +aKW jlk jlk -svP -svP -svP -svP -svP +aKW +aKW +aKW +aKW +aKW dYI yio yio hyT -sfI +wbn ubN -sfI -sfI -bPT +wbn +wbn +ujJ qCa jlk irB @@ -54791,23 +54809,23 @@ irB irB itN itN -sIz -oPU -tkj -bcT +tgv +uGM +cdD +jqg jgu jgu jBQ nAf dLq -tkj -oer +cdD +ajK pGK hRX sbf sQL -tkj -oer +cdD +ajK jBQ oRR dLq @@ -54868,78 +54886,78 @@ aWV aWV aWV aPD -caA +bKM bQh hoZ hoZ -lun +cqU jXz jXz -xrd -jHz -oiV -nmh -aeb -wLS -dLL -cRK -jnU -jHz -oiV -nmh -aeb -otg -dLL -cRK -jnU +ieW +fGb +nBV +nyl +wNw +rKS +uhd +chS +uTX +fGb +nBV +nyl +wNw +ykT +uhd +chS +uTX hoZ -vZs -qFs -qFs +ghU +eEo +eEo hoZ -jHz -qFs -qFs +fGb +eEo +eEo jXz jXz -pQs -lge -sWe -sWe -lRr -pQs +bfZ +xSd +vky +vky +dOs +bfZ rja egv -pQs -pQs +bfZ +bfZ egv egv -bNE -dbi -pQs -pQs -gAh -bNE -bNE -bNE -bNE -pQs -pQs -wUs -pQs +gma +rKZ +bfZ +bfZ +eWu +gma +gma +gma +gma +bfZ +bfZ +vsc +bfZ gHy -pQs -bNE -bNE -bNE +bfZ +gma +gma +gma rja rja -scH -hyo -laX +qPG +yfH +ujC rja -irQ -lyY +qIZ +oKa apf iTm apf @@ -54956,36 +54974,36 @@ bQM bQM bQM lHx -qzM -uzG -taj -dMt -wsz -wsz -wsz -wsz -wsz -nVR -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -wsz -sUV -nMm -svP -svP -svP -svP -svP -hSA -svP +weN +sVP +hjP +piL +peY +peY +peY +peY +peY +xxh +peY +peY +peY +peY +peY +peY +peY +peY +peY +eUk +gCX +aKW +aKW +aKW +aKW +aKW +fQx +aKW rGq -svP +aKW nLV wIJ iyS @@ -54994,7 +55012,7 @@ rGq rGq uyM rGq -dga +bka lde jlk uGT @@ -55003,23 +55021,23 @@ uGT itN itN itN -kMC -oPU -tkj -eEX -aBD +xoI +uGM +cdD +qyi +gng kXD wbI rBz wbI -qUC -oer -sSM -sTm -sTm -uCX -tkj -oer +uds +ajK +iEi +qPC +qPC +dMc +cdD +ajK wbI rBz wbI @@ -55080,32 +55098,32 @@ aPD aPD aPD aPD -jHz +fGb bQh hoZ hoZ hoZ jXz -maY -fUC -jHz -oiV -lvD -jnU -lLQ -oiV -lvD -jnU -jHz -nkM -lvD -jnU -lLQ -oiV -lvD -jnU -eSH -qFs +ulW +fWS +fGb +nBV +lwK +uTX +njx +nBV +lwK +uTX +fGb +uNR +lwK +uTX +njx +nBV +lwK +uTX +fGB +eEo agi agi agi @@ -55114,47 +55132,47 @@ aWV agi agi aWV -pQs -pQs -bNE -bNE -pQs -pQs +bfZ +bfZ +gma +gma +bfZ +bfZ xJw egv egv egv rja -rqG -pQs -pQs -pQs -rqG +cDj +bfZ +bfZ +bfZ +cDj rja vVi vVi vVi rja -bNE -bNE -pQs -kds -pQs -pQs -pQs -pQs -pQs -bNE +gma +gma +bfZ +fIj +bfZ +bfZ +bfZ +bfZ +bfZ +gma rja rja rja rja rja -bNE -aHH +gma +imH iTm iTm -lRW +ibb vVi toE mDz @@ -55168,70 +55186,70 @@ bQM bQM bQM lHx -hvL -uzG -taj -stf -taj -taj -taj -taj -taj -taj -jjH -taj -taj -taj -taj -stf -taj -taj -nOy -taj -nMm -svP -svP +sJT +sVP +hjP +whp +hjP +hjP +hjP +hjP +hjP +hjP +nCa +hjP +hjP +hjP +hjP +whp +hjP +hjP +ruE +hjP +gCX +aKW +aKW rGq -svP -taj -taj -taj -svP -svP +aKW +hjP +hjP +hjP +aKW +aKW bAc hgS hgS lvy eTb -sfI -sfI -sfI -dNx -siK +wbn +wbn +wbn +rOo +wRW jlk -aIB -bSS -wgO -dDn -wgO -slc -wgO -oPU -tkj -oer -uLf +pmM +gmv +xub +nGz +xub +lJm +xub +uGM +cdD +ajK +btz kXD wbI wbI wbI -tkj -exI -oyT -oyT -nOi -oyT -oWw -oer +cdD +mkB +vwc +vwc +dFE +vwc +oTU +ajK wbI wbI tNV @@ -55287,35 +55305,35 @@ bTo pcu pcu agi -hCp -wSc -gvZ -ivD -lkM +aCi +aVT +bac +bdS +bry hoZ bQh hoZ -jHz +fGb jXz aWV jXz -eEJ -jHz -oiV -nmh -jCe -hrw -cnH -cRK -jnU -jHz -oiV -nmh -jCe -hrw -ddN -cRK -jnU +mlM +fGb +nBV +nyl +vco +wVK +cfz +chS +uTX +fGb +nBV +nyl +vco +wVK +uFX +chS +uTX agi aWV aWV @@ -55328,8 +55346,8 @@ egv egv egv egv -bNE -bNE +gma +gma apf xJw xJw @@ -55337,34 +55355,34 @@ xJw xJw xJw rja -fLX -pQs -pQs -bNE +xWN +bfZ +bfZ +gma rja rja -bya +iCP xxD vkh rja vVi rja -bNE -pQs -bNE -bNE +gma +bfZ +gma +gma apf -pQs -pQs -qfg -bNE -bNE -dfh -bNE -bNE -pQs +bfZ +bfZ +oeZ +gma +gma +jfN +gma +gma +bfZ apf -pQs +bfZ kzz rja rja @@ -55380,70 +55398,70 @@ xJw bQM bQM rZP -lvf -uzG -taj -ugk -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -mLY -tHw -mLY -mLY -mLY -aJv +lOo +sVP +hjP +hxC +bEn +bEn +bEn +bEn +bEn +bEn +bEn +bEn +bEn +bEn +bEn +bEn +kxM +bEn +bEn +bEn +lwG rGq uNM uNM -svP -taj -svP +aKW +hjP +aKW fpn -svP +aKW fpn -svP +aKW fpn -svP +aKW fpn -kIg +tEj fpn -svP +aKW fpn -svP +aKW fpn vwM vhB -wgO +xub vhB -wgO +xub vhB -wgO +xub vhB -oPU -gyt -oer -ckZ +uGM +dGc +ajK +vfQ kXD aBJ wKb wbI -mPX -tiZ -tiZ -wCI -mtG -tiZ -tiZ -qhk +iFj +bDN +bDN +gqH +mEc +bDN +bDN +xIo wbI wZv lzJ @@ -55507,27 +55525,27 @@ aPD hoZ bQh hoZ -jHz +fGb jXz aWV jXz jXz -jcG -hsl +dBC +naj jXz -kPf -kPf -kPf +ond +ond +ond jXz -wFd -jHz -hsl +tdb +fGb +naj aWV -kPf -kPf -kPf +ond +ond +ond aWV -wFd +tdb agi aWV aWV @@ -55541,21 +55559,21 @@ egv egv egv apf -bNE -bNE +gma +gma rja xJw xJw xJw xJw rja -wKl -pQs -pQs -bNE +wwZ +bfZ +bfZ +gma rja -sGC -jYK +wmp +bMr xxD xxD sII @@ -55565,19 +55583,19 @@ vVi kze vVi rja -rqG -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -pQs -bNE +cDj +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +gma vVi xxD xxD @@ -55586,17 +55604,17 @@ vyu xxD xxD xxD -jYK -mIQ +bMr +jre wFU bQM bQM rZP -sGx -uzG -taj -nMm -gxQ +dbX +sVP +hjP +gCX +hJc rZP lHx lHx @@ -55608,42 +55626,42 @@ lHx jlk jlk jlk -hvL -gbV -uTs -hvL -ufN -hvL +sJT +uxa +saI +sJT +kPi +sJT jlk uNM ubN -taj +hjP ubN fpn -svP +aKW fpn -svP +aKW fpn -svP +aKW fpn -svP +aKW fpn -mGX +tHr fpn -svP +aKW fpn vwM vhB -wgO +xub vhB -wgO +xub vhB -wgO +xub vhB -oPU -tkj -oer -ckZ +uGM +cdD +ajK +vfQ kXD kIe tas @@ -55651,8 +55669,8 @@ tas tTA wbI wbI -tkj -ydd +cdD +kmE wbI wbI wbI @@ -55716,30 +55734,30 @@ aWV aWV aWV aPD -iGx +bNN bQh hoZ -jHz +fGb jXz aWV jXz -xrd -jHz -oiV -nmh -aeb -otg -dLL -cRK -jnU -jHz -oiV -nmh -aeb -otg -dLL -cRK -jnU +ieW +fGb +nBV +nyl +wNw +ykT +uhd +chS +uTX +fGb +nBV +nyl +wNw +ykT +uhd +chS +uTX agi aWV aWV @@ -55752,22 +55770,22 @@ egv apf apf lag -bNE -bNE +gma +gma apf -bNE +gma egv egv rja rja ccH -rqG -pQs -pQs -cjG +cDj +bfZ +bfZ +mbN rja -hzi -jYK +jOr +bMr xxD xxD xxD @@ -55775,21 +55793,21 @@ leF xxD xxD xxD -dsW +ntg rja rja -bNE -pQs -pQs -oEi -kyF -kyF -xDk -pQs -pQs -pQs -pQs -pQs +gma +bfZ +bfZ +dUs +iOt +iOt +uAv +bfZ +bfZ +bfZ +bfZ +bfZ tob xxD xxD @@ -55798,17 +55816,17 @@ xxD xxD xxD xxD -jYK -kAc +bMr +tqN wFU bQM bQM lHx -jkj -uzG -taj -nMm -hvL +qCs +sVP +hjP +gCX +sJT lHx bQM bQM @@ -55828,43 +55846,43 @@ rGq jlk jlk uNM -iFC -svP -cBm +kTK +aKW +pBg fpn -svP +aKW fpn -svP +aKW fpn -svP +aKW fpn -svP +aKW fpn -svP +aKW fpn -svP +aKW fpn vwM vhB -wgO +xub vhB -wgO +xub vhB -wgO +xub vhB -oPU -tkj -oer -ckZ +uGM +cdD +ajK +vfQ jgu jgu -hPi -jUG -oKf +sel +qjc +pAO jgu wuC -roi -tMb +bod +wLJ xIh itN wbI @@ -55927,31 +55945,31 @@ agi agi agi aPD -gkE -jHz +bAb +fGb bQh hoZ -teu +cmm jXz aWV -cje -fUC -jHz -oiV -lvD -jnU -lLQ -oiV -lvD -jnU -jHz -oiV -lvD -jnU -lLQ -oiV -qJR -jnU +llG +fWS +fGb +nBV +lwK +uTX +njx +nBV +lwK +uTX +fGb +nBV +lwK +uTX +njx +nBV +fSl +uTX agi aWV aWV @@ -55966,20 +55984,20 @@ apf lag egv apf -bNE -bNE +gma +gma egv egv -ioE -fCw -rqG -pQs -pQs -pQs -bNE +cMJ +qSv +cDj +bfZ +bfZ +bfZ +gma rja -lMq -jYK +sCj +bMr xxD xxD xxD @@ -55990,18 +56008,18 @@ xxD xxD jta vVi -bNE -pQs -pQs -nhM +gma +bfZ +bfZ +tik mMH aBs -cOj -gAh -pQs -gAh -pQs -bNE +gFG +eWu +bfZ +eWu +bfZ +gma rja rja rja @@ -56010,17 +56028,17 @@ rja tDQ xxD xxD -jYK -hDb +bMr +woI wFU bQM bQM lHx -hvL -uzG -taj -nMm -hvL +sJT +sVP +hjP +gCX +sJT lHx bQM bQM @@ -56034,49 +56052,49 @@ jlk jlk sgw sgw -bvr +jFN rGq sgw sgw jlk uNM ubN -svP +aKW ubN -kIg -taj -taj -taj -taj -taj -taj -taj -taj -taj -taj -taj -taj +tEj +hjP +hjP +hjP +hjP +hjP +hjP +hjP +hjP +hjP +hjP +hjP +hjP rZP -wgO -wgO -wgO -wgO -wgO -wgO -wgO -dmT -tkj -oer -ove -dJe -dJe -vuX -wgO -uLf +xub +xub +xub +xub +xub +xub +xub +gte +cdD +ajK +kEp +uRK +uRK +sHb +xub +btz jgu jgu -hPi -gtf +sel +aiK jgu itN jBQ @@ -56139,31 +56157,31 @@ agi agi agi aPD -eYs -jHz +bDC +fGb bQk hoZ hoZ jXz aWV jXz -eEJ -jHz -oiV -nmh -jCe -dXi -hPL -cRK -jnU -haJ -oiV -nmh -jCe -mpN -ddN -cRK -jnU +mlM +fGb +nBV +nyl +vco +xfw +quy +chS +uTX +qqX +nBV +nyl +vco +rHd +uFX +chS +uTX agi aWV aWV @@ -56177,18 +56195,18 @@ apf egv egv egv -bNE -bNE -bNE -pQs -gAh -bNE -pQs -pQs -pQs -pQs -pQs -bNE +gma +gma +gma +bfZ +eWu +gma +bfZ +bfZ +bfZ +bfZ +bfZ +gma rja rja vVi @@ -56203,36 +56221,36 @@ xxD jta rja rja -bNE -pQs -nhM +gma +bfZ +tik dGx kLI -cOj -oEi -kyF -kyF -xDk -pQs -bNE +gFG +dUs +iOt +iOt +uAv +bfZ +gma rja -hSk -weV -xhM +rvu +lmX +xnA xxD xxD xxD -jYK -whr +bMr +vXr xJw bQM bQM lHx -hvL -uzG -taj -nMm -hvL +sJT +sVP +hjP +gCX +sJT lHx bQM bQM @@ -56252,44 +56270,44 @@ fmg jlk jlk uNM -fhB -svP -oIz -taj -qAQ -qAQ -qAQ -qAQ -taj +aJf +aKW +oWV +hjP +thi +thi +thi +thi +hjP ohY eTb -icT +gAa eTb -pdP +bBX amF rZP rZP -lgx -lgx -lgx -lgx -mLL -cOC -wgO -oPU -mPX -qhk -oPU -oPU -oPU -gAn -oPU -ove -dbr -dbr -vMN -fGi -dbr +xnS +xnS +xnS +xnS +xkP +lIx +xub +uGM +iFj +xIo +uGM +uGM +uGM +lRI +uGM +kEp +hOR +hOR +aMZ +knv +hOR itN wbI qJL @@ -56351,31 +56369,31 @@ agi agi agi aPD -auj +bHI hoZ bQh hoZ -jHz +fGb hoZ jXz jXz jXz -jcG -hsl +dBC +naj jXz -kue -xgU -kue +kcw +pxa +kcw jXz -wFd -jHz -hsl +tdb +fGb +naj aWV -kue -kue -kue +kcw +kcw +kcw aWV -iIZ +wLX agi agi dxS @@ -56389,23 +56407,23 @@ egv egv eXp eXp -bNE -bNE -bNE -bNE -bNE -pQs -pQs -pQs -pQs -pQs -pQs -pQs -rqG +gma +gma +gma +gma +gma +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +cDj rja -bNE -pQs -bNE +gma +bfZ +gma rja vVi rja @@ -56415,18 +56433,18 @@ xxD xxD soN rja -bNE -pQs -lge -sWe -sWe -lRr -nhM +gma +bfZ +xSd +vky +vky +dOs +tik mMH aBs -cOj -pQs -bNE +gFG +bfZ +gma rja rja rja @@ -56440,11 +56458,11 @@ xJw xJw xJw xJw -guz -guz -guz -guz -guz +jiW +jiW +jiW +jiW +jiW cEw cEw cEw @@ -56454,13 +56472,13 @@ cEw cEw cEw cEw -guz -guz -brY +jiW +jiW +bIg okv -guz -brY -guz +jiW +bIg +jiW aTo aTo rZP @@ -56481,26 +56499,26 @@ rZP rZP rZP rZP -juX -juX -juX -juX +biH +biH +biH +biH itN itN itN itN -dGA -lgx +bLz +xnS vhB vhB -lgx +xnS vhB vhB -lgx +xnS vhB vhB -lgx -lgx +xnS +xnS vhB itN itN @@ -56567,28 +56585,28 @@ hoZ hoZ bUw hoZ -jHz +fGb hoZ jXz jXz -xrd -lLQ -lvD -otg -otg -otg -otg -otg -lvD -lLQ -lvD -otg -otg -otg -otg -otg -lvD -jnU +ieW +njx +lwK +ykT +ykT +ykT +ykT +ykT +lwK +njx +lwK +ykT +ykT +ykT +ykT +ykT +lwK +uTX agi agi agi @@ -56599,49 +56617,49 @@ qlf egv egv eXp -jnm -kiR -wNM -bNE -gAh -bNE -bNE -pQs -pQs -pQs -pQs -sAp -pQs -pQs -pQs -bNE -pQs -pQs -pQs -bNE -bNE +erB +roC +sLT +gma +eWu +gma +gma +bfZ +bfZ +bfZ +bfZ +eGV +bfZ +bfZ +bfZ +gma +bfZ +bfZ +bfZ +gma +gma vVi bQy rja -xhM +xnA rja rja rja -irQ -wbP -oEi -kyF -kyF -xDk -nhM +qIZ +mKt +dUs +iOt +iOt +uAv +tik dGx kLI -cOj -pQs -pQs -bNE -bNE -bNE +gFG +bfZ +bfZ +gma +gma +gma nip apf apf @@ -56652,81 +56670,81 @@ ojv apf apf nip -guz -jhp -wSU -wSU -guz +jiW +ktD +joz +joz +jiW bnA -mTl -vBX -vBX -frM +wMI +fXv +fXv +xSB bnA -wSU -wSU -nJq -guz -iiw -awL -awL -awL +joz +joz +lhj +jiW +aqJ +dfV +dfV +dfV xDq naf naf cqz ggd -tsc -hQk -tsc -awL -uNp -uNp -uNp -uNp -awL -tcW -awL -awL -awL -awL -awL -tcW -awL -uNp -uNp -uNp -uNp -awL -tsc -bEk -tsc -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -tsc -bEk -tsc -bEk -ogf -ogf -bEk -ogf -ogf -ogf -ogf -mRM +ssD +bVO +ssD +dfV +cyd +cyd +cyd +cyd +dfV +kzO +dfV +dfV +dfV +dfV +dfV +kzO +dfV +cyd +cyd +cyd +cyd +dfV +ssD +iSi +ssD +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +ssD +iSi +ssD +iSi +hbC +hbC +iSi +hbC +hbC +hbC +hbC +cbb bQM bQM bQM @@ -56779,29 +56797,29 @@ hoZ bNP hoZ hoZ -jHz +fGb hoZ jXz -ddU -fUC -jHz -lLQ -jHz -jHz -jHz -jHz -jHz -lLQ -qpX -viL -jHz -tQk -jHz -jHz -jHz -lLQ -jnU -jHz +xaS +fWS +fGb +njx +fGb +fGb +fGb +fGb +fGb +njx +tZN +uTS +fGb +fIv +fGb +fGb +fGb +njx +uTX +fGb agi agi bGY @@ -56811,49 +56829,49 @@ aVU bel hTs eXp -bNE -pQs +gma +bfZ apf -wdU -pQs -pQs -gnQ -pQs -pQs -bNE -bNE -bNE -bNE -pQs -pQs -pQs -qfg -pQs -pQs -pQs -bNE +lDm +bfZ +bfZ +eaZ +bfZ +bfZ +gma +gma +gma +gma +bfZ +bfZ +bfZ +oeZ +bfZ +bfZ +bfZ +gma rja rja rja -hKN -hKN -fZT +nYw +nYw +ajX rja -bNE -pQs -nhM +gma +bfZ +tik mMH aBs -cOj -lge -sWe -sWe -lRr -qwK -pQs +gFG +xSd +vky +vky +dOs +hOW +bfZ tpY -pQs -bNE +bfZ +gma nip apf apf @@ -56864,22 +56882,22 @@ apf apf apf nip -guz -wSU -vBX -wSU -guz +jiW +joz +fXv +joz +jiW uLJ -sUc -vBX -kxU -vBX +fzs +fXv +hgC +fXv wAn -wSU -wSU -nJq -guz -gcx +joz +joz +lhj +jiW +rol okv okv okv @@ -56938,7 +56956,7 @@ bQM bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -56988,32 +57006,32 @@ agi agi agi hoZ -jHz +fGb hoZ hoZ hoZ hoZ jXz jXz -eEJ -lLQ -lvD +mlM +njx +lwK agi agi agi agi agi -lvD -lLQ -lvD -hrw -hrw -hrw -hrw -hrw -lvD -nzw -jHz +lwK +njx +lwK +wVK +wVK +wVK +wVK +wVK +lwK +fpi +fGb agi agi whf @@ -57023,134 +57041,134 @@ rBs nxl whf apf -bNE -oDh +gma +gGu vzh -wdU -pma -oJm -pQs -oDh -bNE +lDm +uLd +xwD +bfZ +gGu +gma rja rja rja rja -bNE -gAh -pQs -pQs -pQs -kds -pQs -gAh -rqG +gma +eWu +bfZ +bfZ +bfZ +fIj +bfZ +eWu +cDj rja rja -scH -laX +qPG +ujC rja rja -bNE -pQs -nhM +gma +bfZ +tik dGx kLI -cOj -gAh -pQs -gAh -pQs -pQs -pQs -pQs -wUs -bNE +gFG +eWu +bfZ +eWu +bfZ +bfZ +bfZ +bfZ +vsc +gma rja rja -gAh -gAh +eWu +eWu rja rja -gAh -gAh +eWu +eWu rja rja -guz -wSU -wSU -wSU -guz +jiW +joz +joz +joz +jiW uXw -vBX -qqQ -vBX -vBX +fXv +akw +fXv +fXv bnA -wSU -wSU -nJq -guz -gcx +joz +joz +lhj +jiW +rol okv -iiw -awL +aqJ +dfV iBP vcf vcf lku mzT -tsc -wtm -tsc -awL -uNp -uNp -uNp -uNp -awL -exW -awL -awL -awL -awL -awL -exW -awL -uNp -uNp -uNp -uNp -awL -tsc -bEk -tsc -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -hmS -tsc -bEk -tsc -bEk -ogf -ogf -bEk -ogf -ogf -ogf -ogf -fWI +ssD +ciX +ssD +dfV +cyd +cyd +cyd +cyd +dfV +mZV +dfV +dfV +dfV +dfV +dfV +mZV +dfV +cyd +cyd +cyd +cyd +dfV +ssD +iSi +ssD +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +kOM +ssD +iSi +ssD +iSi +hbC +hbC +iSi +hbC +hbC +hbC +hbC +ogo bQM bQM bQM @@ -57208,26 +57226,26 @@ hoZ jXz jXz jXz -lLQ -lLQ +njx +njx jXz agi agi -kPf +ond jXz -jnU -jHz +uTX +fGb agi aWV -pgx -lvD -mgO +olT +lwK +mVg aWV hoZ -jnU -jHz -oiV -lvD +uTX +fGb +nBV +lwK oKV rBs aVU @@ -57235,48 +57253,48 @@ bOK rBs khu apf -pQs +bfZ apf -pma -pma -pQs -pma -pQs -qfg -cjG +uLd +uLd +bfZ +uLd +bfZ +oeZ +mbN rja -pKf -vtc +jdo +pTA rja -rqG -bNE -pQs -pQs -pQs -pQs -pQs -pQs -mTs -nYB +cDj +gma +bfZ +bfZ +bfZ +bfZ +bfZ +bfZ +dAA +hyX rja rja rja rja -rqG -pQs -pQs -lge -sWe -sWe -lRr -pQs +cDj +bfZ +bfZ +xSd +vky +vky +dOs +bfZ apf -wUs +vsc apf -pQs +bfZ apf -pQs -bNE +bfZ +gma rja rja rja @@ -57289,28 +57307,28 @@ rja rja rja bnA -tXt -guz -guz -cYe +mfK +jiW +jiW +iYI bnA -tXt -rnl -vBX -guz +mfK +pJa +fXv +jiW bnA -vDf -wSU -nJq -guz -gcx +qNw +joz +lhj +jiW +rol pLQ -gcx -guz -guz -guz -guz -gTW +rol +jiW +jiW +jiW +jiW +ayA cEw cEw cEw @@ -57329,26 +57347,26 @@ tRH tRH tRH tRH -juX -juX -juX -juX +biH +biH +biH +biH itN itN itN itN -iVo -nkF +sqB +gyU vhB vhB -nkF +gyU vhB vhB -nkF +gyU vhB vhB -nkF -nkF +gyU +gyU vhB itN itN @@ -57410,36 +57428,36 @@ agi agi agi agi -jHz -jHz -jHz -vZs -jHz +fGb +fGb +fGb +ghU +fGb hoZ hoZ hoZ -jHz +fGb moW -lLQ -lLQ -nmh -agi -otg -dLL -cRK -jnU -jHz -agi -nmh -aeb -otg -njN -cRK +njx +njx +nyl +agi +ykT +uhd +chS +uTX +fGb +agi +nyl +wNw +ykT +ifq +chS rPZ -jnU -jHz -oiV -lvD +uTX +fGb +nBV +lwK aVU aVU aVU @@ -57448,46 +57466,46 @@ aVU gec apf nre -pQs -pQs -pma -pQs -pQs -pQs -pQs -bNE +bfZ +bfZ +uLd +bfZ +bfZ +bfZ +bfZ +gma rja -lYj -hKN +lAv +nYw rja rja rja -bNE -tmL -bNE -bNE -pQs -pQs -pQs -pQs -raL -rty -kwZ -raL -pQs -pQs -pQs -pQs -pQs -bNE -bNE -nOg -bNE -bNE +gma +hgr +gma +gma +bfZ +bfZ +bfZ +bfZ +nAr +gbD +iGL +nAr +bfZ +bfZ +bfZ +bfZ +bfZ +gma +gma +wZo +gma +gma apf -pQs -pQs -qwK +bfZ +bfZ +hOW apf rja rja @@ -57501,72 +57519,72 @@ rja rja rja bnA -iKF -ykw -alC -iKF +vUa +ifs +nuE +vUa bnA jbU xZD bnA bgc bnA -wSU -kok -nJq -guz -gcx +joz +vrc +lhj +jiW +rol okv -gcx -guz -wSU +rol +jiW +joz uSA uSA -pRp +aHx bnA -wps -guz -jHp +dnx +jiW +ioP wrR -mpE -vOm -vOm -psx +iyu +oqn +oqn +cRS ipd -soj -iTJ -kbo -tSm -tSm -iTs -bqC -art -fvr -nkF -nkF -nkF -wgO -wgO -wgO -wgO -xVW -ijt -oPU -oPU -mpb -oPU -oPU -oPU -oPU -oPU -xVW -ijt -oPU -oPU -oPU -wQW -oPU -oPU +npp +lfJ +coT +kul +kul +hja +hyR +hGC +iyq +gyU +gyU +gyU +xub +xub +xub +xub +hhy +aNn +uGM +uGM +gUO +uGM +uGM +uGM +uGM +uGM +hhy +aNn +uGM +uGM +uGM +wyP +uGM +uGM itN itN itN @@ -57625,33 +57643,33 @@ agi hoZ vjT gFg -oxv -jHz +ipy +fGb hoZ hoZ hoZ -jHz +fGb hoZ -lLQ -lLQ -lvD -jnU -lLQ -fKn -lvD -jnU -lDU -oiV -lvD -jnU +njx +njx +lwK +uTX +njx +qIO +lwK +uTX +ugC +nBV +lwK +uTX hoZ -oiV -kHI +nBV +fNp hoZ -jnU -jHz -oiV -lvD +uTX +fGb +nBV +lwK aVU aVU imz @@ -57659,18 +57677,18 @@ aVU aVU khu tfX -vuS -vuS -pQs -pQs -gAh -oDh -pQs -pQs -bNE +gFc +gFc +bfZ +bfZ +eWu +gGu +bfZ +bfZ +gma rja rja -xhM +xnA rja jta rja @@ -57678,101 +57696,101 @@ vVi vVi vVi rja -bNE -mTs -pQs -pQs -rKA -qCk -cvd -rRz -pQs -pQs -pQs -bNE -bNE +gma +dAA +bfZ +bfZ +qPT +ddE +qwJ +eTn +bfZ +bfZ +bfZ +gma +gma bis bis bis bis bis -dBy +muO mNh ycC -idb -eQQ -dBy +vYL +gXt +muO bis bis bis bis bis bis -jsf -heo -rJF -akp +pxR +fcX +bEO +kEE xvB -guz -aAA -vBX -fXI -guz -aAA -vBX -fXI -guz +jiW +kpm +fXv +eAy +jiW +kpm +fXv +eAy +jiW xvB -aAA -xNn -eBr -guz -gcx +kpm +eZm +tMn +jiW +rol pLQ -gcx -guz -wSU -yeX -pen -byT +rol +jiW +joz +ndt +pLh +nyo bnA -mSo -guz -mSo +vjz +jiW +vjz wrR -xvv -xvv -xvv -rLA +jGA +jGA +jGA +xFB ipd -soj -rKy -xiL -xiL -xiL -iQz -xiL -rft -wgO +npp +cLR +wRZ +wRZ +wRZ +pDg +wRZ +vxV +xub vhB vhB -wgO +xub vhB vhB -wgO +xub vhB -tkj -oer +cdD +ajK jgu jgu -oPU -oPU +uGM +uGM fZD wbI wbI agG -vFc -htO +xzI +tVB nKX wbI wbI @@ -57781,7 +57799,7 @@ wbI wbI wbI wbI -oPU +uGM jgu jgu itN @@ -57838,32 +57856,32 @@ hoZ gFg hoZ gFg -nub +gEF gzb gzb gzb -nub +gEF hoZ -lLQ -lLQ -nmh -jCe -hrw -ddN -qAk -jnU -jHz -vWL -lvD -jCe -xgU -ddN -cRK +njx +njx +nyl +vco +wVK +uFX +rMt +uTX +fGb +uXu +lwK +vco +pxa +uFX +chS hoZ -jnU -jHz -oiV -lvD +uTX +fGb +nBV +lwK rBs rBs aVU @@ -57871,36 +57889,36 @@ aVU vDR sUY apf -pQs +bfZ umZ -jIz -pQs -vuS -pQs -pQs -sAp -pQs -bNE +orG +bfZ +gFc +bfZ +bfZ +eGV +bfZ +gma vVi xxD -pVc +vXS xxD -whr -dwJ -gnL -vvT +vXr +upF +ejp +kdw rja -dhL -pQs -bNE -bNE -raL -wND -imp -raL -bNE -bNE -bNE +qwh +bfZ +gma +gma +nAr +mXY +qJJ +nAr +gma +gma +gma bis bis bis @@ -57910,81 +57928,81 @@ bis bis wGM ycC -eQQ +gXt ycC mNh dDU -rkv +olC bis bis bis -tEA -bQL -rJF -rJF -rJF -akp +uCW +vmH +bEO +bEO +bEO +kEE okv -guz -aAA -vBX -fXI -guz -aAA -vBX -fXI -guz +jiW +kpm +fXv +eAy +jiW +kpm +fXv +eAy +jiW okv -aAA -ojk +kpm +fUF uSA -guz -gcx +jiW +rol okv -gcx -guz -wSU +rol +jiW +joz uSA uSA -giw -noz -nSh -vBX -guz +xVh +kLT +qxB +fXv +jiW eMG -xvv -xvv -xvv -rLA +jGA +jGA +jGA +xFB ipd -spb -rKy -xiL -mAt -nMp -jFh -vxm -heT -aZW -wgO -wgO -wgO -wgO -wgO -wgO -bRs -tkj -oer +xMN +cLR +wRZ +dMv +qfU +mXe +oJO +bcg +dFw +xub +xub +xub +xub +xub +xub +iNw +cdD +ajK kXD -fnY +lsr vhB -bED +kBV wbI qUo fAv vtl -tkj -oLF +cdD +lCZ ivz jot fAv @@ -57993,8 +58011,8 @@ bNT jot fAv vtl -oPU -lgS +uGM +wRn jgu itN itN @@ -58050,30 +58068,30 @@ hoZ vjT gFg vjT -jHz +fGb lrA lrA lrA -jHz +fGb hoZ -lLQ -lLQ +njx +njx jXz -kPf -kPf -kPf +ond +ond +ond jXz -jnU -jHz -oiV -eSH -eEx -kHI -kHI +uTX +fGb +nBV +fGB +kXw +fNp +fNp aWV -jHz -jnU -jHz +fGb +uTX +fGb mbC dxS whf @@ -58082,37 +58100,37 @@ sdY rBs qLI gec -wdU -uHl +lDm +rEm nWC -dtR -gAh -wdU -gAh -bNE -vuS -pQs -pQs +sUq +eWu +lDm +eWu +gma +gFc +bfZ +bfZ tob xxD xxD xxD -jYK -jYK -fbF -bFg +bMr +bMr +iRe +aJK rja -irQ -bNE -oEi -kyF -kyF -kyF -kyF -kyF -kyF -kyF -xDk +qIZ +gma +dUs +iOt +iOt +iOt +iOt +iOt +iOt +iOt +uAv bis bis tpt @@ -58125,78 +58143,78 @@ ycC lqq ycC lqq -pJP +cmW ycC ycC -anW -wNX -wNX -wNX -ort -htX -rJF -akp +oys +ruv +ruv +ruv +tjQ +tJe +bEO +kEE okv -guz -aAA -ppQ -fXI -guz -aAA -iHu -fXI -guz +jiW +kpm +muZ +eAy +jiW +kpm +vxr +eAy +jiW okv -aAA -ojk +kpm +fUF uSA -guz -gcx +jiW +rol pLQ -gcx -guz -wSU -vBX -vBX -vBX +rol +jiW +joz +fXv +fXv +fXv uSA -kfY -vBX -guz +ena +fXv +jiW bPG -xvv -xvv -xvv -rLA +jGA +jGA +jGA +xFB ipd -spb -rKy -gIs -rft +xMN +cLR +tII +vxV wrR ipd ipd nvD -hcY +dxd vhB vhB -wgO +xub vhB vhB -wgO +xub vhB -tkj -oer +cdD +ajK kXD -cRg +tjo vhB -oPU +uGM aRT kjT qun oyC -tkj -oer +cdD +ajK aRT kjT qun @@ -58205,8 +58223,8 @@ qaO azs auQ oyC -oPU -oPU +uGM +uGM jgu jgu jgu @@ -58262,31 +58280,31 @@ hoZ gGx hoZ hoZ -jHz +fGb lrA agi lrA -jHz +fGb hoZ -lLQ -lLQ -nmh -aeb -otg -dLL -cRK -jnU -jHz -bRQ -lvD -aeb -aOm -dLL -cRK -jHz -jnU -jHz -gAh +njx +njx +nyl +wNw +ykT +uhd +chS +uTX +fGb +veM +lwK +wNw +esF +uhd +chS +fGb +uTX +fGb +eWu eXp vTv heO @@ -58295,16 +58313,16 @@ aVU bel bIZ eXp -wdU -bNE -vgi -wdU -bNE -mMi -bNE -pQs -pQs -bNE +lDm +gma +wEa +lDm +gma +njq +gma +bfZ +bfZ +gma rja rja mfR @@ -58314,17 +58332,17 @@ xxD xxD xxD vVi -oEi -kyF -hoo -bNE -bNE -bNE -bNE -bNE -bNE -bNE -cOj +dUs +iOt +hJw +gma +gma +gma +gma +gma +gma +gma +gFG bis bis sfs @@ -58336,79 +58354,79 @@ pYc lqq lqq geL -rJF +bEO ycC -bPQ -rHh -wNX -rJF -rJF +uRO +ydk +ruv +bEO +bEO ycC -rJF -akp -rJF -akp +bEO +kEE +bEO +kEE okv -guz -aAA -yeX -pen +jiW +kpm +ndt +pLh ofw -ppS -hGn -fXI -guz +jNA +bzL +eAy +jiW okv -aAA -ojk -wSU -guz -gcx +kpm +fUF +joz +jiW +rol aVd -gcx -guz -wSU -vBX -vBX -vBX +rol +jiW +joz +fXv +fXv +fXv uSA -kfY -vBX -guz +ena +fXv +jiW bPG -xvv -xvv -xvv -rLA +jGA +jGA +jGA +xFB ipd -kdq -rKy -xiL -mdS -tSm -iTs -bqC -art -vuX -wgO -wgO -bRs -wgO -wgO -wgO -wgO -tkj -oer +cyO +cLR +wRZ +jya +kul +hja +hyR +hGC +sHb +xub +xub +iNw +xub +xub +xub +xub +cdD +ajK jgu -qcX -oPU -oPU +vrw +uGM +uGM bNT kjT qun oRR -lEL -oer +bAU +ajK aRT kjT qun @@ -58417,10 +58435,10 @@ wbI cCt wbI wbI -oPU -oPU -voi -cEY +uGM +uGM +jUI +bsF jgu itN itN @@ -58474,31 +58492,31 @@ hoZ fqF hoZ hoZ -jHz +fGb lrA agi lrA -jHz +fGb hoZ -lLQ -lLQ -lvD -jnU -lLQ -oiV -lvD -jnU -jHz -oiV +njx +njx +lwK +uTX +njx +nBV +lwK +uTX +fGb +nBV hoZ hoZ -lLQ -oiV -qJR -jHz -jnU -jHz -gAh +njx +nBV +fSl +fGb +uTX +fGb +eWu nga eXp eXp @@ -58507,17 +58525,17 @@ apf apf apf eXp -bNE -bNE -bNE +gma +gma +gma rja -oOw +aVJ ccH -bNE -gAh -pQs -pQs -rqG +gma +eWu +bfZ +bfZ +cDj rja rja toE @@ -58526,17 +58544,17 @@ hqc xxD xxD tob -wQb -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -umg +obT +gma +gma +gma +gma +gma +gma +gma +gma +gma +qam bis bis tPz @@ -58550,77 +58568,77 @@ lqq ycC lqq sBA -kzB -pBe -xow -xow -xow -wpy -rJF -akp -qif +jLF +rrP +vMQ +vMQ +vMQ +vNF +bEO +kEE +vLV bis bnA -wQR -wSU -wSU -wSU -hjR -wSU -wSU -wSU -tSY +tGi +joz +joz +joz +hUf +joz +joz +joz +feY bnA -vDf -ojk -wSU -guz -gcx +qNw +fUF +joz +jiW +rol okv -gcx -guz -wSU +rol +jiW +joz uSA uSA -qLv -gyy -dpn -vBX -guz +pCS +tYr +rAk +fXv +jiW bPG -xvv -xvv -xvv -rLA +jGA +jGA +jGA +xFB ipd -vMs -sFd -nMp -rdo -xiL -iQz -xiL -rft -wgO +yhE +rkr +qfU +djd +wRZ +pDg +wRZ +vxV +xub hCc vhB -wgO +xub vhB vhB -slc +lJm vhB -gyt -oer +dGc +ajK kXD -bmw +nej vhB -oPU +uGM bNT kjT aPd vtl -tkj -bdb +cdD +nbU lls kjT qun @@ -58629,10 +58647,10 @@ bNT jot fAv vtl -oPU -oPU -oPU -voi +uGM +uGM +uGM +jUI jgu jgu jgu @@ -58686,30 +58704,30 @@ hoZ vjT gFg vjT -jHz +fGb lrA lrA lrA -jHz +fGb hoZ -xeX -lLQ -nmh -jCe -hrw -ddN -dRk -jnU -jHz -oiV +tXQ +njx +nyl +vco +wVK +uFX +rRb +uTX +fGb +nBV hoZ -xeX -ihv -ddN -cRK +tXQ +smX +uFX +chS agi -jnU -jHz +uTX +fGb egv nga nga @@ -58721,16 +58739,16 @@ nga nga apf apf -ioE +cMJ rja rja -jzN -bNE -bNE -pQs -pQs -mCH -bNE +xUt +gma +gma +bfZ +bfZ +wxj +gma vVi fyy toE @@ -58738,17 +58756,17 @@ toE pxk bJb rja -wQb -qpk -sWe -sWe -sWe -mGf -sWe -sWe -sms -bNE -cOj +obT +jxY +vky +vky +vky +rKX +vky +vky +aMq +gma +gFG bis bis nHm @@ -58763,76 +58781,76 @@ wMi wMi bis bis -rJF -rJF -rJF +bEO +bEO +bEO uXB -bPQ -rJF -vOO -qif +uRO +bEO +uyr +vLV bis bnA -wQR -wSU -wSU -wSU -vBX -wSU -wSU -wSU -tSY +tGi +joz +joz +joz +fXv +joz +joz +joz +feY bnA -vDf -ojk -cQe -guz -gcx +qNw +fUF +xcf +jiW +rol okv -gcx -guz -wSU -yeX -pen -byT +rol +jiW +joz +ndt +pLh +nyo bnA -jHp -myH -jHp +ioP +mBm +ioP wrR -tkP -pYL -pYL -jHD +vUn +tcJ +tcJ +lUg wrR wrR wrR wrR -rKy -mAt -jFh -vxm -heT -aZW -wgO -lAN -wgO -wgO -wgO -wgO -wgO -tkj -oer +cLR +dMv +mXe +oJO +bcg +dFw +xub +wvS +xub +xub +xub +xub +xub +cdD +ajK kXD -sBY +vyz itd -oPU +uGM bNT azs bJp oyC -utL -uZt +hln +dfu pIt azs auQ @@ -58841,12 +58859,12 @@ bNT azs auQ oyC -oPU -oPU -oPU -oPU -voi -cEY +uGM +uGM +uGM +uGM +jUI +bsF jgu itN itN @@ -58898,30 +58916,30 @@ hoZ gFg iKg gFg -nub +gEF gzb gzb gzb -nub +gEF hoZ -lLQ -lLQ +njx +njx jXz -kue -kue -kue +kcw +kcw +kcw jXz -tbm -jHz -oiV -eSH -kHI -mUK -kue +gFK +fGb +nBV +fGB +fNp +rLC +kcw aWV agi -jCe -hrw +vco +wVK qdJ apf kOB @@ -58937,12 +58955,12 @@ eXp eXp eXp rja -bNE -gAh -pQs -pQs -pQs -bNE +gma +eWu +bfZ +bfZ +bfZ +gma vVi sha pNj @@ -58950,17 +58968,17 @@ tDB rja rja rja -wQb -cOj -bNE -bNE -bNE -bNE -bNE -bNE -wQb -bNE -cOj +obT +gFG +gma +gma +gma +gma +gma +gma +obT +gma +gFG bis ycC fAZ @@ -58975,76 +58993,76 @@ clP clP bis bis -rJF -mnJ +bEO +sVN ycC -rJF -bPQ -rJF -akp -rJF -akp +bEO +uRO +bEO +kEE +bEO +kEE xvB -guz -aAA -yeX -pen -vYY -ppS -hGn -fXI -guz +jiW +kpm +ndt +pLh +qkf +jNA +bzL +eAy +jiW xvB -aAA -ojk -wSU -guz -gcx +kpm +fUF +joz +jiW +rol okv -gcx -guz -eQY +rol +jiW +bLd vJn vJn -asE +bLg bnA -kzL -guz -mSo +hmr +jiW +vjz wrR -uia -teq -teq -teq -teq -kdq +gnm +guG +guG +guG +guG +cyO ipd -lzB -rKy -rft -iOX -iOX -eyO +flq +cLR +vxV +gyi +gyi +vyX itN itN itN itN jgu -wgO -wgO -wgO -tkj -oer +xub +xub +xub +cdD +ajK jgu jgu -oPU -oPU +uGM +uGM agv rPI qJf gfL -eRq -tai +lty +iIX doq wbI tmx @@ -59053,12 +59071,12 @@ wbI wbI weX wbI -oPU -oPU -oPU -gAn -oPU -pAr +uGM +uGM +uGM +lRI +uGM +bcs jgu jgu jgu @@ -59110,34 +59128,34 @@ hoZ vjT gFg vjT -jHz +fGb hoZ hoZ hoZ hoZ hoZ -lLQ -xeX +njx +tXQ hoZ -otg -otg -otg -otg -lvD -jHz -lvD -otg -otg -otg -otg +ykT +ykT +ykT +ykT +lwK +fGb +lwK +ykT +ykT +ykT +ykT aWV jXz -jHz -jHz +fGb +fGb qdJ apf ybg -muD +kZM gyB kOB kOB @@ -59147,34 +59165,34 @@ kOB eXp eXp eXp -gAh +eWu rja -bNE -bNE -pQs -pQs -pQs -bNE +gma +gma +bfZ +bfZ +bfZ +gma rja vVi rja rja rja -oEi -kyF -hoo -cOj -bNE -raL -rty -iXJ -raL -bNE -wQb -bNE -wUs +dUs +iOt +hJw +gFG +gma +nAr +gbD +rVZ +nAr +gma +obT +gma +vsc ycC -rJF +bEO ycC lqq lqq @@ -59189,33 +59207,33 @@ tPz bis bis dje -rJF -rJF -bPQ -qJP -akp -rJF -akp +bEO +bEO +uRO +hCS +kEE +bEO +kEE okv -guz -aAA -vBX -fXI -guz -aAA -ppQ -fXI -guz +jiW +kpm +fXv +eAy +jiW +kpm +muZ +eAy +jiW okv -aAA -ojk +kpm +fUF uSA -guz -gcx +jiW +rol okv -gcx -guz -jYn +rol +jiW +emU wrR ipd ipd @@ -59224,55 +59242,55 @@ wrR wrR wrR wrR -teq -teq -teq -teq -teq -orC +guG +guG +guG +guG +guG +xAi ipd -xZU -rKy -rft -iOX -iOX -xqP +iBi +cLR +vxV +gyi +gyi +aIK tRH bQM bQM itN -cIQ -oPU -oPU -wgO -tkj -exI -hHr -oyT -oyT -oyT -yar -wBx -nOi -txY -oWw -mdG -wjO -oPU -eFR -oPU -ccY -oPU -sBj -oPU -mpb -oPU -oPU -oPU -oPU -oPU -voi -cUA +ujO +uGM +uGM +xub +cdD +mkB +dkC +vwc +vwc +vwc +aDl +hhg +dFE +tQi +oTU +mAg +iKG +uGM +vNr +uGM +fdK +uGM +miB +uGM +gUO +uGM +uGM +uGM +uGM +uGM +jUI +dkP jgu itN bQM @@ -59313,39 +59331,39 @@ bQM bQM agi agi -jHz -jHz -jHz +fGb +fGb +fGb aPD hoZ hoZ hoZ -jHz +fGb itv -jHz +fGb hoZ hoZ hoZ hoZ hoZ -lLQ -xeX -jHz -jHz -jHz -jHz -jHz -jnU -jHz +njx +tXQ +fGb +fGb +fGb +fGb +fGb +uTX +fGb hoZ -jHz -jHz -jHz -jHz -jHz -jHz -jHz -jHz +fGb +fGb +fGb +fGb +fGb +fGb +fGb +fGb egv nga kOB @@ -59359,33 +59377,33 @@ qdJ rja rja rja -gAh -oEi -qug -kyF -kyF -gZG -kyF -kyF -kyF -kyF -kyF -thI -kyF -hoo -bNE -bNE -cOj -bNE -rKA -qCk -cvd -rRz -bNE -wQb -bNE -cOj -eQQ +eWu +dUs +pbZ +iOt +iOt +xbq +iOt +iOt +iOt +iOt +iOt +kUI +iOt +hJw +gma +gma +gFG +gma +qPT +ddE +qwJ +eTn +gma +obT +gma +gFG +gXt mNh lqq mxR @@ -59403,88 +59421,88 @@ dje ycC hNY ycC -bPQ -rJF -akp -rJF -bDX +uRO +bEO +kEE +bEO +wfi okv -guz -aAA -vBX -xrz -guz -aAA -vBX -fXI -guz +jiW +kpm +fXv +lFC +jiW +kpm +fXv +eAy +jiW okv -aAA -ojk +kpm +fUF uSA -guz -gcx +jiW +rol okv -gcx -guz -byT -pVD -mKx -iTJ -rwQ -tSm -tSm -tSm -tSm -tSm -tSm -tSm -tSm -plh -vMs +rol +jiW +nyo +vPk +ohI +lfJ +tQs +kul +kul +kul +kul +kul +kul +kul +kul +wOR +yhE ipd -xwo -rKy -rft -iOX -iOX -hil +kGu +cLR +vxV +gyi +gyi +evH tRH bQM bQM itN -qeR -oPU -oPU -wgO -mPX -tiZ -tiZ -kJd -tiZ -tiZ -gkC -tiZ -tiZ -hHC -hgP -ecD -exa -oPU -dkl -oPU -oPU -qVW -vtk -oPU -oPU -oPU -oPU -oPU -oPU -oPU -tmX -xUr +dMO +uGM +uGM +xub +iFj +bDN +bDN +eQv +bDN +bDN +cie +bDN +bDN +qWw +hue +gKt +eoR +uGM +wFE +uGM +uGM +uJX +qUe +uGM +uGM +uGM +uGM +uGM +uGM +uGM +dAk +lrC jgu itN bQM @@ -59525,80 +59543,80 @@ bQM bQM agi agi -jHz +fGb aWV agi agi hoZ hoZ -jHz +fGb hoZ hoZ hoZ -jHz +fGb hoZ agi agi aWV agi jXz -hrw -hrw -hrw -hrw -lvD +wVK +wVK +wVK +wVK +lwK hoZ -jHz -oiV -lvD -hrw -hrw -hrw -hrw -lvD -jHz -jHz +fGb +nBV +lwK +wVK +wVK +wVK +wVK +lwK +fGb +fGb egv nga apf kOB kOB qdJ -ekF +qtq apf -fZe -raL -oEi -kyF -kyF -kyF -hoo -bNE +gRy +nAr +dUs +iOt +iOt +iOt +hJw +gma apf -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -cOj -bNE -raL -wND -imp -raL -bNE -wQb -cOj +gma +gma +gma +gma +gma +gma +gma +gma +gma +gma +gma +gma +gFG +gma +nAr +mXY +qJJ +nAr +gma +obT +gFG dWB -rJF -eQQ +bEO +gXt ycC lqq geL @@ -59615,72 +59633,72 @@ gPS dyB mNh dDU -bPQ +uRO ycC -akp -rJF -akp +kEE +bEO +kEE okv -guz -aAA -yeX -pen -vYY -ppS -hGn -fXI -guz +jiW +kpm +ndt +pLh +qkf +jNA +bzL +eAy +jiW okv -aAA -aje -vTI -guz -gcx +kpm +vdI +ivL +jiW +rol okv -gcx -ffA -jYn -pVD -mKx -iBM -nMp -nMp -nMp -iHW -nMp -nMp -nMp -nMp -rdo -rft -aId +rol +kGq +emU +vPk +ohI +ebm +qfU +qfU +qfU +fbL +qfU +qfU +qfU +qfU +djd +vxV +wcX ipd -cSh -rKy -rft -iOX -iOX -iOX +wxo +cLR +vxV +gyi +gyi +gyi tRH tRH bQM itN jgu -bGA -wgO -wgO +wGD +xub +xub wbI wbI wbI fZD -oPU -oPU +uGM +uGM hbo jJS occ qBB -vxu -onb +ilb +vyA rwu wbI uep @@ -59688,13 +59706,13 @@ wbI icS lFc rAK -oPU -oPU -aBZ -oPU +uGM +uGM +jXv +uGM vhB vhB -oPU +uGM jgu jgu jgu @@ -59737,8 +59755,8 @@ bQM bQM agi aWV -tYg -clv +adk +alJ dxS agi hoZ @@ -59746,8 +59764,8 @@ hoZ hoZ hoZ hoZ -oiV -jHz +nBV +fGb kAO agi agi @@ -59758,19 +59776,19 @@ aWV jXz jXz jXz -nub +gEF hoZ -jHz +fGb hoZ -nub +gEF jXz jXz jXz cvL -lvD +lwK hoZ -jHz -jsU +fGb +hvh apf kOB kOB @@ -59778,37 +59796,37 @@ kOB qdJ apf iTm -jWE -kyF -hoo -bNE -bNE -bNE -bNE +sVa +iOt +hJw +gma +gma +gma +gma apf -qpk -sWe -sWe -sWe -sWe -sWe -sWe -sWe -sWe -sWe -sWe -sWe -sWe -lRr +jxY +vky +vky +vky +vky +vky +vky +vky +vky +vky +vky +vky +vky +dOs rja rja rja rja rja rja -wQb -bNE -cOj +obT +gma +gFG bis ycC nzI @@ -59827,72 +59845,72 @@ clP dje ddG ddG -uEM -rJF -eqS +mWV +bEO +xDe bis bis bnA -vDf -wSU -wSU -wSU -vBX -wSU -wSU -wSU -tSY +qNw +joz +joz +joz +fXv +joz +joz +joz +feY bnA -vDf -kok -nJq -guz -gcx +qNw +vrc +lhj +jiW +rol okv -gcx -vrS -jYn +rol +wlp +emU wrR wrR -tql -xiL -iOX -pGy -eYN -eYN -ybx -jqM -xiL -rKy -fzp -aTO +tWo +wRZ +gyi +nnX +dyd +dyd +vqb +kCG +wRZ +cLR +wcm +kWD ipd -tWh -rKy -rft -tYQ -iOX -uWe -uWe +tyO +cLR +vxV +oex +gyi +dXH +dXH gEx bQM uGT -wgO -oPU -oPU -wgO +xub +uGM +uGM +xub bNT yge kvh wbI -oPU -oPU +uGM +uGM bNT jot nec vtl -tkj -oer +cdD +ajK bNT jot pIs @@ -59900,11 +59918,11 @@ kDN pIs fAv wbI -mpb -oPU +gUO +uGM jgu jgu -nUe +cHD cDl itN itN @@ -59949,17 +59967,17 @@ bQM agi agi aWV -bPy -jyY +aji +aqS dxS dxS hoZ bmV hoZ -jnU +uTX hoZ -oiV -jHz +nBV +fGb hoZ agi agi @@ -59967,46 +59985,46 @@ agi agi jXz jXz -oXk -oXk -lvD -lvD -pKu -lvD -lvD -bXe -iDO -oYW -qjb -qov -lvD +uBS +uBS +lwK +lwK +tgc +lwK +lwK +wLI +kUr +jnO +dxg +bzC +lwK hoZ pCX -bNE +gma iPx apf gNY egv qdJ -fZe +gRy iTm iTm -jsU -bNE -bNE -qpk -sWe -sWe -wED -lRr +hvh +gma +gma +jxY +vky +vky +xKf +dOs eXp -xat -cBJ -raL -raL -raL -bNE -xat +bFt +dCo +nAr +nAr +nAr +gma +bFt eXp dTx eXp @@ -60015,12 +60033,12 @@ eXp rja ubc gVs -lex -lex +hQH +hQH rja -wQb +obT kMq -cOj +gFG bis bis hPY @@ -60037,74 +60055,74 @@ kNs lqq agT eFD -bPQ -rJF +uRO +bEO hNY -rJF -akp -rJF -rJF +bEO +kEE +bEO +bEO bnA -fLY -wSU -wSU -wSU -vBX -bnh -wSU -wSU -vBX +iKj +joz +joz +joz +fXv +fJx +joz +joz +fXv bnA -vBX -wSU -nJq -guz -gcx +fXv +joz +lhj +jiW +rol okv -gcx -ffA -jYn +rol +kGq +emU wrR -nhX -anT -vcq -kle -wHC -kat -jVM -omN -nrd -vAX -rKy -rft -jgL +jeD +pan +jjS +qqa +hyG +nYk +nQN +oCI +tUe +xYA +cLR +vxV +rEe ipd -kdq -rKy -rft -iOX -aTY -rcc -rcc +cyO +cLR +vxV +gyi +kWj +iWg +iWg gEx bQM uGT -sFo -hnK -oqG +lmy +gbU +lQf jgu bNT azs auQ wbI -oPU -oPU +uGM +uGM wbI pKJ qun oyC -hsf -sUe +knu +fFC wbI ukr fOg @@ -60112,13 +60130,13 @@ fOg fOg rGK wbI -oPU -oPU +uGM +uGM eLu -dFK -kTs -kTs -yet +vVu +cEl +cEl +ycd eLu twb twb @@ -60161,17 +60179,17 @@ bQM agi aWV aak -pnh -pKO -gpY +akE +arS +aCV dxS hoZ hoZ -jHz +fGb hoZ hoZ hoZ -jHz +fGb hoZ agi agi @@ -60179,46 +60197,46 @@ agi agi aWV jXz -lBS -lLQ -lvD -hrw -lvD -lLQ -lvD -otK -otK -lvD -otK -vsL -jHz +eTh +njx +lwK +wVK +lwK +njx +lwK +wOD +wOD +lwK +wOD +lPq +fGb hoZ hoZ -bNE +gma nga esS apf egv qdJ -raL -wQb +nAr +obT apf -qpk -sWe -wED -lRr +jxY +vky +xKf +dOs rja rja rja rja eXp -mdD -bNE -raL -raL -raL -bNE -aqw +xYY +gma +nAr +nAr +nAr +gma +wMP eXp pTR apf @@ -60228,11 +60246,11 @@ apf apf apf apf -apf +gFG rja -wQb +obT kMq -umg +qam bis bis bis @@ -60249,55 +60267,55 @@ clP dbq bis bis -wMv -rJF -bPQ -rJF -akp +hxU +bEO +uRO +bEO +kEE dje -rJF +bEO bnA -guz -aAA -yeX -pen +jiW +kpm +ndt +pLh ofw -ppS -hGn -fXI -guz -vBX -vBX -kok -bem -guz -gcx +jNA +bzL +eAy +jiW +fXv +fXv +vrc +lGm +jiW +rol okv -gcx -guz -byT +rol +jiW +nyo wrR -nzf -dpZ -vAX -hWz +weS +mQe +xYA +nBK bSM bSM bSM bSM -vCm -pAl -rKy -rft -xZU +qVF +foL +cLR +vxV +iBi ipd -orC -rKy -rft -iOX -rcc -bma -rcc +xAi +cLR +vxV +gyi +iWg +eWO +iWg gEx bQM uGT @@ -60309,14 +60327,14 @@ wbI mtj wbI wbI -lgx -lgx +xnS +xnS bNT kjT dqG nFB -rNK -oer +sNT +ajK vLH nCX dQW @@ -60324,13 +60342,13 @@ nCX nCX rwj wbI -oPU -oPU +uGM +uGM eLu -bSq -kTs -kTs -vnG +nJQ +cEl +cEl +clG eLu twb twb @@ -60374,15 +60392,15 @@ agi agi aWV agi -tqx -qvN +awh +aIZ dxS -jHz +fGb hoZ -jHz +fGb hoZ hoZ -oiV +nBV hoZ hoZ agi @@ -60391,32 +60409,32 @@ agi agi aWV jXz -lvD -lvD -aeb -lLQ -dLL -lvD -fuO -otK -otK -lvD -otK -otK -jHz -jHz -jHz +lwK +lwK +wNw +njx +uhd +lwK +viH +wOD +wOD +lwK +wOD +wOD +fGb +fGb +fGb apf uQE -bNE +gma apf rja rja -oEi -hoo -bNE -cOj -myi +dUs +hJw +gma +gFG +mFm rja rja eXp @@ -60424,13 +60442,13 @@ eXp eXp eXp eXp -xat -bNE -raL -raL -raL -cBJ -xat +bFt +gma +nAr +nAr +nAr +dCo +bFt eXp eXp eXp @@ -60440,11 +60458,11 @@ eXp apf apf apf -wvY +cNQ rja -wQb -bNE -cOj +obT +gma +gFG bis ewE ewE @@ -60463,53 +60481,53 @@ bis bis bis bis -bPQ -rJF -akp -rJF -rJF +uRO +bEO +kEE +bEO +bEO bht hTM okv -qhZ -fXI -guz -aAA -ppQ -fXI -guz -vBX -vBX -wSU -bem -rdi -gcx +pie +eAy +jiW +kpm +muZ +eAy +jiW +fXv +fXv +joz +lGm +tlM +rol tER -gcx -guz -byT +rol +jiW +nyo wrR -eQz -ixK -rKG -wyd -oby -oby -oby -oby -ftd -vAX -rKy -oEX -sVZ +gzA +eZL +cjs +mLS +eLO +eLO +eLO +eLO +eew +xYA +cLR +aLj +juE ipd -vMs -rKy -rft -iOX -iOX -xyq -xyq +yhE +cLR +vxV +gyi +gyi +nLf +nLf gEx bQM bQM @@ -60521,14 +60539,14 @@ itN jgu jgu jgu -tkg -tkg +rjn +rjn jgu noe qun vtl -tkj -oer +cdD +ajK bNT jot kDN @@ -60536,14 +60554,14 @@ kDN kDN fAv vtl -oPU -oPU +uGM +uGM eLu -xVJ -kTs -kTs -vnG -tUG +wKF +cEl +cEl +clG +rfG twb twb kPz @@ -60589,74 +60607,74 @@ azZ lAh aMg dxS -jHz -jHz -jHz -jnU +fGb +fGb +fGb +uTX hoZ -oiV +nBV hoZ hoZ aWV aWV agi -jHz +fGb aWV jXz -lvD -qaA -jlb -jHz -ifw -vWj -lvD -aZi -aZi -lvD -aZi -uEy +lwK +wLP +qLp +fGb +frt +ugH +lwK +wSe +wSe +lwK +wSe +mSN egv -gAh -bNE +eWu +gma apf apf apf uQE apf lag -wQb -xYN -bNE -cOj -ssM +obT +pmy +gma +gFG +iry rja eXp -raL -rty -cui -mzn +nAr +gbD +nKq +jIm eXp -til -ljx -raL -raL -raL -bpe -snr +nIf +fiF +nAr +nAr +nAr +tNs +wTo eXp -raL -rty -iXJ -raL -xlb -apf -apf +nAr +gbD +rVZ +nAr +uHX apf apf -xlb -wQb -bNE -cOj +bfZ +gFG +uHX +obT +gma +gFG wpD lpr ycC @@ -60670,57 +60688,57 @@ rFu clP fzO clP -eHk -bZn -txb -rJF -eHk -bPQ -rJF -akp -wFS +nUy +aWD +aGs +bEO +nUy +uRO +bEO +kEE +sJw hNY omI -guz -aAA -vBX -fXI -guz -aAA -vBX -fXI -guz -vBX -vBX -wSU -nJq -rhh +jiW +kpm +fXv +eAy +jiW +kpm +fXv +eAy +jiW +fXv +fXv +joz +lhj +aVh kJf okv -gcx -guz -jYn +rol +jiW +emU wrR wrR -iFg -bFJ -iOX -iDK -iDK -iOX -iOX -wMA -xiL -rKy -rft +haU +aVS +gyi +heu +heu +gyi +gyi +hYT +wRZ +cLR +vxV wrR wrR wrR -mhS -rft -xyq -iOX -hPq +sAK +vxV +nLf +gyi +wuP nvD tRH tRH @@ -60732,15 +60750,15 @@ bQM twb lXs hsZ -pBb +rxz jJb cME eLu noe qun oyC -tkj -oer +cdD +ajK bNT azs fOg @@ -60748,15 +60766,15 @@ fOg syU auQ oyC -oPU +uGM vhB ayX -qbn +jmV gfo qPr -yet -vnG -kRO +ycd +clG +kDW twb kPz bQM @@ -60803,72 +60821,72 @@ azZ agi qRg aWV -nub +gEF hoZ hoZ hoZ -nub +gEF agi agi agi hoZ -ifL -jHz +dfD +fGb jXz -lvD -eME -wMh -kQG -lEk -wcB -lvD -aeb -dLL -lLQ -aeb -dLL +lwK +wXP +qOy +xvD +nGX +ukz +lwK +wNw +uhd +njx +wNw +uhd egv -bNE -bNE +gma +gma apf apf apf apf apf lag -wQb -bNE -bNE -cOj -seh +obT +gma +gma +gFG +wCA rja eXp -rKA -bff -bxg -jlB -xrZ -xGc -uws -uzy -uzy -uzy -iAq -xGc -bNE -rKA -qCk -cvd -rRz +qPT +ewY +gzF +sjl +mzF +dka +rTL +azN +azN +azN +vpJ +dka +gma +qPT +ddE +qwJ +eTn rja apf -esS -apf -xYe +aTw +vky +jVZ rja -wQb -bNE -cOj +obT +gma +gFG bis xIx ycC @@ -60883,58 +60901,58 @@ wMi wMi bis bis -kzB -eHk -eFq +jLF +nUy +dRm bis -bPQ -rJF -akp -rJF +uRO +bEO +kEE +bEO dje -lcn +gZT okv -xbr -vBX -fXI -guz -aAA -ppQ -fXI -wSX -iuz -vBX -wSU -nJq -rhh +aam +fXv +eAy +jiW +kpm +muZ +eAy +iTG +twL +fXv +joz +lhj +aVh uEj okv -gcx -guz -jYn -pVD -mKx -iTJ -tSm -opP -tSm -tSm -tSm -tSm -rwQ -tSm -sjX -mdS -tSm -tSm -tSm -sbW -mdS -tSm -tSm -tSm -tSm -gLK +rol +jiW +emU +vPk +ohI +lfJ +kul +oQF +kul +kul +kul +kul +tQs +kul +eVb +jya +kul +kul +kul +elq +jya +kul +kul +kul +kul +jYo gEx bQM bQM @@ -60944,15 +60962,15 @@ bQM tPN luy doY -pBb +rxz cME jJb eLu tOS qun -oyJ -tkj -nju +joE +cdD +qHK wbI nCX nCX @@ -60960,15 +60978,15 @@ xgx nCX pBT wbI -oPU +uGM vhB ayX -kTs +cEl gfo gfo -yet -vnG -vnA +ycd +clG +mRk twb kPz bQM @@ -61015,30 +61033,30 @@ bQM agi aWV agi -lvD -jnU +lwK +uTX hoZ -oiV -lvD +nBV +lwK agi -nub -jHz +gEF +fGb hoZ hoZ -jHz +fGb hoZ -tfw -oiV -lLQ -jHz -lLQ -jnU -lvD -jnU -oiV -lLQ -jnU -oiV +dfa +nBV +njx +fGb +njx +uTX +lwK +uTX +nBV +njx +uTX +nBV egv apf apf @@ -61048,39 +61066,39 @@ pKY qlf hcv hds -wnh -fth -bNE -cOj +vBY +wek +gma +gFG eXp eXp eXp -raL -wND -xDk -xWE -bNE -bNE -bNE -raL -raL -raL -bNE -bNE -bNE -raL -wND -imp -raL +nAr +mXY +uAv +qzB +gma +gma +gma +nAr +nAr +nAr +gma +gma +gma +nAr +mXY +qJJ +nAr rja rja rja rja rja rja -wQb +obT kMq -cOj +gFG bis ewE ycC @@ -61099,9 +61117,9 @@ bis bis bis bis -bPQ -rJF -akp +uRO +bEO +kEE bis bis bnA @@ -61110,43 +61128,43 @@ cEw bnA bnA bnA -vql -wSU -wSU -wSU -oVk -vBX -wSU -bem -rhh +pqq +joz +joz +joz +ptV +fXv +joz +lGm +aVh jji vjG -gcx -guz -byT -pVD -mKx -dBt -nMp -nMp -nMp -nMp -nMp -nMp -nMp -mDq -rdo -mAt -nMp -nMp -rdo -xiL -xiL -mAt -nMp -nMp -rdo -rft +rol +jiW +nyo +vPk +ohI +dsQ +qfU +qfU +qfU +qfU +qfU +qfU +qfU +dDS +djd +dMv +qfU +qfU +djd +wRZ +wRZ +dMv +qfU +qfU +djd +vxV gEx bQM bQM @@ -61156,15 +61174,15 @@ bQM twb qDn hUO -pBb +rxz cME cME eLu jgu iSu vtl -tkj -oer +cdD +ajK bNT esZ kDN @@ -61172,15 +61190,15 @@ kDN kDN exO wbI -oPU -oPU +uGM +uGM eLu -dFK -kTs -kTs -yet -gSC -vnA +vVu +cEl +cEl +ycd +xzr +mRk twb kPz bQM @@ -61227,138 +61245,138 @@ bQM agi agi agi -lvD -jnU +lwK +uTX pCX -oiV -lvD +nBV +lwK agi -nub -ifL +gEF +dfD hoZ hoZ hoZ -nub -qYZ -oiV -neT -xdL -lLQ -jnU -lvD -pPo -oiV -lLQ -jnU -vFA -bNE +gEF +eQD +nBV +qQO +rVS +njx +uTX +lwK +xfR +nBV +njx +uTX +vzk +gma apf iLJ apf -bNE -bNE -bNE -bNE +gma +gma +gma +gma rja -wQb -bNE -bNE -pQz -kyF -kyF -kyF -kyF -xYR -ceB -frc -nEh -kyF -bpo -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -kyF -hoo +obT +gma +gma +mOF +iOt +iOt +iOt +iOt +sPC +iZt +cOn +cnn +iOt +hSf +iOt +iOt +iOt +iOt +iOt +iOt +iOt +iOt +iOt +iOt +iOt +iOt +iOt +iOt +iOt +iOt +hJw kMq -umg +qam bis ewE ycC kCI bis -xzN -bDM -bTc +lOE +mTX +gQx lqq mxR lqq lqq lqq -ilM -bDM -pgQ +ahn +mTX +axi bis bFr -hIX -rJF -akp -bHt +aaj +bEO +kEE +iFD bFr cEw cEw cEw cEw bnA -aQR -wSU -wSU +oKl +joz +joz uSA -wSU -oVk -vBX -kok -bem -guz -gcx +joz +ptV +fXv +vrc +lGm +jiW +rol okv -gcx -guz -byT +rol +jiW +nyo wrR -vdH -eyv +plr +ilI wrR wrR -oJl -iOX -vXk +kbA +gyi +gYA wrR ipd wrR -qjX -wDe -xiL -iOX -pGy -eYN -eYN -ybx -iOX -xiL -rKy -rft +oJU +vhC +wRZ +gyi +nnX +dyd +dyd +vqb +gyi +wRZ +cLR +vxV tRH tRH tRH @@ -61368,15 +61386,15 @@ twb twb nzU lvg -pBb +rxz cME uzw eLu jgu jgu fic -tkj -oer +cdD +ajK bNT azs deB @@ -61384,15 +61402,15 @@ sjR deB auQ wbI -oPU -oPU +uGM +uGM eLu -sIs -kTs -kTs -hgA -vnG -kRO +nBp +cEl +cEl +kPJ +clG +kDW twb kPz bQM @@ -61439,93 +61457,93 @@ bQM aWV fXL fXL -sjT -pmv +gXH +hAp iDq iDq -sjT +gXH fXL agi -jHz +fGb hoZ hoZ hoZ -nub -qYZ -lvD -jCe -sxk -ddN -lvD -lvD -jnU -xvC -lLQ -jnU -oiV +gEF +eQD +lwK +vco +usq +uFX +lwK +lwK +uTX +wRv +njx +uTX +nBV uQE apf apf -bNE -gAh +gma +eWu egv egv rja rja -wQb -bNE -bNE -vgi -bNE -bNE -bNE -bNE -bNE -vSC -eJK -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE -bNE +obT +gma +gma +wEa +gma +gma +gma +gma +gma +qDi +xkj +gma +gma +gma +gma +gma +gma +gma +gma +gma +gma +gma +gma +gma kMq kMq -bNE -bNE -bNE +gma +gma +gma kMq kMq -bNE -cOj +gma +gFG bis kCI ycC bis bis -gKG -gjY -lKP +cGm +kLY +klL lqq lqq lqq epV lqq -oYG -bXh -lpd +hZp +lmr +pIo bis bis -kCj -rJF -eqS +fRG +bEO +xDe bis bFr cEw @@ -61533,48 +61551,48 @@ cEw cEw cEw bnA -tEX +xrU uSA uSA -wSU -wSU -eys -vBX -wSU -nJq -guz -gcx +joz +joz +aVE +fXv +joz +lhj +jiW +rol kEj -gcx -guz -jYn -pVD -iQH -mKx +rol +jiW +emU +vPk +oWc +ohI ipd -ncs -mKx -xiL -mKx -xiL -gvr +rWi +ohI +wRZ +ohI +wRZ +saQ ipd -rKy -rft -vAX -kle -mLm -kat -jVM -omN -nrd -vAX -rKy -rft +cLR +vxV +xYA +qqa +uOR +nYk +nQN +oCI +tUe +xYA +cLR +vxV wrR -iOX -iOX -jqM +gyi +gyi +kCG wrR eLu eLu @@ -61587,8 +61605,8 @@ eLu noe qun msu -lte -hdA +qnE +oaI fbo wbI fZD @@ -61596,14 +61614,14 @@ wbI wbI wbI wbI -oPU -oPU +uGM +uGM eLu -kon -kTs -kTs -vnG -uIg +qmS +cEl +cEl +clG +cyu twb twb kPz @@ -61651,79 +61669,79 @@ bQM agi agi agi -lvD -jnU +lwK +uTX hoZ -oiV -lvD +nBV +lwK agi -jHz -jHz +fGb +fGb hoZ hoZ hoZ jXz -rHV -lLQ -lvD -otg -lvD -lLQ -cNe -jCe -ddN -agi -jCe -ddN +onw +njx +lwK +ykT +lwK +njx +pyv +vco +uFX +agi +vco +uFX apf esS -bNE +gma egv egv egv egv eXp rja -oEi -xDk -sWe -kzx -sWe -wED -sWe -oEi -kyF -kyF -xDk -sWe -wED -sWe -sWe -sWe -sWe -sWe -wED -sWe -oEi -kyF -kyF -xDk -sWe -sWe -wED -sWe -sWe -sWe -sWe -sWe -lRr +dUs +uAv +vky +rHx +vky +xKf +vky +dUs +iOt +iOt +uAv +vky +xKf +vky +vky +vky +vky +vky +xKf +vky +dUs +iOt +iOt +uAv +vky +vky +xKf +vky +vky +vky +vky +vky +dOs bis tgB tgB bis nOz -mCp -gTi +tvX +rJK xst lqq lqq @@ -61731,67 +61749,67 @@ lqq lqq lqq vrT -mCp -gTi +tvX +rJK nOz bis -bPQ -qGh -akp -bHt +uRO +uxp +kEE +iFD bFr cEw cEw cEw cEw bnA -dCt -wSU -wSU +jxN +joz +joz uSA -wSU -wSU -vBX -kok -nJq -guz -gcx +joz +joz +fXv +vrc +lhj +jiW +rol okv -gcx -guz -jYn -pVD -mKx -mKx +rol +jiW +emU +vPk +ohI +ohI ipd -drt -mKx -xiL -mKx -xiL -ltz +oxN +ohI +wRZ +ohI +wRZ +ozH ipd -rKy -iEA -vAX -hWz +cLR +vha +xYA +nBK bSM bSM bSM bSM -vCm -vAX -rKy -rft +qVF +xYA +cLR +vxV wrR -oJl -iOX -tJC +kbA +gyi +cxn wrR -qzo -neE -iTK -uMc +jKm +aGV +ofb +nRf eLu cME cME @@ -61799,23 +61817,23 @@ eLu fOg xVK fZD -tkj -oer -oPU -oPU -oPU -oPU -oPU -oPU -oPU -mpb +cdD +ajK +uGM +uGM +uGM +uGM +uGM +uGM +uGM +gUO vhB ayX -kTs +cEl gfo gfo -kTs -kSB +cEl +fBp twb twb kPz @@ -61863,11 +61881,11 @@ azZ agi agi hoZ -lvD -jnU +lwK +uTX hoZ -oiV -lvD +nBV +lwK hoZ hoZ hsc @@ -61875,13 +61893,13 @@ hoZ bmV aWV jXz -afX -cNe -lvD -lvD -kvg -lvD -lvD +oxg +pyv +lwK +lwK +tjU +lwK +lwK agi agi agi @@ -61889,24 +61907,24 @@ agi agi apf apf -bNE +gma egv egv tel ioM ioM ioM -sKu -iXs +oAm +vQN ioM ioM ioM ioM ioM -sKu -chx -chx -iXs +oAm +vMh +vMh +vQN ioM ioM ioM @@ -61916,17 +61934,17 @@ ioM ioM ioM ioM -sKu -chx -chx -iXs +oAm +vMh +vMh +vQN ioM ioM hVI hVI hVI -jMh -jMh +hDy +hDy hVI hVI hVI @@ -61934,22 +61952,22 @@ nXj nXj sJu lqq -mCp -gTi +tvX +rJK kHf -tcL +rlC nOz pVR nOz -jeL +jBS fKm -mCp -gTi +tvX +rJK lqq wpD -bPQ -rJF -akp +uRO +bEO +kEE bis bFr cEw @@ -61958,52 +61976,52 @@ cEw cEw cEw bnA -rPf -wSU -wSU -wSU -wSU -vBX -xNn -eBr -guz -gcx +nBu +joz +joz +joz +joz +fXv +eZm +tMn +jiW +rol okv -gcx -guz -jYn -pVD -mKx -mKx +rol +jiW +emU +vPk +ohI +ohI ipd -kFd -mKx -sMY -mKx -xiL -vwN +iMM +ohI +xfV +ohI +wRZ +nIo ipd -rKy -rft -vAX -wyd -oby -oby -oby -oby -ftd -vAX -rKy -mdS +cLR +vxV +xYA +mLS +eLO +eLO +eLO +eLO +eew +xYA +cLR +jya aMM -tSm -tSm -tSm +kul +kul +kul aMM -gag -ubP -ubP -ejs +sRV +fnB +fnB +xDQ liA cME cME @@ -62011,23 +62029,23 @@ liA nCX nCX wbI -tkj -oer -oPU -mpb -oPU -oPU -oPU -oPU -oPU -oPU +cdD +ajK +uGM +gUO +uGM +uGM +uGM +uGM +uGM +uGM vhB ayX -kTs +cEl gfo gfo -kTs -pYz +cEl +mJz twb twb kPz @@ -62075,11 +62093,11 @@ azZ agi agi agi -lvD -jnU +lwK +uTX pCX -oiV -lvD +nBV +lwK hoZ hoZ hsc @@ -62088,9 +62106,9 @@ hoZ aWV aWV aWV -wIy -wIy -wIy +eDs +eDs +eDs jXz aWV agi @@ -62101,25 +62119,25 @@ agi agi apf apf -gAh +eWu egv egv tel ioM ioM ioM -dOO -oTi +mJy +cwO ioM hVI hVI -slh -vfL -dAg -jbq -jbq -brC -gQz +goA +wYx +ryN +jEb +jEb +tur +kiE hVI hVI hVI @@ -62127,15 +62145,15 @@ hVI hVI hVI hVI -bLM -dAg -jbq -jbq -brC -uMT +fPZ +ryN +jEb +jEb +tur +tSn sJu -vBF -qrn +nFI +iPM hVI bmE bmE @@ -62146,8 +62164,8 @@ mEO mEO hVI nOz -mCp -gTi +tvX +rJK eTc sfi mWX @@ -62155,67 +62173,67 @@ mWX mWX ifk eTc -mCp -gTi +tvX +rJK nOz bis -bPQ -rJF -rkv -fVs +uRO +bEO +olC +vNt cvn bQM bQM bQM kPz wyT -wSU -dXK -guz -aAA -wSU -wSU -vBX -ojk -vBX -guz -gcx +joz +tBt +jiW +kpm +joz +joz +fXv +fUF +fXv +jiW +rol okv -gcx -guz -jYn +rol +jiW +emU wrR -vdH -eyv +plr +ilI wrR wrR -oJl -iOX -vXk +kbA +gyi +gYA wrR ipd wrR -qjX -rft -xiL -iOX -qGf -iOX -vQi -iOX -iOX -xiL -rKy -mAt +oJU +vxV +wRZ +gyi +hdv +gyi +xeD +gyi +gyi +wRZ +cLR +dMv aMM -nMp -nMp -nMp +qfU +qfU +qfU aMM -gag -ubP -ubP -ubP +sRV +fnB +fnB +fnB phe uJg cME @@ -62223,9 +62241,9 @@ eLu kDN exO wbI -tkj -oer -oPU +cdD +ajK +uGM eLu eLu eLu @@ -62235,10 +62253,10 @@ eLu eLu eLu eLu -cmE -kTs -kTs -lJI +jJG +cEl +cEl +wCV eLu twb twb @@ -62288,26 +62306,26 @@ agi agi agi aWV -wIy -wIy -wIy +eDs +eDs +eDs jXz -nub -nub +gEF +gEF agi agi -jHz -jHz +fGb +fGb jXz -pgb -pgb -pgb -pgb -pgb +rPh +rPh +rPh +rPh +rPh jXz xLi -sQz -iFz +smq +uPz azZ xLi rja @@ -62320,35 +62338,35 @@ ioM ioM ioM ioM -sKu -iXs +oAm +vQN ioM hVI -fCr -bLM -bLM -bLM -bLM -bLM -bLM -bLM -fCr +hBX +fPZ +fPZ +fPZ +fPZ +fPZ +fPZ +fPZ +hBX hVI hVI hVI hVI hVI -fCr -bLM -eRZ -trN -bLM -bLM -uMT +hBX +fPZ +ouS +xUq +fPZ +fPZ +tSn sJu cyV cyV -qrn +iPM cyV cyV sJu @@ -62358,76 +62376,76 @@ mJk svh hVI bis -mCp -iYa -bDM -bDM -bDM -bDM -bDM -bDM -bDM -szs -gTi +tvX +tcO +mTX +mTX +mTX +mTX +mTX +mTX +mTX +hOz +rJK bis bis -bPQ -rJF -rJF -akp +uRO +bEO +bEO +kEE cvn kPz kPz kPz cEw wyT -wSU -fXI -guz -aAA -wSU -wSU -vBX -ojk -vBX -guz -gcx +joz +eAy +jiW +kpm +joz +joz +fXv +fUF +fXv +jiW +rol okv -gcx -guz -bxA -cKU -xiL -iTJ -tSm -tSm -tSm -tSm -tSm -tSm -tSm -tSm -sbW -mdS -tSm -tSm -tSm -tSm -tSm -tSm -tSm -tSm -sbW -rft +rol +jiW +dmH +xDz +wRZ +lfJ +kul +kul +kul +kul +kul +kul +kul +kul +elq +jya +kul +kul +kul +kul +kul +kul +kul +kul +elq +vxV wrR -iOX -iOX -iOX +gyi +gyi +gyi wrR -ubP -ubP -ubP -iTK +fnB +fnB +fnB +ofb eLu cME cME @@ -62435,17 +62453,17 @@ eLu deB auQ wbI -tkj -oer -lgS +cdD +ajK +wRn eLu eLu eLu -bhf -bhf +mea +mea eLu -bhf -bhf +mea +mea eLu eLu ppI @@ -62499,68 +62517,68 @@ azZ azZ azZ azZ -pgb -pgb -pgb -pgb -pgb -mvp -cJL +rPh +rPh +rPh +rPh +rPh +xjK +kRt azZ xLi ddL ddL xLi -mvp -mvp -mvp -rYw -mvp -luZ -mvp -mvp -mvp -azZ -azZ -bLM -bLM -bLM +xjK +xjK +xjK +pQh +xjK +jES +xjK +xjK +xjK +azZ +azZ +fPZ +fPZ +fPZ mEO -bLM -xsC +fPZ +vmr hVI -bPV -aJo -ayB -dAg -brC -bLM -aKb -jQs -xEH -iNt -bLM -bLM -ddB -jQs -veR -fYa -fYa -gbv -gBN -jpQ -xEH -bLM -bLM -oQk -hOG -xMX -veR +jTG +kwK +kye +ryN +tur +fPZ +nHH +mhb +aja +leR +fPZ +fPZ +mFh +mhb +dFG +dla +dla +iRc +nsb +wVL +aja +fPZ +fPZ +bGs +hjr +bdL +dFG ioM hVI cyV cyV -qrn +iPM cyV mbg ioM @@ -62570,76 +62588,76 @@ mrX mrX pkM bis -wzH -tyj -tyj -tyj -bXh -rJF -nTv -tyj -tyj -tyj -dtS +wjk +bJF +bJF +bJF +lmr +bEO +nrY +bJF +bJF +bJF +dgF bis -byB -etj -wpy -cCO -akp +sXy +usa +vNF +uqa +kEE cvn bQM bQM bQM wyT -wSU -yeX -pen +joz +ndt +pLh ofw -ppS -hGn -lit -vBX -aje -vTI -guz -gcx +jNA +bzL +mrO +fXv +vdI +ivL +jiW +rol okv -gcx -guz -vBX -evT -xiL -rKy -xiL -xiL -xiL -vCl -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -xiL -fXD +rol +jiW +fXv +bYB +wRZ +cLR +wRZ +wRZ +wRZ +uRX +wRZ +wRZ +wRZ +wRZ +wRZ +wRZ +wRZ +wRZ +wRZ +wRZ +wRZ +wRZ +wRZ +wRZ +wRZ +mOn wrR wrR jRh wrR wrR -rfQ -qMI -ubP -neE +lbk +crO +fnB +aGV eLu eLu eLu @@ -62647,9 +62665,9 @@ eLu sGI szK wbI -mPX -qhk -oPU +iFj +xIo +uGM eLu mTM gyJ @@ -62663,8 +62681,8 @@ gyJ cME cME eLu -tHJ -lQJ +jvB +vsg twb twb twb @@ -62708,73 +62726,73 @@ lAh lAh azZ azZ -hae -hae -ceJ -mJH -hAX -tsA -oZk -mvp -lkr -hae -hae -ncF -hae -hae -hae -hae -hae -hae -hae -hae -hae -hae -hae -hae -azZ -azZ -azZ -kpe -jQs -jQs +sqg +sqg +xRh +hhl +hTt +iHU +iYq +xjK +xMg +sqg +sqg +szQ +sqg +sqg +sqg +sqg +sqg +sqg +sqg +sqg +sqg +sqg +sqg +sqg +azZ +azZ +azZ +lle +mhb +mhb mEO -jQs +mhb mEO mEO -bLM -oTi -ddB -jQs -xEH -dOO -asI -oTi -ddB -jQs -xEH -dOO -bLM -dVD -ddB -jQs -xEH -dOO -bLM -oTi -ddB -nmK -xEH -xfh -bLM -ftS +fPZ +cwO +mFh +mhb +aja +mJy +qxL +cwO +mFh +mhb +aja +mJy +fPZ +vkC +mFh +mhb +aja +mJy +fPZ +cwO +mFh +vtn +aja +jUB +fPZ +vbF ioM hVI -qrn -qrn +iPM +iPM hVI -qrn -qrn +iPM +iPM ioM ioM bmE @@ -62786,9 +62804,9 @@ jUs clP oxS eTc -gdQ -rJF -gTi +nHG +bEO +rJK eTc clP oxS @@ -62796,72 +62814,72 @@ iwf bFr cvn cvn -bPQ -rJF -akp +uRO +bEO +kEE cvn bFr cvn cvn cEw -wSU -wSU -fXI -guz -aAA -wSU -wSU -vBX -kok -nJq -guz -gcx +joz +joz +eAy +jiW +kpm +joz +joz +fXv +vrc +lhj +jiW +rol okv -gcx -guz -eQY -sVd -xiL -sFd -nMp -nMp -nMp -nMp -nMp -nMp -nMp -nMp -rdo -mAt -nMp -nMp -nMp -nMp -nMp -nMp -nMp -nMp -rdo -rft +rol +jiW +bLd +gMV +wRZ +rkr +qfU +qfU +qfU +qfU +qfU +qfU +qfU +qfU +djd +dMv +qfU +qfU +qfU +qfU +qfU +qfU +qfU +qfU +djd +vxV wrR -iOX -iOX -iOX +gyi +gyi +gyi wrR -ubP -ubP -ubP -ubP +fnB +fnB +fnB +fnB fXB -voi -voi +jUI +jUI vhB -oPU -oPU -oPU -oPU -oPU -lRq +uGM +uGM +uGM +uGM +uGM +lzX liA cME cME @@ -62875,10 +62893,10 @@ xno cME cME ayX -qsF -dYV -upf -nWB +hxg +goz +tUr +fAh twb kPz kPz @@ -62919,76 +62937,76 @@ bQM azZ azZ azZ -eqU -eqU -uAg -kpq -mvp -pgb -dqX -jFD -mvp -cer -pvF -eqU -eHn -eqU -eqU -eqU -eqU -eqU -hmE -eqU -hvp -uAg -pvF -eqU -qSA -eqU +kbO +kbO +dFk +ezJ +xjK +rPh +ruy +iZn +xjK +tOr +hmk +kbO +mqo +kbO +kbO +kbO +kbO +kbO +fhZ +kbO +tLY +dFk +hmk +kbO +vFF +kbO azZ azZ azZ -jbq -jbq -jbq -jbq +jEb +jEb +jEb +jEb mEO -dAg -jbq -brC -dOO -bLM -oTi -dAg -jbq -brC -dOO -bLM -oTi -dAg -jbq -rcE -dOO -ekz -ftS -dAg -jbq -brC -kQr -bLM -oTi -dAg -jbq -evk -uMT +ryN +jEb +tur +mJy +fPZ +cwO +ryN +jEb +tur +mJy +fPZ +cwO +ryN +jEb +qBG +mJy +wRo +vbF +ryN +jEb +tur +idT +fPZ +cwO +ryN +jEb +deE +tSn sJu cyV cyV -qrn +iPM cyV cyV -qrn -qrn +iPM +iPM cyV tQB bQM @@ -62998,9 +63016,9 @@ jjW tna umW jjW -mCp -rJF -gTi +tvX +bEO +rJK jjW tna umW @@ -63011,69 +63029,69 @@ cvn iKs iKs iKs -kpR -uLM -cxc -ldd -nIb -gSK -wSU -fXI -guz -aAA -wSU -wSU -vBX +gQh +qwl +ilX +rkQ +xrs +bUy +joz +eAy +jiW +kpm +joz +joz +fXv bnA -bem -guz -pCH -awL -wSt -guz -jYn +lGm +jiW +rue +dfV +efS +jiW +emU wrR -mKx -rft -xiL -iOX -pGy -eYN -eYN -ybx -iOX -xiL -gmx -rft -kgY -mxm -pGy -eYN -eYN -ybx -jqM -xiL -rKy -mdS +ohI +vxV +wRZ +gyi +nnX +dyd +dyd +vqb +gyi +wRZ +tRt +vxV +eqq +nrI +nnX +dyd +dyd +vqb +kCG +wRZ +cLR +jya aMM -tSm -tSm -tSm +kul +kul +kul aMM -gag -ubP -ubP -ubP +sRV +fnB +fnB +fnB fXB -voi -voi +jUI +jUI vhB -oPU -oPU -oPU -oPU -oMu -oPU +uGM +uGM +uGM +uGM +wQs +uGM eLu cME cPq @@ -63087,10 +63105,10 @@ cPq cME cME ayX -qsF +hxg mHC gfo -ivK +bNz twb twb kPz @@ -63133,74 +63151,74 @@ azZ azZ azZ azZ -nQE -kpq -mvp -gTN -wln -rot -mvp -xmC -kpq +ghv +ezJ +xjK +hUh +iJC +iZZ +xjK +muT +ezJ azZ azZ -mvp -mvp -mvp -mvp -mvp -mvp -mvp -mvp -cer -kpq -jVt -mvp -mvp -erj +xjK +xjK +xjK +xjK +xjK +xjK +xjK +xjK +tOr +ezJ +nvZ +xjK +xjK +tuo azZ azZ azZ azZ -eLw -xsC +jlg +vmr hVI -xsC -bLM -bLM -dAg -jbq -brC -bLM -bLM -bLM -dAg -jbq -brC -bLM -bLM -oQk -iKO -jbq -uJQ -bLM -raP -bLM -fqh -aSm -brC -bLM -bLM -bLM -omO +vmr +fPZ +fPZ +ryN +jEb +tur +fPZ +fPZ +fPZ +ryN +jEb +tur +fPZ +fPZ +bGs +kic +jEb +eYi +fPZ +ajN +fPZ +mUk +rfq +tur +fPZ +fPZ +fPZ +dxA sJu cyV cyV -qrn +iPM kvx cyV -qrn -qrn +iPM +iPM cyV tQB bQM @@ -63210,9 +63228,9 @@ jjW tna umW ovM -mCp -rJF -gTi +tvX +bEO +rJK alX tna umW @@ -63220,90 +63238,90 @@ jjW cvn bQM cvn -vCu -rJF -qGh -wNX -wNX -wNX -wNX -lri -wSU -yeX -pen +gpB +bEO +uxp +ruv +ruv +ruv +ruv +eeL +joz +ndt +pLh ofw -ppS -hGn -lit -tSY +jNA +bzL +mrO +feY bnA -nJq -guz -guz -guz -guz -guz -jYn +lhj +jiW +jiW +jiW +jiW +jiW +emU wrR -mKx -rft -aYf -kle -mLm -kat -jVM -omN -nrd -vAX -rKy -rft -oeV -kle -mLm -kat -jVM -omN -nrd -vAX -rKy -mAt +ohI +vxV +otG +qqa +uOR +nYk +nQN +oCI +tUe +xYA +cLR +vxV +meM +qqa +uOR +nYk +nQN +oCI +tUe +xYA +cLR +dMv aMM -nMp -nMp -nMp +qfU +qfU +qfU aMM -gag -ubP -iwu -ubP +sRV +fnB +tZo +fnB fXB -voi -voi +jUI +jUI vhB -lgx -oPU -oPU -oPU -oPU -lgS +xnS +uGM +uGM +uGM +uGM +wRn eLu eLu eLu -bhf -bhf +mea +mea eLu -bhf -bhf +mea +mea eLu eLu cME cME eLu -wxl -hZN +fWD +uJM gfo -dYV -dxv +goz +opC twb kPz bQM @@ -63346,30 +63364,30 @@ azZ azZ azZ azZ -kpq -pgb -vFS -pgb -pgb -pgb -nQE -kpq +ezJ +rPh +hWB +rPh +rPh +rPh +ghv +ezJ azZ xLi xLi xLi -rHX -rHX -esR +dNF +dNF +jmM xLi -hrA -mvp -cer -kpq -jdn -mvp -mvp -erj +idV +xjK +tOr +ezJ +npV +xjK +xjK +tuo azZ azZ azZ @@ -63379,11 +63397,11 @@ aFZ ioM ioM ioM -xUn -xUn -xUn -xUn -xUn +iCo +iCo +iCo +iCo +iCo aFZ aFZ tQB @@ -63393,27 +63411,27 @@ tQB tQB aFZ aFZ -bLM -bLM -bLM +fPZ +fPZ +fPZ hVI hVI hVI hVI hVI -luf -hDV -luf +daP +yfB +daP ioM hVI -qrn -qrn -qrn -qrn -hIO +iPM +iPM +iPM +iPM +ykI hVI -fDi -cqX +uLX +kZI tQB bQM bQM @@ -63422,9 +63440,9 @@ jjW tna umW jjW -mCp -rJF -gTi +tvX +bEO +rJK jjW tna umW @@ -63435,59 +63453,59 @@ cvn iKs iKs iKs -rJF +bEO iKs iKs iKs -wSU -wSU -wSU -fXI -guz -aAA -wSU -wSU -vBX +joz +joz +joz +eAy +jiW +kpm +joz +joz +fXv bnA -mOm -cZP -vov -vBX -qLv -cZP -jRC +mRT +hxk +pip +fXv +pCS +hxk +nLh wrR -vdH -rft -vAX -hWz +plr +vxV +xYA +nBK bSM bSM bSM bSM -wYP -vAX -rKy -rft -lIH -hWz +kSL +xYA +cLR +vxV +mCG +nBK bSM bSM bSM bSM -vCm -vAX -rKy -rft +qVF +xYA +cLR +vxV wrR -oJl -iOX -tJC +kbA +gyi +cxn wrR -ubP -ubP -ubP -aTx +fnB +fnB +fnB +vGe eLu eLu eLu @@ -63512,10 +63530,10 @@ tPN twb twb twb -vQJ -kTs -kTs -hej +laG +cEl +cEl +krT twb kPz kPz @@ -63558,29 +63576,29 @@ azZ azZ azZ azZ -kpq +ezJ azZ azZ azZ azZ azZ -cer +tOr azZ azZ xLi -oZf -rHX -lkr -hae -ceJ -sbL -mvp -mvp -cer -kpq -fKP -mvp -vRH +eXd +dNF +xMg +sqg +xRh +pBn +xjK +xjK +tOr +ezJ +sNd +xjK +ehf azZ azZ azZ @@ -63591,11 +63609,11 @@ aFZ ioM ioM ioM -qrn -byY -byY -byY -eRF +iPM +idE +idE +idE +qUQ aFZ bQM bQM @@ -63610,22 +63628,22 @@ jjs hVI hVI jvm -tja +kqz aif -xuQ -tja -tja -tja +hvi +kqz +kqz +kqz ioM -iUc -nEB -qrn -qrn -qrn -bwj +gSD +dDm +iPM +iPM +iPM +tng hVI -fDi -cqX +uLX +kZI tQB bQM bQM @@ -63634,9 +63652,9 @@ jjW tna umW alX -mCp -rJF -gTi +tvX +bEO +rJK jjW tna umW @@ -63644,62 +63662,62 @@ jjW cvn bQM cvn -bPQ -rJF -rJF -xow -pBe -xow -xow -caC -wSU -wSU -fXI -guz -aAA -wSU -wSU -lNP +uRO +bEO +bEO +vMQ +rrP +vMQ +vMQ +nrR +joz +joz +eAy +jiW +kpm +joz +joz +aiV bnA bnA -eOI -aqj -fpN -bQj -oxU +vGV +eXU +noY +tVG +xhc wrR wrR -mKx -rft -vAX -wyd -oby -oby -oby -oby -ftd -vAX -rKy -rft -iiz -wyd -oby -oby -oby -hKP -ftd -vAX -rKy -rft +ohI +vxV +xYA +mLS +eLO +eLO +eLO +eLO +eew +xYA +cLR +vxV +xOV +mLS +eLO +eLO +eLO +lCE +eew +xYA +cLR +vxV wrR -iOX -iOX -iOX +gyi +gyi +gyi wrR axA -ubP -ubP -ubP +fnB +fnB +fnB eLu iuZ cME @@ -63707,9 +63725,9 @@ nUJ cME cME eLu -voi -voi -xUr +jUI +jUI +lrC itN swg fQV @@ -63724,10 +63742,10 @@ fQV fQV erT twb -chE +bxr kMU gfo -ivK +bNz twb twb kPz @@ -63780,36 +63798,36 @@ phz azZ azZ xLi -tYU -lkr -hae -ceJ -bGH -kWS -mvp -mvp -cer -kpq -mvp -mvp -mvp -azZ -azZ -azZ -bQM -dPZ -ogf -ogf -tsc -bEk -tsc -tii -tii -tii -tii -tii +mNj +xMg +sqg +xRh +pAe +qTr +xjK +xjK +tOr +ezJ +xjK +xjK +xjK +azZ +azZ +azZ +bQM +pfi +hbC +hbC +ssD +iSi +ssD +oYH +oYH +oYH +oYH +oYH bTI -bEk +iSi hEb hzG hzG @@ -63817,26 +63835,26 @@ hay vmj bQM aFZ -cdY -tja -tja +fTA +kqz +kqz hVI iJF -nuN +tVt hVI -nQl -tja -tja -cgx +mbi +kqz +kqz +bII ioM -qrn +iPM cyV ndZ -qrn +iPM cyV cyV -qrn -qrn +iPM +iPM cyV tQB bQM @@ -63846,9 +63864,9 @@ jjW tna umW jjW -mCp -rJF -gTi +tvX +bEO +rJK jjW tna umW @@ -63859,59 +63877,59 @@ cvn iKs iKs iKs -kpR -iDQ -sUr -iyY -nIb -lQo +gQh +keV +pYI +oAa +xrs +qbD cEw wyT wyT wyT -wSU -wSU -vBX -vBX -guz -vBX -vBX -vBX -vBX -bXA -teq -xiL -mKx -rft -xiL -iOX -iOX -iOX -jqM -jqM -iOX -xiL -rKy -rft -xiL -iOX -iOX -iOX -iOX -iOX -iOX -xiL -rKy -rft +joz +joz +fXv +fXv +jiW +fXv +fXv +fXv +fXv +bcH +guG +wRZ +ohI +vxV +wRZ +gyi +gyi +gyi +kCG +kCG +gyi +wRZ +cLR +vxV +wRZ +gyi +gyi +gyi +gyi +gyi +gyi +wRZ +cLR +vxV wrR wrR jRh wrR wrR xiF -ubP -ubP -ejs +fnB +fnB +xDQ liA cME nqL @@ -63919,9 +63937,9 @@ cME cME cME eLu -voi -voi -lwA +jUI +jUI +sRk uGT bTo afk @@ -63936,11 +63954,11 @@ afk afk iWq tPN -rMo -kTs -kTs -ape -exy +uxO +cEl +cEl +dtc +mBy twb kPz bQM @@ -63992,34 +64010,34 @@ kBE azZ azZ xLi -aJk -muX -mvp -kpq -iOY -tYU -mvp -mvp -cer -gpA -luZ +mSY +nee +xjK +ezJ +dsT +mNj +xjK +xjK +tOr +ayv +jES lAh lAh azZ azZ bQM bQM -bmT +gEU bQM bQM -vxz -iSR -vxz -mPe -esw -esw -esw -esw +mTy +alu +mTy +kFH +bow +bow +bow +bow bTI bQM bFA @@ -64029,26 +64047,26 @@ hXZ aLp aLp aFZ -gnG -tja -tja +nwh +kqz +kqz hVI xgn -tja +kqz hVI -tpZ -xhL -tja -tja +bgR +kcn +kqz +kqz sJu -qrn +iPM lwd ndZ -qrn +iPM cyV cyV -qrn -qrn +iPM +iPM cyV aFZ aFZ @@ -64058,9 +64076,9 @@ jUs clP clP eTc -mCp -rJc -gTi +tvX +wEY +rJK eTc clP clP @@ -64068,9 +64086,9 @@ iwf bFr cvn cvn -bPQ -wIL -akp +uRO +oTl +kEE cvn bFr cvn @@ -64081,49 +64099,49 @@ cEw bQM bQM wyT -wSU -wSU -vBX -nJu -guz -vBX -vBX -vBX -vBX -vBX -teq -xiL -xiL -iTJ -tSm -tSm -tSm -tSm -tSm -tSm -tSm -tSm -sbW -mdS -tSm -tSm -tSm -gbF -tSm -tSm -tSm -tSm -sbW -rft +joz +joz +fXv +otP +jiW +fXv +fXv +fXv +fXv +fXv +guG +wRZ +wRZ +lfJ +kul +kul +kul +kul +kul +kul +kul +kul +elq +jya +kul +kul +kul +hGz +kul +kul +kul +kul +elq +vxV wrR qQt cME dkb uGY axA -ubP -ubP -aTx +fnB +fnB +vGe eLu eLu eLu @@ -64148,11 +64166,11 @@ afk afk iWq tPN -fmE +cWR dKX gfo -rQu -fzC +aXM +bTG twb kPz bQM @@ -64204,54 +64222,54 @@ azZ azZ azZ xLi -mvp -ubX -wAQ -iOY -rHX -sbL -mvp -mvp -cer -kpq -mvp +xjK +lax +nDJ +dsT +dNF +pBn +xjK +xjK +tOr +ezJ +xjK jKR lAh azZ azZ bQM bQM -bmT +gEU bQM bQM -knY -fvH -knY -jMh -jMh -jMh -cMb -jMh +wsy +aOh +wsy +hDy +hDy +hDy +qmz +hDy bTI bQM bFA -rYY +hpJ ePq mzS lEp wWW -xXh -xuQ -gjz -tja +lBg +hvi +tST +kqz tEH -tja -tja +kqz +kqz hVI -qEl -qEl -tja -tja +bjO +bjO +kqz +kqz ioM hVI hVI @@ -64266,23 +64284,23 @@ hVI hVI ioM bis -xzN -bDM -bDM -qLa -dZK -rJF -iYa -bDM -opN -bDM -pgQ +lOE +mTX +mTX +wot +mxn +bEO +tcO +mTX +jDk +mTX +axi bis -byB -lpH -hUD -wIL -akp +sXy +ghP +xqG +oTl +kEE cvn kPz kPz @@ -64293,59 +64311,59 @@ kPz kPz kPz wyT -iSw -wSU -wSU -wSU -weB -wSU -wSU -wSU -wSU -wSU -teq -cdV -xiL -sFd -nMp -oFU -nMp -nMp -nMp -nMp -oFU -rdo -xiL -xiL -mAt -igu -nMp -nMp -nMp -nMp -nMp -nMp -nMp -eSn +xPX +joz +joz +joz +vVJ +joz +joz +joz +joz +joz +guG +tOo +wRZ +rkr +qfU +xTa +qfU +qfU +qfU +qfU +xTa +djd +wRZ +wRZ +dMv +lWD +qfU +qfU +qfU +qfU +qfU +qfU +qfU +pnv wrR bcf cME cME uGY -ubP -ubP -ubP -ubP -ubP -vnG -vnG -vnG -fRq -ubP -ubP -ubP -ubP -ubP +fnB +fnB +fnB +fnB +fnB +clG +clG +clG +qTa +fnB +fnB +fnB +fnB +fnB dCM bTo afk @@ -64360,11 +64378,11 @@ afk afk iWq tPN -mKo -kTs -kTs -bYY -dwf +jtv +cEl +cEl +lZC +sNu twb kPz bQM @@ -64417,35 +64435,35 @@ azZ azZ xLi xLi -oZf -tYU -knW -fop +eXd +mNj +olG +aoH xLi -esR -mvp -cer -kpq -mvp +jmM +xjK +tOr +ezJ +xjK efT lAh azZ azZ bQM bQM -qmv -ogf -ogf -tsc -bEk -tsc -tii -tii -tii -tii -tii +qvn +hbC +hbC +ssD +iSi +ssD +oYH +oYH +oYH +oYH +oYH bTI -bEk +iSi eHC uVX uVX @@ -64453,48 +64471,48 @@ nHZ tHL sTu aFZ -xuQ -tja -tja +hvi +kqz +kqz hVI ieu ieu hVI hVI -qEl -tja -tja -qrn -hGg -tge -pFc -stU +bjO +kqz +kqz +iPM +rPQ +dVe +cmg +bzH ioM -esw +bow ioM hVI -byY -nfZ -qmj +idE +xwy +cRN ioM bis -mCp -nTv -tyj -tyj -nvn -rJF -nTv -tyj -tyj -bXh -gTi +tvX +nrY +bJF +bJF +oIR +bEO +nrY +bJF +bJF +lmr +rJK bis bis -bPQ -rJF -rJF -akp +uRO +bEO +bEO +kEE cvn bQM bQM @@ -64526,10 +64544,10 @@ tRH tRH nqN ceC -dCn -dCn -dCn -wIk +nIh +nIh +nIh +fHh ceC nqN tRH @@ -64544,20 +64562,20 @@ eLu cME cME ggk -iTj -ubP -qMI -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP +jAx +fnB +crO +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB nqN aKA jlH @@ -64572,10 +64590,10 @@ jlH jlH bUB twb -ifP +miu gfo gfo -ivK +bNz twb twb kPz @@ -64634,10 +64652,10 @@ lAh lAh lAh lAh -mvp -mvp -cer -kpq +xjK +xjK +tOr +ezJ xLi xLi azZ @@ -64651,11 +64669,11 @@ aFZ aFZ aFZ aSS -qrn -byY -duW -byY -qrn +iPM +idE +xDg +idE +iPM aFZ bQM bQM @@ -64665,48 +64683,48 @@ bQM bQM bQM aFZ -mdz -xhL -tja +gkZ +kcn +kqz tEH gOJ rQK uVD aif -eVN -ddB -rie -jQs -jQs -jQs -qhC -jQs -umz -xEH +wlR +mFh +bPk +mhb +mhb +mhb +iti +mhb +mct +aja ioM -dTX +bfg mEO mEO mEO ioM nOz -mCp -gTi +tvX +rJK eTc clP -wzH -fIL -dtS +wjk +pat +dgF clP eTc -mCp -gTi +tvX +rJK nOz bis -bPQ -rJF -kKd -akp +uRO +bEO +trB +kEE cvn bQM bQM @@ -64721,14 +64739,14 @@ bQM bQM bQM dCM -fDb -ihB -ihB -ihB -ihB -ihB -ihB -ihB +qdB +tHs +tHs +tHs +tHs +tHs +tHs +tHs dCM bQM kPz @@ -64737,12 +64755,12 @@ bQM kPz bQM dCM -dUu -sNU -dHU -ubP -vIG -gag +mdn +ftv +tPQ +fnB +xca +sRV dCM bQM kPz @@ -64754,22 +64772,22 @@ pJK eLu kNY cME -itK +aJg uGY -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB uGY aWk aWk @@ -64784,10 +64802,10 @@ pRG aWk twb twb -vQJ -kTs -kTs -wnM +laG +cEl +cEl +ajH twb kPz kPz @@ -64845,11 +64863,11 @@ xLi xLi xLi xLi -pSs -mBJ -mvp -cer -kpq +qVq +sgb +xjK +tOr +ezJ lAh lAh lAh @@ -64863,11 +64881,11 @@ aFZ aFZ mIu ioM -xUn -xUn -xUn -xUn -xUn +iCo +iCo +iCo +iCo +iCo aFZ fQV fQV @@ -64877,33 +64895,33 @@ tQB tQB aFZ aFZ -wDw -ylW -ylW +gHF +tHX +tHX tEH gtH uVD ppX hVI -ceq -dAg -iea -mzK -jbq -jbq -qDZ -jbq -iea -oTi +auH +ryN +pNV +sjw +jEb +jEb +pdw +jEb +pNV +cwO ioM -ihp +hKW mEO mEO mEO sJu lqq -mCp -gTi +tvX +rJK jjW nOz dnz @@ -64911,14 +64929,14 @@ kNB bPl nOz jjW -mCp -gTi +tvX +rJK lqq wpD -bPQ -qGh -rJF -akp +uRO +uxp +bEO +kEE bFr bFr kPz @@ -64933,14 +64951,14 @@ kPz kPz kPz dCM -bBt -ihB -mWS -sNU -gag -pbX -igV -ihB +tTu +tHs +fhC +ftv +sRV +aqI +lRH +tHs dCM bQM kPz @@ -64949,12 +64967,12 @@ kPz kPz bQM dCM -gag -sNU -ubP -nyC -pbX -gag +sRV +ftv +fnB +iLy +aqI +sRV dCM bQM kPz @@ -64968,20 +64986,20 @@ cME cME uzw uGY -gag -cHl +sRV +cvq nqN nqN nqN -aME -gag -cHl +ksk +sRV +cvq nqN nqN nqN -aME -gag -cHl +ksk +sRV +cvq uGY vZX vZX @@ -64994,12 +65012,12 @@ oly vZX vZX jwc -pEt -cxb -uRI +lCw +uat +qwU gfo -hyc -qwG +fhc +ydY twb kPz bQM @@ -65049,24 +65067,24 @@ lAh xLi xLi xLi -jdn -jVt +npV +nvZ xLi xLi -sNg -xak +nsx +hKJ xLi xLi xLi xLi -mvp -cer -kpq +xjK +tOr +ezJ xLi -cyk -mAS +hBI +iMS xLi -sWb +jpS azZ tel tel @@ -65075,23 +65093,23 @@ hVI xLS mEO ioM -qrn -bLM -tja -bLM -qrn +iPM +fPZ +kqz +fPZ +iPM tQB pcu pcu pcu tQB -prC -rbp -hyq -qrn -tja -tja -tja +qLz +oPW +roN +iPM +kqz +kqz +kqz hVI tEH tEH @@ -65099,38 +65117,38 @@ hVI hVI tEH hVI -dOO -oTi -ikt -jQs -jQs -xEH -wFp -pzE +mJy +cwO +wJJ +mhb +mhb +aja +ogr +tkk ioM -pNG +kwa mEO mEO -byY +idE ioM nOz -mCp -gTi +tvX +rJK eTc clP -xzN -bDM -pgQ +lOE +mTX +axi clP eTc -mCp -gTi +tvX +rJK nOz bFr -bPQ +uRO iKs iKs -akp +kEE bFr bFr bQM @@ -65145,14 +65163,14 @@ bQM bQM bQM dCM -bBt -ihB -gag -sNU -gag -pbX -gag -ihB +tTu +tHs +sRV +ftv +sRV +aqI +sRV +tHs dCM bQM kPz @@ -65161,12 +65179,12 @@ bQM kPz bQM dCM -gag -sNU -bSs -dHU -pbX -cDE +sRV +ftv +kzN +tPQ +aqI +hVz dCM bQM kPz @@ -65180,20 +65198,20 @@ cME cME cME gIB -lld -lld +sTa +sTa dCM bQM dCM -lld -lld -lld +sTa +sTa +sTa dCM bQM dCM -lld -lld -lld +sTa +sTa +sTa ovr vZX vZX @@ -65206,11 +65224,11 @@ vZX vZX vZX jwc -qsF -kTs +hxg +cEl gfo gfo -ivK +bNz twb twb kPz @@ -65260,111 +65278,111 @@ azZ azZ xLi xLi -fKP -mvp -mvp -mvp -oih -mvp -mvp -hrA -wou +sNd +xjK +xjK +xjK +mZG +xjK +xjK +idV +bAS xLi xLi -cGa -cer -kpq -fMc -qkt -nEW +aOd +tOr +ezJ +xIb +jMe +tGO ddL ejw ejw ejw rBr -cXp +evg hVI xLS mEO sJu -jMh -bLM -tja -bLM -jMh +hDy +fPZ +kqz +fPZ +hDy tQB jlH jlH jlH tQB -qrn -qrn -jxm -qrn -tja -bOR -tja -ddB -jQs -jQs -jQs -iWe -jQs -lBR -afq -oTi -dOO -wXN -bJG -eOp -qqW -tja +iPM +iPM +cHJ +iPM +kqz +imw +kqz +mFh +mhb +mhb +mhb +sRb +mhb +xvt +avX +cwO +mJy +uIl +fbW +xCs +rib +kqz sJu mEO mEO mEO -vXl +lyd ioM bis -gKG -iYa -bDM -bDM -dZK -rJF -iYa -bDM -bDM -dZK -lpd +cGm +tcO +mTX +mTX +mxn +bEO +tcO +mTX +mTX +mxn +pIo bFr bFr -kCj -rJF -rJF -akp +fRG +bEO +bEO +kEE bFr bFr bFr bFr bFr bFr -gBY -gBY -gBY +gdt +gdt +gdt bFr -gBY -gBY -gBY +gdt +gdt +gdt dCM -fDb -ihB -gag -sNU -gag -pbX -gag -ihB +qdB +tHs +sRV +ftv +sRV +aqI +sRV +tHs nqN nqN nqN @@ -65374,10 +65392,10 @@ nqN nqN nqN ceC -dCn -dCn -dCn -llJ +nIh +nIh +nIh +kov ceC nqN nqN @@ -65392,20 +65410,20 @@ cME cME cME gIB -ihB -ihB +tHs +tHs dCM bQM dCM -ihB -ihB -ihB +tHs +tHs +tHs dCM bQM dCM -ihB -ihB -oXb +tHs +tHs +iTw nqN aWk aWk @@ -65418,11 +65436,11 @@ qkN vZX vZX aWk -nrn -pxL -ddv -vLe -rVp +cEB +jrk +rkb +czj +xxd twb kPz kPz @@ -65471,66 +65489,66 @@ azZ azZ azZ xLi -wQY -mvp -lkr -hae -hae -hae -hae -hae -hae -hae +jXO +xjK +xMg +sqg +sqg +sqg +sqg +sqg +sqg +sqg xZR -hae -hae -iRI -kpq -oxp -rHX -tvi +sqg +sqg +ukI +ezJ +xJg +dNF +cwU ddL -mvp -rHX -mvp -sWb +xjK +dNF +xjK +jpS phz hVI qeX mEO hVI -rsH -rZI -tja -bLM -byY +dVK +xpB +kqz +fPZ +idE aFZ tQB tQB tQB aFZ -qrn -kYz -bAE -vci -tja -tja -tja -dOO -tja -tja -tja -tja -tja -tja -tja -oTi -dOO -tsr -pSr -oTi -hiP -tcD +iPM +fOo +bgb +lXk +kqz +kqz +kqz +mJy +kqz +kqz +kqz +kqz +kqz +kqz +kqz +cwO +mJy +rXz +goh +cwO +tAI +fwR aFZ hVI hVI @@ -65538,23 +65556,23 @@ bmE hVI aFZ bFr -wzH -tyj -tyj -tyj -bXh -rJF -nTv -tyj -tyj -tyj -dtS +wjk +bJF +bJF +bJF +lmr +bEO +nrY +bJF +bJF +bJF +dgF bFr bis -fTn -hXX -hXX -byc +lEa +cWG +cWG +eVL bFr bFr bFr @@ -65570,30 +65588,30 @@ iKs iKs uGY uGY -ihB -gag -sNU -gag -pbX -gag -ihB +tHs +sRV +ftv +sRV +aqI +sRV +tHs hVG -ubP -ubP -ubP -ubP -ubP -nEI -ubP -fYo -fou -alY -cqT -fou -aNk -ubP -ubP -ubP +fnB +fnB +fnB +fnB +fnB +dme +fnB +dAQ +qms +jLK +the +qms +aDr +fnB +fnB +fnB uGY gKl cME @@ -65604,20 +65622,20 @@ nNJ kNY rmh ceC -ubP -ubP +fnB +fnB nqN bQM nqN -ubP -ubP -ubP +fnB +fnB +fnB nqN bQM nqN -tEY -ubP -ubP +dnE +fnB +fnB dCM bQM bQM @@ -65683,129 +65701,129 @@ azZ azZ azZ xLi -geT -mvp -cer -pvF -eqU -hmE -eqU -eqU -eqU -eqU +jYB +xjK +tOr +hmk +kbO +fhZ +kbO +kbO +kbO +kbO xZR -eqU -eqU -uAg -kpq +kbO +kbO +dFk +ezJ xLi -cZe -bKF +kLX +oHn ddL -mvp -rHX -mvp +xjK +dNF +xjK wfY -sWb +jpS hVI hVI mEO hVI -qrn -oJN -tja -bLM -qrn +iPM +jUz +kqz +fPZ +iPM hVI -wow -boF -xaO +mOC +eCh +oxT hVI hVI hVI -lOm -rjP -qrn -tja -qrn -dAg -tlJ -qnb -jbq -jbq -qDZ -jbq -iea +cLc +mMo +iPM +kqz +iPM +ryN +opy +eSZ +jEb +jEb +pdw +jEb +pNV mEO -dOO -sls +mJy +gMw lfo -oTi -dOO -oTi +cwO +mJy +cwO hVI -nmL -ixn -dOO -oTi -ubA +nmx +kkk +mJy +cwO +uQF bFr bFr uIS uIS bis -mCp -rJF -gTi +tvX +bEO +rJK bis uIS uIS bis bFr -fQA -mCp -dBy -dBy -gTi -rJF -bDM -bDM -rJF -dBy -dBy -gTi -xzN -bDM -bDM -bDM -bDM -pgQ -mCp +qZx +tvX +muO +muO +rJK +bEO +mTX +mTX +bEO +muO +muO +rJK +lOE +mTX +mTX +mTX +mTX +axi +tvX ggk -ihB -gag -sNU -gag -pbX -hnM -ihB +tHs +sRV +ftv +sRV +aqI +lYw +tHs hVG -ubP -ubP -rAY -ubP -ubP -ubP -ngn +fnB +fnB +eUD +fnB +fnB +fnB +wLf sYP -ihB -ktC -kHZ -lRk -ihB -ihB -ubP -ubP +tHs +nIy +fgB +xxE +tHs +tHs +fnB +fnB uGY cFq xno @@ -65816,20 +65834,20 @@ twb twb twb nqN -ubP -ubP +fnB +fnB nqN bQM nqN -ubP -ubP -ubP +fnB +fnB +fnB nqN bQM nqN -ubP -ubP -ubP +fnB +fnB +fnB dCM bQM bQM @@ -65896,20 +65914,20 @@ azZ azZ xLi xLi -mvp -cer -kpq -mvp -mvp -mvp -mvp -mvp -wou +xjK +tOr +ezJ +xjK +xjK +xjK +xjK +xjK +bAS xLi xLi -cGa -cer -kpq +aOd +tOr +ezJ xLi ddL ddL @@ -65923,101 +65941,101 @@ hVI hVI mEO hVI -tAj -dOt -tja -bLM -ckt +gzd +rHj +kqz +fPZ +orx hVI -tMV -bLM -bLM -bLM -bLM +gom +fPZ +fPZ +fPZ +fPZ hVI hVI hVI -qrn -jiA -qrn +iPM +mky +iPM hVI -aqo -sdR -jci -nsm -cGU +vXB +mMf +bNA +hRV +mYu mEO -dOO -dVD -dOO -hhD -kpv -oTi -dOO -oTi +mJy +vkC +mJy +aBX +fxz +cwO +mJy +cwO hVI -xOs -bLM -bLM -bLM -kYd -bpx +jDL +fPZ +fPZ +fPZ +uXW +xfG hVI -pdN -fQA +dZt +qZx bis wMi wMi wMi bis -tJQ -mnR +gET +snp bis bFr -fQA -mCp +qZx +tvX iKs iKs -kvT -rJF +xZo +bEO iKs iKs -rJF -clb -dBy -dBy -dBy +bEO +mEL +muO +muO +muO iKs iKs iKs dFh -dBy -dBy +muO +muO ggk -ihB -gag -sNU -gag -pbX -gag -ihB +tHs +sRV +ftv +sRV +aqI +sRV +tHs hVG -bLE -ubP -ubP -ubP -nDq -ubP -ngn +jJT +fnB +fnB +fnB +vfJ +fnB +wLf wWs wWs -gag -aej +sRV +dFO wWs wWs -ihB -qrI -ejs +tHs +vDc +xDQ ggk cME cME @@ -66028,20 +66046,20 @@ tPN bQM bQM dCM -ihB -ihB +tHs +tHs dCM bQM dCM -ihB -ihB -ihB +tHs +tHs +tHs dCM bQM dCM -ihB -ihB -ihB +tHs +tHs +tHs dCM bQM bQM @@ -66108,10 +66126,10 @@ azZ azZ xLi xLi -mvp -phC -kpq -mvp +xjK +cjS +ezJ +xjK xLi xLi ddL @@ -66119,15 +66137,15 @@ ddL ddL xLi xLi -mvp -cer -kpq -vtr -epD -mvp -mvp -mvp -mvp +xjK +tOr +ezJ +xQb +kyl +xjK +xjK +xjK +xjK phz phz phz @@ -66135,101 +66153,101 @@ mEO mEO mEO hVI -byY -bLM -tja -bLM -byY +idE +fPZ +kqz +fPZ +idE hVI -jhl -tja -tja -tja -tja -tja +qqM +kqz +kqz +kqz +kqz +kqz aif -tja -tja -tja -yhs +kqz +kqz +kqz +cso hVI -kYi -aFQ +gSN +icK xxX iAA aRt nUb -lzd -oTi -dOO -wXN -oFO -sHM -dOO -tja +wOT +cwO +mJy +uIl +qoZ +kHu +mJy +kqz aif -bLM -oga -dOO -oTi -brC -pjE +fPZ +opV +mJy +cwO +tur +pSm hVI -rJF -rJF -rJF -mCp -dBy -gTi -rJF -rJF -bQv -rJF -rJF -rJF -mCp -dBy -dBy -gTi -rJF -vCQ -tyj -rJF -dBy -dBy -gTi -wzH -tyj -tyj -tyj -tyj -dtS -mCp +bEO +bEO +bEO +tvX +muO +rJK +bEO +bEO +kCv +bEO +bEO +bEO +tvX +muO +muO +rJK +bEO +gHP +bJF +bEO +muO +muO +rJK +wjk +bJF +bJF +bJF +bJF +dgF +tvX ggk -ihB -gag -sNU -gag -pbX -mWS -oXb +tHs +sRV +ftv +sRV +aqI +fhC +iTw ceC xGt xGt ceC -ubP -iwy -ubP -ihB +fnB +wFD +fnB +tHs wWs wWs -gag -gag +sRV +sRV wWs wWs -ihB -ncY -ejs +tHs +egm +xDQ ggk cME cME @@ -66240,20 +66258,20 @@ tPN bQM bQM dCM -ldZ -sbF +oEY +uEm dCM bQM dCM -sbF -sbF -sbF +uEm +uEm +uEm dCM bQM dCM -sbF -sbF -sbF +uEm +uEm +uEm dCM bQM bQM @@ -66319,44 +66337,44 @@ azZ azZ azZ xLi -hrA -mvp -cer -kpq -wou +idV +xjK +tOr +ezJ +bAS xLi -hqG -lQL -qsE -qMi -uky -nmy -luZ -cer -kpq -mvp -mvp -mvp -luZ -mvp -mvp -mvp -mvp +pso +nDW +oAQ +nTD +qVD +shq +jES +tOr +ezJ +xjK +xjK +xjK +jES +xjK +xjK +xjK +xjK phz ecu mEO hVI hVI -jMh -bLM -tja -bLM -jMh +hDy +fPZ +kqz +fPZ +hDy vWe hVI -tja -bLM -sBO +kqz +fPZ +aac hVI hVI hVI @@ -66374,11 +66392,11 @@ azv nUb mEO uza -ipA -jbq -brC -dOO -pzE +dnB +jEb +tur +mJy +tkk hVI hVI hVI @@ -66387,61 +66405,61 @@ tEH tEH hVI hVI -dBy -dBy -rJF -mCp +muO +muO +bEO +tvX iKs -gTi -rJF -xzN -bDM -bDM -bDM -bDM -dZK +rJK +bEO +lOE +mTX +mTX +mTX +mTX +mxn iKs -nTv -dtS -fQA +nrY +dgF +qZx bFr bFr bFr -oLV -nxq -dBy -clb +ocd +tKs +muO +mEL bFr cvn cvn bFr -dBy -dBy +muO +muO uGY -any -ihB -ihB -ihB -ihB -ihB -ihB +kaC +tHs +tHs +tHs +tHs +tHs +tHs buz -ycf -hek +gvX +aav dCM -ubP -ubP -ubP -ihB +fnB +fnB +fnB +tHs wWs wWs -dHU -ubP +tPQ +fnB wWs wWs -ihB -ubP -ubP +tHs +fnB +fnB uGY obz lAV @@ -66452,20 +66470,20 @@ nqN nqN nqN nqN -gag +sRV fCD nqN nqN nqN -aME -gag -cHl +ksk +sRV +cvq nqN nqN nqN -aME -gag -cHl +ksk +sRV +cvq nqN nqN nqN @@ -66530,157 +66548,157 @@ azZ azZ azZ azZ -sWb -mvp -mvp -cer -kpq -mvp +jpS +xjK +xjK +tOr +ezJ +xjK ddL lXO nId ykO pCc -pxW -ioV -mvp -cer -wun -hae -hae -hae -hae -hae -hae -ceJ -mvp +tDY +siz +xjK +tOr +mtk +sqg +sqg +sqg +sqg +sqg +sqg +xRh +xjK phz mEO mEO hVI -xsC -bLM -ioS -tja -bLM -bLM -bLM -jTD -tja -bLM -tGU -rGe -fCr -bLM -gbv -bLM -fYa -voK -koY -bLM -hOG -jQs +vmr +fPZ +vXi +kqz +fPZ +fPZ +fPZ +rbE +kqz +fPZ +aRx +luv +hBX +fPZ +iRc +fPZ +dla +oja +dWx +fPZ +hjr +mhb mEO -jQs -oDV -sBM -bQn -nJT -jQs -jQs -jQs -afq -oTi -bLM -bLM -bLM -bLM -bLM -bLM -bLM +mhb +wMG +kdb +ovC +jvG +mhb +mhb +mhb +avX +cwO +fPZ +fPZ +fPZ +fPZ +fPZ +fPZ +fPZ sJu -fie -dBy -rJF -mCp +rIo +muO +bEO +tvX iKs -gTi -rJF -mCp +rJK +bEO +tvX iKs iKs -dBy -dBy +muO +muO iKs -nTv -dtS -fQA +nrY +dgF +qZx bFr bFr bQM bFr bis -gXd -dBy -owd +jiJ +muO +hiG cvn bQM bQM cvn -dBy -aSM +muO +kAt uGY uGY uGY uGY uGY nqN -ksL -eip +aIf +fOt gpG -ihB -ohx +tHs +qIy ceC -cxy -ubP -ubP -ihB +mAv +fnB +fnB +tHs wWs wWs -xNG -ubP +fMk +fnB wWs wWs -ihB -ubP -aTx +tHs +fnB +vGe nqN uGY uxv uxv uGY uGY -vlS -psm -ubP -nXu -ubP -ubP -ubP -mVY -mqB -ubP -qMI -ubP -ubP -ubP -ubP -ubP -ubP -qMI -ubP -fYo -ubP +iSf +cHx +fnB +tdG +fnB +fnB +fnB +jCl +rIW +fnB +crO +fnB +fnB +fnB +fnB +fnB +fnB +crO +fnB +dAQ +fnB nqN vZX vZX @@ -66743,104 +66761,104 @@ azZ azZ azZ xLi -sWb -esR -cer -kpq -mvp +jpS +jmM +tOr +ezJ +xjK ddL ntH nMZ oHX pFP -iUr -tNf -mvp -cer -pvF -eqU -eqU -eqU -eqU -eqU -uAg -kpq -mvp +qZa +sjn +xjK +tOr +hmk +kbO +kbO +kbO +kbO +kbO +dFk +ezJ +xjK phz mEO hVI hVI -suY -tja -tja -tja -tja -tja -tja -tja -tja -bLM -gQz -ntM -bLM -tja -tja -tja -gFp -ikL -bLM -bLM +nqV +kqz +kqz +kqz +kqz +kqz +kqz +kqz +kqz +fPZ +kiE +jOJ +fPZ +kqz +kqz +kqz +pIX +bNf +fPZ +fPZ mEO -mzK -jbq +sjw +jEb mEO -jbq -jbq -jbq -bXc -jbq -jbq -jbq -iea -oTi -bLM -bLM -bLM -bLM -bLM -bLM -bLM +jEb +jEb +jEb +oii +jEb +jEb +jEb +pNV +cwO +fPZ +fPZ +fPZ +fPZ +fPZ +fPZ +fPZ sJu -fie -sWl -rJF -mCp +rIo +ekH +bEO +tvX iKs -gTi -rJF -wzH -tyj -tyj -tyj -tyj -tyj -dtS -fQA +rJK +bEO +wjk +bJF +bJF +bJF +bJF +bJF +dgF +qZx bFr bFr bQM bQM bFr rLJ -oeY -dBy -nxq +qXP +muO +tKs bFr cvn cvn bFr -dBy -dBy +muO +muO eLu eLu fdf @@ -66850,49 +66868,49 @@ twb oZy nfA gpG -lkP -ihB +rUT +tHs hVG -fZz -nDq -uRZ -ihB +jWB +vfJ +bfx +tHs wWs wWs -gag -gag +sRV +sRV wWs wWs -ihB -nDq -rxg -lld -lld -lld -lld -wmx -bCe -ubP -ubP -ubP -ubP -ubP -ubP -ubP -sNU -pbX +tHs +vfJ +wOS +sTa +sTa +sTa +sTa +gJG +oWW +fnB +fnB +fnB +fnB +fnB +fnB +fnB +ftv +aqI sYP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB sYP -ubP -ejs +fnB +xDQ ggk vZX vZX @@ -66955,66 +66973,66 @@ azZ xLi xLi xLi -sWb -mvp -cer -kpq -aUA +jpS +xjK +tOr +ezJ +ftq ddL oIq nOw oXR pHh -oEu -cKB -mvp -cer -kpq -mvp -mvp -mvp -mvp -mvp -cer -kpq -mvp +qZh +sma +xjK +tOr +ezJ +xjK +xjK +xjK +xjK +xjK +tOr +ezJ +xjK hVI hVI hVI -gbT -bLM -tja -ctC +sjx +fPZ +kqz +wLN vWe -gbh -tja -bLM -kZV -tja -bLM -gAC +sbQ +kqz +fPZ +trH +kqz +fPZ +vsz hVI -lpw -tja -tja -tja -gFp -ikL -xMp +tOZ +kqz +kqz +kqz +pIX +bNf +dKy jyP -dOO -sDn +mJy +lyX hVI -mtP -mtP -mtP -cqP +vtG +vtG +vtG +qeU hVI tEH tEH hVI -njY -xCp +oxZ +rSM hVI tEH tEH @@ -67023,20 +67041,20 @@ hVI hVI hVI hVI -rJF -lGL -rJF -wzH -tyj -dtS -rJF -sCe -rJF -rJF -rJF -fmb -dBy -dBy +bEO +ncP +bEO +wjk +bJF +dgF +bEO +nHb +bEO +bEO +bEO +hmj +muO +muO bis bFr bQM @@ -67044,15 +67062,15 @@ bQM bQM bFr bis -gXd -qIT -xzN -bDM -hwr -bDM -bDM -pgQ -mCp +jiJ +bMA +lOE +mTX +azI +mTX +mTX +axi +tvX rHu bnL cME @@ -67062,49 +67080,49 @@ liA nyS scZ ceC -bQW -fiG +itt +aPF ceC -ubP -iwy -ubP -ihB +fnB +wFD +fnB +tHs wWs wWs -gag -gag +sRV +sRV wWs wWs -ihB -iwy -xjM -sbF -sbF -sbF -wIx -sbF -qhN -ubP -ubP -ubP -ubP -ubP -daY -hEZ -sNU -pbX -ubP -ubP -gag -lld -lld -lld -lld -gag -ubP -ubP -ubP -ejs +tHs +wFD +ezT +uEm +uEm +uEm +aQZ +uEm +ajr +fnB +fnB +fnB +fnB +fnB +qhB +rmA +ftv +aqI +fnB +fnB +sRV +sTa +sTa +sTa +sTa +sRV +fnB +fnB +fnB +xDQ ggk vZX vZX @@ -67169,71 +67187,71 @@ xLi phz phz phz -cer -kpq -wou +tOr +ezJ +bAS xLi -lIl -cEG -mvV -fno -byF -swJ -mvp -cer -ojc -ujo -kii -hae -ceJ -tdr -cer -kpq -wou +nvC +nPO +paQ +pIi +gKL +kWJ +xjK +tOr +vpB +xWp +xfq +sqg +xRh +hYV +tOr +ezJ +bAS hVI hVI hVI -eUZ -wEE -tja -dTg -vRF -ewI -tja -sYy -ntM -tja -bLM -mRA -lIk -vJo -bLM -tja -bLM -fYa -cbF -eOy -bLM -dOO -uRF +gfN +rDm +kqz +cxF +sVD +qfI +kqz +gGp +jOJ +kqz +fPZ +brr +kcO +cqy +fPZ +kqz +fPZ +dla +fzb +mXI +fPZ +mJy +oBP aif -bLM -bLM -bLM -loP +fPZ +fPZ +fPZ +kuS hVI -rMq -bLM +kSP +fPZ hVI -dOO -tja +mJy +kqz aif ovJ -bLM +fPZ sJu -nCt -yeA -olg +hSL +euG +sct aFZ cvn bFr @@ -67255,16 +67273,16 @@ twb twb twb twb -tIn -dwP -dBy -dBy +eTx +oti +muO +muO iKs iKs iKs iKs -dBy -dBy +muO +muO rHu xPG cME @@ -67277,46 +67295,46 @@ ceC xGt xGt ceC -ubP -ubP -ubP -ihB -ihB -ihB -ihB -ihB -ihB -ihB -ihB -ubP -xGD +fnB +fnB +fnB +tHs +tHs +tHs +tHs +tHs +tHs +tHs +tHs +fnB +nza nqN dCM dCM dCM nqN -lkQ -ubP -ktv -ubP -hPN -ubP +flC +fnB +eVZ +fnB +hoy +fnB pTj -ubP -sNU -pbX -hEZ -ubP -jtK -gmF -txh -txh -afO -jtK -ubP -ubP -ubP -ubP +fnB +ftv +aqI +rmA +fnB +azJ +pPf +grL +grL +apy +azJ +fnB +fnB +fnB +fnB plK plK wHw @@ -67375,88 +67393,88 @@ azZ azZ azZ xLi -dqX -dqX +ruy +ruy phz phz -fEn +csp kEZ -cer -kpq -mvp +tOr +ezJ +xjK xLi ddL ddL ddL xLi xLi -nrU -mvp -cer -cvH -mvp -qrt +dMK +xjK +tOr +vqg +xjK +neD xLi -ydQ -mvp -cer -kpq -mvp +fWc +xjK +tOr +ezJ +xjK hVI hVI hVI dvq -bLM -tja -fCr -hDl -ugq -xLf -gQz -mOf -tja -bLM -scp -rGe -jSU -ajP -tja -bLM -fYa -kCN -oXI -hko -eUN -pae +fPZ +kqz +hBX +rLT +sQK +mFz +kiE +pKd +kqz +fPZ +bET +luv +xnK +wsY +kqz +fPZ +dla +sbY +gRm +fwZ +dwM +cDr hVI -wKR -nxY -bLM -iSW +mRU +shG +fPZ +djA hVI -psL +ivR ovJ -hWi -tja -oTi +dvY +kqz +cwO hVI -jBn -rHf +fgb +onz hVI -fIq +lbu mEO -oou +gbS aFZ -wIG -ugv +brI +gAk qOk -tIp +cZc lml -hVS -lDC +hGP +olQ qOk -nYT -vPM +kvm +oTG bQM tPN ecL @@ -67467,72 +67485,72 @@ tpf tIU cME eLu -cbd -dBy -gTi -wzH -tyj -tyj -tyj -tyj -dtS -mCp +nbo +muO +rJK +wjk +bJF +bJF +bJF +bJF +dgF +tvX rHu rJu uzw kqC -rzp -vds -vds -elO +cCq +dHp +dHp +uFh abJ -ioc -ioc +usz +usz abJ -ubP -ubP -ubP -kJU -psm -ubP -ubP -ubP -ubP -ubP -ubP -ubP -nEI +fnB +fnB +fnB +eoZ +cHx +fnB +fnB +fnB +fnB +fnB +fnB +fnB +dme dCM bQM kPz bQM dCM -ubP -ubP -ubP -aTx +fnB +fnB +fnB +vGe uGY uGY uGY uGY gIB uGY -lkQ -ubP -gag -sbF -sbF -sbF -sbF -gag -ubP -ubP +flC +fnB +sRV +uEm +uEm +uEm +uEm +sRV +fnB +fnB wxZ qeC bLA -xQx -aEB -xQx +xBT +oyg +xBT plK vZX vZX @@ -67587,59 +67605,59 @@ azZ azZ xLi xLi -sWb +jpS phz ctD phz phz -mvp -cer -kpq -mvp -mvp -mvp -mvp -mvp +xjK +tOr +ezJ +xjK +xjK +xjK +xjK +xjK xLi rfd -mvp -mvp -cer -ojc -ujo -aMu -eqU -iOY -mvp -cer -kpq -mvp -uno -ciA -lsn -uno -bLM -tja -qGO +xjK +xjK +tOr +vpB +xWp +jPz +kbO +dsT +xjK +tOr +ezJ +xjK +gkt +aDi +nvF +gkt +fPZ +kqz +mYo hVI -xOs -nCV -aeF -ntM -uIB -bLM -eLw -hDl -ewI -bLM -tja -dTg -qCE -eYr -lbZ -bLM -dOO -oTi +jDL +xuH +knt +jOJ +ffm +fPZ +jlg +rLT +qfI +fPZ +kqz +cxF +xWH +wmG +iVC +fPZ +mJy +cwO nQq hVI hVI @@ -67648,34 +67666,34 @@ hVI hVI hVI hVI -mrI -dOO -pzE +gUH +mJy +tkk vWe hVI hVI hVI lyJ -nBt +ndh kwT tQB -tqP +azy afk afk afk -xdt -tzN +chA +uWs afk afk afk -rxL +wvu fQV tPN ecL cME cME oOi -pJc +pSJ qws cME eLu @@ -67683,9 +67701,9 @@ eLu eLu eLu twb -eBO -eBO -eBO +mNn +mNn +mNn twb eLu eLu @@ -67693,58 +67711,58 @@ eLu kfW cME kqC -dHD -lkb -upY -fHo +pHu +uGD +sHH +vei vRA -ioc -ioc +usz +usz vRA -ubP -nXX -ubP -ubP -ejL -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP +fnB +kNP +fnB +fnB +diS +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB dCM bQM kPz bQM dCM -fou -ubP -fou -ePM +qms +fnB +qms +cph gIB -lrV -onh -sQy -adq +ndC +hbq +ejn +oTH hjE -ubP -ubP -ubP -gag -gag -gag -gag -ubP -ubP -ubP +fnB +fnB +fnB +sRV +sRV +sRV +sRV +fnB +fnB +fnB kjP -otC -dkn -uKX -uKX -rZe +qeh +nRb +sOn +sOn +xBR plK vZX waU @@ -67799,74 +67817,74 @@ azZ lAh xLi xLi -dqX +ruy phz phz phz xLi azZ -cer -wun -hae -hae -hae -hae -hae -hae +tOr +mtk +sqg +sqg +sqg +sqg +sqg +sqg xZR -hae -hae -lcJ -kpq -mvp -mvp -mvp -mvp -mvp -cer -kpq -mvp +sqg +sqg +uqo +ezJ +xjK +xjK +xjK +xjK +xjK +tOr +ezJ +xjK cyV -bLM -bLM +fPZ +fPZ cyV -bLM -tja -bLM -wbr -bLM -kid -ezU -eLw -tja -bLM -boI -vTR -oAf -tja -tja -dTg -slh -eYr -lbZ -bLM -dOO -oTi +fPZ +kqz +fPZ +sbp +fPZ +uWS +uFM +jlg +kqz +fPZ +jaR +ueA +nxH +kqz +kqz +cxF +goA +wmG +iVC +fPZ +mJy +cwO hVI -dEj -bLM -bLM -bLM +rCL +fPZ +fPZ +fPZ hVI -khY -oAj +adH +qSg hVI -dOO -oTi -ueI -khY +mJy +cwO +tbZ +adH hVI -rlP +fUZ mEO lLE xoi @@ -67883,7 +67901,7 @@ afk tCZ pcu tPN -jSE +slM cME cME tIU @@ -67894,69 +67912,69 @@ liA cME qIq eLu -uvF -rzp -vds -elO -uvF +lcH +cCq +dHp +uFh +lcH wQT eLu cME cME cME oFI -dHD -qRa -upY -voO +pHu +lMB +sHH +veB kqC -pGS -kgN +kis +uiR kqC -sOj -uye -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -ubP -aTx +rRO +hvG +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB +fnB +vGe nqN dCM dCM dCM nqN -lkQ -fou -ubP -kWv +flC +qms +fnB +nDT gIB -mdH -rVV -gag -ihB +aVD +dzo +sRV +tHs hsC -ubP -ubP -ubP -gag -gag -gag -gag -ubP -ubP -ubP +fnB +fnB +fnB +sRV +sRV +sRV +sRV +fnB +fnB +fnB lAY -dkn -dkn -uKX -uKX -uKX +nRb +nRb +sOn +sOn +sOn plK vZX vZX @@ -68011,88 +68029,88 @@ azZ lAh xLi xLi -dqX +ruy phz phz -dqX +ruy azZ azZ -cer -bLO -eqU -eqU -eqU -eqU -eqU -eqU +tOr +lro +kbO +kbO +kbO +kbO +kbO +kbO xZR -eqU -eqU -xAY -kpq -mvp -mvp -mvp -mvp -mvp -cer -kpq -mvp +kbO +kbO +uvy +ezJ +xjK +xjK +xjK +xjK +xjK +tOr +ezJ +xjK cyV -bLM -bLM +fPZ +fPZ cyV -bLM -tja -dTg -gbh -leZ -mAs -teK -bLM -aHK -tja -tja -tja -tja -bLM -bLM -dTg -slh -eYr -lbZ -oeN -dOO -oTi +fPZ +kqz +cxF +sbQ +sbg +fSI +mIk +fPZ +ygH +kqz +kqz +kqz +kqz +fPZ +fPZ +cxF +goA +wmG +iVC +leq +mJy +cwO hVI -iSW -ptH -bLM -bLM +djA +vDj +fPZ +fPZ hVI -psL +ivR ovJ -hWi -tja -oTi -bLM -bLM +dvY +kqz +cwO +fPZ +fPZ sJu -bxQ -mNB -byY +rjE +dQp +idE fUX tQB -mpB +iKT afk afk afk -eze -bHU +cjA +cpW afk afk afk -hxG +rac jlH twb twb @@ -68107,68 +68125,68 @@ cME cME cME liA -oXg -xbM -fHo +cFy +mcc +vei xno dTf -uvF +lcH cME ljd cME oFI -dHD -upY -upY -ger +pHu +sHH +sHH +hPs abJ -ioc -ioc +usz +usz abJ -aUg -ubP -ubP -ubP -szD -cns -cns -cns -cns -cns -wzd -ubP -rxg -lld -lld -lld -lld -lld -bCe -nWv -ubP -iIE +sFf +fnB +fnB +fnB +poD +ubH +ubH +ubH +ubH +ubH +rYC +fnB +wOS +sTa +sTa +sTa +sTa +sTa +oWW +eej +fnB +xnR gIB -ubP -gKg -ubP -iPz +fnB +juS +fnB +fYB vUv -ubP -ubP -gag -lld -lld -lld -lld -gag -ubP -ubP +fnB +fnB +sRV +sTa +sTa +sTa +sTa +sRV +fnB +fnB cri hfc -tGY -qBj -cZy -aGF +mie +scU +sFn +vdZ plK wHw plK @@ -68222,89 +68240,89 @@ lAh lAh lAh xLi -sWb +jpS phz phz phz azZ xLi azZ -cer -kpq -luZ -mvp -mvp -mvp -mvp +tOr +ezJ +jES +xjK +xjK +xjK +xjK xLi rfd -mvp -mvp -cer -ojc -ujo -kii -hae -ceJ -mvp -cer -kpq -mvp +xjK +xjK +tOr +vpB +xWp +xfq +sqg +xRh +xjK +tOr +ezJ +xjK cyV -bLM -bLM +fPZ +fPZ cyV -bLM -tja -bLM -oTa -kZV -tja -bLM -bLM -img -bLM -bLM -tja -tja -ueX -ueX -qjM -qjM -tis -eca -xlk -nfu -kpH +fPZ +kqz +fPZ +wAT +trH +kqz +fPZ +fPZ +tnr +fPZ +fPZ +kqz +kqz +qDH +qDH +syf +syf +aNP +ebc +ven +gnV +uGq hVI tEH tEH -hzv -nDr +ajp +aoa hVI tEH tEH hVI -rqq -hMA -bLM -fgY +ldT +lAf +fPZ +xns vWe hVI hVI -erD +anG wyl aFZ -xKA -xQC +aQB +wJX llQ -viX -bsk -lSS -lcq +djU +tqa +keo +mxG llQ -jaB -bsk +lOB +tqa bQM bQM kPz @@ -68319,9 +68337,9 @@ cME cME cME kaO -qPa -xbM -weM +maE +mcc +dds daS cME cME @@ -68329,60 +68347,60 @@ cME cME eLu kqC -dHD -upY -eNa -efW +pHu +sHH +fxP +iUy vRA -ioc -ioc +usz +usz vRA -ubP -ubP -ubP -ubP -qqd -ihB -ihB -ihB -ihB -ihB -unu -ubP -xjM -sbF -sbF -sbF -sbF -sbF -qhN -ubP -ubP -mNc +fnB +fnB +fnB +fnB +hss +tHs +tHs +tHs +tHs +tHs +dIi +fnB +ezT +uEm +uEm +uEm +uEm +uEm +ajr +fnB +fnB +aaW gIB -gag -aTx +sRV +vGe uGY gIB uGY -lHE -ubP -jtK -gmF -txh -txh -afO -jtK -ubP -ubP -ubP +nEy +fnB +azJ +pPf +grL +grL +apy +azJ +fnB +fnB +fnB plK -kyd -dkn -uKX -fuJ +uZn +nRb +sOn +oli plK -hwS +uYR gRT vHU eki @@ -68434,90 +68452,90 @@ azZ azZ lAh xLi -dqX +ruy phz irD phz azZ azZ azZ -cer -kpq -mvp +tOr +ezJ +xjK xLi ddL ddL ddL xLi xLi -nrU -luZ -cer -cvH -rFF -qrt +dMK +jES +tOr +vqg +uef +neD xLi -ydQ -mvp -cer -kpq -mvp -tji -azK -nWx -uno -atw -tja -koH -qTx -gRf -tja -rGe -dCv -bLM -bLM -bLM -tja -ltd -ueX +fWc +xjK +tOr +ezJ +xjK +tef +tpO +nql +gkt +yjs +kqz +cJw +vdG +gzQ +kqz +luv +bcF +fPZ +fPZ +fPZ +kqz +vro +qDH aSS -gNx -tHF -tHF -gbO -jQs -afq -uRF -qqc -jQs -jQs -jQs -tja -jQs -jQs -jQs -jQs -afq -oTi -bLM -svW +qmC +uCa +uCa +jgl +mhb +avX +oBP +cnW +mhb +mhb +mhb +kqz +mhb +mhb +mhb +mhb +avX +cwO +fPZ +cqH hVI hVI hVI -hSo +bZC hVI aFZ -sKY -sKY -iYw -iYw -iYw -iYw -iYw -iYw -sKY -sKY -iYw +xQC +xQC +eDn +eDn +eDn +eDn +eDn +eDn +xQC +xQC +eDn kPz kPz twb @@ -68531,9 +68549,9 @@ cME rJh eLu eLu -dHD -xbM -fHo +pHu +mcc +vei vbG vZD cME @@ -68541,60 +68559,60 @@ cME cME eLu kqC -dHD -upY -skj +pHu +sHH +bfb uGY ceC xGt xGt ceC -ubP -ubP -kJU -ubP -ibz -ihB -gag -gag -gag -ihB -dVx -gaQ -spm +fnB +fnB +eoZ +fnB +wTy +tHs +sRV +sRV +sRV +tHs +aQU +vlm +fbs ceC ceC xNm ceC ceC -eyy -ubP -ubP +evv +fnB +fnB bZY uGY uxv uGY uGY -ihB -ihB -ubP -ubP -gag -sbF -sbF -sbF -sbF -gag -ubP -ubP -ozC +tHs +tHs +fnB +fnB +sRV +uEm +uEm +uEm +uEm +sRV +fnB +fnB +wzS plK -kmn -dkn -uKX -nuo -dkn -xQx +rtM +nRb +sOn +iif +nRb +xBT pSU dKo rJO @@ -68646,167 +68664,167 @@ azZ azZ lAh xLi -dqX +ruy phz phz phz phz -bMT +oEc azZ -cer -kpq -wou +tOr +ezJ +bAS xLi -hqG -qMi -phQ -tiM -uky -bzU -mvp -cer -ojc -ujo -aMu -eqU -iOY -mvp -cer -kpq -mvp +pso +nTD +pdm +pPQ +qVD +cOy +xjK +tOr +vpB +xWp +jPz +kbO +dsT +xjK +tOr +ezJ +xjK hVI rIS hVI dvq -bLM -tja -tAR -bLM -cvi -tja -ewI -gCH -vJo -bLM -otz -tja -tja -fYa -voK -fQI -bLM -hkM -dOO -mzK -jbq -jbq -xTD -jbq -jbq -jbq -tpz -jbq -jbq -tja -eOM -jbq -brC -bLM -slh +fPZ +kqz +xeh +fPZ +tWe +kqz +qfI +fFU +cqy +fPZ +byr +kqz +kqz +dla +oja +peh +fPZ +bDD +mJy +sjw +jEb +jEb +oxk +jEb +jEb +jEb +hcf +jEb +jEb +kqz +pxI +jEb +tur +fPZ +goA hVI -bLJ -bLJ -frv -bLJ -ofQ -hCh -suX -nQu -iUB -hCh -hCh -nQu -jcF -hCh -hCh -iYw -iYw +lDC +lDC +ldZ +lDC +mhv +mGe +dGw +vPM +haa +mGe +mGe +vPM +rKO +mGe +mGe +eDn +eDn cAW bQM bQM bQM twb -qkn +ivB uzw eLu mrk cME jkg -uvF -rVL -xbM -fHo +lcH +xlq +mcc +vei xno cME -uvF +lcH cME cME cME kqC -dHD -upY -fHo +pHu +sHH +vei uGY -jIw -cRl -sQC +tBD +vrM +fGp ceC -ubP -ubP -ubP -ubP +fnB +fnB +fnB +fnB ceC -kVN +jVQ tpa tpa tpa -kVN +jVQ ceC ceC ceC ceC -mXS -mQy -jQS +eZD +wZn +meF ceC ceC -hYx -hEZ +fkY +rmA pTj -mVY -uNm -nEI -ubP -sNU -pbX -ubP -ubP -ubP -gag -gag -gag -gag -ubP -ubP -ubP -ubP +jCl +pDH +dme +fnB +ftv +aqI +fnB +fnB +fnB +sRV +sRV +sRV +sRV +fnB +fnB +fnB +fnB vFs -uKX -uKX -uKX -lkA -dkn -xQx +sOn +sOn +sOn +aFg +nRb +xBT gPs iMo rJO @@ -68863,88 +68881,88 @@ phz phz phz phz -dqX -mvp -cer -kpq -mvp +ruy +xjK +tOr +ezJ +xjK ddL lXO nId ykO pCc -msd -ioV -mvp -cer -kpq -mvp -mvp -mvp -mvp -mvp -cer -kpq -wou +mQn +siz +xjK +tOr +ezJ +xjK +xjK +xjK +xjK +xjK +tOr +ezJ +bAS hVI hVI hVI -fpq -bLM -tja -sve -bLM -iie -tja -bLM -gbh -rGe -bsR -hDl -tja -mMh -gFp -ikL -fwt -vBH -bLM -dOO -oTi -bNo -aEG +exs +fPZ +kqz +xwi +fPZ +hqZ +kqz +fPZ +sbQ +luv +dBI +rLT +kqz +dqk +pIX +bNf +nBG +fKq +fPZ +mJy +cwO +mJM +fOs hVI hVI hVI hVI -nDr +aoa hVI hVI -nDr +aoa hVI vWe -nor -nor -tTI +ruB +ruB +dID vWe -eqZ -iVT -fqg -suX -nQu -nQu -nQu -nQu -nQu -nQu -nQu -nQu -nQu -nQu -nQu -suX -iYw -yli -iYw +mFv +gXD +gTw +dGw +vPM +vPM +vPM +vPM +vPM +vPM +vPM +vPM +vPM +vPM +vPM +dGw +eDn +oVk +eDn bQM bQM twb @@ -68954,84 +68972,84 @@ eLu cME cME eLu -uvF -dHD -xbM -fHo -uvF +lcH +pHu +mcc +vei +lcH wQT eLu cYP qso -gsN +hTr kqC -dHD -upY -fHo +pHu +sHH +vei hVG -yiL +hVm cZV -wNG +oQY hVG -ubP -ubP -ubP -ubP +fnB +fnB +fnB +fnB ceC -dZu -gag -gag -gag -lgG +xNf +sRV +sRV +sRV +unc ceC -tCH -ohc -taL -ohc -pjf -mSp -mHY +bOh +hUV +rRT +hUV +bFR +sMo +gVA ceC -wDz +qnQ pTj -ubP +fnB pTj -sJB -qMI -ubP -sNU -pbX -ubP -ubP -ubP -gag -gag -gag -gag -ubP -ubP -ubP -ubP +gnj +crO +fnB +ftv +aqI +fnB +fnB +fnB +sRV +sRV +sRV +sRV +fnB +fnB +fnB +fnB vFs -uKX -uKX -uKX -oMf -dkn -xQx +sOn +sOn +sOn +fdS +nRb +xBT bWg tKv wxX rJO plK -xZI -xZI +keL +keL aPH nGy rJO wMz rJO -vKP +gyY vXT kPz bQM @@ -69076,88 +69094,88 @@ phz phz irD phz -mvp -cer -kpq -mvp +xjK +tOr +ezJ +xjK ddL ntH nUr oHX pFP -blA -tNf -mvp -cer -wun -hae -hae -hae -hae -hae -iRI -kpq -mvp +rfR +sjn +xjK +tOr +mtk +sqg +sqg +sqg +sqg +sqg +ukI +ezJ +xjK hVI hVI hVI -euz -bLM -tja -bLM -bLM -bLM -tja -bLM -fCr -eCy -bLM -xsX -vdn -tja -rbZ -ikL -kke -bLM -wkg -dOO -oTi -bLM -eSO +xGY +fPZ +kqz +fPZ +fPZ +fPZ +kqz +fPZ +hBX +gwz +fPZ +vBV +aRB +kqz +dWN +bNf +uxi +fPZ +uvG +mJy +cwO +fPZ +jBK hVI -aXR -bLM -bLM -bLM -bLM +sol +fPZ +fPZ +fPZ +fPZ hVI -ddB -wiR -xLn -hYX -bLM -bLM -eHt -suX -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu -nQu -nQu -aeI -aeI -aeI -aeI -nQu -nQu -suX -egk -iYw +mFh +isJ +pQD +rME +fPZ +fPZ +wGa +dGw +tvI +tvI +tvI +tvI +tvI +tvI +tvI +vPM +vPM +vPM +tvI +tvI +tvI +tvI +vPM +vPM +dGw +eHa +eDn bQM twb uts @@ -69167,9 +69185,9 @@ cME cME cME liA -dHD -xbM -fJV +pHu +mcc +ueF kqC kqC kqC @@ -69177,60 +69195,60 @@ kqC kqC kqC kqC -oSn -hwN -eJy +osO +mfV +odg uGY -lEF -tsN -tsN +toJ +twB +twB ceC -qbI -rVV -rVV -qbI +bsq +dzo +dzo +bsq ceC -ihO -ubP -ubP -ubP -gag +vUE +fnB +fnB +fnB +sRV hVG -oZi -bcq -vgL -dHb -ezO -xpx -eIB +yft +eSs +aHY +tXi +huI +lpf +seY ceC -fxi -ubP -pwC -ubP -dHU +sns +fnB +jmm +fnB +tPQ sYP -fGA -sNU -pbX -ubP -ubP -gag -lld -lld -lld -lld -gag -ubP -ubP -ozC +xqD +ftv +aqI +fnB +fnB +sRV +sTa +sTa +sTa +sTa +sRV +fnB +fnB +wzS plK upX -dkn -uKX -nuo -dkn -xQx +nRb +sOn +iif +nRb +xBT uMw rJO rJO @@ -69283,94 +69301,94 @@ azZ azZ xLi phz -dqX +ruy phz phz phz -sWb -mvp -cer -kpq -ajw +jpS +xjK +tOr +ezJ +mrm ddL oIq nOw oXR pHh -apO -cKB -mvp -cer -pvF -eqU -eqU -eqU -eqU -eqU -eqU -iOY -mvp +lxk +sma +xjK +tOr +hmk +kbO +kbO +kbO +kbO +kbO +kbO +dsT +xjK mEO mEO hVI hVI -gYM -tja -tja -tja -tja -tja -tja -lzd -tja -uJG -tja -tja -tja -caX -ikL -fjo -bLM -bLM -dOO -oTi -gYM -hgc +hOg +kqz +kqz +kqz +kqz +kqz +kqz +wOT +kqz +bYq +kqz +kqz +kqz +qCw +bNf +ffU +fPZ +fPZ +mJy +cwO +hOg +xIg hVI -fMn -kOu -bLM -bLM -bLM -hWi -dAg -nRU -dhZ -bLM -bLM -bLM -stP -suX -aeI -ucN -aeI -aeI -aeI -aeI -aeI -nQu -nQu -nQu -aeI -aeI -aeI -aeI -aeI -aeI -nQu -shH -iYw -iYw +mMb +dLx +fPZ +fPZ +fPZ +dvY +ryN +gBo +qpw +fPZ +fPZ +fPZ +jEC +dGw +tvI +buQ +tvI +tvI +tvI +tvI +tvI +vPM +vPM +vPM +tvI +tvI +tvI +tvI +tvI +tvI +vPM +deH +eDn +eDn twb eLu eLu @@ -69379,19 +69397,19 @@ srI dTf eLu twb -dHD -xbM -fHo +pHu +mcc +vei wzE -sfu -jyF +bux +bZu kqC -sfu -jyF +bux +bZu kqC -ioc -ioc -ioc +usz +usz +usz uGY xGt xGt @@ -69402,47 +69420,47 @@ ceC ceC ceC ceC -kOV -ubP -ubP -ubP -gag +jpR +fnB +fnB +fnB +sRV hVG -ljV -oZi -qHX -jbu -cKJ -tir -sCH +vOj +yft +dpI +fGe +suE +aBO +tCu ceC -kIA -psm -ubP +wvf +cHx +fnB pTj -ubP -nEI -ubP -sNU -pbX -ubP -ubP -jtK -gmF -txh -txh -afO -jtK -ubP -ubP -aTx +fnB +dme +fnB +ftv +aqI +fnB +fnB +azJ +pPf +grL +grL +apy +azJ +fnB +fnB +vGe plK -qEk -dkn -uKX -lkA -dkn -xQx +omi +nRb +sOn +aFg +nRb +xBT uMw rJO rJO @@ -69494,60 +69512,60 @@ azZ azZ xLi xLi -sWb +jpS phz -jFP +hWU phz -sWb +jpS xLi -mvp -cer -kpq +xjK +tOr +ezJ azZ xLi -lIl -wol -mvV -fno -byF -nmy -luZ -cer -kpq -mvp -mvp -mvp -mvp -mvp -mvp -mvp -mvp +nvC +nVA +paQ +pIi +gKL +shq +jES +tOr +ezJ +xjK +xjK +xjK +xjK +xjK +xjK +xjK +xjK mEO mEO mEO hVI -gYM -bLM -rfe -tja -bLM -bLM -bLM -dCs -bLM -bLM -eCy -cTE -njm -fYa -cbF -nvs -bLM -ddB -rcI -uRF -xEH -cBX +hOg +fPZ +goH +kqz +fPZ +fPZ +fPZ +lvh +fPZ +fPZ +gwz +lCm +fPu +dla +fzb +mYN +fPZ +mFh +xog +oBP +aja +lUp hVI mei oZz @@ -69558,74 +69576,74 @@ hVI hVI hVI hVI -bLM -bLM -iUa -bLJ -xXl -aeI -aeI -aeI -aeI -ssc -aeI -aeI -nQu -nQu -nQu -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu -suX -neY +fPZ +fPZ +hNi +lDC +ggQ +tvI +tvI +tvI +tvI +eMO +tvI +tvI +vPM +vPM +vPM +tvI +tvI +tvI +tvI +tvI +tvI +tvI +vPM +dGw +dhe liA -yfK -tmo +gVR +dMa gfo cME wQT eLu kqC -dHD -xbM -fHo +pHu +mcc +vei kqC -wsX -bjt +isP +fAs kqC -qNF -ctW +avl +ocB kqC -rzp -vds -vds -vds -car -gOU -gOU -gOU -vFV +cCq +dHp +dHp +dHp +ugU +gNW +gNW +gNW +hKE xGt -ucu -ihB -ucu -ihB -gag -gag -gag -ihB +mni +tHs +mni +tHs +sRV +sRV +sRV +tHs ceC -obh -obh +ryt +ryt nqN -bxc -jbF -bBK +hSR +tam +ilh ceC uGY uGY @@ -69639,22 +69657,22 @@ uGY uGY uGY uGY -gag -sbF -sbF -sbF -sbF -gag -ubP -ubP -ubP +sRV +uEm +uEm +uEm +uEm +sRV +fnB +fnB +fnB plK -lkA -dkn -uKX -oMf -dkn -xQx +aFg +nRb +sOn +fdS +nRb +xBT uMw rJO rJO @@ -69706,15 +69724,15 @@ azZ azZ xLi xLi -sWb +jpS phz phz phz phz xLi -mvp -cer -kpq +xjK +tOr +ezJ azZ xLi xLi @@ -69723,15 +69741,15 @@ ddL ddL xLi xLi -uRT -cer -kpq -mvp -icg -uTr -myQ -sWb -dqX +tmi +tOr +ezJ +xjK +bjy +kky +lvx +jpS +ruy lAh lAh aFZ @@ -69739,62 +69757,62 @@ aFZ bmE hVI hVI -kXm -ipM -tja -bLM -esw +lxe +ayM +kqz +fPZ +bow aFZ hVI hVI -tja -tja +kqz +kqz hVI hVI hVI yhR -qiK -jQs -afq -tja -tja -uRF -cZp -aWI -jQs -jQs -jQs -nRT -qNj +rmI +mhb +avX +kqz +kqz +oBP +uXc +cQn +mhb +mhb +mhb +rAQ +bqy hVI -vlK -oWY -ddB -xEH -bLM -kke -xSM -tWf -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu -hCh -nQu -aQH -aeI -uJR -aeI -aeI -ssc -aeI -nQu -suX -bLJ +kSp +pEe +mFh +aja +fPZ +uxi +qwZ +bWr +tvI +tvI +tvI +tvI +tvI +tvI +tvI +vPM +mGe +vPM +jgN +tvI +acx +tvI +tvI +eMO +tvI +vPM +dGw +lDC twb twb tPN @@ -69803,9 +69821,9 @@ tPN twb eLu kqC -dHD -xbM -fHo +pHu +mcc +vei kqC ryJ end @@ -69813,67 +69831,67 @@ kqC ryJ end kqC -dHD -wbW -upY -ufE -ugg -upY -upY -gmG -ksE +pHu +juW +sHH +nCu +ufo +sHH +sHH +eGz +isK xGt -roF -xWV -roF -ihB -gag -gag -gag -ihB -wQD -aye -yjW +fHU +wAr +fHU +tHs +sRV +sRV +sRV +tHs +bpK +ukN +kSI hVG -oZi -ubP -ubP +yft +fnB +fnB hVG -gag -aUg -ntf +sRV +sFf +sdg uGY -aMS -ihB -ihB +pUS +tHs +tHs xGt -klh -mld -hjM +wTz +iTy +xvH uGY -ubP -ubP -ubP -ubP -ubP -gag -gag -gag -gag +fnB +fnB +fnB +fnB +fnB +sRV +sRV +sRV +sRV plK -oMf -dkn -uKX -uKX -uKX -xQx +fdS +nRb +sOn +sOn +sOn +xBT uMw rJO rJO rJO plK -xZI -xZI +keL +keL eYV lvi rJO @@ -69919,95 +69937,95 @@ azZ azZ xLi xLi -sWb +jpS phz phz phz phz -mvp -cer -kpq +xjK +tOr +ezJ azZ azZ -mvp -mvp -mvp -wou +xjK +xjK +xjK +bAS xLi xLi -cGa -cer -kpq -mvp -tmF +aOd +tOr +ezJ +xjK +kVz xLi -mgh +xLP azZ azZ azZ ohF pcu tQB -kZu -mAK +wnW +aUx hVI -wfu -bLM -tja -bLM -byY +rfo +fPZ +kqz +fPZ +idE tEH -bLM -bLM -bLM -kZV -kZV -bLM +fPZ +fPZ +fPZ +trH +trH +fPZ hVI hVI -woh -tja -tja -wCJ -tja -tja -frR -gjz -tja -tja -tja -tnY -ciy +wRh +kqz +kqz +nhF +kqz +kqz +icj +tST +kqz +kqz +kqz +aGS +eli hVI -wNB -oTi -dOO -oTi -bLM -kke -lwq -hGy -aeI -pdX -aeI -aeI -aeI -aeI -lqJ -nQu -hCh -nQu -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu -hCh -sKY +myO +cwO +mJy +cwO +fPZ +uxi +kUR +eMJ +tvI +vYE +tvI +tvI +tvI +tvI +qbr +vPM +mGe +vPM +tvI +tvI +tvI +tvI +tvI +tvI +tvI +tvI +vPM +mGe +xQC bQM bQM bQM @@ -70015,70 +70033,70 @@ bQM bQM wzE kqC -dHD -bPn -fHo -ioc -rzp -vds -vds -vds -elO -nAs -dHD -upY -upY -hMj -upY -dQe -upY -ygk -rnE +pHu +ikA +vei +usz +cCq +dHp +dHp +dHp +uFh +jRR +pHu +sHH +sHH +cVl +sHH +bSP +sHH +sHw +uAG xGt -cLC -pjR -jOY -wXe -gag -udt -wHr -stw -wQg -qet -mKp +cBT +hBP +rBa +ddO +sRV +fWL +nyD +gkm +oZR +xVm +tJM nqN -qJv -bqF -tNF +ltb +cbK +hAL ceC -qNu -ubP -wty +xEa +fnB +lqB uGY -giA -ubP -gag +aCT +fnB +sRV hVG -ihB -rZO -ihB +tHs +qbu +tHs hVG -gag -gag -gag -gag -gag -gag -gag -gag -cHl +sRV +sRV +sRV +sRV +sRV +sRV +sRV +sRV +cvq plK -mVd -dkn -dkn -dkn -uKX -xQx +lNB +nRb +nRb +nRb +sOn +xBT gHz aJX uMw @@ -70136,90 +70154,90 @@ phz phz phz phz -mvp -cer -wun -hae -hae -hae -hae -hae -hae +xjK +tOr +mtk +sqg +sqg +sqg +sqg +sqg +sqg xZR -hae -hae -ovk -kpq -mvp -mlb -byG -uQT +sqg +sqg +uwg +ezJ +xjK +qzn +ham +btq azZ azZ azZ bTo pcu aFZ -hUL -tja +uCz +kqz hVI -esw -bLM -tja -rnM -esw +bow +fPZ +kqz +mUr +bow tEH -bLM -uqd -eUy -bsR -hGu -bLM +fPZ +rAa +rss +dBI +ycg +fPZ aif rKa -rTV -pWX -bDJ -rtP -tja -tja -frR -tja -tja -nMi -tja -upr +cVk +oYm +lFj +cFC +kqz +kqz +icj +kqz +kqz +sZr +kqz +aNw hVI hVI -mMa -brC -uhX -tJw -kGD -gyh -buG -tWf -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu -suX -nQu -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu -hCh -sKY +mAz +tur +quk +rMS +tcl +seu +hTc +bWr +tvI +tvI +tvI +tvI +tvI +tvI +tvI +vPM +dGw +vPM +tvI +tvI +tvI +tvI +tvI +tvI +tvI +tvI +vPM +mGe +xQC bQM bQM bQM @@ -70227,32 +70245,32 @@ bQM bQM wzE kqC -dHD -xbM -fHo -ioc -qNF -xRI -xRI -xRI -efW -nAs -fcB -upY -hlB -upY -upY -vYX -ugg -ksE +pHu +mcc +vei +usz +avl +xri +xri +xri +iUy +jRR +wjx +sHH +wOM +sHH +sHH +hxi +ufo +isK ceC ceC -sIh -ihB -kjX -ueP -gag -hQj +bFY +tHs +wJt +vZU +sRV +vKj nqN nqN nqN @@ -70263,27 +70281,27 @@ ceC nqN nqN ceC -unz -gag -gYH +hUH +sRV +nBM uGY -pDQ -ubP -ihB +aVN +fnB +tHs xGt -fZW -cki -huB +gbP +uKh +iin uGY sEO sEO sEO -vpN -sXt -sXt -sXt -sXt -sXt +alr +ddF +ddF +ddF +ddF +ddF plK plK plK @@ -70293,8 +70311,8 @@ dwT dwT plK plK -nzu -mBZ +rrb +aYZ aPH kPz kPz @@ -70347,101 +70365,101 @@ xLi xLi xLi phz -sWb -mvp -ubX -eqU -eqU -eqU -eqU -eqU -eqU -eqU +jpS +xjK +lax +kbO +kbO +kbO +kbO +kbO +kbO +kbO xZR -eqU -eqU -uAg -kpq -mvp -mvp -mvp -mvp +kbO +kbO +dFk +ezJ +xjK +xjK +xjK +xjK azZ bQM bQM bTo pcu aFZ -wDK -tja +duB +kqz aif -byY -bLM -tja -bLM -byY +idE +fPZ +kqz +fPZ +idE tEH -njm -eLw -eLw -bLM -bLM -njm +fPu +jlg +jlg +fPZ +fPZ +fPu hVI hVI -woh -hYl -tja -tja -tja -cCs -frR -ltd -tja -set -tja -nyq -bLJ -bLJ -bLJ -bLJ -bLJ -bLJ -bLJ -bLJ -bLJ -xXl -aeI -fyt -aeI -aeI -aeI -rOL -aeI -nQu -hCh -nQu -aeI -rOL -aeI -aeI -aeI -evl -aeI -aeI -nQu -shH -iYw -iYw -sKY -sKY -sKY -iYw -iYw -izh -dHD -xbM -voO +wRh +xzb +kqz +kqz +kqz +uXa +icj +vro +kqz +sWu +kqz +bxa +lDC +lDC +lDC +lDC +lDC +lDC +lDC +lDC +lDC +ggQ +tvI +kuT +tvI +tvI +tvI +oKQ +tvI +vPM +mGe +vPM +tvI +oKQ +tvI +tvI +tvI +ioG +tvI +tvI +vPM +deH +eDn +eDn +xQC +xQC +xQC +eDn +eDn +vqi +pHu +mcc +veB kqC ryJ end @@ -70449,39 +70467,39 @@ kqC ryJ end kqC -lNf -upY -upY -elc -upY -upY -eNr -ksE +azT +sHH +sHH +cPQ +sHH +sHH +pbS +isK xGt -ucu -ihB -ucu -ihB -ihB -ubP -ubP +mni +tHs +mni +tHs +tHs +fnB +fnB pTj -gag -hCk -tCH +sRV +uSo +bOh wBK -kGB +nzm ceC -dBO -dBO +tVZ +tVZ uGY uGY uxv uGY uGY -nFb -ubP -ihB +ril +fnB +tHs uGY xGt xGt @@ -70490,20 +70508,20 @@ uGY jwK jnd jwK -nZB -fAf -nZB -nZB -fAf -nZB +aWR +hxy +aWR +aWR +hxy +aWR okg jnd mpf hLz -nZB -fAf -fAf -nZB +aWR +hxy +hxy +aWR aPH aPH aPH @@ -70560,23 +70578,23 @@ xLi xLi xLi xLi -mvp -mvp -mvp -mvp -mvp -mvp -mvp -mvp -wou +xjK +xjK +xjK +xjK +xjK +xjK +xjK +xjK +bAS xLi xLi -cGa -cer -kpq -mvp -mvp -mvp +aOd +tOr +ezJ +xjK +xjK +xjK azZ azZ bQM @@ -70587,11 +70605,11 @@ aFZ hVI hVI hVI -qSy -bLM -tja -bLM -byY +gjj +fPZ +kqz +fPZ +idE aFZ hVI hVI @@ -70601,121 +70619,121 @@ hVI hVI hVI hVI -woh -tja -tja -tja -tja -jHU -oza -cgx -tja -tja -tja -vyv -nMz -nQu -wRz -fqg -fqg -eLX -edy -nQu -nQu -suX -aeI -aeI -aeI -aeI -aeI -aeI -fyt -nQu -hCh -kob -aeI -aeI -evl -aeI -hTy -aeI -aeI -aeI -nQu -nQu -srp -hOQ -fqg -fqg -fqg -nQu -srp -bqD -cAJ -xbM -fHo +wRh +kqz +kqz +kqz +kqz +sHQ +pnc +bII +kqz +kqz +kqz +iJj +cAv +vPM +fhz +gTw +gTw +wuT +qyX +vPM +vPM +dGw +tvI +tvI +tvI +tvI +tvI +tvI +kuT +vPM +mGe +xqh +tvI +tvI +ioG +tvI +aJU +tvI +tvI +tvI +vPM +vPM +pkw +ybs +gTw +gTw +gTw +vPM +pkw +tjM +cMg +mcc +vei kqC -rzp -tKk +cCq +awo kqC -rzp -osQ +cCq +mIA kqC -dHD -upY -upY -upY -ufE -wbW -fxS -ksE +pHu +sHH +sHH +sHH +nCu +juW +buO +isK xGt -roF -oDg -roF -ihB -ihB -ubP -ubP +fHU +kdk +fHU +tHs +tHs +fnB +fnB pTj -gKg -dFB -hrB +juS +gmS +dhs sYP -kGB +nzm uGY -xLd -ihB -syj -ihB -gag -aOL +wir +tHs +rcu +tHs +sRV +quU uGY -ppq -ubP -ihB +jdh +fnB +tHs nqN -lJx -fAf -fAf -fAf -fAf -mxc -fAf -fAf +jKG +hxy +hxy +hxy +hxy +pbC +hxy +hxy jwK -nZB -nZB +aWR +aWR jwK -fAf -gsd -fAf -lJf +hxy +mOW +hxy +aAM hLz -nQH +nID jwK jwK -lEg +hLy wly kPz kPz @@ -70775,19 +70793,19 @@ xLi xLi xLi xLi -vHX -dqX -dqX -dqX -kQy -kQy +mwU +ruy +ruy +ruy +cft +cft xLi xLi phz -cer -kpq +tOr +ezJ rBr -mvp +xjK azZ azZ azZ @@ -70796,138 +70814,138 @@ bQM bTo pcu aFZ -chZ -tja +fHQ +kqz aif -byY -bLM -tja -bLM -qtP +idE +fPZ +kqz +fPZ +qQU aFZ fIT hVI mEO mEO -ddD +qDo hVI lmn -fkH -roE -tpZ -jAF -tpZ -crm +jXQ +tqR +bgR +uiK +bgR +izP nQq nQq -nMi -tja -tja -tja -bze -iWP -suX -jyQ -hCh -hCh -suX -fNA -hCh -ctY -ctY -iAB -nQu -nQu -nQu -nQu -nQu -nQu -nQu -suX -nQu -nQu -nQu -nQu -nQu -nQu -nQu -xFg -asz -asz -hCh -mGr -suX -hCh -hCh -hCh -suX -mGr -upY -dHD -xbM -fHo +sZr +kqz +kqz +kqz +lcu +vbe +dGw +fsn +mGe +mGe +dGw +rVy +mGe +wnB +wnB +gVX +vPM +vPM +vPM +vPM +vPM +vPM +vPM +dGw +vPM +vPM +vPM +vPM +vPM +vPM +vPM +sYe +tJT +tJT +mGe +isl +dGw +mGe +mGe +mGe +dGw +isl +sHH +pHu +mcc +vei kqC -qLi -dpe +wII +bjk kqC -qLi -dpe +wII +bjk kqC -dHD -upY -sRv -upY -wam -upY -mom -rnE +pHu +sHH +vDx +sHH +aLR +sHH +ifI +uAG xGt -cLC -mwK -cLC -ihB -ihB -ubP -ubP +cBT +vok +cBT +tHs +tHs +fnB +fnB pTj -aIm -aIm -gag -gag -kGB +xTy +xTy +sRV +sRV +nzm cCB -ihB -ubP -ubP -eLQ -ubP -ihB +tHs +fnB +fnB +cQu +fnB +tHs cCB -ihB -ubP -ihB +tHs +fnB +tHs uGY hLz -ndD -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -fAf -tFo +wMR +aWR +aWR +aWR +aWR +aWR +aWR +aWR +aWR +aWR +aWR +aWR +aWR +hxy +bgG xUo -nZB +aWR jwK jwK -nZB +aWR ckm kPz bQM @@ -70986,18 +71004,18 @@ xLi xLi xLi xLi -rGc -mvp -rHX -dqX -rHX -mvp -mvp -mvp +lzO +xjK +dNF +ruy +dNF +xjK +xjK +xjK phz phz -cer -kpq +tOr +ezJ azZ azZ azZ @@ -71008,76 +71026,76 @@ bQM bTo pcu aFZ -bRo -tja +qTp +kqz hVI -byY -bLM -tja -bLM -byY +idE +fPZ +kqz +fPZ +idE sJu mEO sJu mEO mEO -akW +ezo hVI gZf -bLM -dOO -cgx -tja -tja -sTI +fPZ +mJy +bII +kqz +kqz +cLr hVI hVI -kgT -nMi -tja -tja -gFp -mZH -suX -suX -suX -bEA -suX -fNA -hCh -ohl -qQa -trJ -nQu -hCh -hCh -bkU -hCh -hCh -suX -bqX -suX -hCh -jXV -suX -hCh -hCh -nQu -umm -aDx -aDx -hCh -mGr -suX -suX -suX -suX -suX -mGr -upY -dHD -xbM -fHo +fcO +sZr +kqz +kqz +pIX +cYg +dGw +dGw +dGw +jqR +dGw +rVy +mGe +bCk +sLl +jNa +vPM +mGe +mGe +smz +mGe +mGe +dGw +muf +dGw +mGe +wWT +dGw +mGe +mGe +vPM +liT +jXx +jXx +mGe +isl +dGw +dGw +dGw +dGw +dGw +isl +sHH +pHu +mcc +vei kqC kqC kqC @@ -71085,61 +71103,61 @@ kqC kqC kqC mCF -sAF -upY -upY +iDa +sHH +sHH vRA -upY -upY -ksE +sHH +sHH +isK ceC ceC -sIh -ihB -sIh -ihB -ihB -gag -qdE +bFY +tHs +bFY +tHs +tHs +sRV +qks uGY -ltQ -ltQ +kik +kik nqN -ltQ -ayo +kik +iOE uGY -eZQ -kyZ -ihB -ihB -ubP -gag +hce +jpl +tHs +tHs +fnB +sRV hVG -gag -ubP -ihB +sRV +fnB +tHs uGY -jEr -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -nZB -fAf -nZB +mft +aWR +aWR +aWR +aWR +aWR +aWR +aWR +aWR +aWR +aWR +aWR +aWR +aWR +hxy +aWR xUo -nZB +aWR jwK jwK -nZB +aWR ckm kPz bQM @@ -71199,17 +71217,17 @@ xLi xLi xLi xLi -spH -rHX -dqX -rHX -mvp -mvp -mvp +mzp +dNF +ruy +dNF +xjK +xjK +xjK phz phz -cer -kpq +tOr +ezJ pPd azZ azZ @@ -71220,138 +71238,138 @@ tuf bTo pcu tQB -kSd -tja +qeu +kqz hVI -ncj -sdr -tja -bLM -egT +lpV +eAQ +kqz +fPZ +ygv aFZ hVI hVI mEO mEO -bWy +rNp hVI gZf -bLM -dOO -tja -tja -fSa -lJS +fPZ +mJy +kqz +kqz +iOe +feO nQq nQq -qAl -tja -tja -tja -lVQ -qZv -suX -lFQ -aCZ -hCh -suX -fNA -hCh -mRS -mRS -qRK -nQu -dcO -nQu -nQu -nQu -nQu -dcO -suX -nQu -wGb -nQu -nQu -nQu -nQu -nQu -mjm -jfO -jfO -hCh -mGr -suX -hCh -hCh -hCh -suX -mGr -upY -dHD -xbM -fHo +fJO +kqz +kqz +kqz +aSw +cYa +dGw +gfp +hkW +mGe +dGw +rVy +mGe +oOs +oOs +eKg +vPM +jZx +vPM +vPM +vPM +vPM +jZx +dGw +vPM +dHI +vPM +vPM +vPM +vPM +vPM +xQs +ckj +ckj +mGe +isl +dGw +mGe +mGe +mGe +dGw +isl +sHH +pHu +mcc +vei kqC -sfu -jyF +bux +bZu kqC -sfu -iEG +bux +bFN kqC -dHD -upY -upY +pHu +sHH +sHH vRA -cKH -joJ -ksE +rkh +xBv +isK xGt -bjo -ihB -ihB -ihB -ihB -ihB -kfL +maC +tHs +tHs +tHs +tHs +tHs +bDd uGY uGY -fRq -fRq +qTa +qTa nqN -fRq -ygr +qTa +nsH xGt -ihB -ubP -lwp -dlr -ljV -gag +tHs +fnB +aDC +wiQ +vOj +sRV hVG -gag -ubP -ihB +sRV +fnB +tHs uGY -lMh -nZB -nZB -nZB -nZB -tco -nZB -nZB -nZB -nZB -nZB -nZB -nZB -tFo -fAf -nZB +gaN +aWR +aWR +aWR +aWR +tBU +aWR +aWR +aWR +aWR +aWR +aWR +aWR +bgG +hxy +aWR xUo -nZB +aWR jwK jwK -nZB +aWR ckm kPz kPz @@ -71407,24 +71425,24 @@ xLi inA xLi xLi -fEn -fEn -kqy -kqy -mvp -sVT -dqX -rHX -mvp -mvp -mvp +csp +csp +pvT +pvT +xjK +jvp +ruy +dNF +xjK +xjK +xjK rBr phz -cer -kpq -mvp -dqX -sWb +tOr +ezJ +xjK +ruy +jpS azZ azZ azZ @@ -71435,135 +71453,135 @@ aFZ hVI hVI hVI -byY -bLM -tja -bLM -byY +idE +fPZ +kqz +fPZ +idE aFZ hVI -hZf +nGq mEO mEO hVI hVI gZf -bLM -dOO -cgx -tja -xAo -tja -nkJ -vTR -cgx -tja -tja -tja -tjw -cYS -nQu -pzL -vDL -eWf -qre -diL -nQu -nQu -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu -hCh -nQu -aeI -aeI -aeI -aeI -aeI -aeI -aeI -aeI -nQu -nQu -oTS -vLO -eWf -eWf -eWf -nQu -oTS -iox -dHD -xbM -fHo +fPZ +mJy +bII +kqz +fyT +kqz +tnd +ueA +bII +kqz +kqz +kqz +kdo +tzF +vPM +guB +ick +jZb +mDi +sWF +vPM +vPM +tvI +tvI +tvI +tvI +tvI +tvI +tvI +tvI +vPM +mGe +vPM +tvI +tvI +tvI +tvI +tvI +tvI +tvI +tvI +vPM +vPM +dnA +vWE +jZb +jZb +jZb +vPM +dnA +reD +pHu +mcc +vei kqC -qNF -bjt +avl +fAs kqC -qNF -mDO +avl +jms kqC -dHD -upY +pHu +sHH vRA -vZL -upY -upY -ksE +eNV +sHH +sHH +isK xGt -mEJ -ihB -ihB -ihB -ihB -ihB -tkd +xed +tHs +tHs +tHs +tHs +tHs +wAR cCB -gag -gag -gag -gag -gag -kGB +sRV +sRV +sRV +sRV +sRV +nzm xGt -ihB -ubP -eWz -pxr -ubP -ihB +tHs +fnB +keF +vrf +fnB +tHs uGY -ihB -ihB -tXT +tHs +tHs +pCZ uGY hLz -nZB -nZB -fAf -fAf -aXx -fAf -fAf +aWR +aWR +hxy +hxy +jrL +hxy +hxy jwK -nZB -nZB +aWR +aWR jwK -fAf -gsd -fAf -czJ +hxy +mOW +hxy +fMY hLz -nQH -fAf -fAf -lEg +nID +hxy +hxy +hLy wly ckm ckm @@ -71608,7 +71626,7 @@ bQM azZ azZ ejw -sWb +jpS etL phz phz @@ -71618,102 +71636,102 @@ gDx xLi xLi xLi -dqX -fEn -fEn -oGy -oGy -cLy -rHX -dqX -rHX -esR +ruy +csp +csp +deN +deN +eRS +dNF +ruy +dNF +jmM xLi xLi -dqX +ruy phz -cer -kpq +tOr +ezJ irD trl phz -dqX +ruy azZ azZ lAh -mnd -oYs -nCh -byY -byY -uno -byY -bLM -fSa -bLM -byY +hPF +qFQ +sNK +idE +idE +gkt +idE +fPZ +iOe +fPZ +idE eVm hVI -tgL +tNS mEO xgF hVI -oPn -jEy -bLM -dOO -tja -tja -iMq -tja -hYl -tja -tja -hYl -tja -tja -mCR -iYw -egk -sKY -sKY -sKY -iYw -iYw -sOM -nQu -aeI -eBa -aeI -aeI -aeI -aeI -rOL -aeI -nQu -hCh -nQu -aeI -rOL -aeI -pdX -aeI -xei -xpj -aeI -nQu -shH -iYw -iYw -sKY -sKY -sKY -iYw -iYw -izh -dHD -xbM -voO +fiD +wkp +fPZ +mJy +kqz +kqz +mqY +kqz +xzb +kqz +kqz +xzb +kqz +kqz +oFW +eDn +eHa +xQC +xQC +xQC +eDn +eDn +iCi +vPM +tvI +rxu +tvI +tvI +tvI +tvI +oKQ +tvI +vPM +mGe +vPM +tvI +oKQ +tvI +vYE +tvI +xXw +hVS +tvI +vPM +deH +eDn +eDn +xQC +xQC +xQC +eDn +eDn +vqi +pHu +mcc +veB kqC ryJ end @@ -71721,53 +71739,53 @@ kqC ryJ end kqC -nBb -upY +ulJ +sHH vRA -upY -upY -ejf -ksE +sHH +sHH +oJW +isK xGt -izN -mDS -ihB -htq -lNc -ihB -vuK +adl +isB +tHs +pQb +lgy +tHs +mEb uGY -gag -gag -gag -gag -gag -kGB +sRV +sRV +sRV +sRV +sRV +nzm xGt -gwm -ubP -ggA -ihB -ubP -ihB +kvn +fnB +qKs +tHs +fnB +tHs uGY ceC uGY uGY nqN -qQd +jlO jwK jwK -fAf +hxy sEO sEO sEO -fAf -fAf +hxy +hxy jwK jwK -nZB -nZB +aWR +aWR okg liZ uSQ @@ -71777,9 +71795,9 @@ xja xja hLz hLz -eCK -eCK -eCK +mWg +mWg +mWg wly wly kPz @@ -71831,115 +71849,115 @@ xLi xLi xLi phz -dqX -dqX +ruy +ruy xLi xLi -idP -rHX -dqX -rHX -mvp +cBQ +dNF +ruy +dNF +xjK azZ azZ azZ -vTq -cer -kpq +eyo +tOr +ezJ phz -sWb +jpS phz -dqX -fEn -mvp -mvp -fEn -byY -byY +ruy +csp +xjK +xjK +csp +idE +idE hVI -rUQ -bLM -bLM -bLM -tja -bLM -byY +jJF +fPZ +fPZ +fPZ +kqz +fPZ +idE aFZ hVI -fQY +svG mEO mEO sJu -bLM -bLM -bLM -abG -tja -tja -tja -tLk -tja -tja -tja -tja -tja -tja -oOk +fPZ +fPZ +fPZ +urS +kqz +kqz +kqz +teT +kqz +kqz +kqz +kqz +kqz +kqz +lwB aFZ aFZ -fPB -bQM -bQM -bQM -sKY -hCh -nQu -aeI -aeI -aeI -aeI -aeI -aeI -aeI -eBa -nQu -suX -nQu -aeI -aeI -eBa -aeI -fyt -aeI -xpj -aeI -nQu -hCh -sKY -hTN +gyW +bQM +bQM +bQM +xQC +mGe +vPM +tvI +tvI +tvI +tvI +tvI +tvI +tvI +rxu +vPM +dGw +vPM +tvI +tvI +rxu +tvI +kuT +tvI +hVS +tvI +vPM +mGe +xQC +cmz fyC qOk mKS erT wzE wzE -dHD -xbM -fHo -ioc -rzp -vds -vds -msH -elO -nAs -fcB -gQc -upY -upY -upY -upY -ksE +pHu +mcc +vei +usz +cCq +dHp +dHp +wsN +uFh +jRR +wjx +uyd +sHH +sHH +sHH +sHH +isK ceC ceC nqN @@ -71952,47 +71970,47 @@ nqN uxv ceC ceC -aPr -jyv -kaw +bBS +qXl +weQ uGY -ilr -ubP -ubP -ubP -ubP -ihB -rKm +evQ +fnB +fnB +fnB +fnB +tHs +rfa ceC hLz -byE +gHl hLz -fAf +hxy jwK jwK -fAf +hxy sEO sEO sEO -fAf -fAf +hxy +hxy jwK jwK -fAf -fAf +hxy +hxy hLz hLz hLz hLz -aQW -aQW +nxM +nxM wSm qxN qxN -fAf -fAf -fAf -fAf +hxy +hxy +hxy +hxy ybj wly wly @@ -72041,170 +72059,170 @@ azZ phz xZR phz -mvp +xjK phz -mvp +xjK irD -iMN -oNu -aQY -rHX -dqX -rHX -xqY +ldy +lYl +fkP +dNF +ruy +dNF +phg azZ xLi xLi -mvp -cer -kpq +xjK +tOr +ezJ phz phz phz kEZ -fEn -mvp -mvp -fEn -byY -byY +csp +xjK +xjK +csp +idE +idE hVI -vCL -bLM -bLM -bLM -tja -bLM -byY +hpN +fPZ +fPZ +fPZ +kqz +fPZ +idE aFZ hVI -fQY +svG mEO mEO hVI -aEG -bLM -bLM -dAg -vki -jbq -sGk -jbq -xsh -jbq -fCf -jTo -jbq -tja -tFY +fOs +fPZ +fPZ +ryN +owv +jEb +cjl +jEb +yil +jEb +aaf +eTd +jEb +kqz +lJv aFZ aFZ -fPB -bQM -bQM -bQM -sKY -lqa -nQu -aeI -aeI -aeI -jJZ -cEW -aeI -aeI -aeI -nQu -hCh -nQu -aeI -eBa -aeI -aeI -aeI -aeI -aeI -aeI -nQu -hCh -sKY -dxl +gyW +bQM +bQM +bQM +xQC +vuc +vPM +tvI +tvI +tvI +qfE +dnI +tvI +tvI +tvI +vPM +mGe +vPM +tvI +rxu +tvI +tvI +tvI +tvI +tvI +tvI +vPM +mGe +xQC +xyy afk afk afk ghg wzE wzE -dHD -xbM -fHo -ioc -iWp -xRI -xRI -xRI -efW -nAs -fcB -upY -upY +pHu +mcc +vei +usz +laZ +xri +xri +xri +iUy +jRR +wjx +sHH +sHH vRA -osN -xdb -pZn -kIb -vFV +nhR +sql +pZb +kWn +hKE hZR kPz kPz kPz dCM -svc -wNG -wNG -hWb +tMx +oQY +oQY +vMb xGt -lVA -lVA -lVA +xBI +xBI +xBI gIB -sjM -fIn -ihB -gag -ihB -ucu -fkG +ohs +qgA +tHs +sRV +tHs +mni +gZE ceC -ikF -ndD -fAf -fAf -nZB -nZB -fAf -nZB -kEx -fAf -nZB -nZB -fAf -nZB -nZB -fAf -fAf -nyO -fAf -uuk -nZB +tvU +wMR +hxy +hxy +aWR +aWR +hxy +aWR +jtF +hxy +aWR +aWR +hxy +aWR +aWR +hxy +hxy +lPW +hxy +mqc +aWR wSm pBV qKT qbl wSm -nZB -ndD -fAf +aWR +wMR +hxy wly wly wly @@ -72253,41 +72271,41 @@ xLi xLi xLi xLi -cGa +aOd phz -mvp -sVS -dwZ -wsM -aQY -rHX -dqX -rHX +xjK +app +bUJ +mcT +fkP +dNF +ruy +dNF phz xLi xLi azZ -mvp -cer +xjK +tOr phz -mvp -sWb +xjK +jpS wNi -dqX -fEn -mvp -mvp -dvB -mpY -xCv -xCv -xCv -gHC -kHc -fbc -bLM -bLM -lDo +ruy +csp +xjK +xjK +gKA +mxO +arm +arm +arm +miZ +vcy +jCQ +fPZ +fPZ +edv aFZ aFZ aFZ @@ -72318,28 +72336,28 @@ jmG jmG cKa cKa -rMT -aeI -aeI -aeI -aeI -aeI -aeI -pdX -nQu -hCh -nQu -nQu -nQu -nQu -hox -hox -hox -nQu -nQu -bVE -iYw -iYw +cNC +tvI +tvI +tvI +tvI +tvI +tvI +vYE +vPM +mGe +vPM +vPM +vPM +vPM +hrg +hrg +hrg +vPM +vPM +rWB +eDn +eDn urJ afk hkh @@ -72347,9 +72365,9 @@ afk tCZ pcu wzE -dHD -xbM -voO +pHu +mcc +veB kqC ryJ end @@ -72357,66 +72375,66 @@ kqC ryJ end kqC -nBb -upY -upY -upY -upY -siW -bEm -upY -ksE +ulJ +sHH +sHH +sHH +sHH +xQE +hCX +sHH +isK hZR kPz bQM kPz dCM -nIw -wNG +mZw +oQY cZV -sjJ +oTe xGt -kWL -kWL -kWL +pGv +pGv +pGv gIB -mEn -psP +qzX +tZX uGY -dBs +vaj uGY -oOh -ppq +nWK +jdh ceC -gjs -fAf -fAf -fAf -nZB -nZB -fAf -xTW -aAJ -dUi -nZB -nZB -fAf -nZB -nZB -fAf -aSA -cvv -dUi -ndD -nZB +xOQ +hxy +hxy +hxy +aWR +aWR +hxy +tzx +tGl +dSy +aWR +aWR +hxy +aWR +aWR +hxy +tSi +fSe +dSy +wMR +aWR ppG qbl qbl wSm -jxc -nZB -nZB -fAf +rZr +aWR +aWR +hxy wly wly wly @@ -72465,92 +72483,92 @@ xLi xLi xLi xLi -jVt +nvZ phz -mvp -mvp -bgD -wsM -aQY -pjW -dqX -rHX +xjK +xjK +lfS +mcT +fkP +obL +ruy +dNF phz lAh lAh lAh -mvp -cer -kpq -mvp +xjK +tOr +ezJ +xjK lAh lAh beW -fEn -maA -mvp -ckA +csp +kYM +xjK +upt jmG mvl mvl mvl jmG -fer -byY -byY -byY -byY +tuD +idE +idE +idE +idE tOp -ezd -jjp -hVA -lFB +ror +wwR +uJj +kNz tOp -jWI -amZ -bsO +aaK +oDG +aRb cKa cKa -vUP -dVA -vUP -dVA -vUP +vJD +ggB +vJD +ggB +vJD hqD -jWI -eow -lFB -aLX +aaK +dkj +kNz +hor cKa -bqu -rwm +ocJ +rsE cKa -fZc -dVA -rhf -nss +imL +ggB +uCD +mEv jYs -cMD -aeI -aeI -aeI -xpj -aeI -aeI -aeI -nQu -ele -nQu -evl -aeI -kMm -umI -moK -asz -eMI -nQu -bVE -iYw +vMX +tvI +tvI +tvI +hVS +tvI +tvI +tvI +vPM +vZz +vPM +ioG +tvI +rcG +nzp +jdX +tJT +ePm +vPM +rWB +eDn jKI mdJ afk @@ -72559,76 +72577,76 @@ afk xMW jlH wzE -cPh -xbM -fHo +ldt +mcc +vei kqC -rzp -mwP +cCq +pDV kqC -rzp -ldz +cCq +qkY kqC -qNF -xRI -xRI -xRI -xRI -xRI -xRI -xRI -rnE +avl +xri +xri +xri +xri +xri +xri +xri +uAG hZR kPz kPz kPz dCM -bsc -rIy -paO -sMe +jbx +bck +rbD +oEt xGt -hqO -hqO -hqO +wYE +wYE +wYE uGY njK cHF uGY -fAf +hxy uGY gIB gIB ceC -uNG -fAf -fAf -fAf -nZB -nZB -fAf -nZB -nZB -fAf -nZB -nZB -fAf -nZB -nZB -fAf -nZB -nZB -avJ -nZB -nZB -fAf +xnN +hxy +hxy +hxy +aWR +aWR +hxy +aWR +aWR +hxy +aWR +aWR +hxy +aWR +aWR +hxy +aWR +aWR +mnp +aWR +aWR +hxy wSm wSm -fAf -jxc -nZB -nZB -fAf +hxy +rZr +aWR +aWR +hxy wly tan tan @@ -72667,7 +72685,7 @@ vcC bQM bQM bQM -wyK +dOF azZ azZ eVq @@ -72677,118 +72695,118 @@ xLi xLi xLi xLi -ppZ -dqX -mvp -mvp -twR -oNu -aQY -rHX -nDI -rHX -mvp +iQP +ruy +xjK +xjK +ljW +lYl +fkP +dNF +mHN +dNF +xjK lAh lAh lAh -mvp -cer -kpq +xjK +tOr +ezJ lAh lAh lAh -dqX -fEn -mvp -mvp -ckA +ruy +csp +xjK +xjK +upt lIG -spR -kzR -qBI +avs +wwr +dTv mvl -eqJ -byY -iEl -gBR -gBR +vBQ +idE +bha +cif +cif jmG -wUz -jWI -lFB -lFB +fmL +aaK +kNz +kNz tOp -uqV -tVI -hBc +tOK +blQ +tHu cKa bRc -dVA -fZc -dVA -akM -dVA +ggB +imL +ggB +iNO +ggB hqD -uKK -mgz -rLG -aLX +bdI +roY +iZV +hor hqD -kXk -gnY +ikq +mYp cKa -ejM -dVA -rhf -sWX +qZW +ggB +uCD +biJ jYs -cMD -jpW -aeI -aeI -aeI -aeI -aeI -aeI -xFg -dYi -asz -aeI -aeI -kMm -bvs -nQu -bvs -eMI -suX -aPv -iYw -iYw -iYw -fCJ +vMX +iuw +tvI +tvI +tvI +tvI +tvI +tvI +sYe +aee +tJT +tvI +tvI +rcG +aIX +vPM +aIX +ePm +dGw +vVR +eDn +eDn +eDn +wby llQ jKI bUB bQM wzE -nBb -xbM -fHo +ulJ +mcc +vei kqC -qLi -dpe +wII +bjk kqC -qLi -dpe +wII +bjk kqC -okG -ioc -okG +gMJ +usz +gMJ kqC kqC -dbI -dbI -dbI +sSJ +sSJ +sSJ kqC wzE hZR @@ -72800,48 +72818,48 @@ xGt ceC xGt ceC -nZB -nZB -nZB -uSU -fAf -fAf -uSU -fAf -uSU -fAf -fAf -uSU -nZB -fAf -uNI -fAf -lcm -tyC -grA -aOT -lcm -tyC -cRZ -aOT -lcm -tyC -cRZ -aOT -lcm -tyC -cRZ -aOT -lcm -tyC -grA -aOT -lcm -fAf -nZB -nZB -nZB -nZB +aWR +aWR +aWR +pax +hxy +hxy +pax +hxy +pax +hxy +hxy +pax +aWR +hxy +tFu +hxy +eZN +sIT +uVo +hTm +eZN +sIT +fpM +hTm +eZN +sIT +fpM +hTm +eZN +sIT +fpM +hTm +eZN +sIT +uVo +hTm +eZN +hxy +aWR +aWR +aWR +aWR vzB fiq vzB @@ -72880,7 +72898,7 @@ bQM bQM bQM enY -wyK +dOF azZ azZ azZ @@ -72892,100 +72910,100 @@ xLi xLi phz xLi -dqX +ruy xLi xLi -idP -rHX -dqX -rHX -mvp +cBQ +dNF +ruy +dNF +xjK lAh lAh jZc -mvp -mvp -mvp -uOu -uOu -uOu -dqX -dqX -mvp -mvp -gkv +xjK +xjK +xjK +xnM +xnM +xnM +ruy +ruy +xjK +xjK +bcV cKa -lUZ +hah xlp -poC +ofy mvl -sKu -chx -rDu -dCg -hXN +oAm +vMh +xFe +cPI +lvN jmG -xVw -bwk -rLG -dlj +jXD +mhe +iZV +ojf tOp -kXk -amn -pxX +ikq +vII +sKn cKa bRc -dVA -cYi -dVA -wqs -dVA +ggB +uUT +ggB +ktI +ggB cKa -awU -mgz -rLG -aLX +cYY +roY +iZV +hor cKa kzh tOp cKa -sGX -dVA -rhf -avc +rfJ +ggB +uCD +iwK cKa -xbc -suX -nQu -nQu -aeI -aeI -aeI -aeI -qBf -dYC -jfO -aeI -fyt -kMm -qBf -bvs -tTB -eMI -shH -cmy -wId -vOZ -iYw -sKY +gde +dGw +vPM +vPM +tvI +tvI +tvI +tvI +sDV +uRu +ckj +tvI +kuT +rcG +sDV +aIX +uAd +ePm +deH +ued +uvM +cnl +eDn +xQC wzE wzE wzE wzE wzE -cQf -jpx -fHo +aan +gPm +vei kqC kqC kqC @@ -72993,41 +73011,41 @@ kqC kqC kqC mCF -uJp -kIb -vFV +oMz +kWn +hKE kqC -lsR -lZp -lZp -lZp -svN +wAj +fXS +fXS +fXS +gpq kqC -rzp -vds -elO +cCq +dHp +uFh abJ -ioc -ioc +usz +usz abJ -goo -goo -goo -fAf -hRb -upw -upw -upw -upw -nZB -upw -upw -upw -upw -nZB -nZB -nZB -iTt +sKq +sKq +sKq +hxy +jYS +bkS +bkS +bkS +bkS +aWR +bkS +bkS +bkS +bkS +aWR +aWR +aWR +tts wQN wSm wSm @@ -73092,10 +73110,10 @@ bQM bQM bQM fiq -dfc +aDh ePv ePv -dfc +aDh azZ lAh xLi @@ -73107,139 +73125,139 @@ phz kEZ phz xLi -jUa -rHX -dqX -rHX -mvp +cfD +dNF +ruy +dNF +xjK lAh -aeS -mvp -lkr -rTd -hae -tqw -kQH -tqw -mvp -mvp -mvp -hDm -mvp +vtf +xjK +xMg +aZz +sqg +fde +rjz +fde +xjK +xjK +xjK +fcp +xjK rSr -cOF -cOF -cOF +mIE +mIE +mIE mvl -byY -byY -byY -byY -nFc +idE +idE +idE +idE +jAy jmG -kjt -kjt -rLG -djF +xMR +xMR +iZV +aUa jmG sta sta sta jmG cKa -vUP -dVA -vUP -dVA -vUP +vJD +ggB +vJD +ggB +vJD cKa -uKK -hjB -rLG -vUP -lEd -eow -ulc -eow -eow -lFB -vUP -vUP +bdI +fnj +iZV +vJD +hFn +dkj +oMR +dkj +dkj +kNz +vJD +vJD jmG -egk -iYw -suX -suX -nQu -nQu -nQu -fDE -qBf -dYC -jfO -nQu -ele -nQu -pst -pst -pst -nQu -neY -dNk -cMD -hCh -ufL -hCh +eHa +eDn +dGw +dGw +vPM +vPM +vPM +aLC +sDV +uRu +ckj +vPM +vZz +vPM +mIq +mIq +mIq +vPM +dhe +msS +vMX +mGe +uIA +mGe oFI -mCe -xbM -sJP +gEW +mcc +fLR kqC -dHD -xbM -fHo +pHu +mcc +vei kqC -sfu -jyF +bux +bZu kqC -sfu -jyF +bux +bZu kqC -dHD -xLx -voO +pHu +mxz +veB kqC -ubh -xFJ -eao -lZp -qXj +dhD +vPa +oXJ +fXS +bYG kqC -nBb -xbM -fHo +ulJ +mcc +vei vRA -ioc -ioc +usz +usz vRA -fAf -fAf -nZB -lEg +hxy +hxy +aWR +hLy sEO -cCy -cvv -cvv -dUi -nZB -aSA -cvv -cvv -dUi -nZB -nZB -nZB -gBe +pXP +fSe +fSe +dSy +aWR +tSi +fSe +fSe +dSy +aWR +aWR +aWR +ttK wSm wSm xnU @@ -73262,18 +73280,18 @@ xnU wSm wSm eSF -seF -ojq -ojq -ojq -tsc -bEk -tsc -ogf -ogf -ogf -ogf -mRM +qnB +fHB +fHB +fHB +ssD +iSi +ssD +hbC +hbC +hbC +hbC +cbb bQM bQM bQM @@ -73308,8 +73326,8 @@ fiq fiq fiq fiq -dfc -dqX +aDh +ruy lAh lAh lAh @@ -73319,139 +73337,139 @@ phz phz phz xLi -nDI -dqX -dqX -dqX -dqX +mHN +ruy +ruy +ruy +ruy lAh lAh jZc -cer -pvF -tfl -tqw -tqw -tqw -mvp -mvp -mvp -mvp -mvp +tOr +hmk +rov +fde +fde +fde +xjK +xjK +xjK +xjK +xjK jmG mvl mvl mvl jmG -wfu -byY -byY -byY +rfo +idE +idE +idE hVI jmG -kjt -kjt -rLG -gYD +xMR +xMR +iZV +aFJ fSq -jWI -eow -lFB +aaK +dkj +kNz fSq -vUP -jWI -eow -eow -eow -lFB -oNC -kjt -mgz -rLG -vUP -lcE -amn -amn -amn -amn -tPB -vUP -vUP +vJD +aaK +dkj +dkj +dkj +kNz +aau +xMR +roY +iZV +vJD +jvE +vII +vII +vII +vII +dyM +vJD +vJD jmG bQM -iYw -sKY -iYw -hCh -hCh -lBb -dEh -hCh -hCh -hCh -aXO -pOU -ssR -nQu -aXO -nQu -nQu -neY -dNk -cMD -hCh -efR -hCh +eDn +xQC +eDn +mGe +mGe +isL +wUN +mGe +mGe +mGe +kiq +tsf +lWh +vPM +kiq +vPM +vPM +dhe +msS +vMX +mGe +iTe +mGe oFI -mCe -xbM -xbM -ioc -dHD -xbM -fHo +gEW +mcc +mcc +usz +pHu +mcc +vei kqC -qNF -mDO +avl +jms kqC -qNF -eub +avl +aIv kqC -dHD -xbM -fHo +pHu +mcc +vei kqC -sIk -dzE +mak +pcl kqC -sIk -dzE +mak +pcl kqC -dHD -xbM -fHo +pHu +mcc +vei kqC -ioc -ioc +usz +usz kqC -nAm -nAm -fAf -nZB -fWr -fWr -fWr -fWr -fWr -nZB -fWr -fWr -fWr -fWr -hMH -nZB -nZB -bne +qcv +qcv +hxy +aWR +iPV +iPV +iPV +iPV +iPV +aWR +iPV +iPV +iPV +iPV +hNc +aWR +aWR +uEN wSm wSm wSm @@ -73474,7 +73492,7 @@ wSm wSm wSm xrH -axn +gAS wSm wSm wSm @@ -73485,7 +73503,7 @@ bQM bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -73518,9 +73536,9 @@ kPz bQM bQM kPz -gEq -eIX -eIX +rEH +eok +eok azZ azZ azZ @@ -73529,57 +73547,57 @@ azZ azZ kny phz -mvp -mvp -mvp -mvp -pUO -mvp -mvp -mvp -mvp -mvp -xxU -kpq -jNi -ygs -ygs -kBX -dqX -loE -eIx -mvp -mvp +xjK +xjK +xjK +xjK +csl +xjK +xjK +xjK +xjK +xjK +vBO +ezJ +cAV +hLX +hLX +nGW +ruy +lTm +qOY +xjK +xjK lZA -vUP -vUP -vUP +vJD +vJD +vJD lZA -byY -byY -byY -byY -byY +idE +idE +idE +idE +idE lZA -kjt -kjt -rLG -rLG +xMR +xMR +iZV +iZV fSq -kjt -oZU -rLG +xMR +rmg +iZV fSq -vUP -hFW -mgz -mgz -mgz -rLG -jHV -kjt -lpZ -rLG +vJD +pya +roY +roY +roY +iZV +pzQ +xMR +oRb +iZV cKa kzh tOp @@ -73587,41 +73605,41 @@ cKa kzh tOp cKa -jWI -lFB +aaK +kNz jmG kPz -eHa +uwY pcu -iYw -sKY -sKY -iYw -imI -oEH -oEH -oEH -vkt -bLJ -rcg -xZN -eWf -uRv -eWf -vlO -iYw -iYw -sKY -sKY -sKY +eDn +xQC +xQC +eDn +eON +cYv +cYv +cYv +arY +lDC +irx +aXK +jZb +dRW +jZb +cFN +eDn +eDn +xQC +xQC +xQC wzE -gSf -xbM -xbM -ioc -nbP -xbM -voO +dYr +mcc +mcc +usz +qRD +mcc +veB kqC cRB end @@ -73629,41 +73647,41 @@ kqC ryJ end kqC -rgc -xbM -fHo -vfO -lZp -lZp -jmv -uLV -lZp -vfO -dHD -xbM -fHo +hpr +mcc +vei +mKG +fXS +fXS +bGy +hQg +fXS +mKG +pHu +mcc +vei abJ -ioc -ioc +usz +usz abJ -fAf -fAf -nZB -nZB -nZB -owp +hxy +hxy +aWR +aWR +aWR +cAA uPA uWQ -nZB -ghz -nZB +aWR +evD +aWR uPA uWQ -nZB -nZB -fAf -fAf -eZr +aWR +aWR +hxy +hxy +vuE wSm wSm wSm @@ -73686,7 +73704,7 @@ wSm wSm wSm fZd -axn +gAS wSm wSm wSm @@ -73697,7 +73715,7 @@ bQM bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -73731,8 +73749,8 @@ bQM bQM kPz bQM -weE -qkq +wER +lok azZ azZ azZ @@ -73742,65 +73760,65 @@ azZ azZ phz azZ -hae -hae -hae -hae -hae -hae -hae -hae -hae -iRI -kpq -mvp -lIC -kxl -swT -fEn -gDI -agh -mvp -mvp +sqg +sqg +sqg +sqg +sqg +sqg +sqg +sqg +sqg +ukI +ezJ +xjK +weH +hFe +sCo +csp +fYD +bmX +xjK +xjK wef -vUP -vUP -vUP +vJD +vJD +vJD wef -byY -byY -byY -byY -byY +idE +idE +idE +idE +idE wef -kXk -kXk -tPB -tPB +ikq +ikq +dyM +dyM fSq -kXk -amn -tPB +ikq +vII +dyM fSq -vUP -kXk -amn -amn -amn -tPB -oNC -kjt -mgz -rLG +vJD +ikq +vII +vII +vII +dyM +aau +xMR +roY +iZV cKa -jWI -oyy +aaK +soQ cKa -drZ -oyy +cFE +soQ cKa -kjt -rLG +xMR +iZV uwk swg fyC @@ -73808,74 +73826,74 @@ qOk sHO erT kPz -iYw -hre -wfw -jRF -bvp -iiY -bLJ -bLJ -frv -frv -bLJ -frv -frv -iYw +eDn +rkB +rFr +lBY +uSb +lzb +lDC +lDC +ldZ +ldZ +lDC +ldZ +ldZ +eDn cAW bce bce bce wzE kqC -ioc -fPl +usz +wGe kqC -oFp -xbM -sJy -vds -vds -lvV -vds -vds -elO -ioc -dHD -xbM -fHo -vfO -lZp -lZp -eao -lZp -lZp -vfO -dHD -xbM -fHo +iSn +mcc +krp +dHp +dHp +hCd +dHp +dHp +uFh +usz +pHu +mcc +vei +mKG +fXS +fXS +oXJ +fXS +fXS +mKG +pHu +mcc +vei vRA -ioc -ioc +usz +usz vRA -fAf -fAf -nZB -nZB -nZB -nZB +hxy +hxy +aWR +aWR +aWR +aWR nKl qfc -nZB -fAf -nZB +aWR +hxy +aWR nKl qfc -nZB -nZB -nZB -nZB -iTt +aWR +aWR +aWR +aWR +tts wSm wSm wSm @@ -73898,7 +73916,7 @@ wSm wSm kHG eAM -axn +gAS wSm wSm wSm @@ -73909,7 +73927,7 @@ bQM bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -73943,8 +73961,8 @@ bQM bQM kPz bQM -gEq -arW +rEH +pPb azZ azZ azZ @@ -73954,30 +73972,30 @@ azZ azZ azZ azZ -rHX -rHX -rHX +dNF +dNF +dNF bou -rHX -rHX -rHX -sVT -rHX -rHX -kpq -mvp -mMP -wsM -swT -fEn -fEn -ciM -mvp -mvp +dNF +dNF +dNF +jvp +dNF +dNF +ezJ +xjK +fUu +mcT +sCo +csp +csp +sBl +xjK +xjK cKa -mgz -mgz -mgz +roY +roY +roY cKa tOp tOp @@ -73985,10 +74003,10 @@ cKa tOp cKa cKa -kXk -kXk -tPB -tPB +ikq +ikq +dyM +dyM jmG jmG jmG @@ -74001,18 +74019,18 @@ cKa kzh tOp cKa -cIJ -lfX -rLG +fiu +gbi +iZV cKa -iFB -dUx +ldm +usA cKa -iFB -trR +ldm +rEg cKa -kjt -rLG +xMR +iZV uwk daD afk @@ -74020,74 +74038,74 @@ afk afk ghg gef -sKY -qTe -red -mqJ -qJQ -myj -rtc -idS -rcg -wvL -hys -rcg -rcg -sKY +xQC +wkD +sMj +gXi +ecC +hgJ +edd +vgP +irx +htc +svo +irx +irx +xQC cAW bce cAW cAW wzE -xJQ -mYl -vds -vds -qEs -rPD -xbM -xbM -kTW -eNa -xRI -xRI -efW -ioc -dHD -xbM -fHo +msv +uRY +dHp +dHp +bop +scg +mcc +mcc +tsi +fxP +xri +xri +iUy +usz +pHu +mcc +vei kqC -hAP -dzE +hnJ +pcl kqC -sIk -dzE +mak +pcl kqC -dHD -xbM -fHo +pHu +mcc +vei kqC -ioc -ioc +usz +usz kqC -goo -goo -fAf -nZB -upw -upw -upw -upw -upw -nZB -upw -upw -upw -upw -upw -nZB -nZB -gBe +sKq +sKq +hxy +aWR +bkS +bkS +bkS +bkS +bkS +aWR +bkS +bkS +bkS +bkS +bkS +aWR +aWR +ttK wSm wSm wSm @@ -74110,7 +74128,7 @@ wSm wSm wSm eSF -axn +gAS wSm wSm wSm @@ -74121,7 +74139,7 @@ bQM bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -74154,9 +74172,9 @@ bQM bQM vcC kPz -eIX +eok fiq -bxd +xLa azZ azZ azZ @@ -74167,55 +74185,55 @@ azZ azZ azZ azZ -eqU -eqU -eqU -eqU -eqU -eqU -eqU -eqU -uAg -kpq -hjp -dsS -dXN -swT -fEn -gDI -agh -mvp -mvp +kbO +kbO +kbO +kbO +kbO +kbO +kbO +kbO +dFk +ezJ +dTp +sVy +bXa +sCo +csp +fYD +bmX +xjK +xjK lZA -vUP -vUP -vUP +vJD +vJD +vJD lZA -jWI -eow -eow -eow -eow -owS -eow -eow -eow -eow -vqW -eow -owS -eow -lFB +aaK +dkj +dkj +dkj +dkj +jGL +dkj +dkj +dkj +dkj +ddz +dkj +jGL +dkj +kNz cKa -jWI -oyy +aaK +soQ cKa -siB -jSc +mOr +wTO cKa -qya -mgz -rLG +vlX +roY +iZV hEs cKa cKa @@ -74223,8 +74241,8 @@ cKa cKa cKa cKa -kjt -rLG +xMR +iZV uwk urJ afk @@ -74232,74 +74250,74 @@ hkh afk tCZ pcu -sKY -aso -ber -rcg -aso -aso -rtc -idS -imI -sPt -hys -imI -sPt -sKY +xQC +rym +fBi +irx +rym +rym +edd +vgP +eON +lWr +svo +eON +lWr +xQC bce bce cAW cAW wzE -dHD -voV -sxc -cxA -xbM -xbM -xbM -oFf -xbM -jlq +pHu +dui +cWN +dWM +mcc +mcc +mcc +qBk +mcc +qjY kqC ryJ end kqC -iCf -xbM -voO +hix +mcc +veB kqC -ubh -lZp -jmv -lZp -qXj +dhD +fXS +bGy +fXS +bYG kqC -nBb -xbM -fHo +ulJ +mcc +vei abJ -ioc -ioc +usz +usz abJ -fAf -fAf -nZB -lEg +hxy +hxy +aWR +hLy sEO -cCy -cvv -cvv -dUi -nZB -aSA -cvv -cvv -dUi -nZB -nZB -nZB -bne +pXP +fSe +fSe +dSy +aWR +tSi +fSe +fSe +dSy +aWR +aWR +aWR +uEN wSm wSm wSm @@ -74322,7 +74340,7 @@ wSm wSm wSm xrH -axn +gAS wSm wSm wSm @@ -74333,7 +74351,7 @@ bQM bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -74368,7 +74386,7 @@ bQM kPz vcC bQM -eIX +eok azZ azZ azZ @@ -74379,64 +74397,64 @@ azZ azZ azZ azZ -mvp -mvp +xjK +xjK azZ -mvp +xjK azZ -mvp -mvp -mvp -cer -kpq -mvp -sxH -sxH -aaR -dqX -pHi -eFX -mvp -mvp +xjK +xjK +xjK +tOr +ezJ +xjK +ezx +ezx +reO +ruy +ggG +rar +xjK +xjK wef -vUP -vUP -vUP +vJD +vJD +vJD wef -kjt -mgz -mgz -xAq -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz -xAq -rLG +xMR +roY +roY +lSY +roY +roY +roY +roY +roY +roY +roY +roY +roY +lSY +iZV cKa -iFB -dUx +ldm +usA cKa -iFB -dUx +ldm +usA cKa -xnt -mgz -rLG +bGQ +roY +iZV cKa -bqu -rwm +ocJ +rsE cKa -bqu -rwm +ocJ +rsE cKa -kjt -rLG +xMR +iZV uwk mdJ afk @@ -74444,74 +74462,74 @@ afk afk xMW ssJ -sKY -cvc -gPk -rmZ -sFY -neY -rtc -fOi -fac -ehO -hys -unF -ehO -sKY +xQC +xkC +tom +vGv +uzO +dhe +edd +fje +das +jAt +svo +tJn +jAt +xQC cAW bce bce bce wzE -oXD -xbM -dJd -dBl -xbM -cZh -xbM -xbM -xbM -rzp +lll +mcc +oPJ +jfk +mcc +vza +mcc +mcc +mcc +cCq kqC -rzp -jln +cCq +sCh kqC -eQb -xbM -kgp +cLE +mcc +uIb kqC -erU -lZp -lZp -xFJ -hrL +mXq +fXS +fXS +vPa +gNF kqC -dHD -xbM -fHo +pHu +mcc +vei vRA -ioc -ioc +usz +usz vRA -nAm -nAm -nAm -fAf -lFo -fWr -fWr -hMH -fWr -nZB -fWr -fWr -fWr -fWr -nZB -fAf -fAf -klB +qcv +qcv +qcv +hxy +roo +iPV +iPV +hNc +iPV +aWR +iPV +iPV +iPV +iPV +aWR +hxy +hxy +vPA wSm wSm wSm @@ -74534,7 +74552,7 @@ wSm wSm wSm fZd -axn +gAS wSm wSm wSm @@ -74545,7 +74563,7 @@ bQM bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -74599,37 +74617,37 @@ lAh lAh lAh xvI -cer -beh -hae -tqw -tqw -tqw -mvp -mvp -mvp -mvp -mvp +tOr +vJq +sqg +fde +fde +fde +xjK +xjK +xjK +xjK +xjK cKa mvl mvl mvl cKa -kXk -amn -amn -rTZ -mgz -cCe -amn -amn -amn -amn -amn -amn -rTZ -mgz -bOx +ikq +vII +vII +wrQ +roY +nhz +vII +vII +vII +vII +vII +vII +wrQ +roY +fin cKa cKa cKa @@ -74637,18 +74655,18 @@ cKa cKa cKa cKa -nGV -amn -tPB +pka +vII +dyM cKa -jnX -rhH +dVm +dSw cKa -kXk -rhH +ikq +dSw cKa -kXk -tPB +ikq +dyM uwk aKA tWI @@ -74656,74 +74674,74 @@ llQ eOF bUB kPz -iYw -nQu -jRF -nzi -suX -tde -bLJ +eDn +vPM +lBY +oOv +dGw +rFH +lDC izZ -wTW -wTW +uym +uym izZ -wTW -wTW +uym +uym ecM cAW bce cAW cAW wzE -gtN -elO -xbM -xbM -xbM -lBI -cxA -xbM -rzp -dHD +scw +uFh +mcc +mcc +mcc +evf +dWM +mcc +cCq +pHu kqC -qLi -jhN +wII +uAi kqC -rYy -xbM -fHo +pKh +mcc +vei kqC kqC -vfO -vfO -vfO +mKG +mKG +mKG kqC kqC -dHD -xbM -fHo +pHu +mcc +vei vMK goG goG vMK goG vMK -gjs -fAf -fAf -uSU -fAf -fAf -uSU -fAf -uSU -fAf -fAf -uSU -nZB -nZB -nZB -iTt +xOQ +hxy +hxy +pax +hxy +hxy +pax +hxy +pax +hxy +hxy +pax +aWR +aWR +aWR +tts wSm wSm wSm @@ -74746,7 +74764,7 @@ wSm wSm wSm eAM -cAO +kAr wSm wSm wSm @@ -74757,7 +74775,7 @@ bQM bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -74809,49 +74827,49 @@ azZ azZ azZ lAh -aeS -mvp -ubX -eqU -eqU -tqw -tqw -tqw -mvp -mvp -mvp -mvp -mvp +vtf +xjK +lax +kbO +kbO +fde +fde +fde +xjK +xjK +xjK +xjK +xjK mvl -wSN -kzR -wSC +jIZ +wwr +sGu mvl -knb -vUP -vUP -kjt -mgz -bOx +bhR +vJD +vJD +xMR +roY +fin aSz uwk uwk uwk uwk aSz -xVw -mgz -rLG +jXD +roY +iZV cKa -bqu -hJo +ocJ +iFu cKa -bqu -rwm +ocJ +rsE cKa -jGz -vUP -vUP +dso +vJD +vJD cKa kzh tOp @@ -74859,8 +74877,8 @@ cKa kzh tOp cKa -vUP -vUP +vJD +vJD jmG jmG mlC @@ -74868,74 +74886,74 @@ mlC mlC mlC ecM -iYw -imI -oEH -oEH -oEH -vkt -bLJ +eDn +eON +cYv +cYv +cYv +arY +lDC xKX -iaa -iaa -tZO -iaa -iaa +wkZ +wkZ +wWF +wkZ +wkZ ecM mlC wzE wzE wzE wzE -rzF -fHo -xbM -xbM -xel -xbM -xbM -xbM -dHD -jbg +glW +vei +mcc +mcc +jsE +mcc +mcc +mcc +pHu +pQu kqC kqC kqC kqC -rKd -xbM -pZn -atY -atY -vds -vds -vds -qJl -atY -qEs -xbM -fHo +cjp +mcc +pZb +xyR +xyR +dHp +dHp +dHp +jsD +xyR +bop +mcc +vei goG -dYq -chg -uEh -gZx +xMs +whR +lyF +cFQ goG -fAf -fAf -fAf -fAf -fAf -fAf +hxy +hxy +hxy +hxy +hxy +hxy mxQ -lVA +xBI mxQ -fAf -fAf -fAf -fAf -nZB -nZB -gBe +hxy +hxy +hxy +hxy +aWR +aWR +ttK wSm wSm xnU @@ -74958,18 +74976,18 @@ xnU wSm wSm eSF -due -ojq -ojq -ojq -tsc -bEk -tsc -ogf -ogf -ogf -ogf -fWI +mmP +fHB +fHB +fHB +ssD +iSi +ssD +hbC +hbC +hbC +hbC +ogo bQM bQM bQM @@ -75023,131 +75041,131 @@ azZ lAh lAh jZc -mvp -mvp -mvp -cYd -cYd -cYd -dqX -dqX -rYw -mvp -dqX +xjK +xjK +xjK +eAo +eAo +eAo +ruy +ruy +pQh +xjK +ruy mvl -fqI +jru xlp -cOF +mIE cKa cKa cKa cKa -kjt -mgz -qrU +xMR +roY +lpA uwk bQM bQM bQM bQM uwk -kXk -amn -tPB +ikq +vII +dyM cKa -kXk -rhH +ikq +dSw cKa -kXk -rhH +ikq +dSw cKa -wqz -eow -eow -eow -eow -eow -tkZ -eow -eow -eow -eow -eow -rIr -nmi -scS -scS -oPR -oPR -oPR -gbR -oPR -oPR -oPR -oPR -oPR -jnQ -oPR -oPR -oPR -oPR -oPR -oPR -jnQ -oPR +jCU +dkj +dkj +dkj +dkj +dkj +fvY +dkj +dkj +dkj +dkj +dkj +vCT +fYV +fDI +fDI +cjF +cjF +cjF +jMA +cjF +cjF +cjF +cjF +cjF +gky +cjF +cjF +cjF +cjF +cjF +cjF +gky +cjF kqC -ioc -ioc -ioc -ioc -ioc -xbM -xbM -xbM -xbM -bkQ -xbM -qNF -qSz +usz +usz +usz +usz +usz +mcc +mcc +mcc +mcc +rFT +mcc +avl +xPO kqC -rkp -iKy +qDI +npN kqC -utG -xbM -jbm -xbM -xLx -xbM -jbm -xbM -xbM -xbM -xbM -xbM -fHo +cvk +mcc +rrj +mcc +mxz +mcc +rrj +mcc +mcc +mcc +mcc +mcc +vei goG -xoR -ioW -opM -fAU +fHu +qos +jxa +hXc goG -fAf -rpL -fAf -fAf -fAf -qsc +hxy +abe +hxy +hxy +hxy +cqc mxQ iyf mxQ -gjs -fAf -fAf -fAf -nZB -nZB -bne +xOQ +hxy +hxy +hxy +aWR +aWR +uEN wQN wSm wSm @@ -75241,31 +75259,31 @@ eWP lAh lAh lAh -fEn -fEn -mvp -mvp -fEn +csp +csp +xjK +xjK +csp cKa -oOU +vmW fyi -cOF +mIE mvl -vUP -vUP -vUP -kjt -mgz -bOx +vJD +vJD +vJD +xMR +roY +fin aSz uwk uwk uwk uwk aSz -cIt -vUP -vUP +cOl +vJD +vJD cKa kzh tOp @@ -75273,83 +75291,83 @@ cKa kzh tOp cKa -xVw -mgz -mgz -xAq -mgz -mgz -mgz -mgz -mgz -mgz -mgz -lFg -rLG +jXD +roY +roY +lSY +roY +roY +roY +roY +roY +roY +roY +gLG +iZV fSq -oPR -qBe -exl -oPR -jqE -qBe -qBe +cjF +gqe +rAW +cjF +vEF +gqe +gqe miU -qOu +rWX xKX -eXz -qBe -qBe -qBe -eUP -qBe -qBe -qBe -qBe -eFQ +pXj +gqe +gqe +gqe +bKs +gqe +gqe +gqe +gqe +nXq wpO -ioc -ioc -ioc -efW -xbM -cxA -cZh -xbM -oFf -voV -xbM -xbM -qNF +usz +usz +usz +iUy +mcc +dWM +vza +mcc +qBk +dui +mcc +mcc +avl kqC -qNF -efW +avl +iUy kqC -bki -xRI -iXq -xRI -xRI -xRI -xRI -xRI -mKd -xRI -xRI -xRI -efW +ggp +xri +lXc +xri +xri +xri +xri +xri +ijP +xri +xri +xri +iUy goG -egd -pYB -pYB -bMI +oJs +kfA +kfA +fWC goG -fAf -fAf -fAf -fAf -fAf -fAf +hxy +hxy +hxy +hxy +hxy +hxy mxQ tUs mxQ @@ -75358,34 +75376,34 @@ iyf iyf mxQ vMK -fAf -fAf -nfh -bxe -cFg -gAQ -nfh -bIz -cFg -gAQ -nfh -bxe -cFg -gAQ -nfh -bxe -cFg -gAQ -nfh -bxe -cFg -gAQ -nfh -nZB -nZB -nZB -nZB -nZB +hxy +hxy +tZs +hLK +yfC +fHV +tZs +lLv +yfC +fHV +tZs +hLK +yfC +fHV +tZs +hLK +yfC +fHV +tZs +hLK +yfC +fHV +tZs +aWR +aWR +aWR +aWR +aWR vzB fiq vzB @@ -75453,86 +75471,86 @@ azZ lAh lAh lAh -nMI -fEn -mvp -mvp -fEn +glw +csp +xjK +xjK +csp rSr -cOF -cOF -cOF +mIE +mIE +mIE rSr -jWI -eow -eow -ufR -mgz -rLG -vUP -jWI -eow -eow -eow -lFB -xBN -jWI -eow -eow -eow -eow -eow -eow -eow -eow -ufR -mgz +aaK +dkj +dkj +frY +roY +iZV +vJD +aaK +dkj +dkj +dkj +kNz +kpN +aaK +dkj +dkj +dkj +dkj +dkj +dkj +dkj +dkj +frY +roY wef -mgz -cbY -amn -amn -amn -amn -amn -amn -amn -tPB +roY +vrX +vII +vII +vII +vII +vII +vII +vII +dyM fSq -wdl -nOe -qBe -qBe -hdR -roQ -ccZ -uOP -cZR -qBe -ccZ -qBe -qBe -qBe -qBe -qBe -qBe -qBe -lFv -eFQ +ebP +jJe +gqe +gqe +sad +rsW +kJX +oXE +sED +gqe +kJX +gqe +gqe +gqe +gqe +gqe +gqe +gqe +qqJ +nXq wpO -ioc -ioc -ioc -dHD -kbh -xbM -xbM -cxA -jET -xbM -cZh -fYY -voO +usz +usz +usz +pHu +ciZ +mcc +mcc +dWM +lCs +mcc +vza +cOb +veB kqC qRi end @@ -75540,63 +75558,63 @@ wzE wzE wzE kqC -ioc -ioc -ioc -ioc -pvE +usz +usz +usz +usz +dbL kqC jTJ goG goG goG vMK -nxc -pYB -pYB -nWM +lKt +kfA +kfA +slG vMK vMK -gjs -fAf -fAf -fAf -fAf +xOQ +hxy +hxy +hxy +hxy mxQ tUs mxQ -gbf -fOT -apu -gbf +oYM +nVq +rev +oYM vMK -gjs -nZB -nZB -nZB -fAf -fAf -fAf -fAf -fAf -fAf -nZB -nZB -nZB -fAf -nZB -nZB -nZB -fAf -nZB -nZB -nZB -fAf -nZB -nZB -nZB -nZB -fAf +xOQ +aWR +aWR +aWR +hxy +hxy +hxy +hxy +hxy +hxy +aWR +aWR +aWR +hxy +aWR +aWR +aWR +hxy +aWR +aWR +aWR +hxy +aWR +aWR +aWR +aWR +hxy wly tan tan @@ -75665,150 +75683,150 @@ lAh lAh lAh lAh -bMT -fEn -mvp -mvp -fEn +oEc +csp +xjK +xjK +csp cKa cKa cKa cKa cKa -kjt -mgz -cCe -amn -amn -tPB -vUP -kXk -amn -amn -amn -tPB -vUP -kjt -mgz -xAq -mgz -mgz -mgz -mgz -mgz -mgz +xMR +roY +nhz +vII +vII +dyM +vJD +ikq +vII +vII +vII +dyM +vJD +xMR +roY +lSY +roY +roY +roY +roY +roY +roY wef -mgz -mgz -mgz -bOx +roY +roY +roY +fin jpN uwk uwk uwk lIG -vUP -sHj -vUP +vJD +gDt +vJD cKa -oPR -qBe -qBe -qBe -nCH -mEU -oyS -qBe -qBe -qBe -oyS -qBe -qBe -qBe -qBe -eUP -qBe -qBe -qBe -oPR +cjF +gqe +gqe +gqe +vTl +ozh +cnu +gqe +gqe +gqe +cnu +gqe +gqe +gqe +gqe +bKs +gqe +gqe +gqe +cjF wpO -ioc -ioc -ioc -qNF -xRI -xRI -xRI -nAK -xbM -jET -xbM -xbM -pZn -vds -vds -elO +usz +usz +usz +avl +xri +xri +xri +ibN +mcc +lCs +mcc +mcc +pZb +dHp +dHp +uFh hZR bQM hZR -jvi -rzp -vds -vds -vds -elO -jvi +dDM +cCq +dHp +dHp +dHp +uFh +dDM duF -jTN -xro -fGW -pYB -pYB -pYB -pYB -pYB -uvV +jao +qcM +dvs +kfA +kfA +kfA +kfA +kfA +bVY vMK goG goG goG vMK -lVA +xBI mxQ deR mxQ -gbf -fOT -apu -gbf +oYM +nVq +rev +oYM vMK -fAf -nZB -nZB -nZB -fAf +hxy +aWR +aWR +aWR +hxy wly wly wly wly -aSA -cvv -dUi -fAf -fAf -nZB -nZB -fAf -fAf -fAf -nZB -fAf -fAf -fAf -fAf -nZB -fAf -fAf +tSi +fSe +dSy +hxy +hxy +aWR +aWR +hxy +hxy +hxy +aWR +hxy +hxy +hxy +hxy +aWR +hxy +hxy wly wly wly @@ -75884,12 +75902,12 @@ wef lSj cKa cKa -pRa -lFB -lpX -mgz -mgz -bOx +eJi +kNz +pLk +roY +roY +fin cKa kzh tOp @@ -75900,20 +75918,20 @@ cKa kzh tOp arn -xVw -mgz -cCe -amn -amn -amn -amn -amn -amn -rTZ -mgz -mgz -mgz -rLG +jXD +roY +nhz +vII +vII +vII +vII +vII +vII +wrQ +roY +roY +roY +iZV uwk bQM kPz @@ -75923,26 +75941,26 @@ hul cKa cKa cKa -hrz -qBe -qBe -qBe -fWH -fWH -jlI -qBe -qBe -qBe -jlI -qBe -qBe -qBe -oPR -oPR -hxj -wis -sGa -gNU +qjp +gqe +gqe +gqe +nSz +nSz +lvk +gqe +gqe +gqe +lvk +gqe +gqe +gqe +cjF +cjF +rQm +yiG +rUY +vGO kqC kqC ecd @@ -75951,75 +75969,75 @@ kqC cRB end kqC -pHx -xbM -eNa -xRI -xRI -xRI -xRI -xRI -efW +vee +mcc +fxP +xri +xri +xri +xri +xri +iUy hZR kPz hZR -auS -dHD -jbm -xbM -xbM -fHo -jvi +vhe +pHu +rrj +mcc +mcc +vei +dDM duF -fEH -xsS -tOM -tOM -tOM -kor -kor -tOM -tOM -tOM -tOM -tOM -wZH +eTo +rII +lAS +lAS +lAS +dmB +dmB +lAS +lAS +lAS +lAS +lAS +bYv mxQ iyf mxQ tUs mxQ -gbf -fOT -apu -gbf +oYM +nVq +rev +oYM vMK -hhu -bOp -jEQ -slT -mSk +dlX +iLQ +jbG +mzz +rqL wly kPz bQM wly -lhS -nXE -ibA -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf -fAf +vJp +xwA +wKn +hxy +hxy +hxy +hxy +hxy +hxy +hxy +hxy +hxy +hxy +hxy +hxy +hxy +hxy wly wly bQM @@ -76090,82 +76108,82 @@ cAW jmG bQM jmG -vUP -jWI -eow -lFB -mgz +vJD +aaK +dkj +kNz +roY cKa -dJh -rLG +lLP +iZV uwk -kjt -mgz -rLG +xMR +roY +iZV cKa -jWI -oyy +aaK +soQ cKa -bTr -oyy +tPP +soQ cKa -kyU -oyy +cVX +soQ cKa -kjt -mgz -bOx +xMR +roY +fin cKa cKa -wZt -wZt +fdn +fdn cKa jmG gHh -mgz -mgz -mgz -rLG +roY +roY +roY +iZV uwk kPz kPz kPz uwk -cOF -cOF -utw +mIE +mIE +kFa lzm -qBe -qBe -qBe -qBe -oSz -roQ -dvg -qBe -qBe -qBe -dvg -qBe -eXz -qBe -oPR +gqe +gqe +gqe +gqe +cTA +rsW +hLO +gqe +gqe +gqe +hLO +gqe +pXj +gqe +cjF kqC kqC -dAd -hbp +xrG +kDq kqC kqC rCq vRA vRA kqC -fLb -ayW +eaQ +tUA kqC -dHD -xbM -rYK +pHu +mcc +dzj kqC cRB end @@ -76175,36 +76193,36 @@ end wzE bQM hZR -jvi -dHD -eNa -rwK -nAK -fHo -kpu +dDM +pHu +fxP +eag +ibN +vei +xzW duF -fAU -tOM -tOM -tOM -tOM -nny -vHD -tOM -tOM -tOM -tOM -tOM -wZH +hXc +lAS +lAS +lAS +lAS +tNt +uBW +lAS +lAS +lAS +lAS +lAS +bYv mxQ -gbf +oYM tUs tUs vDO -eBS -fOT -apu -gbf +atE +nVq +rev +oYM bzO bzO ybj @@ -76215,12 +76233,12 @@ wly kPz bQM wly -dUn -rpL -fwY -fAf -jEr -byE +xBK +abe +lrm +hxy +mft +gHl wly ckm ckm @@ -76302,66 +76320,66 @@ cAW jmG jmG jmG -vUP -kjt -mgz -rLG -vUP +vJD +xMR +roY +iZV +vJD cKa -iFB -dUx +ldm +usA uwk -kjt -mgz -rLG +xMR +roY +iZV cKa -iFB -dUx +ldm +usA cKa -iFB -dUx +ldm +usA cKa -oMw -yhJ +dra +ovc cKa -mlg -mgz -rLG +oLd +roY +iZV cKa -uyC -dzB -dzB -aYg +cQA +xec +xec +ohN cKa -kjt -mgz -mgz -kWx -rLG +xMR +roY +roY +mSM +iZV uwk bQM kPz bQM uwk -cOF +mIE fyi -dXS +kGi qva -xbm -smj -qBe -qBe -aZL -mEU -ccZ -qBe -qBe -qBe -ccZ -qBe -qBe -qBe -sGa +dAe +lps +gqe +gqe +iOJ +ozh +kJX +gqe +gqe +gqe +kJX +gqe +gqe +gqe +rUY kqC kqC vRA @@ -76372,51 +76390,51 @@ kqC tVV arl oFI -kCT -opj +eGY +eOf kqC -dHD -xbM -fHo +pHu +mcc +vei kqC -rzp -bIP +cCq +fOZ kqC -rzp -mwP +cCq +pDV wzE kPz jTJ -vUl -dHD -fHo -pLE -dHD -fHo -uuG +clZ +pHu +vei +vbd +pHu +vei +iPq jTJ -gHn -tOM -tOM -tOM -bkg -xsS -xsS -tOM -tOM -uwT -tOM -tOM -wZH +pMA +lAS +lAS +lAS +mKy +rII +rII +lAS +lAS +kxo +lAS +lAS +bYv mxQ -eBj +pes vfz tUs mxQ -gbf -fOT -apu -gbf +oYM +nVq +rev +oYM vEK bzO wly @@ -76514,18 +76532,18 @@ cAW cAW bQM uwk -vUP -kXk -amn -tPB -vUP +vJD +ikq +vII +dyM +vJD hEs cKa cKa cKa -wdL -vAU -hCR +dgx +uzX +aFV hEs cKa cKa @@ -76536,50 +76554,50 @@ cKa cKa cKa cKa -xVw -mgz -rLG +jXD +roY +iZV cKa -onW -pZp -dzB -shh +unW +wpu +xec +oYc cKa -kjt -mgz +xMR +roY wef -mgz -rLG +roY +iZV jmG bQM kPz bQM uwk -jsu +vbt fyi -haQ +aHs cKa -ntE -smj -wrT -qBe -qBe -qBe -qBe -qBe -sWw -qBe -sQr -qBe -qBe -qBe -vcu -qQM +pwN +lps +wAD +gqe +gqe +gqe +gqe +gqe +rJT +gqe +kDj +gqe +gqe +gqe +oEI +jKb abJ -rzp -vds -elO -sKt +cCq +dHp +uFh +wBr kqC vRA tiX @@ -76587,49 +76605,49 @@ kqC kqC kqC kqC -dHD -xbM -fHo +pHu +mcc +vei kqC -qLi -dpe +wII +bjk kqC -qLi -dpe +wII +bjk wzE bQM hZR -pLE -dHD -fHo -pLE -dHD -fHo -pLE +vbd +pHu +vei +vbd +pHu +vei +vbd duF -mWR -tOM -tOM -tOM -tOM -tOM -tOM -tOM +iJG +lAS +lAS +lAS +lAS +lAS +lAS +lAS ffZ mxQ mxQ iyf mxQ mxQ -gbf +oYM ndl aZN mxQ -gbf -fOT -apu -gbf -lTW +oYM +nVq +rev +oYM +vCv bzO bzO rzt @@ -76726,82 +76744,82 @@ cAW cAW bQM uwk -jWI -eow -lFB -vUP -vUP +aaK +dkj +kNz +vJD +vJD wef -bqu -rwm -eDA -vsM -mgz -xBc +ocJ +rsE +oWB +ehA +roY +rAt cKa -bqu -rwm +ocJ +rsE cKa -bqu -rwm +ocJ +rsE cKa -bqu -rwm +ocJ +rsE cKa -kjt -mgz -rLG +xMR +roY +iZV cKa -tjR +vYP cKa -onW -dzB -wZt -kjt -mgz -mgz +unW +xec +fdn +xMR +roY +roY wef -rLG +iZV uwk bQM kPz bQM jmG -bZI +vBc fyi -vqs +xCy mvl -ntE -smj -qof -qBe -qof -qBe -qof -sGa -gNU -oOg -bno -bno -bno -bno -vrR -jOb +pwN +lps +uzd +gqe +uzd +gqe +uzd +rUY +vGO +tMF +hgu +hgu +hgu +hgu +rox +xNQ vRA -dHD -bAM -fHo -sKt +pHu +djx +vei +wBr oFI vRA glD kqC -pVY -mwP +tnj +pDV kqC -dHD -xbM -rYK +pHu +mcc +dzj mCF kqC kqC @@ -76811,41 +76829,41 @@ kqC wzE kPz hZR -pLE -dHD -fHo -pLE -dHD -naI -pLE +vbd +pHu +vei +vbd +pHu +tax +vbd duF -dLN -dPm -tOM -tOM -uyw -tOM -hoT -tOM +lQZ +mWF +lAS +lAS +uyq +lAS +dCF +lAS mxQ nmT tUs rbK tUs tUs -aEC +rwt tUs tUs ffZ -gbf -fOT -apu -gbf -gbf +oYM +nVq +rev +oYM +oYM mxQ -qhD -qhJ -upK +iHJ +xsa +ayK bzO rzt rzt @@ -76938,72 +76956,72 @@ bce bce uwk uwk -kjt -mgz -rLG -gBw -vUP -eDA -kXk -tPB +xMR +roY +iZV +mey +vJD +oWB +ikq +dyM wef -kjt -mgz -xRY +xMR +roY +lHc cKa -kXk -tPB +ikq +dyM cKa -kXk -tPB +ikq +dyM cKa -kXk -ctI +ikq +sAx cKa -kjt -gzu -kGo +xMR +iqV +aad cKa -onW -vBa -cMP -dzB -wZt -kjt -mgz +unW +rmb +pdV +xec +fdn +xMR +roY jMf wef -rLG +iZV uwk kPz kPz kPz jmG -wxW +wdX jEK -cOF +mIE jce -ntE -smj -qBe -qBe -qBe -qBe -qBe -hSl +pwN +lps +gqe +gqe +gqe +gqe +gqe +iMF ecM -jVj -gqU -eac -dPe -mcJ -uIL +fYn +eqT +ofr +bhM +tBa +tuH kqC kqC -nBb -xbM -fHo -sKt +ulJ +mcc +vei +wBr kqC kqC kqC @@ -77011,57 +77029,57 @@ kqC ryJ end kqC -nBb -xbM -fHo +ulJ +mcc +vei kqC -sfu -jyF +bux +bZu kqC -hHX -jyF +aFh +bZu wzE bQM hZR -pLE -qNF -efW -pLE -qNF -efW -pLE +vbd +avl +iUy +vbd +avl +iUy +vbd duF -chg -tOM -tOM -tOM -fiw -tOM -tOM -tOM +whR +lAS +lAS +lAS +tvu +lAS +lAS +lAS vDO tUs mxQ tUs mxQ mxQ -mAN +jum mxQ tUs mxQ -gbf -fOT -apu -pYB -pYB -qaT -fWy -uvu -gbf -erw -tOM -gbf -pRz +oYM +nVq +rev +kfA +kfA +tyQ +sTV +tdA +oYM +cUE +lAS +oYM +myt bzO bQM kPz @@ -77149,19 +77167,19 @@ vBP fQV erT uwk -wcC -kXk -amn -tPB -vUP -dFI +bsd +ikq +vII +dyM +vJD +pqG cKa -eDA +oWB wef wef -wlv -xWG -ngF +bDu +hMX +iiE cKa kzh tOp @@ -77172,66 +77190,66 @@ cKa kzh tOp cKa -xVw -mgz -rLG +jXD +roY +iZV cKa -onW -shh +unW +oYc cKa -onW -wZt -kjt -mgz +unW +fdn +xMR +roY bJn aTM -rLG +iZV uwk bQM kPz bQM jmG -txf -oZj -sfZ +wQh +mTS +jas uhm -wdl -iUS -qof -qBe -qof -qBe -qof -pUo +ebP +bej +uzd +gqe +uzd +gqe +uzd +tnA ecM -vNd -fWH -fWH -fWH -fWH -fWH +fXT +nSz +nSz +nSz +nSz +nSz kqC -mue -bbI -xbM -rYK +uPD +uHL +mcc +dzj kqC kqC -wyQ -eTa -vds -vds -vds -elO -dHD -xbM -fHo +pFY +aru +dHp +dHp +dHp +uFh +pHu +mcc +vei kqC -qNF -mDO +avl +jms kqC -qNF -mDO +avl +jms wzE wzE wzE @@ -77244,36 +77262,36 @@ ecd kqC jTJ vMK -mGZ -tOM -bkg -czr -tOM -tOM -hao +dhj +lAS +mKy +lik +lAS +lAS +sDF mxQ jXj mxQ rsp mxQ -gbf -gbf +oYM +oYM mxQ tUs mxQ -gbf -xRw -apu -gbf -gbf +oYM +aZQ +rev +oYM +oYM mxQ -uvu -sxE -uvu -sXa -uCO -sXa -qhJ +tdA +tMe +tdA +krr +mpr +krr +xsa bzO bQM kPz @@ -77361,43 +77379,43 @@ afk afk ghg uwk -aoZ -vUP -jWI -eow -lFB -vUP -pDo -jWI -bXz -kGd -ufR -sNi -jna -eow -eow -lFB -vUP -pRa -kGd -eow -eow -lFB -vUP -kjt -jYM -rLG +mAE +vJD +aaK +dkj +kNz +vJD +ahe +aaK +cmj +rfD +frY +oSR +qqZ +dkj +dkj +kNz +vJD +eJi +rfD +dkj +dkj +kNz +vJD +xMR +mMq +iZV cKa -onW -dzB -vBa -shh +unW +xec +rmb +oYc cKa -kjt -mgz +xMR +roY wef -mgz -bOx +roY +fin jmG uwk uwk @@ -77407,37 +77425,37 @@ mvl mvl uhm cKa -dnj -wis -qBe -qBe -qBe -qBe -oPR -hSl +vcr +yiG +gqe +gqe +gqe +gqe +cjF +iMF ecM bEX bEX izZ -oPR -oPR -oPR +cjF +cjF +cjF kqC -pCQ -dHD -xbM -fHo +ftH +pHu +mcc +vei abJ -ioc -rzp -vds -vds -vds -elO -efW -dHD -xbM -rYK +usz +cCq +dHp +dHp +dHp +uFh +iUy +pHu +mcc +dzj kqC ryJ end @@ -77448,35 +77466,35 @@ kqC wzE pah kwL -xbM -iCN +mcc +pfE qOq -xbM -xbM +mcc +mcc pah bhu goG -tOM -tOM -tOM -tsf -tOM -tOM -dbW +lAS +lAS +lAS +gfw +lAS +lAS +aem mxQ tUs tUs oBj mxQ -gbf +oYM mxQ mxQ msj mxQ -gbf -fOT -apu -gbf +oYM +nVq +rev +oYM vEK mxQ mxQ @@ -77573,132 +77591,132 @@ hkh afk tCZ uwk -rce -vUP -kjt -mgz -rLG -mgz -mgz -kXk -qGB -amn -amn -amn -amn -amn -amn -tPB -baM -kXk -xYJ -qGB -amn -tPB -vUP -kjt -mgz -rLG +wtx +vJD +xMR +roY +iZV +roY +roY +ikq +qEn +vII +vII +vII +vII +vII +vII +dyM +sAe +ikq +xqj +qEn +vII +dyM +vJD +xMR +roY +iZV cKa -okJ -cMP -dzB -lsZ +qzl +pdV +xec +isi hEs -kjt -mgz -mgz +xMR +roY +roY wef -rLG +iZV jYs -uJi -fWH -hdR -hQQ -fWH -fWH -mBG -sue -wBB -dAd -ode -ode -ode -ode -ode -cry -qBe -qBe -qBe -wKm -qBe -qBe -oPR +vWI +nSz +sad +qpa +nSz +nSz +vli +fGL +uXM +xrG +lHy +lHy +lHy +lHy +lHy +dBa +gqe +gqe +gqe +klg +gqe +gqe +cjF kqC -cRI -dHD -xbM -fHo +pzN +pHu +mcc +vei vRA -ioc -qNF -xRI -xRI -xRI -efW -elO -cHC -xbM -fHo -ioc -rzp -vds -vds -vds -elO -ioc +usz +avl +xri +xri +xri +iUy +uFh +qWf +mcc +vei +usz +cCq +dHp +dHp +dHp +uFh +usz duF koy gsL -mOI -xbM +pHc +mcc qOq -xbM -xbM +mcc +mcc ckx sNN goG -tOM -tOM -tOM -bPh -mzJ -tOM -mtD +lAS +lAS +lAS +hzq +gnz +lAS +tlp mxQ xCa pjT -cHm +fjU mxQ -fvK +qFg hvF tUs tUs lhY -gbf -fOT -apu -gbf +oYM +nVq +rev +oYM vEK mxQ mxQ -kGZ -sBW -sBW -sBW -sBW -sBW -sBW +kcz +vkZ +vkZ +vkZ +vkZ +vkZ +vkZ bzO bzO bzO @@ -77785,12 +77803,12 @@ afk afk xMW uwk -rce -vUP -kXk -amn -tPB -qqC +wtx +vJD +ikq +vII +dyM +mLe eov efl fDQ @@ -77798,9 +77816,9 @@ eov tzy wef wef -xgH -vUP -knb +pnA +vJD +bhR wef wef tOp @@ -77808,110 +77826,110 @@ cKa kzh tOp cKa -xVw -mgz -bOx +jXD +roY +fin aSz aSz aSz hul aSz aSz -nGV -amn -amn -amn -tPB +pka +vII +vII +vII +dyM jYs -fWH -mEU -aZL -mEU -aZL -cGS -dBz -ivw -kmm -qBe -oPR -oPR -wuW -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -oPR +nSz +ozh +iOJ +ozh +iOJ +vYA +oDz +fnW +wEQ +gqe +cjF +cjF +enG +gqe +gqe +gqe +gqe +gqe +gqe +gqe +gqe +gqe +cjF kqC -mue -gIa -xbM -rYK +uPD +gwX +mcc +dzj kqC kqC -ioc -qNF -xRI -xRI -xRI -efW -dHD -xbM -fHo -ioc -qNF -xRI -xRI -xRI -efW -sDR +usz +avl +xri +xri +xri +iUy +pHu +mcc +vei +usz +avl +xri +xri +xri +iUy +rvf hBF -vcv -iLl -xbM -xbM +vHR +uJk +mcc +mcc qOq -huG -xbM +wwH +mcc pah mbH goG -tOM -tOM -tOM -quL -tOM -tOM -tzU +lAS +lAS +lAS +aIR +lAS +lAS +hIe mxQ tUs mxQ tUs tUs -gbf +oYM rbK tUs mxQ mxQ -gbf -fOT -apu -gbf +oYM +nVq +rev +oYM vEK -fFw -kGZ -fHI -pYB -eBS -pYB -tOM -tOM -gbf -gbf +fKv +kcz +aWo +kfA +atE +kfA +lAS +lAS +oYM +oYM bzO bQM kPz @@ -77997,37 +78015,37 @@ eJQ jlH bUB uwk -iTr -jWI -eow -lFB -vUP -mgz +lCD +aaK +dkj +kNz +vJD +roY eov -ihV -uvS +svF +qtX eov -gXI -qxx +pgV +uMH jAW -vUP -tWs -vUP +vJD +tMr +vJD wef -jWI -lFB +aaK +kNz cKa -jWI -oyy +aaK +soQ cKa -kjt -mgz -rLG -vUP +xMR +roY +iZV +vJD cKa -sXe +pVq wef -sXe +pVq aSz jmG jmG @@ -78035,35 +78053,35 @@ uwk uwk jmG jmG -mEU -bbn -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -pUf +ozh +kxV +cjF +cjF +cjF +cjF +cjF +cjF +cjF +cjF +cjF +cjF +gqe +gqe +gqe +gqe +gqe +gqe +gqe +gqe +gqe +gqe +aDw kqC kqC -nBb -xbM -fHo -sKt +ulJ +mcc +vei +wBr kqC ryJ end @@ -78071,9 +78089,9 @@ kqC ryJ end kqC -dHD -xbM -rYK +pHu +mcc +dzj kqC ryJ end @@ -78092,38 +78110,38 @@ ecd kqC jTJ vMK -pFW -tOM -tOM -tOM -tOM -tOM -tOM +pmg +lAS +lAS +lAS +lAS +lAS +lAS vDO tUs mxQ vrF hvF -gbf +oYM hvF oBj tUs vDO -eBS -fOT -epB -gbf -gbf -fWy -vUZ +atE +nVq +jVW +oYM +oYM +sTV +hHv waN sfW sfW sfW sfW sfW -qRW -mOE +oqu +jKL bzO tan tan @@ -78210,36 +78228,36 @@ bce bce uwk uwk -kjt -mgz -rLG -vUP -cEg +xMR +roY +iZV +vJD +iKC eov -jGs -vRu +kzI +qfu eov -iFB -nVu +ldm +wMS hqD -jiz -vUP -cfU +wZE +vJD +azg hqD -iFB -dUx +ldm +usA cKa -iFB -qBT +ldm +xVv cKa -kjt -mgz -rLG -vUP +xMR +roY +iZV +vJD glj -sXe +pVq wef -sXe +pVq odQ uwk bQM @@ -78247,101 +78265,101 @@ bQM bQM bQM uwk -aZL -oPR -ldj -oPR -oPR -oPR -oPR -oPR -oPR -oPR -hoC -oPR -qBe -hdR -ksu +iOJ +cjF +jBL +cjF +cjF +cjF +cjF +cjF +cjF +cjF +krQ +cjF +gqe +sad +aPi ecM mlC mlC mlC ecM -okE -qBe -vcu -qQM +qKF +gqe +oEI +jKb abJ -dHD -xbM -fHo -sKt +pHu +mcc +vei +wBr kqC -qNF -mDO +avl +jms kqC -qNF -mDO +avl +jms kqC -nBb -xbM -fHo +ulJ +mcc +vei kqC -rzp -mwP +cCq +pDV kqC -rzp -mwP +cCq +pDV kqC -rKs -tOM -wGA -fOT -apu -hAs -fOT -apu -gbf -xXt +qOG +lAS +eBC +nVq +rev +qTy +nVq +rev +oYM +cFf vMK -bRC -tOM -tOM -tOM -sbU -tOM -aXv +tld +lAS +lAS +lAS +xsg +lAS +qLJ mxQ tUs tUs jXj mxQ -gbf +oYM mxQ tUs hvF mxQ -gbf -fOT -nBw -nvX -nvX -wuz -fHI +oYM +nVq +xUz +nbv +nbv +pdf +aWo hfd fIW htt htt qpM vjq -fHb -fHb -fHb -tsc -bEk -tsc -ogf -mRM +euC +euC +euC +ssD +iSi +ssD +hbC +cbb bQM bQM bQM @@ -78422,11 +78440,11 @@ cAW cAW bQM uwk -kXk -amn -tPB -vUP -kIO +ikq +vII +dyM +vJD +urw eov dRO pvD @@ -78434,9 +78452,9 @@ eov cKa cKa cKa -mZy -vUP -dFI +pEL +vJD +pqG hEs cKa cKa @@ -78444,14 +78462,14 @@ cKa cKa cKa cKa -xVw -mgz -rLG -vUP +jXD +roY +iZV +vJD glj -sXe +pVq wef -sXe +pVq vJh uwk kPz @@ -78459,35 +78477,35 @@ kPz kPz kPz uwk -qBe -rpt -oPR -roQ -ccZ -aZL -mEU -roQ -ccZ -aZL -oPR -oPR -qBe -jDe -ofl +gqe +naN +cjF +rsW +kJX +iOJ +ozh +rsW +kJX +iOJ +cjF +cjF +gqe +adY +sKS mlC kPz kPz kPz mlC -qBe -eUP -sGa -jOb +gqe +bKs +rUY +xNQ vRA -qNF -eux -efW -ioc +avl +lka +iUy +usz kqC kqC kqC @@ -78495,26 +78513,26 @@ mCF kqC kqC kqC -dHD -xbM -fHo +pHu +mcc +vei kqC -qLi -dpe +wII +bjk kqC -qLi -dpe +wII +bjk kqC -lbz -gLk -gbf -fOT -apu -pYB -fOT -apu -gbf -bRC +riu +boh +oYM +nVq +rev +kfA +nVq +rev +oYM +tld vMK goG iyf @@ -78528,18 +78546,18 @@ mxQ uZX mxQ mxQ -uOM +iuV mxQ uZX mxQ mxQ -mFS -fOT -gbf -gbf -gbf -arT -tOM +jae +nVq +oYM +oYM +oYM +amx +lAS hfd vfM oEK @@ -78553,7 +78571,7 @@ vzB fiq vzB bQM -bmT +gEU bQM bQM bQM @@ -78634,36 +78652,36 @@ cAW cAW bQM uwk -vUP -jWI -eow -lFB -dbh +vJD +aaK +dkj +kNz +cgE eov doe cAW eov -bqu -rwm +ocJ +rsE cKa -gzN -vUP -vUP +qBh +vJD +vJD cKa -bqu -rwm +ocJ +rsE cKa -bqu -rwm +ocJ +rsE cKa -kjt -xAq -rLG -vUP +xMR +lSY +iZV +vJD cKa -dcv +nmQ wef -sXe +pVq lMi uwk bQM @@ -78671,29 +78689,29 @@ bQM bQM bQM uwk -roQ -vdW -oPR -kJJ +rsW +uyb +cjF +stq jRL mlC mlC mlC ecM -iCE -oPR -oPR -qBe -xbE -fYf +qYc +cjF +cjF +gqe +jJM +dlE mlC bQM bQM bQM mlC -eUP -qBe -xIq +bKs +gqe +fum kqC kqC vRA @@ -78701,15 +78719,15 @@ blG kqC kqC kqC -xbM -xbM -xbM -kgQ -xbM -xbM -dHD -xbM -rYK +mcc +mcc +mcc +lnU +mcc +mcc +pHu +mcc +dzj kqC kqC kqC @@ -78718,54 +78736,54 @@ kqC kqC kqC mxQ -tOM -gbf -fOT -apu -pYB -fOT -apu -gbf -tOM -vuV -pYB -pYB -pYB +lAS +oYM +nVq +rev +kfA +nVq +rev +oYM +lAS +sPk +kfA +kfA +kfA mxQ oXS fUr wcW -wjT +tTK mxQ -gbf -aEC -gzh -gbf +oYM +rwt +nQS +oYM mxQ tUs tUs bMu -gOk -fOT -jzP -ydK -ydK -qzb -tdq +btB +nVq +lXf +nLl +nLl +jYd +mXT hfd ucj bBA bBA rZi eMU -fHb -fHb -fHb -tsc -bEk -tsc -ogf -fWI +euC +euC +euC +ssD +iSi +ssD +hbC +ogo bQM bQM bQM @@ -78846,31 +78864,31 @@ cAW jmG jmG jmG -lSq -kjt -hjB -rLG -taI +iir +xMR +fnj +iZV +gHc eov ivb cAW eov -kXk -tPB +ikq +dyM cKa -fLH -gCK -vUP +uvh +aZZ +vJD cKa -kXk -rhH +ikq +dSw cKa -kXk -rhH +ikq +dSw cKa -kjt -mgz -rLG +xMR +roY +iZV cKa cKa cKa @@ -78883,95 +78901,95 @@ hxq hxq vnr vnr -mEU -oPR -oPR -aZL +ozh +cjF +cjF +iOJ mlC bQM kPz bQM mlC -roQ -oPR -oPR -qBe -vtX -dYo +rsW +cjF +cjF +gqe +gtM +sbM mlC kPz kPz kPz mlC -qBe -qBe -qBe +gqe +gqe +gqe kqC kqC -jva -gEX +heb +rIC wzE kqC -pai -kgQ -tSl -diJ -ddt -ioc -kgQ -diF -xbM -fHo +qVe +lnU +tlS +fFf +pWm +usz +lnU +tno +mcc +vei kqC -sfu -jyF +bux +bZu kqC -sfu -jyF +bux +bZu kqC -hNj -ijd -gbf -fOT -apu -klN -fOT -wmm -gbf -vRP -anR -pca -pca -pca +lyg +cfj +oYM +nVq +rev +ppK +nVq +mel +oYM +pfW +fqD +cmV +cmV +cmV vDO tUs rbK tUs tUs uZX -pYB -pYB -hQM -pYB -pYB +kfA +kfA +ppb +kfA +kfA tUs vjl mxQ -gbf -fOT -apu -gbf -gbf -fFw -vUZ +oYM +nVq +rev +oYM +oYM +fKv +hHv tuX vEi vEi vEi vEi vEi -faD -oyO +hhh +eKu bzO tan tan @@ -79058,11 +79076,11 @@ cAW jmG cAW jmG -vUP -kXk -amn -tPB -mpR +vJD +ikq +vII +dyM +nCl eov hxJ qgd @@ -79070,9 +79088,9 @@ eov kzh tOp cKa -oDH -vUP -dFI +evU +vJD +pqG cKa kzh tOp @@ -79080,110 +79098,110 @@ cKa kzh tOp cKa -xVw -mgz -bOx +jXD +roY +fin cKa -vUP -vUP -vUP +vJD +vJD +vJD cKa -xRl -cPz -ixl -kJz -ixl -bjf +xyf +tMA +ycX +jsn +ycX +eOS vNq -hsz -oPR -oPR -qBe +srz +cjF +cjF +gqe mlC kPz kPz kPz mlC -hdR -oPR -oPR -qBe -aZL -nGB +sad +cjF +cjF +gqe +iOJ +dhN ecM mlC mlC mlC ecM -eLU -qBe -qBe -qBe -jis -dQV -nGp -dQV +qBs +gqe +gqe +gqe +eTJ +rOm +gGB +rOm kqC -pai -kgQ -nkg -diJ -iuC -ioc -pnP -dHD -xbM -fHo +qVe +lnU +cbe +fFf +kqP +usz +rgD +pHu +mcc +vei kqC -qNF -mDO +avl +jms kqC -qNF -mDO +avl +jms kqC -lbz -hnh -gbf -fOT -apu -vTM -fOT -apu -gbf -gbf -gbf -uFg -gbf -tOM +riu +mGx +oYM +nVq +rev +iCC +nVq +rev +oYM +oYM +oYM +mgU +oYM +lAS mxQ -kag -kag -kag -kag +xjv +xjv +xjv +xjv uZX -gbf -dtk -nnC -ota -gbf +oYM +kvd +ihA +fmM +oYM mxQ mxQ mxQ -gbf -fOT -apu -gbf +oYM +nVq +rev +oYM vEK -fWy -lUv -gbf -pYB -eBS -pYB -tOM -tOM -gbf -gbf +sTV +pVv +oYM +kfA +atE +kfA +lAS +lAS +oYM +oYM bzO bQM kPz @@ -79279,73 +79297,73 @@ eov eov eov eov -vUP +vJD wef -vUP -ika -vUP -vUP -bjZ -jWI -eow -aiv -kGd -lFB -vUP -kjt -mgz -rLG +vJD +ceZ +vJD +vJD +jki +aaK +dkj +aPq +rfD +kNz +vJD +xMR +roY +iZV lZA -jWI -eow -lFB +aaK +dkj +kNz lZA -ixl -ixl -ghS -hHH -hHH -ixl -rmX -qBe -oPR -oPR -roQ +ycX +ycX +qHZ +qYq +qYq +ycX +sun +gqe +cjF +cjF +rsW mlC bQM kPz bQM mlC -aZL -oPR -oPR -qBe -qBe -gbk -qBe -eUP -qBe -qBe -qBe -qBe -qBe -hdR -roQ -qBe -qBe -qBe -fjg +iOJ +cjF +cjF +gqe +gqe +mmh +gqe +bKs +gqe +gqe +gqe +gqe +gqe +sad +rsW +gqe +gqe +gqe +ijv kqC -pai -kgQ -tTm -diJ -aga -diJ -xbM -dHD -xbM -rYK +qVe +lnU +kau +fFf +tnP +fFf +mcc +pHu +mcc +dzj kqC ryJ end @@ -79354,48 +79372,48 @@ ryJ end kqC kqC -pFW -cTy -fOT -wua -kKP -eqw -nBw -nvX -nvX -nvX -beB -gbf -aXv +pmg +mTJ +nVq +tTr +wRG +mfd +xUz +nbv +nbv +nbv +bPS +oYM +qLJ bzO rzt rzt rzt rzt bzO -pYB -pYB -xOm -pYB -pYB +kfA +kfA +deW +kfA +kfA mxQ -rQN -rQN -fUD -fOT -apu -gbf -gbf -fFw -vUZ +sfw +sfw +nyQ +nVq +rev +oYM +oYM +fKv +hHv waN sfW sfW sfW sfW sfW -qRW -mOE +oqu +jKL bzO tan tan @@ -79490,95 +79508,95 @@ jmG cKa cKa cKa -rpf -vUP -vUP -vUP -vUP -mIr -vUP -knb -kXk -xYJ -qGB -amn -hkH -vUP -kjt -mgz -rLG +xCW +vJD +vJD +vJD +vJD +pFg +vJD +bhR +ikq +xqj +qEn +vII +uZe +vJD +xMR +roY +iZV wef -kjt -mgz -rLG +xMR +roY +iZV wef -ixl -ixl -ixl -ixl -ixl -gpr -nnr -oPR -oPR -oPR -kJJ +ycX +ycX +ycX +ycX +ycX +ovj +mfo +cjF +cjF +cjF +stq ecM mlC mlC mlC ecM -iCE -oPR -oPR -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -qBe -rMw -mEU -qBe -qBe -qBe -jLe +qYc +cjF +cjF +gqe +gqe +gqe +gqe +gqe +gqe +gqe +gqe +gqe +gqe +klv +ozh +gqe +gqe +gqe +eRY kqC kqC -sRJ -iuC +lVP +kqP coj -ioc -ioc -xbM -dHD -xbM -fHo -ioc -rzp -vds -vds -vds -elO -ioc +usz +usz +mcc +pHu +mcc +vei +usz +cCq +dHp +dHp +dHp +uFh +usz ntv -tOM -gbf -fOT -gbf -gbf -gbf -gbf -gbf -gbf -gbf -apu -gbf -tOM +lAS +oYM +nVq +oYM +oYM +oYM +oYM +oYM +oYM +oYM +rev +oYM +lAS bzO bQM kPz @@ -79591,29 +79609,29 @@ iyf mxQ mxQ mxQ -jkW -tOM -kLs -fOT -nBw -nvX -nvX -wuz -fHI +suB +lAS +ogX +nVq +xUz +nbv +nbv +pdf +aWo hfd fIW htt htt qpM vjq -fHb -fHb -fHb -tsc -bEk -tsc -ogf -mRM +euC +euC +euC +ssD +iSi +ssD +hbC +cbb bQM bQM bQM @@ -79703,9 +79721,9 @@ cKa cKa cKa cKa -vUP -vUP -vUP +vJD +vJD +vJD jfc wef wef @@ -79716,81 +79734,81 @@ rPS wef wef jfc -kjt -mgz -rLG +xMR +roY +iZV lZA -kjt -mgz -rLG +xMR +roY +iZV lZA -ixl -ixl -ixl -ixl -ixl -ixl -nnr -oPR -oPR -oPR -aZL -eLy -roQ -qBe -aZL -eLy -roQ -oPR -oPR -hdR -roQ -qBe -qBe -hdR -roQ -qBe -qBe -qBe -qBe -hYs -uou -qBe -mrW -qBe -fWV +ycX +ycX +ycX +ycX +ycX +ycX +mfo +cjF +cjF +cjF +iOJ +fnt +rsW +gqe +iOJ +fnt +rsW +cjF +cjF +sad +rsW +gqe +gqe +sad +rsW +gqe +gqe +gqe +gqe +nis +mQD +gqe +gas +gqe +qnu tHl -qCK +fBc lIJ -qCK -ioc -idj -ioc -xbM -qNF -xRI -efW -ioc -qNF -xRI -xRI -xRI -efW -ioc +fBc +usz +fpY +usz +mcc +avl +xri +iUy +usz +avl +xri +xri +xri +iUy +usz ntv -tOM -gbf -rsR -ydK -ydK -ydK -ydK -ydK -ydK -kHv -apu -gbf -kbt +lAS +oYM +eNs +nLl +nLl +nLl +nLl +nLl +nLl +oiu +rev +oYM +kLN bzO rzt rzt @@ -79798,20 +79816,20 @@ rzt rzt bzO tJR -pYB -gbf -pYB +kfA +oYM +kfA wcW mxQ -tOM -tOM -gbf -fOT -xEW -gbf -gbf -arT -tOM +lAS +lAS +oYM +nVq +rOE +oYM +oYM +amx +lAS hfd vfM oEK @@ -79825,7 +79843,7 @@ vzB fiq vzB bQM -bmT +gEU bQM bQM bQM @@ -79914,74 +79932,74 @@ jmG cKa cKa cKa -rpf -jWI -eow -lFB +xCW +aaK +dkj +kNz hqD -jWI -clA +aaK +qwy wef -jWI -lFB +aaK +kNz jfc -jWI -lFB +aaK +kNz rPS -kjt -mgz -rLG +xMR +roY +iZV wef -kXk -amn -tPB +ikq +vII +dyM wef -ixl -ixl -ixl -ixl -ghS -ixl -lpS -ooq -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR -oPR -aZL -mEU -qBe -eUP -aZL -mEU -qBe -qBe -qBe -qBe -hYs -qBe -qBe -qBe -oHi +ycX +ycX +ycX +ycX +qHZ +ycX +jRp +vvX +cjF +cjF +cjF +cjF +cjF +cjF +cjF +cjF +cjF +cjF +cjF +iOJ +ozh +gqe +bKs +iOJ +ozh +gqe +gqe +gqe +gqe +nis +gqe +gqe +gqe +jvu miU -sgt +ecp vRA -upY +sHH vRA vRA -ioc -diJ -xbM +usz +fFf +mcc vRA -xbM -xbM +mcc +mcc kqC ryJ end @@ -79990,54 +80008,54 @@ kqC ecd kqC kqC -pFW -gbf -gbf -gbf -gbf -gbf -gbf -gbf -gbf -fOT -apu -gbf -ivr +pmg +oYM +oYM +oYM +oYM +oYM +oYM +oYM +oYM +nVq +rev +oYM +guQ vDO -wkA -wkA -wkA -lOk -gbf +prP +prP +prP +jqH +oYM tUs -pYB -hQM -pYB +kfA +ppb +kfA tUs vDO -eBS -tOM -gbf -fOT -jzP -ydK -ydK -qzb -tdq +atE +lAS +oYM +nVq +lXf +nLl +nLl +jYd +mXT hfd ucj bBA bBA rZi eMU -fHb -fHb -fHb -tsc -bEk -tsc -ogf -fWI +euC +euC +euC +ssD +iSi +ssD +hbC +ogo bQM bQM bQM @@ -80127,123 +80145,123 @@ cKa cKa cKa cKa -kjt -mgz -rLG +xMR +roY +iZV hqD -fRc -dUx +mHZ +usA hqD -iFB -dUx +ldm +usA jfc -iFB -dUx +ldm +usA wef -kjt -mgz -rLG +xMR +roY +iZV cKa -vUP -vUP -vUP +vJD +vJD +vJD cKa -xRl -ixl -ixl -ixl -ixl -bjf +xyf +ycX +ycX +ycX +ycX +eOS vNq -gvz -ooq -mEU -roQ -fyL -fje -rCe -etq -gGc -dIx -rCe -gPE -qBe -qBe -fyL -gGc -gGc -tzM -hdR -roQ -qBe -kHH -fFv -uoH -qBe -qBe -qBe -qBe +hvE +vvX +ozh +rsW +hmg +dyi +dQY +eIp +uch +flo +dQY +dPQ +gqe +gqe +hmg +uch +uch +cWU +sad +rsW +gqe +hYK +lpp +ppY +gqe +gqe +gqe +gqe oPN vRA -aXC +lOa vRA -qCK +fBc lIJ vRA -upY -upY -upY -tZe +sHH +sHH +sHH +qOd kqC -rzp -mwP +cCq +pDV mxQ fCZ nZQ sso mxQ -bkg -kag -tOM -xsS -xsS -tOM -tOM -tOM -gbf -fOT -apu -gbf -tOM +mKy +xjv +lAS +rII +rII +lAS +lAS +lAS +oYM +nVq +rev +oYM +lAS bzO bzO mxQ tUs rVM -gbf -gbf -eBj -cLZ -atd -xGl +oYM +oYM +pes +qWi +vMS +mNC vDO -eBS -tOM -gbf -fOT -apu -tOM -tOM -fFw -vUZ +atE +lAS +oYM +nVq +rev +lAS +lAS +fKv +hHv tuX vEi vEi vEi vEi vEi -faD -oyO +hhh +eKu bzO tan tan @@ -80339,9 +80357,9 @@ cKa cKa cKa cKa -wdL -mgz -rLG +dgx +roY +iZV hEs cKa cKa @@ -80352,63 +80370,63 @@ cKa cKa cKa cKa -xVw -mgz -rLG +jXD +roY +iZV jmG uwk uwk uwk jmG vnr -ixl -ixl -ixl -ixl -ixl +ycX +ycX +ycX +ycX +ycX vNq vNq -dAd -ode -ode -cry +xrG +lHy +lHy +dBa vNq vNq vnr mlC mlC ecM -yfp -hEv -hEv -hbp +mam +lPV +lPV +kDq ecM nSx -gVc -xbo -qzZ -qBe -qBe -aZL -mEU -qBe -qBe -ooO -faw -lux +lZL +gCb +ejO +gqe +gqe +iOJ +ozh +gqe +gqe +mAA +atx +jxy wjH -cqW -ckS -voh +nph +vHG +pQq dtg -ioc -upY -upY -upY -tZe +usz +sHH +sHH +sHH +qOd kqC -qLi -dpe +wII +bjk mxQ gRW ssO @@ -80419,43 +80437,43 @@ iyf mxQ pte bzO -mOU -mOU -mOU -gbf -fOT -apu -gbf -mOU +fLs +fLs +fLs +oYM +nVq +rev +oYM +fLs bzO bzO mxQ tUs uZX -gbf +oYM tUs -pYB -xOm -pYB +kfA +deW +kfA tUs mxQ -rQN -tOM -xEW -fOT -apu -tOM +sfw +lAS +rOE +nVq +rev +lAS aRk -fFw -lUv -gbf -pYB -eBS -pYB -tOM -tOM -gbf -gbf +fKv +pVv +oYM +kfA +atE +kfA +lAS +lAS +oYM +oYM bzO bQM kPz @@ -80548,76 +80566,76 @@ cAW cAW jmG cKa -bqu -moQ +ocJ +wVI cKa -kjt -mgz -vwX +xMR +roY +cHq cKa -bqu -rwm +ocJ +rsE cKa -bqu -rwm +ocJ +rsE cKa -bqu -aLC +ocJ +ukk cKa -kjt -mgz -rLG +xMR +roY +iZV uwk bQM kPz kPz bQM hxq -ixl -ixl -ixl -ixl -ixl -ixl -bcX -ixl -ixl -ixl -ixl -tjp -ixl +ycX +ycX +ycX +ycX +ycX +ycX +cJo +ycX +ycX +ycX +ycX +tih +ycX ezn kPz kPz hxq -ovq -vyw -bix -uTb +jLs +bTe +eRi +llW ecM nSx -gux -eio -qBe -qBe -qBe -qBe -qBe -wKm -qBe -qBe -faw +nrq +uVQ +gqe +gqe +gqe +gqe +gqe +klg +gqe +gqe +atx tHl -jYm -xbM -thz -suq -xbM -wFB -xbM -xbM -xdZ -xbM +opB +mcc +tyb +hDr +mcc +cel +mcc +mcc +aYA +mcc kqC kqC kqC @@ -80631,16 +80649,16 @@ tUs mxQ bzO bzO -gbf -gbf -gbf -fWy -rsR -oEQ -fWy -gbf -gbf -gbf +oYM +oYM +oYM +sTV +eNs +snO +sTV +oYM +oYM +oYM mxQ iyf mxQ @@ -80651,23 +80669,23 @@ hvF mxQ mxQ mxQ -fob -rxM -gbf -fOT -apu -tOM -rbW -voP -vUZ +ieU +cNn +oYM +nVq +rev +lAS +xmX +lqo +hHv waN sfW sfW sfW sfW sfW -qRW -mOE +oqu +jKL bzO tan tan @@ -80760,65 +80778,65 @@ cAW cAW jmG cKa -kXk -qRf +ikq +ikz cKa -kjt -mgz -rLG +xMR +roY +iZV cKa -kXk -jWY +ikq +chJ cKa -kXk -lzz +ikq +frw cKa -kXk -rhH +ikq +dSw cKa -kXk -amn -tPB +ikq +vII +dyM uwk bQM kPz kPz bQM hxq -ixl -ixl -ixl -ixl -ixl -ixl -ixl -ghS -ixl -ixl -ghS -ixl -ixl +ycX +ycX +ycX +ycX +ycX +ycX +ycX +qHZ +ycX +ycX +qHZ +ycX +ycX vnr hxq hxq vnr -lOx -oRg -ixl -uvn +dXz +dpt +ycX +aap ecM nSx -ayG -laK -gRA -qBe -hdR -roQ -gRA -qBe -qBe -qBe -hQT +aah +ckD +mQZ +gqe +sad +rsW +mQZ +gqe +gqe +gqe +qgS jTJ jTJ kqC @@ -80831,8 +80849,8 @@ blG jTJ jTJ jTJ -bMG -anl +mCT +sRH ffZ tUs fgU @@ -80841,51 +80859,51 @@ noa mxQ mxQ mxQ -xLD -pYB -tOM -tOM -gbf -gbf -pYB -pYB -gbf -gbf -tOM -tOM -pYB -jyo +nPa +kfA +lAS +lAS +oYM +oYM +kfA +kfA +oYM +oYM +lAS +lAS +kfA +vWs mxQ mxQ mxQ -tVf -oEn +tMz +lif mxQ -pRx -tOM -xbp -lUv -gbf -fOT -nBw -nvX -nvX -wuz -fHI +uod +lAS +raF +pVv +oYM +nVq +xUz +nbv +nbv +pdf +aWo hfd fIW htt htt qpM vjq -fHb -fHb -fHb -tsc -bEk -tsc -ogf -mRM +euC +euC +euC +ssD +iSi +ssD +hbC +cbb bQM bQM bQM @@ -80975,9 +80993,9 @@ cKa kzh tOp cKa -kjt -mgz -rLG +xMR +roY +iZV cKa kzh tOp @@ -80988,102 +81006,102 @@ cKa kzh tOp cKa -cIt -vUP -vUP +cOl +vJD +vJD uwk bQM kPz kPz bQM hxq -vyw -bix -fOC -bix -bix -bix -bix -bix -bix -fKu -bix -bix -bix -bix -bix -xOU -bix -bix -uPl -dIh -kGc +bTe +eRi +kJC +eRi +eRi +eRi +eRi +eRi +eRi +dJl +eRi +eRi +eRi +eRi +eRi +jSC +eRi +eRi +gHW +bra +hrX nSx cVV -oWC +glH xKX -qTt -gRA -aZL -hdR -roQ -gRA -qBe -qBe -uud -wXQ +jbk +mQZ +iOJ +sad +rsW +mQZ +gqe +gqe +uix +fII ntv -hqX -vds -vds -rQB -gdS -ioc -ioc -qxZ +gXL +dHp +dHp +xAw +rdS +usz +usz +dpr duF -sFH +euR rCt -xGd +rsh mxQ tUs kZy mxQ mxQ mxQ -pYB -pYB -eTr -tOM -gbf -gbf -tOM -gbf -pYB -pYB -gbf -tOM -gbf -gbf -tOM -tOM -pYB -cyR +kfA +kfA +eCA +lAS +oYM +oYM +lAS +oYM +kfA +kfA +oYM +lAS +oYM +oYM +lAS +lAS +kfA +dxJ mxQ mxQ mxQ mxQ uLr tUs -brl -kyh -gbf -fOT -gbf -gbf -gbf -arT -tOM +fXQ +ncQ +oYM +nVq +oYM +oYM +oYM +amx +lAS hfd vfM oEK @@ -81097,7 +81115,7 @@ vzB fiq vzB bQM -bmT +gEU bQM bQM bQM @@ -81184,132 +81202,132 @@ cAW cAW jmG cKa -jWI -eow -eow -ufR -mgz -jna -eow -eow -kGd +aaK +dkj +dkj +frY +roY +qqZ +dkj +dkj +rfD wef -eow -eow -eow -eow -lFB -vUP -jWI -eow -lFB +dkj +dkj +dkj +dkj +kNz +vJD +aaK +dkj +kNz uwk bQM kPz kPz bQM hxq -oRg -ovq -ovq -ehr -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -ovq -uvn +dpt +jLs +jLs +grO +jLs +jLs +jLs +jLs +jLs +jLs +jLs +jLs +jLs +jLs +jLs +jLs +jLs +jLs +jLs +jLs +aap nSx nSx xKX rGf xKX -qUw -gRA -aZL -mEU -roQ -qBe -qBe -qBe +bRU +mQZ +iOJ +ozh +rsW +gqe +gqe +gqe kqC kqC kqC -fKX -upY -rQB -iLl -ioc -ioc -sjZ +aKF +sHH +xAw +uJk +usz +usz +sJc kqC -huJ +dFC caF -xKE +njT mxQ cLu wBX mxQ -xLD -pYB -tOM -tOM -gbf -gbf -tOM -tOM -tOM -gbf -fLu -pYB -gbf -tOM -tOM -tOM -gbf -gbf -tOM -tOM -pYB -xkm +nPa +kfA +lAS +lAS +oYM +oYM +lAS +lAS +lAS +oYM +jax +kfA +oYM +lAS +lAS +lAS +oYM +oYM +lAS +lAS +kfA +xmg mxQ mxQ mWY tUs -arT -tOM -gbf -fOT -jzP -ydK -ydK -qzb -tdq +amx +lAS +oYM +nVq +lXf +nLl +nLl +jYd +mXT hfd ucj bBA bBA rZi eMU -fHb -fHb -fHb -tsc -bEk -tsc -ogf -fWI +euC +euC +euC +ssD +iSi +ssD +hbC +ogo bQM bQM bQM @@ -81396,70 +81414,70 @@ cAW cAW jmG cKa -kjt -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz +xMR +roY +roY +roY +roY +roY +roY +roY +roY wef -mgz -mgz -mgz -mgz -rLG -vUP -kjt -mgz -rLG +roY +roY +roY +roY +iZV +vJD +xMR +roY +iZV uwk bQM kPz kPz bQM hxq -oRg -ovq -kDw -kgG -kgG -kgG -kgG -kgG -kgG -ujb -ovq -kDw -kgG -kgG -kgG -kgG -kgG -kgG -ujb -ovq -uvn +dpt +jLs +mDV +iSQ +iSQ +iSQ +iSQ +iSQ +iSQ +xVP +jLs +mDV +iSQ +iSQ +iSQ +iSQ +iSQ +iSQ +xVP +jLs +aap cVV nSx -nVE +jzY xKX -uGL -mEU -qBe -gRA -aZL -mEU -qBe -qBe -uud -mwu +sGb +ozh +gqe +mQZ +iOJ +ozh +gqe +gqe +uix +mNg ntv -hqX -vds -vds +gXL +dHp +dHp jTJ jTJ vRA @@ -81467,55 +81485,55 @@ blG jTJ jTJ kqC -pim +oSo kqC mxQ tUs mxQ mxQ -pYB -tOM -gbf -gbf -ekx -tOM -tOM -dXT -egz -fpg -nmM -aMr -hDS -egz -xBu -tOM -tOM -beB -gbf -gbf -tOM -pYB +kfA +lAS +oYM +oYM +xoF +lAS +lAS +kIc +pwi +fbT +mBV +wPL +fNc +pwi +uIa +lAS +lAS +bPS +oYM +oYM +lAS +kfA mxQ mxQ uSY tUs -qzb -rxM -uMN -fOT -apu -gbf -gbf -fWy -vUZ +jYd +cNn +wPF +nVq +rev +oYM +oYM +sTV +hHv tuX vEi vEi vEi vEi vEi -faD -oyO +hhh +eKu bzO tan tan @@ -81608,126 +81626,126 @@ cAW cAW jmG cKa -ndQ -amn -amn -amn -amn -amn -amn -amn -amn +eXC +vII +vII +vII +vII +vII +vII +vII +vII ljc -amn -amn -amn -amn -tPB -vUP -kXk -ylr -tPB +vII +vII +vII +vII +dyM +vJD +ikq +raD +dyM uwk bQM kPz kPz bQM hxq -oRg -ovq -peP +dpt +jLs +wGm vnr hxq vnr vnr hxq vnr -sTw -ovq -peP +elC +jLs +wGm oUg -qFO -qFO +fPF +fPF oUg oUg oUg -yfA -ovq -peP +ljA +jLs +wGm nSx nSx -xgC -roQ -gRA -qBe -hdR -dVu +ajD +rsW +mQZ +gqe +sad +vEX nSx -okE -qBe -qBe -qBe +qKF +gqe +gqe +gqe kqC kqC kqC -xbM -upY +mcc +sHH sqC -vVx -qQb -qQb -tlF +cXY +kfl +kfl +dEo hfT -ecU -iSg -vTA +dAB +xng +dIq vDO tUs vDO -pYB -tOM -gbf -tOM -tOM -tOM -tYD -egz -xkq +kfA +lAS +oYM +lAS +lAS +lAS +qvL +pwi +xcJ mxQ mxQ -kKQ -vhk +pwg +nYA mxQ mxQ -tSL -egz -jOv -tOM -tOM -tOM -gbf -tOM -pYB +ozg +pwi +qnc +lAS +lAS +lAS +oYM +lAS +kfA mxQ -rQN -tOM -rTD -lUv -gbf -fOT -apu -gbf +sfw +lAS +nBO +pVv +oYM +nVq +rev +oYM vEK -fWy -lUv -gbf -pYB -eBS -pYB -gbf -gbf -gbf -gbf +sTV +pVv +oYM +kfA +atE +kfA +oYM +oYM +oYM +oYM bzO bQM kPz @@ -81823,19 +81841,19 @@ cKa cKa cKa cKa -wsw -dVA -vUP -dVA -vUP -mgz -mgz -mgz -vUP -dVA -gtr -gtr -gtr +yke +ggB +vJD +ggB +vJD +roY +roY +roY +vJD +ggB +czC +czC +czC cKa cKa cKa @@ -81845,100 +81863,100 @@ kPz kPz bQM hxq -oRg -ovq -uvn +dpt +jLs +aap hxq hoH bQM bQM bQM hxq -oRg -qFO -uvn -jSZ -ovq -sIg -uwb -wvU +dpt +fPF +aap +dgB +jLs +hfl +lFO +eCg oUg -oRg -vdN -uvn -uFC -qyM -aZL -hdR -roQ -gRA -aZL -hdR -dhc +dpt +tTV +aap +fvk +oHI +iOJ +sad +rsW +mQZ +iOJ +sad +ygS nSx -okE -qBe -uud -wXQ +qKF +gqe +uix +fII ntv -hqX -vds -vds +gXL +dHp +dHp ntv -kUR -sIj -hkA -bDv -jCO -fOK -iSg -vTA +mpT +jOO +xbB +ePf +jqX +kQY +xng +dIq bzO mxQ mxQ -pYB -tOM -gbf -tOM -rko -egz -xkq +kfA +lAS +oYM +lAS +kjA +pwi +xcJ mxQ jjg mxQ -wGA -pYB -pYB -cwM +eBC +kfA +kfA +ers mxQ jjg mxQ -cBn -egz -sGg -tOM -gbf -tOM -pYB +aqW +pwi +uOb +lAS +oYM +lAS +kfA mxQ mxQ mxQ -sBW -kyh -gbf -fOT -apu -gbf +vkZ +ncQ +oYM +nVq +rev +oYM mxk mxQ mxQ -tOM -tOM -tOM -tOM -tOM -tOM -tOM +lAS +lAS +lAS +lAS +lAS +lAS +lAS bzO bzO bzO @@ -82034,21 +82052,21 @@ jmG cKa cKa cKa -pQc -mgz -mgz -mgz -mgz -vUP -mgz -mgz -mgz -vUP -mgz -mgz -mns -vUP -vUP +mUV +roY +roY +roY +roY +vJD +roY +roY +roY +vJD +roY +roY +xuw +vJD +vJD tBP vNq vnr @@ -82057,91 +82075,91 @@ kPz kPz bQM hxq -oRg -ovq -uvn +dpt +jLs +aap hxq bQM bQM bQM bQM hxq -oRg -ovq -ukg -jSZ -jSZ -mVk -ovq -cLS +dpt +jLs +odH +dgB +dgB +iOG +jLs +aWP oUg -oRg -ovq -uvn -ovq -qyM -gRA -aZL -mEU -roQ -gRA -aZL -qEC -roQ -gRA -qBe -qBe +dpt +jLs +aap +jLs +oHI +mQZ +iOJ +ozh +rsW +mQZ +iOJ +pKz +rsW +mQZ +gqe +gqe kqC kqC kqC -sKr -upY +qBQ +sHH ntv -kUR -sIj -hkA -nZI -sWr -sIj -iBr -hkA +mpT +jOO +xbB +pOd +mwL +jOO +aRG +xbB bzO mxQ -pYB -eTr -gbf -ekx -tOM -xpM +kfA +eCA +oYM +xoF +lAS +neX mxQ jjg mxQ -tVY -jzP -gbf -pYB -pYB -gbf -pWl -ogs +jMz +lXf +oYM +kfA +kfA +oYM +nyk +swh mxQ jjg mxQ -vUZ -tOM -beB -jMv -eTr -pYB +hHv +lAS +bPS +wqx +eCA +kfA bzO bzO -aGR -tOM -gbf -fOT -apu -gbf -tOM +oeG +lAS +oYM +nVq +rev +oYM +lAS mxQ mxQ mxQ @@ -82247,20 +82265,20 @@ cKa cKa cKa cKa -mgz -rAw -rAw -xKP +roY +uTp +uTp +jkZ niw niw oKn niw jfp -pho -mgz -mgz -vUP -vUP +dYP +roY +roY +vJD +vJD tBP vNq vnr @@ -82269,95 +82287,95 @@ kPz kPz bQM hxq -oRg -ovq -uvn +dpt +jLs +aap hxq bQM bQM bQM bQM hxq -oRg -ovq -lAE -mVk -jSZ -grg -uen -ujz +dpt +jLs +flm +iOG +dgB +eGg +tAk +mhu oUg -oRg -jUP -uvn -ovq -qyM -roQ -gRA -aZL -hdR -dVu +dpt +kCK +aap +jLs +oHI +rsW +mQZ +iOJ +sad +vEX nSx -asf -hdR -roQ -gRA -uud -iIG +urc +sad +rsW +mQZ +uix +jGV ntv -hqX -vds -vds +gXL +dHp +dHp ntv -kUR -sIj -hkA -qTQ -jfT -drd -hEk -myJ +mpT +jOO +xbB +ngr +fKr +fAV +dxO +jLS bzO bzO -pYB -tOM -gbf -tOM -tYD -xkq +kfA +lAS +oYM +lAS +qvL +xcJ jjg -vRk -pRD -bTC -apu -gbf -pYB -voI -gbf -fOT -nBw -fXW -ldF +xTe +beV +rQP +rev +oYM +kfA +ycN +oYM +nVq +xUz +rzR +byn jjg -cBn -jOv -tOM -gbf -tOM -cyR +aqW +qnc +lAS +oYM +lAS +dxJ bzO bzO -pFW -tOM -gbf -fOT -apu -xdT -tOM -gbf -tOM -gbf -tOM +pmg +lAS +oYM +nVq +rev +glI +lAS +oYM +lAS +oYM +lAS bzO bzO bQM @@ -82457,22 +82475,22 @@ jmG jmG jmG jmG -pcN -vUP -mgz -rAw -rAw -vsr +vRj +vJD +roY +uTp +uTp +vvk nmm gWg nmm nmm wJd -lFB -mns -mgz -vUP -vUP +kNz +xuw +roY +vJD +vJD tBP vNq vnr @@ -82481,95 +82499,95 @@ kPz kPz bQM hxq -oRg -ovq -uvn +dpt +jLs +aap hxq bQM bQM bQM bQM hxq -erb -vhy -uvn -lpW -gyP -gPV -gyP -pBW +eSg +bQx +aap +sJl +bpq +dnp +bpq +ovZ oUg -oRg -xHi -uvn -ovq -qyM -mEU -roQ -gRA -aZL -mEU -nGO +dpt +ors +aap +jLs +oHI +ozh +rsW +mQZ +iOJ +ozh +qGl nSx -hsz -mEU -roQ -gRA +srz +ozh +rsW +mQZ kqC kqC kqC -xbM -upY +mcc +sHH jTJ -veW -vVN -vVN -uYo +qDd +tEb +tEb +dwg rBF rBF nhY mny bzO -gbf -tOM -gbf -tOM -tOM -xpM +oYM +lAS +oYM +lAS +lAS +neX mxQ mxQ -pRD -gbf -gbf -jzP -gbf -pYB -pYB -gbf -iYe -bnx -siy -nBw +beV +oYM +oYM +lXf +oYM +kfA +kfA +oYM +klb +vDK +sAk +xUz mxQ mxQ -vUZ -tOM -tOM -gbf -tOM -nup -gbf -tOM +hHv +lAS +lAS +oYM +lAS +xaK +oYM +lAS mxQ -gbf -fOT -apu -gbf -buJ -buJ -xTf -tOM -gbf +oYM +nVq +rev +oYM +pmo +pmo +dyp +lAS +oYM bzO bzO bzO @@ -82669,22 +82687,22 @@ cAW bQM fwn jmG -dVC -vUP -mgz -rAw -vrH -tAE +brS +vJD +roY +uTp +kfF +tyk nmm pqz nmm nmm wJd -rLG -mgz -mgz -rkF -qfi +iZV +roY +roY +aIp +jLN vNq vNq vNq @@ -82693,96 +82711,96 @@ vNq vNq vNq vNq -oRg -ovq -peP +dpt +jLs +wGm vnr hxq vnr vnr hxq vnr -yfA -ovq -peP +ljA +jLs +wGm oUg -vnl -qcy +fzt +umq oUg oUg oUg -yfA -ovq -uvn -vja +ljA +jLs +aap +xnq nSx -oQS -aZL -roQ -gRA -aZL -hdR -roQ -gRA -aZL -hdR -roQ -cfa -qwH -qwH -rzp -elO +kcP +iOJ +rsW +mQZ +iOJ +sad +rsW +mQZ +iOJ +sad +rsW +jZR +wnz +wnz +cCq +uFh jTJ -lmu -sIj -hkA -nZI -aoo -bcd -nZI -pxf +bxl +jOO +xbB +pOd +vlt +xOI +pOd +kZb bzO -gbf -tOM -gbf -tOM -rko -xkq +oYM +lAS +oYM +lAS +kjA +xcJ jjg -tVY -bxv -gbf -gbf -oox -lMV -pYB -pYB +jMz +otq +oYM +oYM +rvW +cDZ +kfA +kfA vjR doQ upM vjR -nBw -ogs +xUz +swh jjg -cBn -rxM -tOM -gbf -tOM -nup -gbf -bkg -ivN -gbf -fOT -apu -xEi -uVL -uVL -sqR -lTW -tOM -wwo +aqW +cNn +lAS +oYM +lAS +xaK +oYM +mKy +vaO +oYM +nVq +rev +dEF +hab +hab +oaX +vCv +lAS +ehg rzt bQM bQM @@ -82881,20 +82899,20 @@ cAW tan geF jmG -qPL -vUP -mgz -rAw -rAw -uLj +aDs +vJD +roY +uTp +uTp +bXk nmm rru nmm djB wJd -tPB -mgz -uhA +dyM +roY +avI oUg oUg oUg @@ -82905,96 +82923,96 @@ oUg oUg oUg oUg -oRg -nNS -sPi -sfe -bix -bix -bix -bix -bix -uPl -bww -sPi -bix -bix -mPf -bix -dWn -bix -uPl -kHS -iHB -reZ -qyM -gRA -aZL -mEU -dVu +dpt +hsd +uTi +wYG +eRi +eRi +eRi +eRi +eRi +gHW +nCC +uTi +eRi +eRi +kqr +eRi +eEh +eRi +gHW +eNm +cfc +lzW +oHI +mQZ +iOJ +ozh +vEX nSx -hsz -mEU -roQ -gRA -aZL -mEU -cfa -upY -qwH -qNF -efW +srz +ozh +rsW +mQZ +iOJ +ozh +jZR +sHH +wnz +avl +iUy jTJ -hcB -sIj -hkA -nZI -scG -iBr -iBr -iBr -rtw -gbf -gbf -tOM -tOM -xpM +mgC +jOO +xbB +pOd +kwv +aRG +aRG +aRG +ewy +oYM +oYM +lAS +lAS +neX mxQ mxQ -jzP -ydK -jzP -tlj -ekW -rKs -ngg -pYB -bnx -taS -jEa -hPu -ydK -pWl +lXf +nLl +lXf +xMT +fOw +qOG +roS +kfA +vDK +dvV +lqi +kOZ +nLl +nyk mxQ mxQ -jLD -tOM -tOM -gbf -nup -gbf -tOM -lDG -gbf -fOT -apu -gbf -oib -nvX -uTA -tOM -gbf -wwo +kGw +lAS +lAS +oYM +xaK +oYM +lAS +kbg +oYM +nVq +rev +oYM +ngd +nbv +odN +lAS +oYM +ehg rzt bQM bQM @@ -83095,18 +83113,18 @@ cAW jmG uwk jmG -mgz -xCg -iFP -kiT +roY +neH +wTV +rSh nmm nmm nmm nmm wJd -vUP -mgz -mgz +vJD +roY +roY oUg oUg oUg @@ -83115,97 +83133,97 @@ oUg oUg oUg oUg -qZc +llC qGn -oRg -ovq -ovq -ovq -jSZ -ovq -fun -xia -ovq -ovq -ovq -vdN -ovq -vhy -xia -ovq -sZZ -ovq -kvu -ovq -uvn -uFC -qyM -roQ -gRA -aZL -hdR -dVu +dpt +jLs +jLs +jLs +dgB +jLs +bRu +lYr +jLs +jLs +jLs +tTV +jLs +bQx +lYr +jLs +mPA +jLs +jfD +jLs +aap +fvk +oHI +rsW +mQZ +iOJ +sad +vEX nSx -hsz -tad +srz +dDy izZ -oQS -vao +kcP +bGT kqC -cYj -qwH +rGV +wnz mCF kqC jTJ -oaa -sIj -hkA -nZI -nZI -pWc -nZI -nZI -nZI -fWy -dxW -gbf -gbf -gSg +wXf +jOO +xbB +pOd +pOd +qzI +pOd +pOd +pOd +sTV +hll +oYM +oYM +dCb mxQ -qyq -gbf -gbf -gbf -eEC -rKs -saL -qCx +cbx +oYM +oYM +oYM +sru +qOG +vuW +ufX fEY bzO -gbf -drk -gbf -gbf -gbf -jHj +oYM +kqF +oYM +oYM +oYM +iGW mxQ -aNz -gbf -gbf -dxW -fWy -gbf -gbf -gbf -gbf -fOT -apu -gbf -buJ -qTW -ydK -tOM -gbf +qIk +oYM +oYM +hll +sTV +oYM +oYM +oYM +oYM +nVq +rev +oYM +pmo +cRs +nLl +lAS +oYM bzO bzO bQM @@ -83307,18 +83325,18 @@ cAW cAW cAW uwk -mgz -mgz -mgz -jPM +roY +roY +roY +tAf oBC jNl vrp mTa bsm -wqY -mgz -mgz +kNl +roY +roY oUg kSh wPz @@ -83327,98 +83345,98 @@ wPz wPz ofq oUg -qZc +llC qGn -wTC -kgG -kgG -kgG -gFZ -kgG -kgG -kgG -eRR -cXV -ovq -iKI -kgG -bRA -tMs -sTK -kgG -kgG -uTt -xZV -uvn -ovq -qyM -mEU -roQ -gRA -aZL -mEU -roQ -gRA -aZL -xNJ -gRA -gRA -iBr -iBr -iBr -iBr -iBr -qdf -oaa -sIj -iTE -iSg -iSg -iSg -iSg -iSg -iSg -waQ -pYB -pYB -pYB -ont -eGm -pYB -pYB -pYB -pYB -qCx -pYB -pYB -pYB -pYB -pYB -pYB -pYB -hpX -pYB -pYB -pYB -vuT -uBV -pYB -pYB -pYB -ekx -nvX -nvX -nvX -nvX -pRD -apu -xEi -nMn -icu -ugP -lTW -tOM -wwo +nOF +iSQ +iSQ +iSQ +suj +iSQ +iSQ +iSQ +tHP +ilv +jLs +pYO +iSQ +fCz +iEz +gzy +iSQ +iSQ +xjW +osR +aap +jLs +oHI +ozh +rsW +mQZ +iOJ +ozh +rsW +mQZ +iOJ +gWf +mQZ +mQZ +aRG +aRG +aRG +aRG +aRG +oAv +wXf +jOO +ovE +xng +xng +xng +xng +xng +xng +fBd +kfA +kfA +kfA +ubT +xyK +kfA +kfA +kfA +kfA +ufX +kfA +kfA +kfA +kfA +kfA +kfA +kfA +cvp +kfA +kfA +kfA +iCR +nVH +kfA +kfA +kfA +xoF +nbv +nbv +nbv +nbv +beV +rev +dEF +xrn +jXC +gUn +vCv +lAS +ehg rzt bQM bQM @@ -83519,18 +83537,18 @@ cAW cAW cAW jmG -mgz -mgz -mgz -mUd +roY +roY +roY +sTB ubQ okF fis lUs pqz -wqY -mgz -mgz +kNl +roY +roY mPW cpP aFK @@ -83541,96 +83559,96 @@ fnD oUg oUg qob -jGf -jGf -sdV +kSU +kSU +tBR oUg oUg oUg -jKv -tJH +kRM +sBr oUg -yfA -imG -peP +ljA +xoB +wGm oUg -uFd -hzF -aXp -iDA +jPO +dSz +aRY +nCw ggh -acO -xFL -pmC -xFL -gRA -aZL -mEU -cGS -mEU -gRA -gRA -wOG -gRA -cum -gRA -eZW -iBr -iBr -iBr -iBr -iBr -iBr -oaa -sIj -tPC -hEk -hEk -hEk -hEk -hEk -hEk -mkn -pYB -pYB -pYB -aMr -jYV -pYB -pYB -ngg -pYB -pYB -pYB -pYB -pYB -pYB -pYB -pYB -pYB -pYB -pYB -pYB -pYB -qzb -nmM -pYB -pYB -pYB -rsR -ydK -ydK -ydK -ydK -ydK -ekW -gbf -pLM -jWk -eHQ -tOM -gbf -wwo +rmS +tVu +tYc +tVu +mQZ +iOJ +ozh +vYA +ozh +mQZ +mQZ +sDp +mQZ +fiI +mQZ +gNK +aRG +aRG +aRG +aRG +aRG +aRG +wXf +jOO +oZc +dxO +dxO +dxO +dxO +dxO +dxO +wpp +kfA +kfA +kfA +wPL +gbn +kfA +kfA +roS +kfA +kfA +kfA +kfA +kfA +kfA +kfA +kfA +kfA +kfA +kfA +kfA +kfA +jYd +mBV +kfA +kfA +kfA +eNs +nLl +nLl +nLl +nLl +nLl +fOw +oYM +iXz +hIu +xRg +lAS +oYM +ehg rzt bQM bQM @@ -83731,18 +83749,18 @@ cAW cAW cAW uwk -mgz -xCh -mgz -mUd +roY +jyc +roY +sTB hpz hxM fHK iwT nmm -wqY -pUG -mgz +kNl +xvs +roY puE hTf qGn @@ -83753,96 +83771,96 @@ pbp qGn pbp qGn -oRg -kHF -uvn +dpt +eph +aap oUg -mNN -wFM -ehr -ovq -lpW -oRg -ovq -uvn -nvi -wMe -jQc -hGW -lFm -nUm -oRg -ovq -lAE -vja +qvk +tCj +grO +jLs +sJl +dpt +jLs +aap +eBs +cWM +dCA +lFx +cky +laD +dpt +jLs +flm +xnq nSx -hsz -mEU -gRA -dJt +srz +ozh +mQZ +oFv izZ bEX bEX bEX iCU -gRA -gRA -iBr -qdf -iBr -iBr -iBr -iBr -oaa -sIj -lHw -sFr -sFr -nZI -nZI -nZI -gRg -fWy -gbf -dxW -gbf -gSg +mQZ +mQZ +aRG +oAv +aRG +aRG +aRG +aRG +wXf +jOO +ere +wEn +wEn +pOd +pOd +pOd +eEk +sTV +oYM +hll +oYM +dCb mxQ -xcz -gbf -gbf -gbf -ubo -ubo +uLH +oYM +oYM +oYM +rhF +rhF mxQ -opM -pYB -tWz -duV -lAM -gbf -gbf -gbf -jHj +jxa +kfA +tuB +kAo +tLd +oYM +oYM +oYM +iGW mxQ -dNc -gbf -dxW -gbf -fWy -gbf -gbf -tOM -gbf -gbf -gbf -gbf -buJ -thV -ydK -tOM -gbf -wwo +enh +oYM +hll +oYM +sTV +oYM +oYM +lAS +oYM +oYM +oYM +oYM +pmo +vNY +nLl +lAS +oYM +ehg rzt bQM bQM @@ -83943,17 +83961,17 @@ cAW cAW cAW jmG -mgz -mgz -rAw -kiT +roY +roY +uTp +rSh wyU ujs nmm nmm wJd -vUP -mgz +vJD +roY wef puE cJv @@ -83965,96 +83983,96 @@ eqQ eqQ eqQ eqQ -oRg -kHF -uvn +dpt +eph +aap oUg -mju -ovq -cLS -ekS -ePU -oRg -vhy -dkX -nvi -orD -oiX -qgv -aEQ -nUm -uVH -xFL -pmC -xFL -hdR -ntx -kSe -leN -mEU +gDz +jLs +aWP +wQn +vyU +dpt +bQx +sjc +eBs +rjM +tTM +jeY +akc +laD +oHk +tVu +tYc +tVu +sad +ovB +vxp +qvx +ozh izZ -fOe -rez -xJn +bzG +lEz +waz bEX -cRM -gRA +uRe +mQZ bhX -iBr -xMO -iDg -urv -avT -gVT -sIj -lHw -nZI -xyw -cOB -iBr -iBr -rtw -gbf -gbf -tOM -tOM -xpM +aRG +vAi +mNJ +bVk +oan +nZT +jOO +ere +pOd +plc +utC +aRG +aRG +ewy +oYM +oYM +lAS +lAS +neX mxQ mxQ -pYB -uTw -pYB -pYB -nKf -gbf -pYB -pYB -hWG -qQy -pRD -pRD -khw -htT +kfA +joS +kfA +kfA +wDF +oYM +kfA +kfA +xLI +dZc +beV +beV +luU +med mxQ mxQ -vUZ -tOM -tOM -gbf -nup -gbf -tOM -tOM -tOM -tOM -gbf -lTW -uVL -hUj -dWp -lTW -tOM -wwo +hHv +lAS +lAS +oYM +xaK +oYM +lAS +lAS +lAS +lAS +oYM +vCv +hab +gIF +ptZ +vCv +lAS +ehg rzt bQM bQM @@ -84155,18 +84173,18 @@ cAW cAW cAW uwk -mgz -rAw -rAw -vsr +roY +uTp +uTp +vvk nmm nmm cYT nmm wJd -lFB +kNz wef -mgz +roY qrz puE lzn @@ -84177,95 +84195,95 @@ eqQ eqQ eqQ eqQ -oRg -kHF -uvn +dpt +eph +aap eUi -bGB -vhy -ovq -pse -ovq -oRg -ovq -uvn -nvi -tPA -lou -fwg -qAe -nUm -oRg -ovq -uvn -uZP -aZL -aZL -mEU -gRA -gRA +xup +bQx +jLs +rWZ +jLs +dpt +jLs +aap +eBs +igD +uin +rvR +aag +laD +dpt +jLs +aap +dfZ +iOJ +iOJ +ozh +mQZ +mQZ izZ -bIR +uFc gWq -xJn +waz bEX -lbL +eJP xKX iyc bhX -iBr -qdf -iDg -iBr -oaa -sIj -hkA -nZI -iBr -fdC -iBr -iBr -myA -gbf -tOM -gbf -tOM -rdt -rsQ +aRG +oAv +mNJ +aRG +wXf +jOO +xbB +pOd +aRG +wen +aRG +aRG +mTq +oYM +lAS +oYM +lAS +flg +wOc mxQ -gbf -gbf -gbf -jMv -pYB -gbf -pYB -ioW -hXF -pRD -ota -gbf -jzP -pRx +oYM +oYM +oYM +wqx +kfA +oYM +kfA +qos +wAv +beV +fmM +oYM +lXf +uod jjg -tlC -kyh -tOM -gbf -tOM -nup -gbf -fvK +tQL +ncQ +lAS +oYM +lAS +xaK +oYM +qFg qbY -tOM -tOM -gbf -uSX -jWk -nvX -nvX -tOM -gbf +lAS +lAS +oYM +gqd +hIu +nbv +nbv +lAS +oYM bzO bzO bQM @@ -84367,18 +84385,18 @@ cAW cAW cAW jmG -mgz -rAw -rAw -gFN +roY +uTp +uTp +vgS nmm nmm nmm nmm wJd -rLG -mgz -pUG +iZV +roY +xvs puE eqQ qGn @@ -84389,96 +84407,96 @@ qGn qGn qGn qGn -oRg -kHF -uvn +dpt +eph +aap oUg -pBW -jew -vhy -ovq -mNN -wet -ovq -uvn -nvi -mrK -qRS -kHF -kHF -nUm -lBE -sNj -erh -ovq -gRA -ntx -kSe -gRA -gRA +ovZ +yhT +bQx +jLs +qvk +pYp +jLs +aap +eBs +hjb +gyI +eph +eph +laD +uGb +puB +kiW +jLs +mQZ +ovB +vxp +mQZ +mQZ izZ -nyF +hiK tOc tOc bgd -gRA -gRA +mQZ +mQZ bhX mhR bhX -iBr -dfA -iBr -oaa -sIj -hkA -nZI -qKq -cOB -iBr -aTL -vPF -gbf -tOM -gbf -tOM -tOM -xpM +aRG +nrL +aRG +wXf +jOO +xbB +pOd +qZL +utC +aRG +lBJ +xbu +oYM +lAS +oYM +lAS +lAS +neX mxQ mxQ -tOM -gjr -gbf -fgq -drk -pYB -pYB -gbf -pRD -gbf -gbf -oLX +lAS +uTk +oYM +lLU +kqF +kfA +kfA +oYM +beV +oYM +oYM +meG mxQ mxQ -vUZ -tOM -tOM -gbf -tOM -nup -gbf -bnx +hHv +lAS +lAS +oYM +lAS +xaK +oYM +vDK qbY -rVQ -tOM -gbf -mPg -ydK -lZm -buJ -tOM -gbf -jlU +gxN +lAS +oYM +egx +nLl +vZx +pmo +lAS +oYM +jfa rzt bQM bQM @@ -84579,18 +84597,18 @@ bQM cAW cAW uwk -mgz -rAw -rAw -srQ +roY +uTp +uTp +dLF nmm sUX nmm nmm nEN -tPB -mgz -mgz +dyM +roY +roY mPW vvM tet @@ -84601,96 +84619,96 @@ fnD oUg oUg qob -jGf -jGf -sdV +kSU +kSU +tBR oUg oUg oUg -ovq -kbj +jLs +hXi oUg -acO -xFL -uVk +rmS +tVu +lsU oUg -njG -sli -fbX -nxW +gUx +eza +bfs +eir oUg -vmL -ovq -uvn -ovq -ovq -aZL -mEU -gRA -fXo +dzk +jLs +aap +jLs +jLs +iOJ +ozh +mQZ +smh izZ bEX mrG bEX izZ -oQS -lco -oZx +kcP +fGM +vpk bhX -ahm -xMO -rSU -iBr -oaa -sIj -hkA -nZI -iBr -iBr -iBr -aco +uVv +vAi +fpl +aRG +wXf +jOO +xbB +pOd +aRG +aRG +aRG +uhb bzO bzO -pYB -tOM -gbf -tOM -kTD -rsQ +kfA +lAS +oYM +lAS +qMV +wOc mxQ -tOM -tOM -gbf -pYB -gbf -pYB -pYB -gbf -fOT -jzP -oLX -wYT +lAS +lAS +oYM +kfA +oYM +kfA +kfA +oYM +nVq +lXf +meG +kaH jjg -tlC -jrO -tOM -gbf -tOM -cyR +tQL +tsu +lAS +oYM +lAS +dxJ bzO bzO -pFW +pmg yfE uBq baE -tOM -lTW -lsO -uVL -iRG -lTW -gbf -jlU +lAS +vCv +cyU +hab +tiW +vCv +oYM +jfa rzt bQM bQM @@ -84791,18 +84809,18 @@ kPz bce cAW jmG -mgz -rAw -xCg -xKP +roY +uTp +neH +jkZ spl oNx uuJ oNx jWy -vUP -mgz -mgz +vJD +roY +roY jqt pTU wPz @@ -84811,97 +84829,97 @@ wPz wPz jPK oUg -qZc +llC qGn -vyw -bix -bix -bix -bix -fKu -tTv -bix -wGX -uPl -ovq -sPi -bix -uZZ -bix -bix -bBr -eds -uPl -ovq -hkB -cOL -ovq -ovq -ovq -oaa -oaa -oaa -kMV -oaa -kMV -oaa -kMV -oaa -tbj -oaa -uKb -evC -wzg -oaa -oaa -sIj -lHw -nZI -xyw -cOB -iBr -ume +bTe +eRi +eRi +eRi +eRi +dJl +ami +eRi +lJa +gHW +jLs +uTi +eRi +tBe +eRi +eRi +jgW +lHL +gHW +jLs +vsq +ucr +jLs +jLs +jLs +wXf +wXf +wXf +bmO +wXf +bmO +wXf +bmO +wXf +uFE +wXf +iiP +pEY +vzZ +wXf +wXf +jOO +ere +pOd +plc +utC +aRG +nds bzO bzO -pYB -eTr -gbf -rsR -tOM -xpM +kfA +eCA +oYM +eNs +lAS +neX mxQ mxQ mxQ -sHe -pYB -kBt -pYB -pYB -gbf -wdo -nEP +jcB +kfA +dMm +kfA +kfA +oYM +pON +mLE mxQ jjg mxQ -vUZ -tOM -oEQ -gbf -tOM -pYB +hHv +lAS +snO +oYM +lAS +kfA bzO bzO -gbf +oYM qbY -rVQ -tOM -gbf -tOM -nvX -jWk -nvX -tOM -eTr +gxN +lAS +oYM +lAS +nbv +hIu +nbv +lAS +eCA bzO bzO bQM @@ -85003,18 +85021,18 @@ fiq cAW cAW uwk -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz -mgz +roY +roY +roY +roY +roY +roY +roY +roY +roY +roY +roY +roY oUg oUg oUg @@ -85023,98 +85041,98 @@ oUg oUg oUg oUg -qZc +llC qGn -oRg -kHF -kHF -kHF -kHF -kHF -kHF -nVN -ojj -kHF -vTL -kBm -kHF -ojj -kHF -kHF -hcs -kHF -kHF -hcs -kHF -jLC -bix -fKu -bix -iSg -cJS -iSg -fVY -alK -jOd -iSg -jOd -njg -xGr -iSg -tyt -iSg -eQX -iSg -iSg -dBZ -lHw -nZI -iBr -iBr -iBr -dcy +dpt +eph +eph +eph +eph +eph +eph +skO +gxL +eph +rDl +aAH +eph +gxL +eph +eph +ybR +eph +eph +ybR +eph +xZk +eRi +dJl +eRi +xng +aQK +xng +pAt +kjz +vea +xng +vea +irK +hWJ +xng +iah +xng +mbe +xng +xng +bsJ +ere +pOd +aRG +aRG +aRG +xnW bzO bzO mxQ -pYB -tOM -gbf -tOM -rdt -jGC -rsQ +kfA +lAS +oYM +lAS +flg +lJy +wOc mxQ mxQ mxQ -aLz -pYB -pYB -mPn +eRH +kfA +kfA +fKF mxQ jjg mxQ -tlC -jGC -kyh -tOM -gbf -tOM -pYB +tQL +lJy +ncQ +lAS +oYM +lAS +kfA mxQ mxQ mxQ -gbf -gbf -gbf -gbf -tOM -gbf -gbf -tOM -gbf -lNR -gbf -uXK +oYM +oYM +oYM +oYM +lAS +oYM +oYM +lAS +oYM +dgz +oYM +bGt bzO bzO bzO @@ -85215,18 +85233,18 @@ fiq fiq tan jmG -mgz -mgz -mgz -mgz -mgz -vUP -vUP -vUP -vUP -mgz -mgz -mgz +roY +roY +roY +roY +roY +vJD +vJD +vJD +vJD +roY +roY +roY oUg oUg oUg @@ -85237,96 +85255,96 @@ oUg oUg oUg oUg -wTC -kgG -kgG -kgG -kgG -kgG -vyK -kgG -pXJ -kgG -kgG -kgG -kgG -pXJ -kgG -lqN -kgG -kgG -kgG -kgG -kgG -kgG -slR -slR -kgG -iIx -hEk -hEk -nZU -hEk -nZU -irE -nZU -hEk -mqM -hEk -hEk -hEk -hEk -hEk -hEk -hEk -rVi -nZI -xyw -cOB -iBr -brR +nOF +iSQ +iSQ +iSQ +iSQ +iSQ +gjg +iSQ +njC +iSQ +iSQ +iSQ +iSQ +njC +iSQ +soc +iSQ +iSQ +iSQ +iSQ +iSQ +iSQ +sOp +sOp +iSQ +kJI +dxO +dxO +mjD +dxO +mjD +rmG +mjD +dxO +mki +dxO +dxO +dxO +dxO +dxO +dxO +dxO +gmy +pOd +plc +utC +aRG +gCY vDO tUs mxQ -pYB -tOM -gbf -tOM -tOM -tOM -kTD -jGC -rsQ +kfA +lAS +oYM +lAS +lAS +lAS +qMV +lJy +wOc mxQ mxQ -rqh -iAr +kPC +bPf mxQ mxQ -tlC -jGC -jrO -tOM -tOM -tOM -gbf -eTr -pYB +tQL +lJy +tsu +lAS +lAS +lAS +oYM +eCA +kfA mxQ tUs vDO -eBS -gbf -gbf -tOM -eTr -gLk -gLk -gLk -gLk -tOM -tOM -pti +atE +oYM +oYM +lAS +eCA +boh +boh +boh +boh +lAS +lAS +okM bzO bzO bzO @@ -85459,78 +85477,78 @@ hxq hxq hxq vnr -fjV -jGf -jGf +vtJ +kSU +kSU vNq -oRg -ixl -cCh -qby -ixl -gtP -ixl -ixl -ixl -ixl -uvn -oty -tUD -oty -koK -oaa -sga -oaa -kMV -oaa -jft -oaa -oaa -oaa -oaa -oaa -iEF -rBu -rBu -oaa -iBr -iBr -iBr -iBr +dpt +ycX +doB +kFM +ycX +aBm +ycX +ycX +ycX +ycX +aap +eix +dZA +eix +kaB +wXf +uCu +wXf +bmO +wXf +xCm +wXf +wXf +wXf +wXf +wXf +sde +tCf +tCf +wXf +aRG +aRG +aRG +aRG mxQ tUs mxQ mxQ -pYB -tOM -gbf -gbf -rsR -tOM -tOM -rdt -jGC -dOZ -uBV -ont -xcS -jGC -kyh -tOM -tOM -oEQ -gbf -gbf -tOM -pYB +kfA +lAS +oYM +oYM +eNs +lAS +lAS +flg +lJy +jka +nVH +ubT +vyF +lJy +ncQ +lAS +lAS +snO +oYM +oYM +lAS +kfA mxQ mxQ tUs bzO -tOM -tOM -gbf -tOM +lAS +lAS +oYM +lAS mxQ mLP uap @@ -85640,14 +85658,14 @@ cAW tan tan tan -tst -iPv -roH +mFf +hgp +cXw lRT -gxn -ijC -ijC -fdu +fhX +wHx +wHx +esE lRT cAW vnr @@ -85671,21 +85689,21 @@ bQM bQM kPz xDw -ibl -raC -tIW +tRa +fLa +ltV dOX -pmn -smR -fgN -bMF -smR -fDJ -fSp -fDJ -vlU -xSz -uYi +qqu +rZa +ljZ +kDg +rZa +qHC +arq +qHC +fxY +qcT +hlK lRT deL dzl @@ -85694,64 +85712,64 @@ dzl dzl dzl dzl -nie -rSU -iBr -enu -xNU -wkL -vMT -oaa -vMT -xNU -kKs -vMT -ksY -iBr -bnJ +skM +fpl +aRG +dEy +gOs +wpf +fTx +wXf +fTx +gOs +fyQ +fTx +vOz +aRG +ogd mxQ cLu kVk mxQ -xLD -pYB -tOM -tOM -gbf -gbf -tOM -tOM -tOM -gbf -pYB -pYB -gbf -tOM -tOM -tOM -gbf -gbf -tOM -tOM -pYB -bAf +nPa +kfA +lAS +lAS +oYM +oYM +lAS +lAS +lAS +oYM +kfA +kfA +oYM +lAS +lAS +lAS +oYM +oYM +lAS +lAS +kfA +pzG mxQ cZr tUs bzO -tOM -tOM +lAS +lAS vEK -tOM +lAS jjg -ekx -cqV -nvX -nvX -nvX -nvX -nvX -prL +xoF +pkG +nbv +nbv +nbv +nbv +nbv +izJ rzt bQM bQM @@ -85852,14 +85870,14 @@ cAW cAW pcu nfF -gID +xdy ruD -dde +jVC taY -ann -nGZ -nGZ -uYi +voS +hKI +hKI +hlK lRT cAW vnr @@ -85883,21 +85901,21 @@ xDw xDw xDw lRT -pVk -fDJ -hmq +hTG +qHC +kjo sIJ -qaL -hWk -vKz -dnX -hPO -dnX -qgk -jYt -dnX -tIW -uYi +iJf +qWa +lbe +sEi +kge +sEi +oMy +vED +sEi +ltV +hlK xDw cAW bQM @@ -85907,19 +85925,19 @@ sVv bQM rBF dzl -urv -xMO -gmg -nRQ -qNy -cdp -oaa -gmg -nLS -qpN -pwo -iBr -obE +bVk +vAi +kwm +cll +qmO +lRe +wXf +kwm +xYB +luH +wDV +aRG +dGj mxQ mxQ tUs @@ -85927,24 +85945,24 @@ cFX mxQ mxQ mxQ -kag -pYB -eTr -tOM -gbf -gbf -tOM -gbf -pYB -pYB -gbf -tOM -gbf -gbf -tOM -eTr -pYB -pYB +xjv +kfA +eCA +lAS +oYM +oYM +lAS +oYM +kfA +kfA +oYM +lAS +oYM +oYM +lAS +eCA +kfA +kfA mxQ iyf mxQ @@ -85952,18 +85970,18 @@ eoW tUs bzO bzO -tOM +lAS vEK -tOM +lAS jjg -fOT -gbf -gbf -gIo -wYq -gbf -gbf -xlx +nVq +oYM +oYM +vSk +sFN +oYM +oYM +vqM rzt bQM bQM @@ -86064,14 +86082,14 @@ fiq fiq pcu fiq -gID -gID -gID +xdy +xdy +xdy taY -qaL -nGZ -nGZ -uYi +iJf +hKI +hKI +hlK lRT cAW vnr @@ -86089,27 +86107,27 @@ bQM bQM xDw xDw -sda -qeN -wSD -bHP -vlU -lqI -qaL -gtT -uYi +uri +lwO +eqC +foT +fxY +hsA +iJf +jOW +hlK dOX -onB -mbz -ibl -vKz -rpT -dnX -vKz -raC -bec -uYi -sDS +jdc +vbn +tRa +lbe +idq +sEi +lbe +fLa +eWh +hlK +rKB xDw dhi fQV @@ -86119,19 +86137,19 @@ sHO fQV erT dzl -mQV -iBr -vMT -rZN -krE -vMT -wzg -vMT -rZN -krE -vMT -iBr -iBr +kng +aRG +fTx +lnf +aVA +fTx +vzZ +fTx +lnf +aVA +fTx +aRG +aRG ffZ tUs tlQ @@ -86141,20 +86159,20 @@ vFn mxQ iyf mxQ -xLD -pYB -tOM -tOM -gbf -gbf -pYB -pYB -gbf -gbf -tOM -tOM -pYB -pYB +nPa +kfA +lAS +lAS +oYM +oYM +kfA +kfA +oYM +oYM +lAS +lAS +kfA +kfA mxQ mxQ mxQ @@ -86164,18 +86182,18 @@ hpW tUs tUs bzO -tOM +lAS vEK -tOM +lAS jjg -rsR -ydK -ydK -ydK -ydK -ydK -ydK -eyj +eNs +nLl +nLl +nLl +nLl +nLl +nLl +qgq rzt bQM bQM @@ -86280,10 +86298,10 @@ fiq nfF nfF lRT -qaL -cUd -cUd -uYi +iJf +dlW +dlW +hlK lRT cAW bce @@ -86300,28 +86318,28 @@ kPz bQM xDw xDw -qeN -wSD -nGZ -nGZ -nGZ -nGZ -lqI -qaL -fDJ -uYi +lwO +eqC +hKI +hKI +hKI +hKI +hsA +iJf +qHC +hlK dOX -nSS -udE -utW -ibl -dnX -dnX -dnX -xEX -mfF -uYi -lOy +pkc +bGr +aCn +tRa +sEi +sEi +sEi +gnS +sYM +hlK +jBj lRT ajx afk @@ -86331,19 +86349,19 @@ afk afk iWq dzl -iBr -iBr -oaa -oaa -oaa -oaa -oaa -oaa -oaa -oaa -oaa -nZI -brR +aRG +aRG +wXf +wXf +wXf +wXf +wXf +wXf +wXf +wXf +wXf +pOd +gCY vDO tUs tUs @@ -86355,16 +86373,16 @@ tUs mxQ mxQ bzO -gbf -gbf -gbf -fWy -ekx -beB -fWy -gbf -gbf -jHj +oYM +oYM +oYM +sTV +xoF +bPS +sTV +oYM +oYM +iGW bzO mxQ mxQ @@ -86376,13 +86394,13 @@ tUs tUs tUs vDO -eBS +atE vEK -tOM +lAS mxQ -lPE -qbR -gcD +wMQ +kPv +cbC mxQ syV iyf @@ -86492,10 +86510,10 @@ pcu atp cAW lRT -pVk +hTG hjW hjW -mgE +cxe lRT cAW bce @@ -86511,29 +86529,29 @@ bQM kPz bQM xDw -ssC -vlU -nGZ -nGZ -wSD -nGZ -kNk -sPh -gTy -ifN -ncb +jyR +fxY +hKI +hKI +eqC +hKI +nJC +own +wew +rXT +uxY dOX -kaF -kka -qaL -kqJ -cUd -cUd -tUC -ncb -hXG -uYi -sgJ +aKc +aQE +iJf +joD +dlW +dlW +dIa +uxY +xmM +hlK +iRy xDw ajx afk @@ -86543,19 +86561,19 @@ afk afk iWq dzl -iBr -iBr -vMT -xNU -kKs -vMT -oaa -vMT -xNU -kKs -vMT -nZI -nZI +aRG +aRG +fTx +gOs +fyQ +fTx +wXf +fTx +gOs +fyQ +fTx +pOd +pOd mxQ mxQ mxQ @@ -86565,16 +86583,16 @@ mxQ mxQ iyf mxQ -xRo +oAH bzO bzO bzO -iHT -gbf -fOT -apu -gbf -iHT +sKP +oYM +nVq +rev +oYM +sKP bzO bzO bzO @@ -86588,17 +86606,17 @@ cZr eoW tUs bzO -tOM +lAS vEK -tOM +lAS mxQ -nQJ -iys -iFZ +xVR +ipJ +kwy bzO -eET -ldW -tyJ +loy +txS +jrn bzO bQM bQM @@ -86704,10 +86722,10 @@ pcu fiq cAW lRT -qaL -dnX -dnX -uYi +iJf +sEi +sEi +hlK lRT cAW bce @@ -86723,10 +86741,10 @@ bQM kPz bQM xDw -nGZ -nGZ -nGZ -vlU +hKI +hKI +hKI +fxY xDw xDw xDw @@ -86735,17 +86753,17 @@ hir hir hir dOX -eqi -tYt -bxy -cUd -tUC -cUd -guv -cUd -ncb -uYi -qhP +fye +gEv +jyK +dlW +dIa +dlW +gxx +dlW +uxY +hlK +tGF xDw ajx afk @@ -86755,38 +86773,38 @@ afk afk iWq dzl -ksY -iBr -gmg -nck -ayH -pwo -oaa -gmg -nRQ -vGM -pwo -nZI -nZI -pYB -fWy -xEW -cwM -gbf -cwM -gbf -wkA -tOM -tOM +vOz +aRG +kwm +kXH +jGP +wDV +wXf +kwm +cll +cDf +wDV +pOd +pOd +kfA +sTV +rOE +ers +oYM +ers +oYM +prP +lAS +lAS rzt bQM rzt -tOM -gbf -fOT -apu -gbf -aXv +lAS +oYM +nVq +rev +oYM +qLJ mxQ cZr eoW @@ -86800,17 +86818,17 @@ bzO bzO bzO bzO -tOM +lAS vEK -tOM +lAS mxQ -llE -nfe -bvg +itq +oAL +aIE bzO -klt -qFf -tyJ +lQd +btP +jrn bzO bQM bQM @@ -86916,48 +86934,48 @@ pcu cAW cAW xDw -qaL -cUd -cUd -uYi +iJf +dlW +dlW +hlK lRT lRT lRT cAW cAW lRT -gUu -gUu -gUu -gUu +nBB +nBB +nBB +nBB lRT bQM kPz bQM xDw -nGZ -ipz -nGZ +hKI +dYv +hKI xDw xDw bQM bQM xDw -tZz -jrT -vhd -fDJ -qaL -rrs -cUd -cUd -cUd -pvi -cUd -cUd -cUd -ncb -sXP +thU +diR +tVX +qHC +iJf +ojh +dlW +dlW +dlW +pzV +dlW +dlW +dlW +uxY +tNu xDw fdV jlH @@ -86967,38 +86985,38 @@ eOF jlH bUB rBF -lwn -iBr -vMT -rZN -krE -vMT -oaa -vMT -rZN -krE -vMT -nZI -nZI -pYB -nvX -nvX -nvX -nvX -nvX -beB -gbf -tOM -tOM +goM +aRG +fTx +lnf +aVA +fTx +wXf +fTx +lnf +aVA +fTx +pOd +pOd +kfA +nbv +nbv +nbv +nbv +nbv +bPS +oYM +lAS +lAS rzt kPz rzt -tOM -gbf -fOT -apu -gbf -ivr +lAS +oYM +nVq +rev +oYM +guQ vDO tUs tUs @@ -87012,13 +87030,13 @@ kPz bQM bQM bzO -tOM -kag -lKI +lAS +xjv +kGW mxQ -wSb -gPp -tIf +cGg +kte +tWq bzO rzt rzt @@ -87128,48 +87146,48 @@ pcu cAW cAW xDw -qaL +iJf hjW hjW -uYi -nGZ -gsX +hlK +hKI +nvO lRT lRT lRT lRT -rFw -nQF -rFw -nQF +eps +ffN +eps +ffN lRT lRT lRT lRT xDw -nGZ -nGZ -nGZ +hKI +hKI +hKI xDw bQM bQM bQM lRT -sLu +iuW hva -fUP -fDJ -qaL -fDJ -qLH -udB -fDJ -fDJ -fDJ -rPW -dmQ -nGZ -wBE +nSi +qHC +iJf +qHC +wdA +fsf +qHC +qHC +qHC +lHB +bFh +hKI +vYM xDw cAW bQM @@ -87179,38 +87197,38 @@ sVv bQM bQM rBF -iBr -iBr -iBr -iBr -iBr -oaa -oaa -oaa -iBr -nZI -iBr -nZI -nZI -pYB -ydK -ydK -ydK -ydK -kHv -apu -gbf -tOM -tOM +aRG +aRG +aRG +aRG +aRG +wXf +wXf +wXf +aRG +pOd +aRG +pOd +pOd +kfA +nLl +nLl +nLl +nLl +oiu +rev +oYM +lAS +lAS rzt bQM rzt -tOM -gbf -fOT -apu -gbf -tOM +lAS +oYM +nVq +rev +oYM +lAS mxQ bzO bzO @@ -87340,48 +87358,48 @@ cAW cAW cAW xDw -qaL -dnX -dnX -nCm -tIW -nGZ -nGZ -nGZ -fNN -gsX -nGZ -nGZ -nGZ -nGZ -ntw -ntw -cTD -ntw -lqI -lqI -lqI -gBP +iJf +sEi +sEi +mcE +ltV +hKI +hKI +hKI +piy +nvO +hKI +hKI +hKI +hKI +rUc +rUc +gnR +rUc +hsA +hsA +hsA +lpm xDw bQM bQM bQM xDw -dNC -wAt -oJK -fDJ -bSm -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -dZQ -ncb +yiD +aOJ +jUp +qHC +qyk +dlW +dlW +dlW +dlW +dlW +dlW +dlW +dlW +pbF +uxY lRT xDw xDw @@ -87396,34 +87414,34 @@ iRa iRa iRa dOX -bTp -lqI -lqI +aIh +hsA +hsA fjd -nZI -xXY -nZI -jgz -pYB -fWy -gbf -mPn -gbf -fOT -apu -gbf -tOM -eTr +pOd +ltu +pOd +kLo +kfA +sTV +oYM +fKF +oYM +nVq +rev +oYM +lAS +eCA bzO rzt bzO -pFW -gbf -fOT -apu -xEW -tOM -kUo +pmg +oYM +nVq +rev +rOE +lAS +fLO rzt kPz rzt @@ -87552,28 +87570,28 @@ cAW cAW cAW xDw -qaL -vOD -nGZ -nGZ -ibl -tIW -nGZ -ibl -dnX -tIW -nGZ -ibl -dnX -tIW -nGZ -ibl -eEQ -tIW -qaL -nGZ -nGZ -nGZ +iJf +oWz +hKI +hKI +tRa +ltV +hKI +tRa +sEi +ltV +hKI +tRa +sEi +ltV +hKI +tRa +pJo +ltV +iJf +hKI +hKI +hKI lRT sJN lRT @@ -87583,14 +87601,14 @@ hir hir hir dOX -iIl -cEb -cEb -cEb -cEb -cEb -cEb -vBZ +xfd +rTb +rTb +rTb +rTb +rTb +rTb +qUZ dOX sIJ dOX @@ -87603,39 +87621,39 @@ xDw bQM xAl xDw -lqC -lqC -lqC -lqC -lqC -lqC -lqC -lqC +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN fjd -nZI -mdY -nZI +pOd +pAB +pOd rBF rzt rzt rzt bzO -gbf -fOT -apu -gbf -xEW -gbf -gbf -gbf -gbf -jMv -gbf -fOT -apu -gbf -bkg -gZg +oYM +nVq +rev +oYM +rOE +oYM +oYM +oYM +oYM +wqx +oYM +nVq +rev +oYM +mKy +utf rzt bQM rzt @@ -87764,50 +87782,50 @@ cAW cAW cAW lRT -rbI -nim -lPA -nGZ -qaL -uYi -lqI -qaL -lqI -uYi -lqI -qaL -lqI -uYi -lqI -qaL -lqI -uYi -qaL -nGZ -nGZ -nGZ -nGZ -jiq -nGZ -vzp -nGZ -nGZ -vSW -nGZ -hQR -nGZ -nGZ -nGZ -qaL -uYi -nGZ -nGZ -nGZ -rnn -nGZ -xpw -szP -edY +utV +tqQ +orA +hKI +iJf +hlK +hsA +iJf +hsA +hlK +hsA +iJf +hsA +hlK +hsA +iJf +hsA +hlK +iJf +hKI +hKI +hKI +hKI +pCF +hKI +mWx +hKI +hKI +lOb +hKI +rMP +hKI +hKI +hKI +iJf +hlK +hKI +hKI +hKI +jal +hKI +aai +ddc +qbT xeO dNh dNh @@ -87815,14 +87833,14 @@ xDw bQM bQM xDw -lqC -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -lqC +cfN +hKI +hKI +hKI +hKI +hKI +hKI +cfN lRT rBF rBF @@ -87832,22 +87850,22 @@ bQM bQM bQM bzO -gbf -fOT -nBw -nvX -nvX -nvX -nvX -nvX -nvX -nvX -nvX -pRD -apu -gbf -eTr -iwi +oYM +nVq +xUz +nbv +nbv +nbv +nbv +nbv +nbv +nbv +nbv +beV +rev +oYM +eCA +byt rzt bQM rzt @@ -87977,64 +87995,64 @@ cAW cAW xDw xDw -bxy -nim -nGZ -bxy -ncb -nGZ -bxy -cUd -ncb -nGZ -bxy -cUd -ncb -nGZ -bxy -cUd -ncb -qaL -nGZ -nGZ +jyK +tqQ +hKI +jyK +uxY +hKI +jyK +dlW +uxY +hKI +jyK +dlW +uxY +hKI +jyK +dlW +uxY +iJf +hKI +hKI aHj -nGZ +hKI hjW hjW -nGZ +hKI wnq hjW -nGZ +hKI hjW -hQR -vlU -nGZ -nGZ -qaL -uYi -nGZ +rMP +fxY +hKI +hKI +iJf +hlK +hKI hjW hjW -vlU +fxY hjW -nGZ -ibl -cVu -dnX +hKI +tRa +mDs +sEi xeO smv xDw bQM bQM xDw -lqC -lqC -lqC -lqC -lqC -lqC -lqC -lqC +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN xDw kPz kPz @@ -88044,22 +88062,22 @@ kPz kPz kPz bzO -eJt -fOT -jzP -ydK -ydK -ydK -ydK -ydK -ydK -ydK -ydK -ydK -oEQ -gbf -tOM -oZS +tnH +nVq +lXf +nLl +nLl +nLl +nLl +nLl +nLl +nLl +nLl +nLl +snO +oYM +lAS +htL rzt kPz rzt @@ -88190,59 +88208,59 @@ cAW cAW xDw xDw -bxy -cUd -vnM -nGZ -nGZ -nGZ -nGZ -rJW -hSO -hSO -hSO -pkB -hSO -hSO -ign -hSO -qaL -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -mSP -nGZ -nGZ -qaL -uYi -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -qaL -nGZ -fDJ -hbH -nGZ +jyK +dlW +hBn +hKI +hKI +hKI +hKI +lmM +mcN +mcN +mcN +rBR +mcN +mcN +crw +mcN +iJf +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +qcK +hKI +hKI +iJf +hlK +hKI +hKI +hKI +hKI +hKI +hKI +iJf +hKI +qHC +nsC +hKI lRT xDw xDw lRT -bTp -lqI -lqI -lqI +aIh +hsA +hsA +hsA lRT fjd lRT @@ -88256,21 +88274,21 @@ bQM bQM kPz bzO -gbf -fOT -apu -gbf -gbf -gbf -gbf -gbf -gbf -gbf -gbf -gbf -gbf -gbf -tOM +oYM +nVq +rev +oYM +oYM +oYM +oYM +oYM +oYM +oYM +oYM +oYM +oYM +oYM +lAS mxQ bzO bzO @@ -88418,43 +88436,43 @@ lRT lRT lRT lRT -vgC -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -tIW -fDJ -uYi +dhV +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +ltV +qHC +hlK xeO -yiT -lqC -lqC -lqC -lqC -nGZ -nGZ -nGZ +qDY +cfN +cfN +cfN +cfN +hKI +hKI +hKI lRT xeO lRT @@ -88468,21 +88486,21 @@ bQM bQM bQM bzO -gbf -fOT -apu -gbf -tOM -tOM -aAk -tOM -tOM -tOM -tOM -tOM -tOM -tOM -ivr +oYM +nVq +rev +oYM +lAS +lAS +kLQ +lAS +lAS +lAS +lAS +lAS +lAS +lAS +guQ vDO tUs tUs @@ -88630,43 +88648,43 @@ bQM vzB gws vzB -qaL -nGZ -lqI -eDp -qGe -unp -wKx -eDp -qGe -unp -wKx -eDp -qGe -unp -wKx -eDp -qGe -unp -wKx -eDp -qGe -unp -wKx -eDp -lqI -uYi -cUd -ncb -nGZ -gtg -nGZ -nGZ -nGZ -nGZ -nGZ -vlU -nGZ +iJf +hKI +hsA +wFk +nGk +uhH +uol +wFk +nGk +uhH +uol +wFk +nGk +uhH +uol +wFk +nGk +uhH +uol +wFk +nGk +uhH +uol +wFk +hsA +hlK +dlW +uxY +hKI +vQr +hKI +hKI +hKI +hKI +hKI +fxY +hKI lRT xeO lRT @@ -88680,18 +88698,18 @@ kPz kPz kPz bzO -gbf -fOT -apu -kBt -tOM -tOM -tOM -tOM -eTr -tOM -tOM -tOM +oYM +nVq +rev +dMm +lAS +lAS +lAS +lAS +eCA +lAS +lAS +lAS vEK vEK fTs @@ -88842,9 +88860,9 @@ bQM vzB gws vzB -qaL -nGZ -uNs +iJf +hKI +owG iOa xeO xeO @@ -88866,19 +88884,19 @@ xeO xeO xeO iOa -eLB -uYi -nGZ -nGZ -nGZ -lqC -lqC -lqC -lqC -lqC -lqC -lqC -lqC +nBR +hlK +hKI +hKI +hKI +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN lRT xeO lRT @@ -88892,17 +88910,17 @@ bQM bQM bQM bzO -eJt -fOT -apu -gbf -pYB -pYB -pYB -pYB -hZG -pYB -pYB +tnH +nVq +rev +oYM +kfA +kfA +kfA +kfA +aMz +kfA +kfA bzO rzt rzt @@ -89046,17 +89064,17 @@ cAW cAW bQM bQM -dPZ -ogf -ogf -ogf -ogf -tsc -bEk -tsc -dxc -pYD -ehy +pfi +hbC +hbC +hbC +hbC +ssD +iSi +ssD +tPi +viV +wJf xeO xeO cCx @@ -89078,18 +89096,18 @@ xeO cCx xeO xeO -oGR -uYi -nGZ -ieA +sLo +hlK +hKI +iWW hQh hQh hQh hQh hQh hQh -fDJ -fDJ +qHC +qHC lRT lRT fjd @@ -89104,10 +89122,10 @@ bQM cAW bzO bzO -ofA -axx -axx -lbK +iqR +xnp +xnp +pIK bzO bzO bzO @@ -89258,7 +89276,7 @@ bQM bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -89266,9 +89284,9 @@ bQM vzB gws vzB -qaL -czf -aTe +iJf +bYS +jCp xeO xeO xeO @@ -89290,48 +89308,48 @@ xeO xeO xeO xeO -rrD -uYi +pAN +hlK hjW -ieA +iWW xeO bym uKx uKx xew vem -uGI -uGI -paI -tsc -paI -tsc -bEk -ogf -bEk -ogf -ogf -ogf -ogf -ogf -tsc -kSD -sNQ -aeo -aeo -dPr -cUU -mvF -kkU -kkU -kkU +eXr +eXr +yls +ssD +yls +ssD +iSi +hbC +iSi +hbC +hbC +hbC +hbC +hbC +ssD +kqe +eML +lNg +lNg +npz +ahR +vrN +dUZ +dUZ +dUZ xDq naf naf cqz ggd -ogf -mRM +hbC +cbb bce cAW cAW @@ -89470,7 +89488,7 @@ bQM bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -89478,9 +89496,9 @@ bQM vzB gws vzB -qaL -czf -tgK +iJf +bYS +hHh xeO xeO xeO @@ -89502,10 +89520,10 @@ xeO xeO xeO xeO -cfG -uYi +aVK +hlK hjW -ieA +iWW xeO lpl jVE @@ -89543,7 +89561,7 @@ kEy sDL bQM bQM -bmT +gEU bce cAW cAW @@ -89682,7 +89700,7 @@ bQM bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -89690,9 +89708,9 @@ bQM vzB gws vzB -qaL -czf -uNs +iJf +bYS +owG xeO xeO xeO @@ -89714,48 +89732,48 @@ xeO xeO xeO mUA -eLB -uYi +nBR +hlK hjW -ieA +iWW xeO fSz lIv lIv xFP sov -uGI -uGI -paI -tsc -paI -tsc -bEk -ogf -bEk -ogf -ogf -ogf -ogf -ogf -tsc -vmt -aeo -aeo -aeo -aeo -vmt -mvF -kkU -kkU -kkU +eXr +eXr +yls +ssD +yls +ssD +iSi +hbC +iSi +hbC +hbC +hbC +hbC +hbC +ssD +hPW +lNg +lNg +lNg +lNg +hPW +vrN +dUZ +dUZ +dUZ iBP vcf vcf lku mzT -ogf -fWI +hbC +ogo bce cAW cAW @@ -89894,7 +89912,7 @@ bQM bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -89902,9 +89920,9 @@ bQM vzB gws vzB -qaL -czf -ehy +iJf +bYS +wJf xeO xeO xeO @@ -89926,10 +89944,10 @@ xeO xeO xeO xeO -oGR -uYi -nGZ -ieA +sLo +hlK +hKI +iWW xeO xeO xeO @@ -90106,7 +90124,7 @@ bQM bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -90114,9 +90132,9 @@ bQM vzB gws vzB -qaL -czf -aTe +iJf +bYS +jCp xeO xeO xeO @@ -90138,48 +90156,48 @@ xeO xeO xeO xeO -rrD -uYi +pAN +hlK hjW -ieA +iWW xeO bym uKx uKx xew vem -uGI -uGI -paI -tsc -paI -tsc -bEk -ogf +eXr +eXr +yls +ssD +yls +ssD +iSi +hbC xDq naf naf cqz -cQv -ogf -tsc -vmt -aeo -aeo -aeo -aeo -vmt -mvF -kkU -kkU -kkU -ogf -kkU -ogf -ogf -ogf -ogf -mRM +bFj +hbC +ssD +hPW +lNg +lNg +lNg +lNg +hPW +vrN +dUZ +dUZ +dUZ +hbC +dUZ +hbC +hbC +hbC +hbC +cbb cAW bce bce @@ -90318,7 +90336,7 @@ cAW bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -90326,9 +90344,9 @@ bQM vzB gws vzB -qaL -czf -tgK +iJf +bYS +hHh xeO xeO xeO @@ -90350,10 +90368,10 @@ xeO xeO xeO xeO -cfG -uYi +aVK +hlK hjW -ieA +iWW xeO lpl jVE @@ -90391,7 +90409,7 @@ bQM bQM bQM bQM -bmT +gEU cAW cAW bce @@ -90530,7 +90548,7 @@ cAW bQM bQM bQM -bmT +gEU bQM bQM bQM @@ -90538,9 +90556,9 @@ bQM vzB gws vzB -qaL -czf -uNs +iJf +bYS +owG xeO xeO xeO @@ -90562,48 +90580,48 @@ xeO xeO xeO xeO -jKz -uYi +rPu +hlK hjW -ieA +iWW xeO fSz lIv lIv xFP sov -uGI -uGI -paI -tsc -paI -tsc -bEk -ogf +eXr +eXr +yls +ssD +yls +ssD +iSi +hbC iBP vcf vcf lku -vev -ogf -tsc -vmt -aeo -aeo -aeo -aeo -vmt -mvF -kkU -kkU -kkU -ogf -kkU -ogf -ogf -ogf -ogf -fWI +bOz +hbC +ssD +hPW +lNg +lNg +lNg +lNg +hPW +vrN +dUZ +dUZ +dUZ +hbC +dUZ +hbC +hbC +hbC +hbC +ogo cAW cAW bce @@ -90742,17 +90760,17 @@ cAW bQM bQM bQM -qmv -ogf -ogf -ogf -ogf -tsc -bEk -tsc -dxc -pqY -ehy +qvn +hbC +hbC +hbC +hbC +ssD +iSi +ssD +tPi +oSK +wJf doA xeO cCx @@ -90774,18 +90792,18 @@ xeO cCx xeO xeO -kIh -uYi -nGZ -ieA +lGh +hlK +hKI +iWW giX giX giX giX giX giX -fDJ -fDJ +qHC +qHC scM scM xkv @@ -90962,9 +90980,9 @@ bQM vzB gws vzB -qaL -nGZ -aTe +iJf +hKI +jCp iOa xeO xeO @@ -90986,40 +91004,40 @@ xeO xeO xeO iOa -rrD -uYi -nGZ -nGZ -fBD -rFw -joU -rFw -pCG -nGZ -nGZ -nGZ +pAN +hlK +hKI +hKI +qyc +eps +tbs +eps +mYZ +hKI +hKI +hKI lnK -bcp -akZ -bcp +jUK +qVt +jUK scM xdE xdE xdE xdE scM -jZk -akZ -lOe +mli +qVt +atm lnK -uFs -hqb -hqb -nuX +jeh +bnK +bnK +qjC lnK -vJL -eZi -qKx +jGd +ctz +voa scM scM cAW @@ -91174,65 +91192,65 @@ bQM vzB gws vzB -qaL -nGZ -lqI -laz -dDI -vrA -hTh -laz -dDI -vrA -hTh -laz -dDI -vrA -hTh -laz -dDI -vrA -hTh -laz -dDI -vrA -hTh -laz -lqI -uYi -dnX -tIW -nGZ -nGZ +iJf +hKI +hsA +tZV +lYA +wfp +xjw +tZV +lYA +wfp +xjw +tZV +lYA +wfp +xjw +tZV +lYA +wfp +xjw +tZV +lYA +wfp +xjw +tZV +hsA +hlK +sEi +ltV +hKI +hKI kdR hjW -nGZ +hKI hjW hjW -nGZ -eVj -sYB -oTP +hKI +vfR +ydX +hDL qQl -ekb -tuA -tuA -tuA -fQa -tuA -ssb -sYB -oTP -qDq -ssb +jTk +kmB +kmB +kmB +hiu +kmB +iXL +ydX +hDL +bbT +iXL qQl qQl -ssb -ekb -epY -hrl -jBv -ekb +iXL +jTk +sbj +jGj +uqp +jTk xdE cAW cAW @@ -91386,65 +91404,65 @@ bQM lRT lRT lRT -rbI -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -ipV -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -ncb -fDJ -uYi -dnX -dnX -dnX -dnX -dnX -dnX -dnX -dnX -qes -rRo -sYB -oTP -ssb -sYB -sYB -eot -eot -eot -sYB -oTP -hZi -ekb +utV +dlW +dlW +dlW +dlW +dlW +dlW +dlW +dlW +dlW +dlW +dlW +dlW +dlW +otB +dlW +dlW +dlW +dlW +dlW +dlW +dlW +dlW +dlW +dlW +uxY +qHC +hlK +sEi +sEi +sEi +sEi +sEi +sEi +sEi +sEi +fXe +inh +ydX +hDL +iXL +ydX +ydX +bUH +bUH +bUH +ydX +hDL +pGi +jTk qQl -sYB -xmV +ydX +vlT qQl -ekb -sYB -eot -nMg -ssb +jTk +ydX +bUH +jlW +iXL xdE bce bce @@ -91598,65 +91616,65 @@ bQM lRT lRT lRT -jiq -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -nGZ -qaL -fDJ -fDJ -uYi -cUd -cUd -cUd -cUd -cUd -cUd -cUd -cUd -jYU -rRo -aic -ckr -ssb -aic -aic -xZA -xZA -xZA -aic -ckr -hZi -ekb +pCF +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +hKI +iJf +qHC +qHC +hlK +dlW +dlW +dlW +dlW +dlW +dlW +dlW +dlW +bHl +inh +gFq +nes +iXL +gFq +gFq +pEw +pEw +pEw +gFq +nes +pGi +jTk qQl -aic -ckr +gFq +nes qQl -ekb -aic -xZA -ckr -ssb +jTk +gFq +pEw +nes +iXL xdE cAW bce @@ -91810,65 +91828,65 @@ bQM bQM bQM lRT -nGZ -nGZ +hKI +hKI hjW hjW -nGZ -oyk -wzK -wbL -rSN -mGN -prG -cpv -sjd -cEb -nFJ -cEb -cEb -hjC +hKI +krG +udY +cmI +eJq +pGf +cXq +klG +aHA +rTb +dKI +rTb +rTb +oLB iUO iUO iUO iUO iUO -wzT -bxy -cUd -cUd -ncb -nGZ -nGZ +jmO +jyK +dlW +dlW +uxY +hKI +hKI hjW hjW -nGZ +hKI hjW hjW -nGZ -fWs -aic -ckr +hKI +nhd +gFq +nes qQl -ekb -csL -csL -csL -csL -csL -sZt -aic -ckr -ekb -ssb +jTk +tBy +tBy +tBy +tBy +tBy +rOa +gFq +nes +jTk +iXL qQl qQl -ssb -ekb -epY -hrl -jBv -ekb +iXL +jTk +sbj +jGj +uqp +jTk xdE cAW cAW @@ -92022,12 +92040,12 @@ bQM bQM bQM lRT -nGZ -nGZ +hKI +hKI hjW hjW -nGZ -vwx +hKI +ycj xeO xeO xeO @@ -92042,26 +92060,26 @@ xeO mUA xeO xeO -xfb -yat +cXm +uXm xeO -oIg -nGZ -nGZ -rJW -nGZ -nGZ -rJW -nGZ -nGZ -rJW -nGZ -nGZ -tpw +cvr +hKI +hKI +lmM +hKI +hKI +lmM +hKI +hKI +lmM +hKI +hKI +qDD lnK -mVn -gHo -nwS +iVb +dIK +iJM scM xdE xdE @@ -92069,17 +92087,17 @@ xdE xdE scM scM -bcp -bcp -ekb -ekb -ekb -ekb -ekb +jUK +jUK +jTk +jTk +jTk +jTk +jTk lnK -vJL -ssb -qKx +jGd +iXL +voa scM scM bce @@ -92235,30 +92253,30 @@ bQM bQM lRT lRT -ntZ -nGZ -nGZ -nGZ -vwx +gDP +hKI +hKI +hKI +ycj bym uKx uKx -rcl -rcl -paI -paI -paI -dRx +tke +tke +yls +yls +yls +tHU xeO sTd xeO mUA xeO -cAU -uyp +gqZ +ybY xeO vUf -nGZ +hKI lRT lRT atl @@ -92281,13 +92299,13 @@ pcu iWq bQM scM -aOC -dKB -gmp -csL -csL -csL -uLq +sws +dBR +mss +tBy +tBy +tBy +gaL scM scM scM @@ -92450,8 +92468,8 @@ lRT lRT lRT lRT -hTo -vwx +fLr +ycj lpl jVE vzn @@ -92460,17 +92478,17 @@ xeO xeO mUA xeO -fxa +rUr bHv ylu xeO xeO xeO -mQB +awx aTE xeO -aRv -nGZ +yaz +hKI lRT lRT xDw @@ -92493,8 +92511,8 @@ pcu iWq bQM scM -eNv -lFM +laP +imn scM xdE xdE @@ -92662,27 +92680,27 @@ bQM bQM bQM xDw -oEN -vwx +oQz +ycj fSz lIv lIv xFP sov -paI -paI -paI -eeH +yls +yls +yls +qDc dFM sov xeO xeO xeO -fCW -myf +dIp +oDn xeO -tOP -nGZ +wqM +hKI xDw bQM bQM @@ -92875,7 +92893,7 @@ bQM bQM lRT lRT -piw +tvM tFA tFA tFA @@ -92893,7 +92911,7 @@ tFA tFA tFA tFA -nnG +koV lRT lRT bQM 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 73bac536752f..fa8524db7de8 100644 --- a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm +++ b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm @@ -142,12 +142,6 @@ "aaE" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/north) -"aaF" = ( -/obj/structure/tunnel{ - id = "north_tunnel" - }, -/turf/open/auto_turf/snow/layer3, -/area/ice_colony/exterior/surface/valley/north) "aaG" = ( /turf/closed/ice_rock/westWall, /area/ice_colony/exterior/surface/cliff) @@ -696,12 +690,6 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/engineering/electric) -"acO" = ( -/obj/structure/tunnel{ - id = "east_cargo_tunnel" - }, -/turf/open/auto_turf/snow/layer3, -/area/ice_colony/exterior/surface/valley/northwest) "acP" = ( /obj/structure/surface/table, /obj/item/device/assembly/infra, @@ -1183,12 +1171,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 @@ -2215,12 +2197,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/northwest) -"agS" = ( -/obj/structure/tunnel{ - id = "south_tunnel" - }, -/turf/open/auto_turf/snow/layer2, -/area/ice_colony/exterior/surface/valley/northwest) "agT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -3638,12 +3614,6 @@ /obj/structure/ice/thin/junction, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast) -"akR" = ( -/obj/structure/tunnel{ - id = "construction_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/northeast) "akS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5380,12 +5350,6 @@ "apP" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/clinic/storage) -"apQ" = ( -/obj/structure/tunnel{ - id = "west_tcomms_tunnel" - }, -/turf/open/auto_turf/snow/layer3, -/area/ice_colony/exterior/surface/valley/southeast) "apR" = ( /obj/effect/landmark/monkey_spawn, /turf/open/ice, @@ -6517,12 +6481,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{ @@ -8540,12 +8498,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/south) -"ayj" = ( -/obj/structure/tunnel{ - id = "south_research_tunnel" - }, -/turf/open/auto_turf/snow/layer3, -/area/ice_colony/exterior/surface/valley/southwest) "ayk" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/south) @@ -9775,12 +9727,6 @@ /obj/item/tool/pickaxe/gold, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aBH" = ( -/obj/structure/tunnel{ - id = "dig_site_tunnel" - }, -/turf/open/auto_turf/snow/layer0, -/area/ice_colony/exterior/surface/valley/south/excavation) "aBI" = ( /obj/structure/surface/rack, /obj/item/storage/box/lightstick, @@ -12541,12 +12487,6 @@ icon_state = "vault" }, /area/ice_colony/surface/storage_unit/telecomms) -"aJG" = ( -/obj/structure/tunnel{ - id = "south_tcomms_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southeast) "aJH" = ( /obj/structure/ice/thin/end{ dir = 8 @@ -13269,12 +13209,6 @@ /obj/structure/fence, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast) -"aMu" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/west) "aMv" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -21540,12 +21474,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 +21729,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 +23871,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 +25300,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) @@ -26091,12 +26001,6 @@ /obj/structure/filingcabinet/security, /turf/open/floor/wood, /area/ice_colony/underground/security/marshal) -"bAA" = ( -/obj/structure/ice/thin/junction{ - dir = 4 - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves) "bAB" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating, @@ -26463,17 +26367,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/wood, /area/ice_colony/underground/security/marshal) -"bBz" = ( -/obj/effect/alien/weeds/node, -/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 +26572,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 @@ -26842,15 +26729,6 @@ icon_state = "darkblue2" }, /area/ice_colony/underground/storage/highsec) -"bCS" = ( -/obj/structure/safe, -/obj/item/weapon/sword/katana/replica, -/obj/item/reagent_container/food/drinks/bottle/absinthe, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/storage/highsec) "bCT" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 32 @@ -27956,13 +27834,6 @@ icon_state = "freezerfloor" }, /area/ice_colony/surface/bar/canteen) -"bFZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/toy/plush/farwa, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/storage/highsec) "bGa" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/hypospray/tricordrazine, @@ -28779,12 +28650,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 +31462,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 +33480,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 +33559,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 @@ -34240,12 +34087,6 @@ icon_state = "floor6" }, /area/ice_colony/exterior/underground/caves/dig) -"bXA" = ( -/obj/structure/tunnel{ - id = "south_research_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) "bXB" = ( /obj/structure/surface/rack, /turf/open/floor{ @@ -34498,18 +34339,40 @@ /obj/docking_port/stationary/marine_dropship/lz2, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) +"cGk" = ( +/obj/structure/ice/thin/straight{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) "cVM" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) +"cWs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow/layer2, +/area/ice_colony/exterior/surface/valley/northwest) "dgG" = ( /turf/open/floor{ dir = 5; icon_state = "darkyellow2" }, /area/ice_colony/surface/tcomms) +"dla" = ( +/obj/structure/ice/thin/corner, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) +"dqp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow/layer3, +/area/ice_colony/exterior/surface/valley/northwest) +"dqW" = ( +/obj/structure/ice/thin/end, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) "dxl" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, @@ -34526,6 +34389,36 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/tcomms) +"dHe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/toy/plush/farwa, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/ice_colony/underground/storage/highsec) +"dRl" = ( +/obj/structure/safe, +/obj/item/weapon/sword/katana/replica, +/obj/item/reagent_container/food/drinks/bottle/absinthe, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/ice_colony/underground/storage/highsec) +"dRF" = ( +/obj/structure/ice/thin/single, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) +"dVc" = ( +/obj/structure/ice/thin/corner{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) +"dXQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves/open) "ecS" = ( /obj/structure/machinery/light{ dir = 4 @@ -34535,6 +34428,10 @@ icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/beta) +"eig" = ( +/obj/structure/ice/thin/end, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "elU" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -34542,6 +34439,18 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/ice_colony/underground/crew/leisure) +"enR" = ( +/obj/structure/ice/thin/corner{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) +"evT" = ( +/obj/structure/ice/thin/end{ + dir = 8 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) "ezT" = ( /obj/vehicle/train/cargo/trolley, /obj/structure/pipes/standard/simple/hidden/green, @@ -34589,6 +34498,12 @@ icon_state = "dark2" }, /area/ice_colony/surface/hangar/alpha) +"gfZ" = ( +/obj/structure/ice/thin/end{ + dir = 1 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "giH" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor{ @@ -34606,6 +34521,15 @@ icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/alpha) +"gBD" = ( +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) +"gCd" = ( +/obj/structure/ice/thin/end{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "gDb" = ( /obj/structure/surface/table, /turf/open/floor{ @@ -34624,6 +34548,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/ice, /area/ice_colony/underground/maintenance/south) +"hlc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) "hmT" = ( /turf/closed/ice_rock/corners{ dir = 9 @@ -34658,6 +34586,10 @@ icon_state = "dark2" }, /area/ice_colony/underground/research) +"iKe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow/layer3, +/area/ice_colony/exterior/surface/valley/southeast) "iNy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -34665,6 +34597,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/ice_colony/underground/maintenance/south) +"iQd" = ( +/obj/structure/ice/thin/end{ + dir = 1 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) "iQg" = ( /obj/item/packageWrap, /turf/open/floor/plating/icefloor, @@ -34695,6 +34633,12 @@ icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/alpha) +"jMm" = ( +/obj/structure/ice/thin/end{ + dir = 8 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) "jZI" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/shuttle_control/dropship2, @@ -34712,6 +34656,21 @@ icon_state = "warnplate" }, /area/ice_colony/surface/tcomms) +"kkp" = ( +/obj/structure/ice/thin/corner{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) +"kzx" = ( +/obj/structure/ice/thin/straight{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) +"kHn" = ( +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) "kKZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -34723,10 +34682,24 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/closed/wall, /area/ice_colony/surface/research) +"kYi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow/layer3, +/area/ice_colony/exterior/surface/valley/southwest) +"llI" = ( +/obj/structure/mineral_door/resin, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves/open) "lqY" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/tcomms) +"ltg" = ( +/obj/structure/ice/thin/end{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) "lyD" = ( /obj/structure/machinery/alarm{ dir = 8; @@ -34760,16 +34733,32 @@ icon_state = "dark2" }, /area/ice_colony/surface/hangar/beta) +"mwi" = ( +/obj/structure/ice/thin/corner{ + dir = 8 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "mwS" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/ice_colony/underground/maintenance/south) +"mBl" = ( +/obj/structure/ice/thin/corner{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) "mHc" = ( /turf/open/floor{ dir = 5; icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/beta) +"mWJ" = ( +/obj/structure/ice/thin/single, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) "neZ" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Colony Dormitories" @@ -34779,6 +34768,10 @@ icon_state = "darkblue2" }, /area/ice_colony/surface/dorms) +"npA" = ( +/obj/structure/ice/thin/single, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "nup" = ( /obj/structure/surface/rack, /turf/open/floor{ @@ -34786,6 +34779,19 @@ icon_state = "darkpurple2" }, /area/ice_colony/underground/research/storage) +"oac" = ( +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves/open) +"oaE" = ( +/obj/structure/ice/thin/single, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) +"odt" = ( +/obj/structure/ice/thin/junction{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "osF" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/north) @@ -34800,6 +34806,12 @@ "oOd" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/clearing/pass) +"oQQ" = ( +/obj/structure/ice/thin/end{ + dir = 1 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) "oZq" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -34824,6 +34836,10 @@ "pyn" = ( /turf/closed/wall, /area/ice_colony/underground/hangar) +"pEC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow/layer3, +/area/ice_colony/exterior/surface/valley/north) "qny" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, @@ -34838,6 +34854,12 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/tcomms) +"qAv" = ( +/obj/structure/ice/thin/end{ + dir = 8 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) "qEB" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/landmark/xeno_hive_spawn, @@ -34874,6 +34896,12 @@ icon_state = "dark2" }, /area/ice_colony/surface/research) +"rCj" = ( +/obj/structure/ice/thin/corner{ + dir = 8 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) "rKn" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, @@ -34908,6 +34936,14 @@ }, /turf/open/floor/plating, /area/ice_colony/exterior/surface/landing_pad) +"sxi" = ( +/obj/structure/ice/thin/end, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) +"sEj" = ( +/obj/structure/ice/thin/end, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) "sKH" = ( /obj/structure/surface/table, /obj/item/device/analyzer, @@ -34917,6 +34953,13 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/tcomms) +"sNf" = ( +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) +"sPF" = ( +/obj/effect/alien/weeds/node, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves/open) "sTg" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/northeast) @@ -34971,6 +35014,16 @@ icon_state = "darkblue2" }, /area/ice_colony/surface/dorms) +"tIQ" = ( +/obj/structure/ice/thin/end{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) +"tZO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/southeast) "tZS" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/west) @@ -34996,6 +35049,10 @@ icon_state = "warnplate" }, /area/ice_colony/exterior/surface/landing_pad) +"urp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/west) "uuK" = ( /obj/structure/surface/table, /obj/item/toy/deck/uno, @@ -35013,6 +35070,11 @@ "uKY" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/cliff) +"uMw" = ( +/obj/effect/alien/weeds/node, +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves/open) "uPr" = ( /turf/open/floor{ dir = 6; @@ -35025,6 +35087,10 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/ice, /area/ice_colony/exterior/underground/caves/open) +"uZk" = ( +/obj/structure/ice/thin/single, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves/open) "vcU" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -35046,6 +35112,15 @@ icon_state = "darkbrown2" }, /area/ice_colony/surface/hangar/alpha) +"vGY" = ( +/obj/structure/ice/thin/straight{ + dir = 4 + }, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/surface/valley/northeast) +"vZH" = ( +/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, @@ -35075,11 +35150,22 @@ icon_state = "warnplate" }, /area/ice_colony/surface/tcomms) +"wPI" = ( +/obj/structure/mineral_door/resin, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) +"wSc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow/layer0, +/area/ice_colony/exterior/surface/valley/south/excavation) "wTN" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) +"xiJ" = ( +/turf/open/auto_turf/snow, +/area/ice_colony/surface/mining) "xkk" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/icefloor{ @@ -35094,6 +35180,16 @@ icon_state = "darkyellow2" }, /area/ice_colony/surface/tcomms) +"xJs" = ( +/obj/structure/ice/thin/junction, +/turf/open/auto_turf/snow, +/area/ice_colony/exterior/underground/caves) +"xRe" = ( +/obj/structure/ice/thin/corner{ + dir = 1 + }, +/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, @@ -36440,7 +36536,7 @@ bml bmh bnT bmi -bmT +npA bmm bml aZF @@ -36720,10 +36816,10 @@ bnU boB bmm bmi -bmU -bmU -bmU -bmT +oac +oac +oac +npA bmm bnT bmi @@ -37003,8 +37099,8 @@ bmU bmU bmU bmU -byu -bmU +dXQ +oac bmU bmU bmU @@ -37266,9 +37362,9 @@ aZF aZF bmh bmi -bnU -boB -bmU +gfZ +eig +oac bmU bmT boT @@ -37547,9 +37643,9 @@ aZF aZF aZF bmQ -bmT -bmU -bmU +npA +oac +oac bmU bmU bmU @@ -37829,9 +37925,9 @@ aZF aZF aZF bmQ -bmU -bnV -bmU +oac +dXQ +oac bmU bmU bmU @@ -38111,8 +38207,8 @@ aZF aZF aZF bmQ -bmU -bmU +oac +oac bmU boR bmU @@ -38250,7 +38346,7 @@ abD abD aaJ aaJ -agS +cWs aaJ aaQ acm @@ -38393,8 +38489,8 @@ aZF aZF aZF bmQ -bmU -bmU +oac +oac bmU bmU bmU @@ -38675,8 +38771,8 @@ aZF aZF aZF bmQ -bmT -bmU +npA +oac bmU bmU bmU @@ -38958,7 +39054,7 @@ aZF aZF bmm bml -bmT +npA bmU bmU boS @@ -39855,9 +39951,9 @@ bmU boD bmU bmU -bmU -bnU -boB +oac +gfZ +eig bmm bml aZF @@ -40137,10 +40233,10 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmT +oac +oac +oac +npA bmQ aZF aZF @@ -40417,11 +40513,11 @@ bmU bmU bmU bmU -bQk -bmU bmU bmU bmU +dXQ +oac bmh bmi aZF @@ -40702,8 +40798,8 @@ bmU bmU bmU bmU -bmU -bmU +oac +oac bmQ aZF aZF @@ -40984,7 +41080,7 @@ bmT bmU bmU bmU -bmU +oac bxf bwx aZF @@ -41267,7 +41363,7 @@ bmT bmU bmU bmU -bmj +qAv bmQ aZF aZF @@ -41657,9 +41753,9 @@ aaC aaC aaP aaZ -alJ -alJ -alJ +sNf +sNf +sNf aaR abn acm @@ -41938,12 +42034,12 @@ aaC aaC aaC aaQ -alJ -alJ -asL -alJ -alJ -alJ +sNf +sNf +urp +sNf +sNf +sNf acm aae aaP @@ -42220,12 +42316,12 @@ aaC aaC aaC aaQ -alJ -alJ -alJ -alJ -alJ -alJ +sNf +sNf +sNf +sNf +sNf +sNf acm aae abc @@ -42502,11 +42598,11 @@ aaC aaC aaC aaQ -and -apS -alJ -alJ -alJ +kkp +sxi +sNf +sNf +sNf aaU adq aaU @@ -42785,10 +42881,10 @@ aaC aaP aaZ aqs -alJ -alJ -alJ -alJ +sNf +sNf +sNf +sNf acm aae and @@ -43069,7 +43165,7 @@ and ane alJ alJ -alJ +sNf aaS acm aae @@ -43750,7 +43846,7 @@ blc bls bkJ bmi -bmT +npA bmU bmU bmU @@ -44031,9 +44127,9 @@ biy blc bls bkJ -bmj -bmU -bmU +qAv +oac +oac bmU bmU boT @@ -44313,9 +44409,9 @@ biy blc bls bkJ -bmk -bmU -bno +gCd +oac +dXQ bmU bmU bmT @@ -44596,9 +44692,9 @@ bld bls bkJ bml -bmU -bmU -bmU +oac +oac +oac bmU bmU bmU @@ -44879,8 +44975,8 @@ bls bkJ bmm bml -bmU -bmU +oac +oac bmU bmU boD @@ -45162,8 +45258,8 @@ bkJ aZF bmm bml -bnU -boB +gfZ +eig bmU bmU bmU @@ -47910,7 +48006,7 @@ alJ alJ alJ alJ -aMu +alJ alJ aaQ acj @@ -48187,7 +48283,7 @@ alJ alJ amB aaS -amB +dRF alJ alJ alJ @@ -48470,8 +48566,8 @@ abM aba amC abb -apg -alJ +jMm +sNf alJ alJ alJ @@ -48752,10 +48848,10 @@ aaR abb aaC aaQ -aqs -alJ -alJ -alJ +kzx +sNf +urp +sNf aaP aaZ aaC @@ -48955,7 +49051,7 @@ aaS abi rxQ aaI -acO +dqp aaI aaS acn @@ -49034,9 +49130,9 @@ apg aaQ aaC aaQ -aph -alJ -alJ +tIQ +sNf +sNf aaP aaZ aLK @@ -49138,7 +49234,7 @@ byP buL btm bCu -bCS +dRl bDE bEw bDE @@ -49317,8 +49413,8 @@ aaR aba arC abb -amA -apS +iQd +sxi aaQ aLK aLK @@ -51116,7 +51212,7 @@ bCZ bDE bDE bDE -bFZ +dHe bCu bHr bIj @@ -52442,7 +52538,7 @@ aWt aWV aUZ asi -ayj +kYi asi asi arM @@ -53697,10 +53793,10 @@ bmU bmU bmU bmU -bmU +oac bmm bmi -bmT +npA bmU bmU bmU @@ -53978,11 +54074,11 @@ boR bmU bmU bmU -bmU -bmU -bmU -bmU -bmU +oac +oac +oac +oac +oac bmU bmU bmU @@ -54260,12 +54356,12 @@ bmU bmU bnU boB -bWc -bmU -bmU -bmU -bmU -bmU +dXQ +oac +oac +oac +oac +oac bmU bmT bmh @@ -63593,7 +63689,7 @@ bmU bmk bmS bmi -bmT +npA bmm bml aZF @@ -63874,9 +63970,9 @@ bmU bmT bxf bmi -bmU -bmU -bvK +oac +oac +uZk bmm bml aZF @@ -64155,11 +64251,11 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU -bmj +oac +oac +oac +oac +qAv bmQ aZF aZF @@ -64437,11 +64533,11 @@ bmU bmU bmU bmU -bmU -bmU -boD -bmU -bmk +oac +oac +sPF +oac +gCd bmQ aZF aZF @@ -64720,10 +64816,10 @@ bmU bmU bmU bmU -bmU -bmU -bmU -bmU +oac +oac +oac +oac bmQ aZF aZF @@ -65003,9 +65099,9 @@ bmU bmU bmU bmU -bXA -bmU -bmU +dXQ +oac +oac bmQ aZF aZF @@ -65285,9 +65381,9 @@ bmU boD bmU bmU -bmU -bmU -bmU +oac +oac +oac bmQ aZF aZF @@ -65568,8 +65664,8 @@ bmU bmU bmU bmU -bmU -bmT +oac +npA bmQ aZF aZF @@ -65850,7 +65946,7 @@ bmU bmU bmU bmU -bmU +oac bmh bmi aZF @@ -66321,9 +66417,9 @@ bqF bnk aZF bmQ -bmT -bmU -bmU +npA +oac +oac bmU bmU bmU @@ -66604,10 +66700,10 @@ bnk aZF bmm bml -buf -bmU -bmU -bmU +dXQ +oac +oac +oac bmU buX bxD @@ -66886,11 +66982,11 @@ bnk aZF aZF bmQ -bnU -boB -bmU -bmU -bmU +gfZ +eig +oac +oac +oac buX bxD byc @@ -67170,9 +67266,9 @@ bnk bnk bnT bml -bmU -bmU -bmT +oac +oac +npA bqP bxE byc @@ -67453,7 +67549,7 @@ bnk aZF bmm bml -bmT +npA boS bqP bxF @@ -69439,7 +69535,7 @@ bmm bnT bnT bmi -bmT +npA bmQ aZF bCg @@ -69717,11 +69813,11 @@ bsf bqP bmU bmU -bmU -bzR -bAA -boB -bmU +oac +enR +odt +eig +oac bmm bml bCg @@ -70000,11 +70096,11 @@ bqP bmU bmU bmU -bzS -bvc -bmU -bmU -bmU +xJs +mwi +oac +oac +oac bmQ bCg bEe @@ -70283,10 +70379,10 @@ bmU boD bmU bmk -bmU -bmU -bBz -bmU +oac +oac +uMw +oac bmQ bCg bEe @@ -70565,10 +70661,10 @@ bmU bmU bmU bmU -bmU -bmU -bBA -bmU +oac +oac +dXQ +oac bmQ bCg bEe @@ -70848,9 +70944,9 @@ buX buX bmU bmU -bmU -bmU -bmU +oac +oac +oac bmQ bCg bEe @@ -71131,7 +71227,7 @@ buX bup bmU bmU -bmU +oac bmh bmi bCg @@ -71145,7 +71241,7 @@ bnT bnT bnT bmi -bmT +npA bmm bMs bMY @@ -71413,7 +71509,7 @@ bzv bmU bmU bmU -bmj +qAv bmQ aZF bCg @@ -71423,12 +71519,12 @@ bCg aZF bmh bmi -bnU -boB -bmU -bmU -bmU -bmT +gfZ +eig +oac +oac +oac +npA bMs bMs bMs @@ -71704,14 +71800,14 @@ bCI bCg aZF bmQ -bmT -bIx -bmU -bmU -bmU -bmU -bmU -bmU +npA +dXQ +oac +oac +oac +oac +oac +oac bmm bnT bml @@ -71928,7 +72024,7 @@ aae bbW baZ azz -aBH +wSc azz azz azz @@ -71987,11 +72083,11 @@ bCg aZF bmm bml -bmU -bmU -bmU -boD -bmU +oac +oac +oac +sPF +oac bmU bmU bmU @@ -72065,7 +72161,7 @@ aab aab aac aae -aaF +pEC aaE aaE abd @@ -72270,7 +72366,7 @@ aZF bmh bqQ bnn -bmU +oac bmU bmU bmU @@ -75361,7 +75457,7 @@ bmU bmU bmU bmU -bmU +oac bqP bCI bDy @@ -75643,7 +75739,7 @@ bmU bmU bmU bmU -bmU +oac bCg bCg bCg @@ -75924,11 +76020,11 @@ bmT bmU boD bmU -bmU -bmU -bmU -bmU -bmU +oac +oac +oac +oac +oac bmU bmU bmU @@ -75973,7 +76069,7 @@ aZF bmh bnT bmi -bmk +gCd bmU bmU bmU @@ -76207,11 +76303,11 @@ bnU boB bmh bml -bwK -bmU -bmU -bmU -bmU +gBD +oac +oac +oac +oac bmU boR bmU @@ -76253,9 +76349,9 @@ aZF aZF aZF bmQ -bmT -bmU -bmU +npA +oac +oac bmU bmU bmU @@ -76489,11 +76585,11 @@ bnT bnT bmi bmQ -bmT -bCh -bmU -bmU -bmU +npA +dXQ +oac +oac +oac bmU bmU bmU @@ -76535,10 +76631,10 @@ aZF aZF aZF bmQ -bmU -bmU -bmU -boD +oac +oac +oac +sPF bmU bmU bmk @@ -76772,11 +76868,11 @@ aZF aZF bmm bml -bmT +npA bmh bnT bml -bnU +gfZ boB bmh bnT @@ -76817,11 +76913,11 @@ aZF aZF bmh bmi -bmU -bVP -bmU -bmU -bmU +oac +dXQ +oac +oac +oac bmj bmh bwx @@ -77098,13 +77194,13 @@ aZF aZF aZF bmQ -bmU -bmU -bmU -bmU -bmU -bmU -bmk +oac +oac +oac +oac +oac +oac +gCd bmQ bmm bml @@ -77380,11 +77476,11 @@ aZF aZF aZF bmQ -bmU -bmU -bmU -bmU -bmU +oac +oac +oac +oac +oac bWi bxe bmi @@ -77663,9 +77759,9 @@ aZF aZF bmm bml -bVN -bVQ -bVQ +wPI +llI +llI bWi bWp bxe @@ -77945,9 +78041,9 @@ aZF aZF aZF bmQ -bwK -bwK -bmU +gBD +gBD +oac bWj bWj bwi @@ -78229,7 +78325,7 @@ aZF bmQ bwK bwK -bmU +oac bwJ bWq bmU @@ -83984,7 +84080,7 @@ abc azF aaC awL -apQ +iKe awL awL avy @@ -84484,13 +84580,13 @@ aaB aaC aaC aaQ -adz -adU +mBl +sEj acn -adj -adj -adj -adj +vZH +vZH +vZH +vZH adj adj adj @@ -84766,12 +84862,12 @@ aaC aaC aaP aaZ -adA -adj -adj -adj -adj -adj +vGY +vZH +vZH +vZH +vZH +vZH adj aeA adj @@ -85047,12 +85143,12 @@ aae aaC aaC aaQ -adk -adA -adj -aej -adj -adj +mWJ +vGY +vZH +hlc +vZH +vZH aaU adj adj @@ -85329,11 +85425,11 @@ aae aaC aaC aaQ -adk -adA -adj -adj -adj +mWJ +vGY +vZH +vZH +vZH aaU aeH aar @@ -85611,9 +85707,9 @@ aaf aar aaC aaQ -adk -adA -adj +mWJ +vGY +vZH aaU aaG abG @@ -85893,8 +85989,8 @@ aac aae aaC aaQ -adk -adA +mWJ +vGY abZ acC acD @@ -86176,7 +86272,7 @@ aae aaC aaR abb -acR +ltg aaP abb acj @@ -92680,7 +92776,7 @@ aac aac aaB abc -aeB +oQQ alF amb amb @@ -92961,8 +93057,8 @@ aab aac aae aaC -acQ -adj +evT +vZH alG alG amb @@ -93020,7 +93116,7 @@ awL awL awL awL -awL +kHn aca aba abb @@ -93242,10 +93338,10 @@ aaa aab aac aae -adk -acR -adj -alG +mWJ +ltg +vZH +xiJ alG amb amb @@ -93302,9 +93398,9 @@ awL awL awL awL -awL -awL -auW +kHn +kHn +oaE aaQ acm aaf @@ -93525,9 +93621,9 @@ aab aac aae aaS -adj -adj -alG +vZH +vZH +xiJ alE amb amb @@ -93583,10 +93679,10 @@ awL awL aJg awL -awL -awL -aJG -awL +kHn +kHn +tZO +kHn aaQ acj acD @@ -93807,8 +93903,8 @@ aab aac aae abc -akR -adj +hlc +vZH alH amc alE @@ -93864,11 +93960,11 @@ awV aDt awL awL -awy -aDt -awL -awL -awL +dVc +dla +kHn +kHn +kHn aaQ aaC acm @@ -94146,11 +94242,11 @@ abb awV awf awf -awz -awV -aDt -awL -awL +rCj +xRe +dla +kHn +kHn aaQ aaC acm @@ -94428,10 +94524,10 @@ aaR abn auW auW -auW -auW -aBb -awL +oaE +oaE +cGk +kHn aaP aaZ aaC @@ -94711,9 +94807,9 @@ aar aca aba abb -auW -awV -awM +oaE +xRe +dqW aaQ aaC aaC @@ -94994,8 +95090,8 @@ aar aaC aaR abn -auW -auW +oaE +oaE aaQ aaC aaC diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm index f5e2f597ef24..efc1fa467a3f 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/xeno/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/xeno/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/xeno/tunnel, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) "abU" = ( @@ -1076,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" }, @@ -1265,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 }, @@ -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/xeno/tunnel, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) "aCH" = ( @@ -7801,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" = ( @@ -9329,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" = ( @@ -10833,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" @@ -13442,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" @@ -15727,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" @@ -16383,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" @@ -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/xeno/tunnel, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) "qSa" = ( @@ -23387,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" @@ -23583,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" @@ -24799,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" }, @@ -26966,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" @@ -27465,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 eb5f1afabaed..eeb204d459bb 100644 --- a/maps/map_files/Kutjevo/Kutjevo.dmm +++ b/maps/map_files/Kutjevo/Kutjevo.dmm @@ -67,6 +67,10 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"afd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "afS" = ( /obj/structure/monorail, /obj/structure/platform/kutjevo/smooth{ @@ -77,11 +81,6 @@ "agG" = ( /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/foremans_office) -"ahp" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) "ahz" = ( /obj/structure/flora/bush/ausbushes/ppflowers{ icon_state = "brflowers_1" @@ -131,6 +130,11 @@ /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"ame" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_S_East) "amu" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -217,6 +221,11 @@ dir = 4 }, /area/kutjevo/exterior/lz_river) +"aqe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/colony_South) "aqC" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/kutjevo/tiles, @@ -488,6 +497,10 @@ /obj/item/tool/wirecutters/clippers, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"aFo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/colony_South/power2) "aFp" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -679,6 +692,11 @@ icon = 'icons/turf/floors/desert_water_toxic.dmi' }, /area/kutjevo/interior/oob) +"aXz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_S_East) "aXV" = ( /obj/structure/machinery/colony_floodlight_switch, /turf/closed/wall/kutjevo/colony/reinforced, @@ -687,6 +705,10 @@ /obj/item/stack/rods, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"aZH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_north) "baC" = ( /obj/effect/spawner/random/toolbox{ pixel_x = -2; @@ -961,10 +983,6 @@ /obj/structure/surface/rack, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"bsq" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_central) "bsw" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -981,6 +999,10 @@ "btI" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/complex/botany/east_tech) +"bud" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_central) "buo" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -1100,11 +1122,6 @@ /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/kutjevo/colors/green/tile, /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" = ( /obj/structure/blocker/invisible_wall, /turf/open/desert/desert_shore/shore_corner2{ @@ -1288,10 +1305,6 @@ dir = 1 }, /area/kutjevo/interior/power/comms) -"bOc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_S_East) "bPf" = ( /obj/structure/platform_decoration/kutjevo, /obj/effect/landmark/survivor_spawner, @@ -1586,6 +1599,11 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) +"coC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_S_East) "coF" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -2046,11 +2064,6 @@ }, /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/xeno_spawn, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) "cQt" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -2103,12 +2116,6 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /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/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_north) "cTz" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) @@ -2131,11 +2138,6 @@ }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"cTY" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_north) "cUh" = ( /obj/structure/bed/sofa/vert/white/bot, /turf/open/floor/kutjevo/tan/grey_edge, @@ -2270,11 +2272,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /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, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) "dck" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors, @@ -2534,14 +2531,6 @@ icon = 'icons/turf/floors/desert_water_toxic.dmi' }, /area/kutjevo/interior/oob) -"dtV" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = 10; - pixel_y = 10 - }, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/complex/botany/east_tech) "duu" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ name = "\improper South Power Shutters" @@ -2562,6 +2551,11 @@ /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) +"dvG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) "dvL" = ( /obj/structure/window/reinforced, /obj/structure/surface/table/reinforced/prison, @@ -2798,6 +2792,11 @@ /obj/effect/spawner/random/tool, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"dJh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "dJk" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/tan, @@ -2862,11 +2861,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"dNI" = ( -/obj/structure/platform/kutjevo/rock, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) "dOJ" = ( /obj/structure/barricade/deployable, /turf/open/floor/kutjevo/colors/purple/edge, @@ -3119,12 +3113,6 @@ dir = 1 }, /area/kutjevo/interior/construction) -"efS" = ( -/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, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) "efW" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c200, @@ -3290,6 +3278,11 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"eoq" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_north) "eoA" = ( /obj/structure/machinery/chem_dispenser/medbay, /turf/open/floor/kutjevo/colors/red/tile, @@ -3442,11 +3435,6 @@ }, /turf/open/auto_turf/sand/layer0, /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" = ( /obj/structure/flora/bush/ausbushes/reedbush, /obj/structure/flora/bush/ausbushes/reedbush{ @@ -3578,11 +3566,6 @@ dir = 1 }, /area/kutjevo/exterior/Northwest_Colony) -"eFX" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) "eFZ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -3844,11 +3827,6 @@ dir = 1 }, /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, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_S_East) "eVO" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/barricade/handrail/kutjevo{ @@ -4194,6 +4172,12 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) +"frV" = ( +/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, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) "fto" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) @@ -4269,6 +4253,10 @@ dir = 1 }, /area/kutjevo/interior/oob) +"fAR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_central) "fAT" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/sand/layer0, @@ -4389,12 +4377,6 @@ }, /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/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_N_East) "fLE" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -4740,12 +4722,6 @@ "glB" = ( /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/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_South) "gmA" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan, @@ -4827,11 +4803,6 @@ dir = 1 }, /area/kutjevo/interior/complex/med) -"gtr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/interior/colony_N_East) "gtE" = ( /obj/structure/blocker/invisible_wall, /obj/structure/platform/kutjevo, @@ -4964,12 +4935,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) -"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, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_S_East) "gBV" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer1, @@ -5085,6 +5050,12 @@ /obj/structure/surface/table/almayer, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"gKc" = ( +/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, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_South) "gKG" = ( /obj/structure/flora/bush/ausbushes/ausbush{ icon_state = "pointybush_4" @@ -5119,6 +5090,12 @@ /obj/item/defenses/handheld/tesla_coil, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) +"gMY" = ( +/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, +/turf/closed/wall/resin/thick, +/area/kutjevo/interior/colony_South) "gNx" = ( /obj/structure/bed/chair{ dir = 8 @@ -5158,11 +5135,6 @@ "gQr" = ( /turf/closed/wall/kutjevo/rock, /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, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_South) "gQF" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_magazine/shotgun/buckshot, @@ -5405,6 +5377,10 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"hjn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_S_East) "hkq" = ( /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/kutjevo/tan, @@ -5425,6 +5401,11 @@ dir = 9 }, /area/kutjevo/interior/foremans_office) +"hmS" = ( +/obj/structure/platform/kutjevo/rock, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "hnm" = ( /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/kutjevo, @@ -5614,6 +5595,10 @@ "hzN" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/lz_pad) +"hBl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/botany_medical_cave) "hBm" = ( /mob/living/simple_animal/hostile/retaliate/clown{ name = "Gonzo The Magnificent" @@ -5734,12 +5719,6 @@ }, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) -"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, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_South) "hGM" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/exterior/runoff_bridge) @@ -5839,6 +5818,11 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) +"hQI" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_N_East) "hQS" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/oob/dev_room) @@ -5863,10 +5847,6 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"hSU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_north) "hTn" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -5879,6 +5859,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_park) +"hTL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_N_East) "hUk" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_north) @@ -6035,6 +6019,11 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) +"iht" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/interior/colony_S_East) "iin" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/Northwest_Colony) @@ -6132,6 +6121,10 @@ /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"iur" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "iuz" = ( /turf/open/desert/desert_shore/shore_edge1{ dir = 8 @@ -6142,6 +6135,10 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) +"iuT" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_South) "ivh" = ( /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -6156,11 +6153,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"iwF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_South) "iwV" = ( /turf/open/floor/kutjevo/tan/multi_tiles{ dir = 1 @@ -6381,6 +6373,11 @@ /obj/item/storage/box/trackimp, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east_tech) +"iNV" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_South) "iNY" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -6438,11 +6435,6 @@ /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"iTX" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_S_East) "iUr" = ( /obj/effect/landmark/objective_landmark/far, /turf/open/floor/kutjevo/colors/orange, @@ -6800,6 +6792,10 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"jrS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) "jrY" = ( /obj/structure/inflatable/popped, /turf/open/floor/kutjevo/tan, @@ -6976,10 +6972,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"jBX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) "jCL" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4-8" @@ -7132,10 +7124,6 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"jQo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_N_East) "jRd" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand/layer1, @@ -7452,6 +7440,11 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"krH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_N_East) "ksl" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/auto_turf/sand/layer1, @@ -7497,11 +7490,6 @@ dir = 1 }, /area/kutjevo/interior/construction) -"kuM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_north) "kvf" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 @@ -7538,6 +7526,12 @@ "kvU" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/lz_dunes) +"kwf" = ( +/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, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_north) "kwy" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/colony_South) @@ -7689,12 +7683,6 @@ }, /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/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_S_East) "kGM" = ( /turf/open/floor/kutjevo/tan/grey_edge{ dir = 1 @@ -7994,6 +7982,11 @@ /obj/structure/bed, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) +"lca" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_north) "lce" = ( /obj/item/stack/cable_coil, /turf/open/floor/kutjevo/tan, @@ -8215,10 +8208,10 @@ dir = 4 }, /area/kutjevo/interior/power/comms) -"ltv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/colony_South/power2) +"lsK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/interior/colony_north) "ltU" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tiles, @@ -8386,10 +8379,6 @@ /obj/item/device/radio, /turf/open/floor/carpet, /area/kutjevo/interior/oob) -"lGj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_central) "lHs" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -8609,10 +8598,6 @@ "lXN" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/telecomm/lz1_south) -"lXQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/interior/colony_N_East) "lYI" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/shallow_corner{ @@ -8630,12 +8615,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/auto_doc) -"lZT" = ( -/obj/structure/tunnel{ - id = "hole1" - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/interior/colony_north) "lZZ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -8996,6 +8975,10 @@ /obj/item/frame/rack, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) +"myN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_north) "mzn" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -9108,11 +9091,6 @@ dir = 1 }, /area/kutjevo/interior/construction) -"mDA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_N_East) "mDH" = ( /obj/structure/flora/bush/ausbushes/reedbush, /obj/structure/platform/kutjevo/smooth{ @@ -9346,6 +9324,10 @@ "mQl" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/lz_river) +"mQn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_S_East) "mRP" = ( /turf/open/floor/kutjevo/colors/purple/inner_corner{ dir = 8 @@ -9542,12 +9524,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_river) -"niP" = ( -/obj/structure/tunnel{ - id = "hole3" - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/botany_medical_cave) "niT" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -9700,10 +9676,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"ntF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/colony_central) "ntM" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -9778,6 +9750,11 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) +"nzq" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_S_East) "nzB" = ( /obj/structure/bed/sofa/vert/grey/bot{ pixel_y = 4 @@ -10243,6 +10220,10 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"oas" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/interior/colony_north) "oaG" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -10560,11 +10541,6 @@ dir = 1 }, /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, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_S_East) "ozl" = ( /obj/structure/platform/kutjevo, /turf/open/gm/river/desert/shallow_edge{ @@ -10608,6 +10584,11 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"oBd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_N_East) "oDe" = ( /obj/structure/closet/emcloset, /obj/structure/machinery/light{ @@ -10681,6 +10662,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) +"oIR" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "communications" + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/construction) "oIV" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, @@ -10766,11 +10753,6 @@ }, /turf/open/floor/kutjevo/colors/green/tile, /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" = ( /obj/structure/platform/kutjevo, /turf/open/gm/river/desert/shallow_corner{ @@ -10858,6 +10840,11 @@ "oUh" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) +"oUG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/interior/colony_N_East) "oUM" = ( /obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/machinery/light, @@ -10894,10 +10881,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"oXH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_South) "oYQ" = ( /obj/structure/blocker/invisible_wall, /obj/structure/surface/table/reinforced/prison, @@ -10974,11 +10957,6 @@ dir = 1 }, /area/kutjevo/exterior/runoff_bridge) -"pfq" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) "pfz" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/complex_border/med_rec) @@ -10990,6 +10968,12 @@ icon_state = "0,5" }, /area/kutjevo/interior/construction) +"pfQ" = ( +/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, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_S_East) "pfR" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -11132,6 +11116,10 @@ /obj/item/storage/belt/shotgun, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"pob" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/colony_South) "pof" = ( /obj/structure/platform/kutjevo, /turf/open/floor/kutjevo/tan, @@ -12098,10 +12086,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"qED" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_S_East) "qFU" = ( /turf/open/desert/desert_shore/shore_corner2{ dir = 8 @@ -12194,12 +12178,6 @@ icon = 'icons/turf/floors/desert_water_toxic.dmi' }, /area/kutjevo/interior/oob) -"qLV" = ( -/obj/structure/tunnel{ - id = "hole2" - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/stonyfields) "qMC" = ( /obj/structure/machinery/light{ dir = 4 @@ -12238,10 +12216,6 @@ dir = 5 }, /area/kutjevo/interior/construction) -"qOP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) "qPa" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -12447,6 +12421,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"rhk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_N_East) "rhK" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/operating) @@ -12456,12 +12434,6 @@ }, /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/runoff_river) -"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, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_north) "rih" = ( /turf/open/desert/desert_shore/shore_corner2{ dir = 8 @@ -12748,6 +12720,10 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/triage) +"rEb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_N_East) "rEo" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -12788,6 +12764,11 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_central) +"rGg" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "rGm" = ( /obj/structure/machinery/space_heater, /turf/open/floor/kutjevo/colors/purple, @@ -13014,6 +12995,14 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) +"rWj" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/complex/botany/east_tech) "rWK" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/kutjevo/colors, @@ -13123,11 +13112,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"scK" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/interior/colony_S_East) "scY" = ( /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/kutjevo/tan, @@ -13423,10 +13407,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med/operating) -"syM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_N_East) "szC" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, @@ -13913,11 +13893,6 @@ /obj/item/weapon/gun/revolver/cmb, /turf/open/floor/kutjevo/tan, /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, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/interior/colony_S_East) "tgZ" = ( /obj/structure/surface/table/almayer, /obj/item/weapon/gun/revolver/cmb, @@ -14160,10 +14135,6 @@ }, /turf/open/gm/dirt2, /area/kutjevo/exterior/complex_border/med_park) -"tyq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/interior/colony_north) "tyJ" = ( /obj/structure/bed/chair/office/light, /turf/open/floor/kutjevo/grey/plate, @@ -14206,10 +14177,6 @@ }, /turf/open/floor/carpet, /area/kutjevo/interior/oob) -"tCm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/interior/colony_South) "tCK" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -14342,6 +14309,10 @@ /obj/structure/bed/sofa/vert/white, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/auto_doc) +"tKT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/interior/colony_South) "tKY" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) @@ -14457,15 +14428,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/cells) -"tSi" = ( -/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, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/colony_South) "tTi" = ( /obj/structure/blocker/invisible_wall, /obj/structure/filingcabinet, @@ -14807,11 +14769,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /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, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_N_East) "ury" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" @@ -14836,11 +14793,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /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" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" @@ -14856,6 +14808,10 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) +"uwv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_S_East) "uwD" = ( /obj/item/clothing/mask/cigarette/pipe/cobpipe, /turf/open/floor/kutjevo/multi_tiles{ @@ -15181,6 +15137,16 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) +"uOW" = ( +/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, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_north) +"uPc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/interior/colony_N_East) "uPu" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap_butt" @@ -15200,11 +15166,6 @@ }, /turf/open/floor/mech_bay_recharge_floor, /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, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_N_East) "uQa" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/structure/machinery/light{ @@ -15607,6 +15568,10 @@ /obj/item/newspaper, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"vnW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/interior/colony_S_East) "voy" = ( /obj/structure/machinery/light, /turf/open/floor/almayer/research/containment/floor1, @@ -15700,12 +15665,6 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"vzy" = ( -/obj/structure/tunnel{ - id = "hole4" - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "vzC" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -15885,11 +15844,10 @@ "vHL" = ( /turf/open/floor/kutjevo/colors/green/tile, /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, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_S_East) +"vJT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/colony_central) "vKp" = ( /obj/structure/bed, /obj/structure/window/reinforced{ @@ -16014,6 +15972,10 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) +"vQP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/stonyfields) "vRH" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -16215,6 +16177,11 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) +"wiw" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) "wix" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -16236,11 +16203,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"wjW" = ( -/obj/structure/blocker/invisible_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/carpet, -/area/kutjevo/interior/oob) "wkw" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, @@ -16597,6 +16559,11 @@ "wKr" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/interior/colony_central) +"wKU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/interior/colony_S_East) "wLp" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "kutjevo_medlock_pan"; @@ -16750,10 +16717,6 @@ "wYp" = ( /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"wYE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/interior/colony_S_East) "wZo" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -16785,6 +16748,10 @@ /obj/item/explosive/plastic, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) +"xbQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_South) "xca" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -16879,17 +16846,22 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"xkU" = ( +/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) "xlk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_S_East) -"xlt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"xls" = ( +/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, -/turf/closed/wall/resin/thick, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) "xlD" = ( /obj/structure/machinery/light, @@ -17092,9 +17064,20 @@ /obj/structure/lattice, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_north) +"xzW" = ( +/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, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_N_East) "xzY" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) +"xAf" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/carpet, +/area/kutjevo/interior/oob) "xAr" = ( /obj/structure/barricade/metal{ dir = 4 @@ -17225,12 +17208,6 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) -"xPU" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "communications" - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/construction) "xQz" = ( /turf/open/floor/kutjevo/colors/cyan/inner_corner{ dir = 1 @@ -17391,6 +17368,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) +"yat" = ( +/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, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_S_East) "yaE" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 @@ -17436,6 +17419,11 @@ dir = 4 }, /area/kutjevo/interior/complex/botany) +"ycX" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_South) "ydh" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/gm/river/desert/shallow_edge{ @@ -27683,7 +27671,7 @@ sYd bXl bXl bXl -vzy +afd sYd bXl sYd @@ -33244,7 +33232,7 @@ xJg xJg xJg xJg -qLV +vQP jfQ jfQ xJg @@ -34528,7 +34516,7 @@ jhS jhS jhS wff -niP +hBl wff wff jhS @@ -39708,7 +39696,7 @@ xWK bKH xWK xWK -xPU +oIR xWK jhx bKH @@ -40572,7 +40560,7 @@ hws qwg vcY jhS -dtV +rWj dkE tfx dkE @@ -41826,7 +41814,7 @@ dxF dxF dxF bEH -hSU +myN bkR bkR bEH @@ -42345,7 +42333,7 @@ bkR wTt bkR bEH -lZT +lsK hUk hUk hUk @@ -42660,11 +42648,11 @@ dxF wTt bEH bkR -hSU +myN bkR bkR bkR -jBX +iur bkR bkR bEH @@ -42835,7 +42823,7 @@ wTt bkR bkR bkR -tyq +oas bkR hUk bkR @@ -42900,7 +42888,7 @@ qGx oGw mcv lFt -wjW +xAf gdb grR mcv @@ -42991,10 +42979,10 @@ dxF dxF dxF dxF -ahp -ahp -cTY -cTY +dJh +dJh +eoq +eoq hUk hUk wTt @@ -43086,7 +43074,7 @@ dxF dxF mMH bpj -tCm +tKT bpj bpj dxF @@ -43247,10 +43235,10 @@ tXK fTk tXK mMH -qOP +jrS mMH npL -gQC +iNV bpj npL npL @@ -43417,7 +43405,7 @@ mMH mMH bpj bpj -gQC +iNV bpj npL npL @@ -43488,16 +43476,16 @@ dxF wTt wTt bkR -hSU +myN bkR wTt -hSU +myN bkR bkR wTt bkR wTt -hSU +myN hUk hUk hUk @@ -43505,7 +43493,7 @@ pId wTt bkR bkR -hSU +myN bkR bkR bkR @@ -43584,13 +43572,13 @@ mMH mMH bpj bpj -gQC -oXH +iNV +xbQ bpj npL bpj bpj -oXH +xbQ bpj dxF dxF @@ -43745,7 +43733,7 @@ slx qGx qGx duu -ltv +aFo tXK mMH mMH @@ -43916,7 +43904,7 @@ fTk tXK mMH mMH -oXH +xbQ wXd wXd wXd @@ -43983,10 +43971,10 @@ dxF dxF dxF wTt -jBX +iur wTt bkR -hSU +myN bkR bkR bkR @@ -43995,7 +43983,7 @@ kBz bkR bkR bkR -hSU +myN bkR wTt bkR @@ -44088,7 +44076,7 @@ wXd wXd wXd wXd -qOP +jrS mMH npL bpj @@ -44248,9 +44236,9 @@ klE rdm rdm rdm -gQC -gQC -gQC +iNV +iNV +iNV wXd wXd wXd @@ -44258,8 +44246,8 @@ wXd wXd mMH npL -iwF -iwF +ycX +ycX bpj mMH dxF @@ -44334,7 +44322,7 @@ bkR bkR bkR wTt -cTY +eoq wTt bEH wTt @@ -44343,7 +44331,7 @@ bEH bkR bkR bkR -hSU +myN bkR bkR bkR @@ -44424,9 +44412,9 @@ wXd wXd mMH mMH -oXH -hGB -iwF +xbQ +gKc +ycX bpj mMH dxF @@ -44481,13 +44469,13 @@ dxF dxF dxF dxF -jBX +iur wTt bkR bkR bkR bkR -jBX +iur bkR bkR bkR @@ -44501,8 +44489,8 @@ bkR wTt bkR bkR -ahp -hSU +dJh +myN wTt wTt bEH @@ -44583,7 +44571,7 @@ rdm rdm rdm mMH -oXH +xbQ bpj bpj mMH @@ -44668,12 +44656,12 @@ wTt wTt wTt bkR -cTY +eoq bkR bkR bkR bkR -hSU +myN bkR bkR bkR @@ -44755,13 +44743,13 @@ bpj bpj bpj bpj -tCm +tKT npL bpj bpj bpj bpj -oXH +xbQ bpj eud dxF @@ -44835,7 +44823,7 @@ wTt hUk hUk wTt -ahp +dJh bkR bkR bkR @@ -44917,14 +44905,14 @@ rdm rdm rdm mMH -iwF -iwF +ycX +ycX bpj bpj bpj -iwF -iwF -iwF +ycX +ycX +ycX bpj bpj bpj @@ -44982,7 +44970,7 @@ dxF dxF dxF dxF -jBX +iur bkR bkR bkR @@ -44991,13 +44979,13 @@ hUk hUk hUk hUk -jBX +iur bkR bkR wTt wTt wTt -jBX +iur hUk hUk hUk @@ -45084,16 +45072,16 @@ rdm rdm rdm mMH -oXH -iwF +xbQ +ycX bpj -oXH +xbQ bpj -iwF -gma -iwF +ycX +xls +ycX bpj -oXH +xbQ bpj bpj bpj @@ -45158,10 +45146,10 @@ hUk hUk hUk hUk -ahp -cTY -cTY -ahp +dJh +eoq +eoq +dJh hUk hUk hUk @@ -45181,7 +45169,7 @@ wTt wTt bEH bkR -hSU +myN bkR bkR hUk @@ -45256,16 +45244,16 @@ bpj bpj bpj bpj -iwF -iwF -iwF +ycX +ycX +ycX bpj bpj -iwF -iwF +ycX +ycX bpj ehJ -dcb +dvG dxF dxF dxF @@ -45317,9 +45305,9 @@ dxF dxF dxF dxF -cTY -cTY -cTY +eoq +eoq +eoq hUk hUk hUk @@ -45428,11 +45416,11 @@ bpj bpj bpj bpj -iwF -iwF +ycX +ycX bpj ehJ -dcb +dvG dxF dxF dxF @@ -45486,7 +45474,7 @@ dxF dxF bkR bkR -jBX +iur wTt wTt wTt @@ -45495,7 +45483,7 @@ bkR bkR bkR bkR -jBX +iur hUk hUk hUk @@ -45576,7 +45564,7 @@ bpj bpj bpj mMH -qOP +jrS bpj wXd wXd @@ -45585,21 +45573,21 @@ wXd wXd mMH npL -oXH +xbQ bpj bpj bpj bpj bpj bpj -oXH +xbQ bpj bpj bpj bpj -oXH +xbQ ehJ -efS +frV dxF dxF dxF @@ -45656,10 +45644,10 @@ bkR bkR wTt bkR -hSU +myN bkR -kuM -kuM +lca +lca bkR wTt hUk @@ -45686,7 +45674,7 @@ wTt wTt bkR bkR -hSU +myN bkR bkR bkR @@ -45767,7 +45755,7 @@ bpj bpj bpj ehJ -dcb +dvG dxF dxF dxF @@ -45819,14 +45807,14 @@ sMM sMM bkR bkR -kuM -kuM +lca +lca bkR bkR bkR bkR -kuM -kuM +lca +lca bkR wTt hUk @@ -45838,7 +45826,7 @@ hUk wTt wTt bkR -hSU +myN wTt hUk hUk @@ -45902,7 +45890,7 @@ fbK fbK fbK vxe -oXH +xbQ mMH bpj bpj @@ -45930,11 +45918,11 @@ bpj dWU bpj bpj -ewV +iuT bpj bpj ehJ -dcb +dvG dxF dxF dxF @@ -45984,16 +45972,16 @@ dxF dxF sMM bkR -hSU +myN bkR -kuM -cTj +lca +uOW bkR bkR bkR bkR wTt -hSU +myN bkR hUk hUk @@ -46074,7 +46062,7 @@ qmR bpj bpj bpj -tCm +tKT mMH npL bpj @@ -46097,11 +46085,11 @@ bpj cSJ bpj bpj -ewV +iuT bpj bpj -cPZ -dcb +xkU +dvG dxF dxF dxF @@ -46156,8 +46144,8 @@ bkR bkR bkR bkR -kuM -rid +lca +kwf wTt bkR wTt @@ -46251,10 +46239,10 @@ wXd wXd wXd bpj -oXH +xbQ bpj bpj -iwF +ycX bpj bpj bpj @@ -46264,11 +46252,11 @@ bpj bpj bpj bpj -ewV +iuT bpj bpj ehJ -dcb +dvG dxF dxF dxF @@ -46323,8 +46311,8 @@ bkR bkR bkR bkR -kuM -kuM +lca +lca bkR bkR wTt @@ -46421,20 +46409,20 @@ bpj npL bpj bpj -iwF -iwF +ycX +ycX bpj bpj bpj bpj bpj bpj -oXH +xbQ bpj bpj mMH ehJ -dcb +dvG dxF dxF dxF @@ -46491,7 +46479,7 @@ bkR bkR bkR bkR -hSU +myN bkR hUk hUk @@ -46587,21 +46575,21 @@ mMH bpj bpj bpj -oXH +xbQ bpj bpj bpj bpj bpj -oXH +xbQ bpj bpj bpj bpj bpj -qOP +jrS ehJ -xlt +gMY dxF dxF dxF @@ -46676,13 +46664,13 @@ bkR wTt hUk wTt -dNI +hmS hUk wTt wTt wTt wTt -jBX +iur wTt bEH hUk @@ -46818,7 +46806,7 @@ dxF sMM bkR bkR -hSU +myN bkR bkR bkR @@ -46838,7 +46826,7 @@ hUk hUk pId bkR -hSU +myN bkR wTt wTt @@ -46989,13 +46977,13 @@ bkR bkR bkR bkR -hSU +myN bkR bkR bkR bkR bkR -jBX +iur hUk hUk hUk @@ -47085,22 +47073,22 @@ wXd wXd jKI jKI -qOP +jrS bpj bpj npL bpj bpj -oXH +xbQ bpj bpj bpj bpj bpj -oXH +xbQ bpj bpj -cPZ +xkU dxF dxF dxF @@ -47154,7 +47142,7 @@ bkR bkR bkR bkR -ush +aZH bkR ykY bkR @@ -47241,7 +47229,7 @@ feg wXd wXd bpj -oXH +xbQ bpj npL bpj @@ -47253,8 +47241,8 @@ jKI jKI jKI mMH -iwF -iwF +ycX +ycX bpj bpj bpj @@ -47321,7 +47309,7 @@ bkR bkR bkR bkR -ush +aZH bkR xqV bkR @@ -47412,16 +47400,16 @@ bpj bpj bpj bpj -oXH +xbQ bpj bpj npL wvr npL -tSZ +aqe bpj -iwF -iwF +ycX +ycX bpj npL bpj @@ -47484,16 +47472,16 @@ dxF dxF dxF sMM -hSU +myN bkR bkR bkR -ush -hSU +aZH +myN bkR bkR bkR -hSU +myN bkR bkR wTt @@ -47509,7 +47497,7 @@ hUk bkR bkR bkR -hSU +myN bkR bEH wTt @@ -47520,7 +47508,7 @@ hUk hUk hUk wTt -jBX +iur hUk hUk hUk @@ -47585,23 +47573,23 @@ bpj bpj qmR bpj -tSZ +aqe bpj bpj bpj -oXH +xbQ bpj npL bpj bpj bpj bpj -iwF -iwF +ycX +ycX bpj bpj mMH -cPZ +xkU dxF dxF dxF @@ -47662,8 +47650,8 @@ bkR bkR bkR wTt -kuM -pfq +lca +rGg hUk hUk hUk @@ -47749,10 +47737,10 @@ bpj bpj bpj bpj -oXH +xbQ wvr bpj -tSZ +aqe bpj bpj bpj @@ -47763,11 +47751,11 @@ bpj bpj bpj bpj -iwF -iwF +ycX +ycX bpj bpj -qOP +jrS dxF dxF dxF @@ -47998,12 +47986,12 @@ bkR bkR bkR bkR -hSU +myN bkR -cTY +eoq bkR wTt -jBX +iur hUk hUk hUk @@ -48016,7 +48004,7 @@ bkR bkR wTt wTt -tyq +oas bEH bEH hUk @@ -48075,12 +48063,12 @@ yfo mnT yfo bpj -oXH +xbQ bpj bpj wXd wXd -qOP +jrS bpj bpj bpj @@ -48088,15 +48076,15 @@ bpj bpj bpj jKI -tSZ -tSZ -tSZ +aqe +aqe +aqe jKI jKI wXd wXd mMH -tCm +tKT bpj bpj bpj @@ -48154,20 +48142,20 @@ dxF dxF dxF sMM -hSU +myN bkR bkR bkR bkR -kuM -kuM +lca +lca bkR bkR -kuM -kuM +lca +lca bkR bkR -cTY +eoq bkR bkR bkR @@ -48252,7 +48240,7 @@ bpj bpj bpj bpj -oXH +xbQ bpj wvr bpj @@ -48326,15 +48314,15 @@ bkR bkR bkR bkR -kuM -kuM +lca +lca bkR bkR -kuM -kuM +lca +lca bkR bkR -cTY +eoq bkR bkR bkR @@ -48361,7 +48349,7 @@ bkR bkR wTt bEH -hSU +myN wTt wTt uiK @@ -48492,7 +48480,7 @@ sMM mTf mTf bkR -hSU +myN bkR bkR bkR @@ -48501,19 +48489,19 @@ bkR bkR bkR wTt -ahp +dJh bkR bkR bkR bkR bkR -jBX +iur bkR bkR -cTY +eoq bkR bkR -hSU +myN bkR bkR bkR @@ -48524,7 +48512,7 @@ bkR bkR kBz bkR -hSU +myN wTt wTt bkR @@ -48558,7 +48546,7 @@ mnT uiK yfo mnT -ntF +vJT mnT yfo mnT @@ -48567,7 +48555,7 @@ uiK mnT mnT mnT -lGj +fAR mnT mnT mnT @@ -48591,7 +48579,7 @@ bpj bpj npL npL -tCm +tKT wXd wXd wXd @@ -48600,7 +48588,7 @@ wXd bpj npL bpj -qOP +jrS dxF dxF dxF @@ -48663,7 +48651,7 @@ sMM mTf bkR bkR -hSU +myN bkR bkR wTt @@ -48677,7 +48665,7 @@ bkR bkR bkR bkR -cTY +eoq bkR bkR bkR @@ -48710,7 +48698,7 @@ uiK uiK uiK nlv -lGj +fAR mnT mnT mnT @@ -48750,7 +48738,7 @@ bpj bpj bpj bpj -oXH +xbQ bpj bpj bpj @@ -48835,23 +48823,23 @@ bkR bkR bkR bkR -cTY +eoq bkR bkR -hSU +myN bkR bkR bkR bkR bkR -cTY +eoq bkR bkR bkR bkR bkR bkR -hSU +myN bkR bkR bkR @@ -48882,12 +48870,12 @@ mnT mnT mnT mnT -lGj +fAR mnT mnT mnT mnT -lGj +fAR mnT mnT rmt @@ -48897,7 +48885,7 @@ mnT rmt mnT mnT -lGj +fAR mnT mnT mnT @@ -48922,7 +48910,7 @@ bpj bpj bpj bpj -tCm +tKT npL npL wXd @@ -49002,7 +48990,7 @@ wTt wTt bkR bkR -cTY +eoq bkR bkR bkR @@ -49011,7 +48999,7 @@ bkR bkR bkR bkR -cTY +eoq wTt wTt wTt @@ -49086,7 +49074,7 @@ wXd bpj bpj bpj -oXH +xbQ bpj mMH npL @@ -49098,7 +49086,7 @@ wXd wXd wXd wXd -qOP +jrS bpj bpj dxF @@ -49169,7 +49157,7 @@ dxF dxF wTt wTt -ahp +dJh wTt bkR bkR @@ -49177,7 +49165,7 @@ bkR wTt bkR wTt -hSU +myN dxF dxF dxF @@ -49246,7 +49234,7 @@ lEA lEA mMH npL -oXH +xbQ bpj bpj bpj @@ -49356,7 +49344,7 @@ uwY bkR bkR bkR -hSU +myN jRd bkR bkR @@ -49369,10 +49357,10 @@ vsP vsP vsP vsP -urv -urv -mDA -mDA +hQI +hQI +krH +krH feg feg feg @@ -49432,9 +49420,9 @@ wXd wXd wXd wXd -gQC -gQC -eFX +iNV +iNV +wiw dxF dxF dxF @@ -49506,7 +49494,7 @@ dxF dxF dxF wTt -jBX +iur wTt wTt dxF @@ -49538,7 +49526,7 @@ vsP vsP kZz bsl -jQo +rEb bsl kZz feg @@ -49572,7 +49560,7 @@ uiK mnT mnT mnT -lGj +fAR uiK feg lEA @@ -49713,7 +49701,7 @@ kZz feg feg feg -bsq +bud mnT mnT mnT @@ -49879,7 +49867,7 @@ bsl bsl kZz bsl -mDA +krH mnT mnT mnT @@ -49934,7 +49922,7 @@ wXd wXd mMH bpj -oXH +xbQ mMH dxF dxF @@ -50027,7 +50015,7 @@ dxF dxF wTt bkR -hSU +myN wTt vsP vsP @@ -50042,13 +50030,13 @@ bsl bsl bsl bsl -jQo +rEb bsl bsl bsl -mDA +krH mnT -lGj +fAR mnT mnT mnT @@ -50084,7 +50072,7 @@ npL bpj jKI wvr -tSi +pob wvr jKI npL @@ -50213,7 +50201,7 @@ bsl bsl bsl bsl -mDA +krH mnT mnT mnT @@ -50359,10 +50347,10 @@ dxF dxF dxF dxF -urv -urv -urv -urv +hQI +hQI +hQI +hQI vsP vsP vsP @@ -50380,7 +50368,7 @@ bsl bsl bsl kZz -urv +hQI uiK mnT mnT @@ -50408,7 +50396,7 @@ mnT mnT mnT mnT -lGj +fAR mnT mnT mnT @@ -50433,7 +50421,7 @@ wXd bpj bpj bpj -oXH +xbQ bpj dxF dxF @@ -50540,13 +50528,13 @@ vsP iWE bsl bsl -jQo +rEb bsl bsl sNZ bsl bsl -syM +rhk vsP vsP vsP @@ -50558,7 +50546,7 @@ mnT gQp ubp mnT -lGj +fAR mnT mnT mnT @@ -50567,7 +50555,7 @@ mnT mnT kMC mnT -lGj +fAR uiK mnT bQy @@ -50581,7 +50569,7 @@ bQy mnT pBJ bpj -oXH +xbQ bpj bpj bpj @@ -50753,7 +50741,7 @@ mMH npL bpj bpj -oXH +xbQ bpj bpj npL @@ -50765,7 +50753,7 @@ wXd wXd wXd mMH -oXH +xbQ bpj bpj dxF @@ -50861,9 +50849,9 @@ dxF dxF kZz kZz -uPV -uPV -syM +oBd +oBd +rhk vsP vsP vsP @@ -50896,7 +50884,7 @@ mnT mnT mnT mnT -lGj +fAR mnT mnT kMC @@ -50905,7 +50893,7 @@ mnT mnT mnT mnT -lGj +fAR mnT mnT mnT @@ -51026,10 +51014,10 @@ dxF dxF dxF dxF -syM +rhk kZz -uPV -fKN +oBd +xzW bsl kZz vsP @@ -51055,7 +51043,7 @@ nyY kZz nlv nlv -lGj +fAR mnT mnT mnT @@ -51091,16 +51079,16 @@ bpj bpj xnT bpj -oXH +xbQ mMH mMH mMH mMH wXd wXd -gQC -gQC -eFX +iNV +iNV +wiw dxF dxF dxF @@ -51369,15 +51357,15 @@ bsl bsl bsl kZz -urv +hQI bsl bsl bsl bsl -uPV -uPV +oBd +oBd bsl -jQo +rEb kZz vsP vsP @@ -51430,7 +51418,7 @@ bpj bpj bpj bpj -oXH +xbQ bpj bpj bpj @@ -51533,16 +51521,16 @@ vsP vsP bsl bsl -fKN -uPV +xzW +oBd bsl -mDA +krH bsl -jQo +rEb bsl bsl -uPV -fKN +oBd +xzW bsl kZz vsP @@ -51700,10 +51688,10 @@ kZz vsP vsP bsl -uPV -uPV +oBd +oBd bsl -mDA +krH bsl bsl kZz @@ -51728,7 +51716,7 @@ ebB ebB ebB ebB -vIi +aXz ptY ptY ptY @@ -51870,7 +51858,7 @@ bsl bsl bsl bsl -mDA +krH kZz vsP kZz @@ -51893,13 +51881,13 @@ vsP vsP ptY jYS -bOc +uwv ebB -oxT +nzq ebB ebB ebB -qED +mQn vdv cyc tlq @@ -51923,7 +51911,7 @@ vdv vdv mMH mMH -oXH +xbQ bpj bpj bpj @@ -52028,21 +52016,21 @@ dxF dxF dxF sNZ -jQo +rEb bsl bsl bsl -jQo +rEb bsl bsl bsl -syM +rhk vsP vsP vsP kZz bsl -jQo +rEb bsl bsl kZz @@ -52062,7 +52050,7 @@ vsP ptY jYS ebB -oxT +nzq ebB ebB ebB @@ -52102,7 +52090,7 @@ wXd wXd mMH bpj -oXH +xbQ bpj bpj dxF @@ -52195,8 +52183,8 @@ dxF dxF pVi kZz -uPV -uPV +oBd +oBd bsl bsl bsl @@ -52229,7 +52217,7 @@ vsP ptY ebB ebB -vIi +aXz ebB ebB ebB @@ -52252,7 +52240,7 @@ vdv ptY ebB ebB -oxT +nzq bpj bpj bpj @@ -52362,8 +52350,8 @@ dxF dxF pVi bsl -uPV -uPV +oBd +oBd bsl bsl xqd @@ -52375,10 +52363,10 @@ sNZ kZz vsP vsP -urv -mDA -mDA -mDA +hQI +krH +krH +krH vsP vsP vsP @@ -52397,7 +52385,7 @@ vsP vsP vsP vsP -bOc +uwv ebB ebB ebB @@ -52406,7 +52394,7 @@ ebB ptY jYS jYS -wYE +vnW jYS jYS jYS @@ -52418,11 +52406,11 @@ ebB ebB ebB ebB -bOc -oxT +uwv +nzq bpj bpj -oXH +xbQ bpj bpj bpj @@ -52536,12 +52524,12 @@ bsl bsl bsl bsl -uPV -uPV +oBd +oBd bsl sNZ sNZ -syM +rhk kZz bsl bsl @@ -52568,7 +52556,7 @@ ptY ebB ebB ebB -eVy +coC ebB ebB ebB @@ -52586,7 +52574,7 @@ ebB ebB ebB ebB -oxT +nzq bpj bpj bpj @@ -52594,7 +52582,7 @@ bpj bpj bpj bpj -oXH +xbQ bpj bpj bpj @@ -52606,7 +52594,7 @@ mMH bpj bpj bpj -qOP +jrS mMH dxF dxF @@ -52703,8 +52691,8 @@ bsl bsl bsl bsl -uPV -uPV +oBd +oBd bsl bsl sNZ @@ -52735,8 +52723,8 @@ ptY ebB ebB ebB -eVy -eVy +coC +coC jYS ebB ebB @@ -52749,11 +52737,11 @@ ebB ebB ebB ebB -eVy -eVy +coC +coC ebB ebB -vIi +aXz mMH bpj bpj @@ -52872,12 +52860,12 @@ bsl bsl bsl bsl -jQo +rEb bsl bsl bsl -uPV -uPV +oBd +oBd bsl kZz vsP @@ -52898,13 +52886,13 @@ vsP vsP vsP ptY -bOc +uwv ebB ptY ptY -eVy +coC ebB -bOc +uwv ebB ebB ebB @@ -52913,11 +52901,11 @@ ebB ebB ebB ebB -bOc +uwv ebB ebB -kGl -eVy +yat +coC ebB ptY dxF @@ -52933,7 +52921,7 @@ mMH mMH mMH bpj -oXH +xbQ bpj bpj bpj @@ -53030,7 +53018,7 @@ dxF dxF gFf bsl -jQo +rEb bsl bsl bsl @@ -53043,9 +53031,9 @@ bsl bsl bsl bsl -uPV -uPV -syM +oBd +oBd +rhk vsP vsP vsP @@ -53271,7 +53259,7 @@ mMH bpj bpj bpj -oXH +xbQ bpj bpj npL @@ -53397,15 +53385,15 @@ vsP vsP vsP vsP -vIi -oxT -oxT -oxT +aXz +nzq +nzq +nzq vdv vdv vdv vdv -qED +mQn ptY jYS ebB @@ -53417,7 +53405,7 @@ ptY ebB ebB ebB -bOc +uwv ebB ptY dxF @@ -53534,7 +53522,7 @@ gFf bsl bsl bsl -jQo +rEb bsl bsl kZz @@ -53543,7 +53531,7 @@ bsl bsl bsl bsl -jQo +rEb bsl bsl bsl @@ -53711,12 +53699,12 @@ bsl bsl bsl bsl -uPV -uPV +oBd +oBd bsl bsl bsl -mDA +krH kZz kZz vsP @@ -53870,20 +53858,20 @@ bsl bsl bsl bsl -oOv -oOv -oOv +hTL +hTL +hTL bsl bsl bsl bsl bsl -uPV -uPV +oBd +oBd bsl bsl bsl -mDA +krH bsl bsl bsl @@ -53891,13 +53879,13 @@ kZz kZz kZz bsl -jQo +rEb bsl bsl bsl kZz -urv -bOc +hQI +uwv ebB ebB ebB @@ -53906,7 +53894,7 @@ ebB vdv vdv vdv -qED +mQn ebB ebB ebB @@ -53918,7 +53906,7 @@ vdv ptY ebB ebB -bOc +uwv ptY dxF dxF @@ -54038,7 +54026,7 @@ bsl bsl bsl bsl -jQo +rEb bsl bsl bsl @@ -54047,10 +54035,10 @@ bsl bsl bsl bsl -lXQ +uPc sNZ sNZ -gtr +oUG bsl bsl bsl @@ -54063,14 +54051,14 @@ sNZ sNZ bsl bsl -mDA +krH ebB ebB -eVy -eVy +coC +coC ebB ebB -vIi +aXz ptY ptY ebB @@ -54217,7 +54205,7 @@ kZz vsP kZz sNZ -gtr +oUG sNZ bsl bsl @@ -54230,28 +54218,28 @@ bsl bsl bsl bsl -mDA +krH ebB ebB -eVy -eVy +coC +coC ebB ebB -oxT +nzq ebB ebB ebB -gBR -eVy +pfQ +coC ebB ebB -scK +iht jYS jYS jYS ebB -eVy -scK +coC +iht ebB ebB ptY @@ -54376,8 +54364,8 @@ bsl bsl bsl bsl -uPV -uPV +oBd +oBd bsl bsl kZz @@ -54387,7 +54375,7 @@ vsP vsP sNZ sNZ -lXQ +uPc bsl bsl bsl @@ -54395,30 +54383,30 @@ bsl bsl bsl bsl -jQo +rEb kZz -urv +hQI ptY jYS ebB -bOc +uwv jYS jYS -oxT +nzq ebB ebB ebB -eVy -eVy -bOc +coC +coC +uwv ebB -eVy -wYE +coC +vnW jYS ebB -wYE -eVy -eVy +vnW +coC +coC ebB ebB ptY @@ -54542,10 +54530,10 @@ bsl bsl bsl bsl -jQo -uPV -uPV -jQo +rEb +oBd +oBd +rEb kZz vsP vsP @@ -54571,7 +54559,7 @@ vsP ptY ptY jYS -tgO +wKU jYS ebB ebB @@ -54908,22 +54896,22 @@ vsP vsP vsP ptY -bOc -eVy -eVy +uwv +coC +coC ebB ebB ebB ebB ptY ebB -bOc +uwv ebB jYS ebB ebB ebB -iTX +ame dxF dxF dxF @@ -55043,16 +55031,16 @@ dxF dxF dxF dxF -syM +rhk kZz bsl bsl bsl bsl bsl -urv +hQI bsl -jQo +rEb bsl bsl kZz @@ -55076,8 +55064,8 @@ vsP vsP ptY ebB -scK -eVy +iht +coC ebB ebB ptY @@ -55217,7 +55205,7 @@ bsl bsl bsl bsl -mDA +krH bsl bsl bsl @@ -55384,7 +55372,7 @@ bsl bsl bsl bsl -mDA +krH bsl bsl bsl @@ -55412,18 +55400,18 @@ ptY ebB ebB ebB -bOc +uwv ebB ebB -bOc +uwv wuH ebB ebB ebB ebB -bOc +uwv ebB -bDG +hjn ebB byx dxF @@ -55550,8 +55538,8 @@ dxF dxF dxF kZz -jQo -urv +rEb +hQI bsl bsl bsl @@ -55590,7 +55578,7 @@ ebB huV ebB ebB -bDG +hjn ebB byx dxF @@ -55722,7 +55710,7 @@ dxF bsl kZz bsl -jQo +rEb bsl bsl bsl @@ -55757,7 +55745,7 @@ ebB tzQ ebB ebB -bDG +hjn ebB byx dxF @@ -55897,7 +55885,7 @@ bsl bsl bsl bsl -lXQ +uPc sNZ bsl kZz @@ -55910,7 +55898,7 @@ ptY jYS ebB ebB -bOc +uwv ebB ebB ebB @@ -55919,13 +55907,13 @@ ebB ebB ebB ebB -bOc +uwv ebB ebB ebB ebB ebB -bOc +uwv byx dxF dxF @@ -56060,7 +56048,7 @@ kZz kZz bsl bsl -jQo +rEb bsl bsl bsl @@ -56237,7 +56225,7 @@ sNZ sNZ bsl bsl -mDA +krH jYS ebB ebB @@ -56402,28 +56390,28 @@ bsl bsl bsl bsl -jQo +rEb bsl -mDA +krH ebB -eVy -eVy -bOc +coC +coC +uwv ebB ebB ebB ebB ebB -bOc +uwv jYS jYS -iTX +ame byx byx ebB ebB ebB -bOc +uwv ebB ebB byx @@ -56571,10 +56559,10 @@ bsl bsl bsl bsl -mDA +krH ebB -eVy -eVy +coC +coC ebB ebB ebB @@ -56738,7 +56726,7 @@ bsl bsl bsl kZz -urv +hQI ptY ebB ebB @@ -56903,7 +56891,7 @@ dxF dxF dxF kZz -syM +rhk dxF dxF ptY @@ -56912,7 +56900,7 @@ ebB jYS jYS jYS -wYE +vnW ptY ptY ptY 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 69e040e98ea2..44c8243cde40 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -9,6 +9,13 @@ icon_state = "multi_tiles" }, /area/lv522/indoors/c_block/mining) +"aaC" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor/south) "aaF" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "15" @@ -25,15 +32,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/outdoors/n_rockies) -"abe" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "abo" = ( /turf/closed/wall/strata_outpost, /area/lv522/oob) @@ -97,6 +95,12 @@ icon_state = "white_cyan2" }, /area/lv522/indoors/a_block/executive) +"acm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor) "acn" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, @@ -120,6 +124,10 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor) +"acC" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "acD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat, @@ -193,12 +201,6 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, /area/lv522/indoors/b_block/bridge) -"aem" = ( -/obj/structure/barricade/plasteel/metal, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_street) "aeD" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -212,6 +214,20 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/mining) +"aeT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/cargo_intake) +"afa" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "afn" = ( /obj/item/reagent_container/spray/cleaner/drone{ pixel_x = -3; @@ -280,12 +296,29 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) +"agx" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/cargo_intake) "agM" = ( /obj/effect/decal/cleanable/generic, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/bridge) +"ahm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/north_command_centre) "ahs" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -366,6 +399,13 @@ "aiQ" = ( /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/central_streets) +"aiR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 9; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/west) "ajw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -414,19 +454,9 @@ icon_state = "marked" }, /area/lv522/atmos/way_in_command_centre) -"akp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) "akM" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) -"akP" = ( -/obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) "akV" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/shale/layer1, @@ -458,13 +488,6 @@ /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/sand_white/layer0, /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, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) "amC" = ( /obj/structure/bed/roller, /obj/effect/landmark/objective_landmark/medium, @@ -577,13 +600,10 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"aox" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) +"aoF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat, +/area/lv522/atmos/west_reactor) "aoH" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, @@ -591,6 +611,12 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"aoZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/west_reactor) "apc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red, @@ -620,27 +646,12 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/bridge) -"apC" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) "apS" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/auto_turf/shale/layer1, /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, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) "aqH" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_crate_alt2"; @@ -792,18 +803,6 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/n_rockies) -"aue" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "aut" = ( /turf/open/floor/corsat{ dir = 5; @@ -830,10 +829,36 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"avZ" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "awj" = ( /obj/item/stack/rods, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) +"awm" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"awn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/filt) "awI" = ( /obj/item/explosive/plastic/breaching_charge{ unacidable = 1 @@ -883,6 +908,16 @@ icon_state = "plate" }, /area/lv522/atmos/reactor_garage) +"ayf" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "ayn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -927,6 +962,10 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/a_block/corpo/glass) +"azJ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) "azK" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison, @@ -953,6 +992,12 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"aAX" = ( +/obj/item/ammo_box/magazine/misc/mre/empty, +/turf/open/asphalt/cement{ + icon_state = "cement3" + }, +/area/lv522/outdoors/colony_streets/north_street) "aBm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/lattice_prop{ @@ -1057,12 +1102,12 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"aEL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +"aEG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ icon_state = "plate" }, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/east_reactor/south) "aEM" = ( /obj/structure/machinery/atm{ name = "Weyland-Yutani Automatic Teller Machine"; @@ -1091,6 +1136,15 @@ icon_state = "floor_plate" }, /area/lv522/indoors/c_block/cargo) +"aEX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "browncorner" + }, +/area/lv522/atmos/east_reactor) "aFf" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -1102,6 +1156,11 @@ icon_state = "marked" }, /area/lv522/landing_zone_1/ceiling) +"aFt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) "aFA" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -1150,13 +1209,6 @@ /obj/item/trash/pistachios, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"aGI" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) "aGQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, @@ -1191,6 +1243,12 @@ icon_state = "darkyellowfull2" }, /area/lv522/indoors/lone_buildings/outdoor_bot) +"aId" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/lv522/indoors/lone_buildings/storage_blocks) "aIf" = ( /obj/structure/machinery/light{ dir = 1 @@ -1268,13 +1326,6 @@ icon_state = "blue1" }, /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, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) "aKf" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison{ @@ -1293,15 +1344,10 @@ icon_state = "darkbrownfull2" }, /area/lv522/landing_zone_2) -"aKK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) +"aKE" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "aKO" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -1311,13 +1357,6 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) -"aKQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/atmos/cargo_intake) "aLf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, @@ -1343,10 +1382,6 @@ icon_state = "w-y0" }, /area/lv522/oob/w_y_vault) -"aLJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) "aMI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed{ @@ -1359,6 +1394,23 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"aMK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) +"aMP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/cargo_intake) "aNn" = ( /obj/structure/transmitter/colony_net{ phone_category = "LV522 Chances Claim"; @@ -1434,6 +1486,10 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/bridge) +"aPJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) "aPN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light{ @@ -1462,13 +1518,13 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/medical) -"aQf" = ( -/obj/structure/surface/table/almayer, -/obj/item/map/lv522_map, -/turf/open/asphalt/cement{ - icon_state = "cement3" +"aQp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "brown" }, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/atmos/east_reactor/west) "aQs" = ( /obj/structure/machinery/telecomms/bus/preset_one, /turf/open/floor/prison{ @@ -1508,13 +1564,13 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/mining) -"aRB" = ( -/obj/structure/platform{ - dir = 1 +"aRF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "browncorner" }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/atmos/east_reactor/south) "aRH" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -1713,17 +1769,6 @@ /obj/structure/ore_box, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"aWd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Radio Tower Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/t_comm) "aWl" = ( /obj/structure/barricade/wooden, /obj/structure/pipes/standard/simple/hidden/green, @@ -1784,13 +1829,6 @@ icon_state = "blue_plate" }, /area/lv522/indoors/c_block/mining) -"aWX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) "aXa" = ( /turf/open/floor/corsat{ dir = 6; @@ -1824,21 +1862,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"aYE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "East_Lock"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) "aYF" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -2053,13 +2076,6 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/north_west_street) -"bdv" = ( -/obj/structure/largecrate/random/case, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) "bdH" = ( /obj/structure/bed/chair{ dir = 4 @@ -2078,16 +2094,6 @@ icon_state = "cement4" }, /area/lv522/outdoors/nw_rockies) -"bdY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/item/weapon/gun/launcher/grenade/m81/m79, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) "beb" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -2136,12 +2142,6 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/bridges/corpo) -"bet" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/west_reactor) "bex" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -2171,6 +2171,10 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor/north) +"bgw" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "bgJ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "Sec-Kitchen-Lockdown"; @@ -2282,15 +2286,6 @@ icon_state = "darkpurple2" }, /area/lv522/indoors/a_block/dorms) -"biZ" = ( -/obj/structure/barricade/sandbags{ - dir = 8 - }, -/obj/item/trash/uscm_mre, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) "bjd" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/sewer) @@ -2545,12 +2540,31 @@ "bsG" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) +"bsO" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/filt) "btb" = ( /turf/open/floor/prison{ dir = 1; icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) +"btA" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/strata{ + icon_state = "blue1" + }, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "btP" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, @@ -2677,6 +2691,13 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"bxs" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat{ + dir = 10; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "bxz" = ( /obj/structure/machinery/disposal, /turf/open/floor{ @@ -2689,13 +2710,15 @@ icon_state = "squares" }, /area/lv522/atmos/east_reactor) -"bye" = ( -/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" +"byb" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/atmos/east_reactor) +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "byu" = ( /obj/structure/bed/chair{ dir = 1 @@ -2705,6 +2728,22 @@ icon_state = "darkpurple2" }, /area/lv522/indoors/a_block/dorms) +"byD" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid"; + pixel_x = -10; + pixel_y = 4 + }, +/turf/open/asphalt/cement{ + icon_state = "cement3" + }, +/area/lv522/outdoors/colony_streets/north_street) "byJ" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -2778,6 +2817,13 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) +"bAn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) "bAo" = ( /obj/item/prop/colony/usedbandage{ dir = 10 @@ -2878,6 +2924,15 @@ /obj/structure/girder, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) +"bCt" = ( +/obj/structure/machinery/power/apc/weak{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/north_command_centre) "bCy" = ( /turf/open/asphalt/cement{ icon_state = "cement9" @@ -2963,6 +3018,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"bFN" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "bFU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3029,11 +3093,6 @@ icon_state = "white_cyan3" }, /area/lv522/indoors/a_block/medical) -"bHk" = ( -/obj/structure/barricade/sandbags, -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) "bHA" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -3113,38 +3172,11 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor) -"bIY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) "bJa" = ( /turf/open/floor/shiva{ icon_state = "radiator_tile2" }, /area/lv522/indoors/a_block/corpo/glass) -"bJp" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/structure/tunnel, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) "bJy" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/far, @@ -3177,14 +3209,6 @@ /obj/item/stack/folding_barricade, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"bJY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/way_in_command_centre) "bJZ" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -3202,15 +3226,10 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor) -"bKj" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/small_stack, -/obj/item/ore/uranium, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) +"bKf" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) "bKk" = ( /turf/open/floor/corsat{ dir = 8; @@ -3232,6 +3251,12 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) +"bKu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement{ + icon_state = "cement12" + }, +/area/lv522/outdoors/colony_streets/north_street) "bKO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -3339,35 +3364,12 @@ icon_state = "wood" }, /area/lv522/indoors/b_block/bar) -"bNy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo) "bNA" = ( /obj/structure/machinery/light, /turf/open/floor/prison{ icon_state = "darkpurple2" }, /area/lv522/indoors/a_block/dorms) -"bNE" = ( -/obj/item/tank/oxygen{ - pixel_x = 4; - pixel_y = 19 - }, -/obj/item/tool/mop{ - desc = "Unlock the power of Mop-Fu!"; - force = 35; - pixel_x = -12; - pixel_y = 24 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) "bNJ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -3390,15 +3392,6 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor) -"bOv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) "bOE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -3412,12 +3405,15 @@ icon_state = "floor_plate" }, /area/lv522/indoors/b_block/bar) -"bOX" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"bPw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/north_command_centre) "bPH" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -3470,10 +3466,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"bQA" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "bQC" = ( /obj/structure/bed/chair{ dir = 1 @@ -3503,10 +3495,18 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/bridge) -"bRv" = ( -/obj/item/trash/uscm_mre, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) +"bQP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "bRN" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -3558,13 +3558,6 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/a_block/bridges/op_centre) -"bSM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) "bSU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3624,10 +3617,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/mining) -"bUy" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) "bUJ" = ( /obj/structure/largecrate/random/mini{ pixel_x = -2; @@ -3724,6 +3713,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) +"bWv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "bWA" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 4; @@ -3735,6 +3728,13 @@ }, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) +"bWK" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/command_centre) "bWQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -3775,12 +3775,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"bXq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/west_reactor) "bXA" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat{ @@ -3798,6 +3792,16 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"bXU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper B-Block Bar" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/b_block/bar) "bXZ" = ( /obj/structure/platform{ dir = 1 @@ -3823,6 +3827,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"bYG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/indoors/a_block/kitchen) "bYS" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4; @@ -3855,12 +3865,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"bZe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/north) "bZB" = ( /obj/structure/girder/displaced, /turf/open/floor/corsat, @@ -3981,6 +3985,11 @@ icon_state = "floor_plate" }, /area/lv522/atmos/sewer) +"cbb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "cbn" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -4018,21 +4027,6 @@ /obj/structure/machinery/light, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"cbY" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - icon_state = "flammable_pipe_3"; - pixel_y = 16 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - icon_state = "flammable_pipe_3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) "cce" = ( /obj/structure/surface/table/almayer, /obj/item/device/analyzer{ @@ -4048,6 +4042,13 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor) +"cci" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor) "cct" = ( /obj/structure/bed/chair/wood/normal, /obj/effect/decal/cleanable/dirt, @@ -4075,20 +4076,6 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cdj" = ( -/obj/structure/largecrate/random, -/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, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) "cem" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -4134,18 +4121,6 @@ icon_state = "cement4" }, /area/lv522/outdoors/colony_streets/north_east_street) -"cfz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bridge) "cfT" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -4155,6 +4130,13 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) +"cfW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "cgn" = ( /obj/structure/platform_decoration{ dir = 8 @@ -4170,10 +4152,14 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) -"chm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/west_reactor) +"cgG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Cargo Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/bridge) "cho" = ( /obj/item/weapon/gun/rifle/mar40/carbine, /turf/open/floor/plating{ @@ -4187,17 +4173,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"chT" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "cia" = ( /turf/open/floor/strata{ icon_state = "white_cyan1" @@ -4267,21 +4242,19 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) +"cjt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/cargo_intake) "cjv" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"cjy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/bridges/corpo) "cjE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -4321,6 +4294,19 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"cll" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat{ + icon_state = "browncorner" + }, +/area/lv522/atmos/east_reactor/south) +"clu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/cargo_intake) "clR" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -4351,24 +4337,6 @@ icon_state = "multi_tiles" }, /area/lv522/indoors/c_block/mining) -"cmB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cmC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness) "cmF" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_fuel"; @@ -4390,13 +4358,6 @@ icon_state = "darkbrownfull2" }, /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" - }, -/area/lv522/atmos/east_reactor/south) "cnN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -4534,13 +4495,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"cqr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) "cqs" = ( /obj/structure/machinery/light{ dir = 1 @@ -4556,6 +4510,15 @@ icon_state = "floor_plate" }, /area/lv522/indoors/c_block/cargo) +"cqL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "cqP" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -4606,6 +4569,23 @@ icon_state = "marked" }, /area/lv522/atmos/east_reactor) +"csg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 24 + }, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor) +"csl" = ( +/obj/structure/barricade/plasteel/metal, +/turf/open/asphalt/cement{ + icon_state = "cement12" + }, +/area/lv522/outdoors/colony_streets/north_street) "csv" = ( /obj/structure/platform{ dir = 1 @@ -4623,15 +4603,6 @@ icon_state = "browncorner" }, /area/lv522/atmos/east_reactor/south) -"csC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Garage Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/garage) "csK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -4666,15 +4637,6 @@ icon_state = "floor_plate" }, /area/lv522/indoors/a_block/dorms) -"ctu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Casino Airlock"; - welded = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/casino) "ctE" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, @@ -4686,16 +4648,6 @@ icon_state = "floor_marked" }, /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 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "cuF" = ( /obj/item/tool/warning_cone{ pixel_x = -10; @@ -4740,13 +4692,6 @@ icon_state = "darkbrownfull2" }, /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, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) "cwr" = ( /obj/structure/machinery/deployable/barrier, /obj/effect/decal/warning_stripes{ @@ -4844,16 +4789,6 @@ icon_state = "white_cyan2" }, /area/lv522/indoors/a_block/medical/glass) -"cyu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) "cyv" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat{ @@ -4868,13 +4803,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/garage) -"cyO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/west_reactor) "cyV" = ( /obj/structure/machinery/light{ dir = 1 @@ -4904,10 +4832,6 @@ "czC" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/east_reactor/east) -"czE" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "czG" = ( /obj/structure/sign/safety/radio_rad{ pixel_y = 26 @@ -4979,12 +4903,25 @@ icon_state = "floor_marked" }, /area/lv522/indoors/lone_buildings/storage_blocks) +"cBd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/filt) "cBi" = ( /turf/open/floor/corsat{ dir = 10; icon_state = "brown" }, /area/lv522/atmos/north_command_centre) +"cBl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/north_command_centre) "cBs" = ( /obj/item/tool/extinguisher, /turf/open/floor/prison{ @@ -5033,12 +4970,6 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"cCQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) "cDh" = ( /turf/open/floor/corsat{ dir = 10; @@ -5078,6 +5009,12 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"cDI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor) "cEj" = ( /obj/structure/closet/crate, /obj/item/clothing/under/colonist, @@ -5246,13 +5183,6 @@ icon_state = "platingdmg3" }, /area/lv522/indoors/a_block/dorms) -"cHL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "cHY" = ( /obj/structure/platform_decoration{ dir = 8 @@ -5289,15 +5219,6 @@ icon_state = "browncorner" }, /area/lv522/atmos/east_reactor/east) -"cIo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper C-Block - Cargo Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/cargo) "cIr" = ( /obj/structure/bed/chair{ dir = 4 @@ -5379,6 +5300,17 @@ icon_state = "brown" }, /area/lv522/oob) +"cJc" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/cargo_container/wy/right, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"cJg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement{ + icon_state = "cement9" + }, +/area/lv522/outdoors/colony_streets/north_street) "cJh" = ( /obj/structure/window/reinforced{ dir = 4 @@ -5412,13 +5344,6 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"cJF" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/stack/sheet/wood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "cJW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -5459,16 +5384,6 @@ /obj/structure/girder, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/west) -"cKy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/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, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/west) "cKF" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -5540,14 +5455,6 @@ }, /turf/open/floor/plating, /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, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "cLQ" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/prison{ @@ -5655,25 +5562,6 @@ icon_state = "plate" }, /area/lv522/atmos/cargo_intake) -"cOZ" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"cPg" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_full_bl"; - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/toy/plush/farwa, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "cPi" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/blood/xeno, @@ -5689,6 +5577,12 @@ icon_state = "brown" }, /area/lv522/atmos/filt) +"cPJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor) "cPN" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 1; @@ -5760,6 +5654,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) +"cQv" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/storage_blocks) "cQB" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/green{ @@ -5788,6 +5686,10 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) +"cRx" = ( +/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) "cRB" = ( /obj/structure/cargo_container/kelland/right, /obj/effect/decal/warning_stripes{ @@ -5840,15 +5742,6 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor/west) -"cSf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Cargo Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/cargo) "cSh" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -5901,13 +5794,6 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/casino) -"cUg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) "cUh" = ( /obj/structure/bed/chair{ dir = 4 @@ -6006,6 +5892,11 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"cVE" = ( +/obj/item/clothing/gloves/yellow, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "cVR" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -6014,6 +5905,15 @@ icon_state = "darkredfull2" }, /area/lv522/outdoors/colony_streets/north_street) +"cVZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/filt) "cWf" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/atmos/cargo_intake) @@ -6044,15 +5944,6 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/security) -"cWH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) "cWL" = ( /turf/open/floor/corsat{ dir = 8; @@ -6103,14 +5994,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/casino) -"cXi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "cXm" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -6148,10 +6031,6 @@ icon_state = "kitchen" }, /area/lv522/indoors/a_block/kitchen) -"cYn" = ( -/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" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -6198,23 +6077,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) -"cZu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 20 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) "cZH" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating, @@ -6323,6 +6185,11 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/central_streets) +"dbh" = ( +/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) "dbi" = ( /obj/item/clothing/suit/storage/marine/leader, /obj/item/clothing/head/helmet/marine/leader{ @@ -6421,13 +6288,6 @@ icon_state = "marked" }, /area/lv522/atmos/east_reactor/west) -"dcD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) "dcF" = ( /obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/corsat{ @@ -6457,10 +6317,6 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor/south) -"dcR" = ( -/obj/effect/alien/weeds/node/alpha, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) "ddo" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal{ @@ -6477,6 +6333,15 @@ icon_state = "floor_marked" }, /area/lv522/atmos/cargo_intake) +"ddq" = ( +/obj/structure/surface/rack, +/obj/item/device/analyzer, +/obj/effect/landmark/objective_landmark/close, +/obj/item/stack/sheet/cardboard/full_stack, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/lv522/indoors/c_block/mining) "ddr" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/bottle/davenport{ @@ -6510,6 +6375,13 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) +"ddF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/west_reactor) "ddK" = ( /obj/structure/filingcabinet/chestdrawer{ density = 0; @@ -6539,13 +6411,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"ddN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) "ddP" = ( /obj/structure/surface/table/almayer{ dir = 8; @@ -6645,16 +6510,6 @@ icon_state = "floor_plate" }, /area/lv522/atmos/sewer) -"dfV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Dorms And Office Airlock"; - welded = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) "dgb" = ( /obj/structure/cryofeed, /turf/open/floor/bluegrid, @@ -6682,16 +6537,6 @@ icon_state = "browncorner" }, /area/lv522/atmos/east_reactor/east) -"dgI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) "dgJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison{ @@ -6699,12 +6544,6 @@ icon_state = "cell_stripe" }, /area/lv522/atmos/cargo_intake) -"dgO" = ( -/obj/structure/tunnel, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "dgR" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -6729,6 +6568,12 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/hallway) +"dhj" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement{ + icon_state = "cement1" + }, +/area/lv522/outdoors/colony_streets/north_street) "dhH" = ( /turf/open/asphalt/cement{ icon_state = "cement12" @@ -6826,12 +6671,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"djq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/filt) "djD" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp/on{ @@ -6847,6 +6686,16 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) +"djL" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "djM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -6920,13 +6769,6 @@ /obj/structure/platform_decoration, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"dli" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) "dlC" = ( /obj/structure/prop/invuln/fire{ pixel_x = 8; @@ -6946,6 +6788,20 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/north_west_street) +"dlM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/b_block/hydro) "dmm" = ( /obj/item/weapon/twohanded/folded_metal_chair{ pixel_y = -8 @@ -7147,12 +7003,6 @@ icon_state = "browncorner" }, /area/lv522/atmos/west_reactor) -"dpg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/west_reactor) "dpj" = ( /obj/structure/cargo_container/hd/mid/alt, /turf/open/floor/corsat{ @@ -7200,6 +7050,12 @@ icon_state = "cement2" }, /area/lv522/outdoors/colony_streets/south_east_street) +"dqT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor/south) "drd" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -7255,13 +7111,6 @@ icon_state = "floor3" }, /area/lv522/landing_zone_2/ceiling) -"dsc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "dsl" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -7333,12 +7182,20 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) -"dtr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"dtl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper A-Block Canteen Airlock"; + welded = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, /turf/open/floor/corsat{ icon_state = "marked" }, -/area/lv522/atmos/north_command_centre) +/area/lv522/indoors/a_block/kitchen/glass) "dtE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname, @@ -7355,10 +7212,6 @@ icon_state = "plate" }, /area/lv522/atmos/reactor_garage) -"dtU" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) "dua" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, @@ -7374,6 +7227,11 @@ icon_state = "white_cyan2" }, /area/lv522/indoors/a_block/medical/glass) +"duK" = ( +/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) "duN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7383,19 +7241,12 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor/west) -"dvn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, +"duT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ - icon_state = "marked" + icon_state = "squares" }, -/area/lv522/indoors/b_block/hydro) +/area/lv522/atmos/west_reactor) "dvp" = ( /obj/structure/largecrate/supply, /obj/structure/largecrate/supply{ @@ -7420,13 +7271,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"dwG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/lv522/atmos/west_reactor) "dwI" = ( /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison, @@ -7449,13 +7293,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/t_comm) -"dwP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) "dwX" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, @@ -7487,12 +7324,6 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor/south) -"dxU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/west_reactor) "dxY" = ( /obj/structure/machinery/computer/telecomms/server{ pixel_y = 16 @@ -7504,12 +7335,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/mining) -"dya" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) "dyl" = ( /obj/structure/largecrate, /turf/open/floor/corsat{ @@ -7550,15 +7375,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/casino) -"dzv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/north) "dzB" = ( /obj/structure/curtain/red, /obj/structure/pipes/standard/simple/hidden/green, @@ -7649,15 +7465,6 @@ }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) -"dBe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) "dBi" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -7685,6 +7492,13 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) +"dBQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) "dCx" = ( /obj/structure/closet/crate/radiation, /turf/open/floor/corsat{ @@ -7730,12 +7544,6 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor/west) -"dDF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/filt) "dDS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7746,12 +7554,6 @@ /obj/structure/largecrate/random, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dEk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/north_command_centre) "dEm" = ( /obj/structure/closet, /turf/open/floor/prison, @@ -7846,6 +7648,14 @@ dir = 6 }, /area/lv522/indoors/c_block/mining) +"dFE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/hallway) "dFH" = ( /obj/structure/machinery/power/port_gen/pacman{ layer = 3.1; @@ -7859,11 +7669,6 @@ }, /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, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) "dFY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -7894,6 +7699,15 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) +"dGI" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "dGK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -7931,6 +7745,14 @@ icon_state = "browncorner" }, /area/lv522/atmos/east_reactor) +"dHx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "dHy" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -8018,15 +7840,6 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/a_block/bridges/garden_bridge) -"dIX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) "dJp" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -8064,6 +7877,15 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor/east) +"dKc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor) "dKd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8148,6 +7970,19 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) +"dMo" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/b_block/hydro) "dMp" = ( /obj/structure/machinery/light{ dir = 4 @@ -8162,13 +7997,6 @@ icon_state = "white_cyan2" }, /area/lv522/indoors/a_block/executive) -"dMu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) "dMy" = ( /obj/structure/cargo_container/kelland/left, /turf/open/floor/prison{ @@ -8219,15 +8047,6 @@ }, /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/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "dNK" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Workshop Storage"; @@ -8350,6 +8169,13 @@ icon_state = "cement12" }, /area/lv522/outdoors/colony_streets/south_west_street) +"dPS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "browncorner" + }, +/area/lv522/atmos/north_command_centre) "dQa" = ( /obj/structure/curtain/medical, /obj/structure/pipes/standard/simple/hidden/green, @@ -8359,12 +8185,6 @@ icon_state = "white_cyan2" }, /area/lv522/indoors/a_block/medical/glass) -"dQg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) "dQh" = ( /obj/structure/machinery/light{ dir = 1 @@ -8375,12 +8195,6 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/medical) -"dQm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/west) "dQr" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/xeno, @@ -8427,13 +8241,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; @@ -8446,6 +8253,12 @@ "dRL" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/dorm_north) +"dRM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor/west) "dRS" = ( /obj/structure/machinery/light{ dir = 4 @@ -8461,12 +8274,11 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor/east) -"dSy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) +"dSJ" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "dSW" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 1; @@ -8521,6 +8333,16 @@ icon_state = "platebot" }, /area/lv522/indoors/c_block/cargo) +"dUr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Dorms And Office Airlock"; + welded = 1 + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/dorms) "dUD" = ( /obj/item/prop/colony/proptag{ desc = "A fallen marine's information dog tag. It reads, Ensign Robert 'Roach' Yangley" @@ -8538,15 +8360,6 @@ icon_state = "brown" }, /area/lv522/oob) -"dUS" = ( -/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"; - pixel_x = -18 - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) "dUW" = ( /obj/structure/surface/table/almayer, /turf/open/floor/plating, @@ -8603,13 +8416,6 @@ /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"dWE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) "dWG" = ( /obj/structure/window/reinforced{ dir = 1; @@ -8620,12 +8426,6 @@ icon_state = "bcircuit" }, /area/lv522/indoors/c_block/mining) -"dWT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/west_reactor) "dWY" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "32" @@ -8643,16 +8443,6 @@ icon_state = "squares" }, /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 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "dXq" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green, @@ -8665,14 +8455,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"dXB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "dXI" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/flask/detflask{ @@ -8690,6 +8472,12 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor/east) +"dXV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/filt) "dXX" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility, @@ -8719,25 +8507,18 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dYX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"dYM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/floor/corsat{ icon_state = "brown" }, /area/lv522/atmos/east_reactor) -"dZd" = ( +"dYX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 - }, /turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" + icon_state = "brown" }, /area/lv522/atmos/east_reactor) "dZr" = ( @@ -8750,10 +8531,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/mining) -"dZs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/west) "dZw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/generic{ @@ -8833,12 +8610,6 @@ icon_state = "marked" }, /area/lv522/atmos/command_centre) -"ear" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/west) "eaE" = ( /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) @@ -8848,10 +8619,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/lone_buildings/storage_blocks) -"ebe" = ( -/obj/item/storage/pouch/autoinjector/full, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) "ebn" = ( /turf/open/floor/prison{ icon_state = "darkredfull2" @@ -8921,23 +8688,6 @@ icon_state = "25" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"ecU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"edi" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "edk" = ( /turf/open/floor/corsat{ dir = 8; @@ -9059,15 +8809,6 @@ icon_state = "brown" }, /area/lv522/oob) -"efS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) "efT" = ( /obj/structure/closet/coffin/woodencrate, /obj/item/clothing/mask/cigarette/weed, @@ -9126,13 +8867,6 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor) -"egj" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "egt" = ( /obj/structure/powerloader_wreckage, /turf/open/floor/corsat{ @@ -9229,17 +8963,6 @@ /obj/effect/acid_hole, /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/hallway) -"ehM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "ehO" = ( /obj/effect/alien/resin/sticky, /turf/open/floor/corsat, @@ -9251,20 +8974,10 @@ icon_state = "brown" }, /area/lv522/oob) -"eiC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger{ - pixel_x = -7; - pixel_y = -5 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) +"eis" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/lv522/atmos/west_reactor) "eiP" = ( /obj/structure/coatrack{ pixel_x = -6; @@ -9285,22 +8998,9 @@ icon_state = "greenfull" }, /area/lv522/landing_zone_1/ceiling) -"eiY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_street) "eiZ" = ( /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"ejo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) "eju" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -9344,13 +9044,6 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/medical) -"ekt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/north_command_centre) "ekK" = ( /obj/item/clothing/under/marine/reconnaissance, /turf/open/floor/corsat{ @@ -9378,6 +9071,12 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/garage) +"eld" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/west_reactor) "elq" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -9416,6 +9115,12 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"emj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor/south) "emm" = ( /obj/structure/prop/invuln/ice_prefab, /obj/structure/prop/invuln/ice_prefab{ @@ -9424,17 +9129,6 @@ }, /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/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) "emt" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/floor/prison{ @@ -9486,25 +9180,12 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor/south) -"enr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) "enD" = ( /obj/structure/curtain/red, /turf/open/floor/prison{ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"enG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/north_command_centre) "enP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -9540,18 +9221,17 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) -"eoi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/barricade/metal{ - dir = 1 +"eou" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/prop/server_equipment/laptop/on{ + layer = 3.1; + pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" }, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/atmos/east_reactor) "eov" = ( /obj/structure/machinery/door/poddoor/almayer{ id = "Marked_1"; @@ -9585,36 +9265,6 @@ icon_state = "marked" }, /area/lv522/oob) -"eow" = ( -/obj/structure/tunnel{ - pixel_x = 2; - pixel_y = -6 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/west_reactor) -"eoA" = ( -/obj/item/prop/colony/used_flare, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "eoH" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -9635,10 +9285,13 @@ icon_state = "plate" }, /area/lv522/atmos/west_reactor) -"epe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) +"epi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/west) "epq" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/light{ @@ -9685,6 +9338,18 @@ icon_state = "white_cyan2" }, /area/lv522/indoors/a_block/medical/glass) +"eqb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/barricade/deployable, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "eqe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9707,13 +9372,6 @@ icon_state = "squares" }, /area/lv522/atmos/east_reactor) -"eqD" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) "eqE" = ( /turf/open/floor/prison{ dir = 10; @@ -9732,10 +9390,19 @@ icon_state = "brown" }, /area/lv522/atmos/north_command_centre) -"eqV" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +"eqX" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/cargo_intake) "erw" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/landmark/objective_landmark/close, @@ -9754,13 +9421,13 @@ icon_state = "floor_marked" }, /area/lv522/indoors/lone_buildings/storage_blocks) -"erZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"erY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ - dir = 4; + dir = 6; icon_state = "brown" }, -/area/lv522/atmos/east_reactor/west) +/area/lv522/atmos/west_reactor) "esa" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -9781,6 +9448,13 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) +"esx" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "esB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -9819,6 +9493,16 @@ "etx" = ( /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) +"ety" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "etN" = ( /obj/structure/machinery/photocopier, /turf/open/floor/plating{ @@ -9834,20 +9518,6 @@ icon_state = "white_cyan2" }, /area/lv522/indoors/a_block/medical) -"eum" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Canteen Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen/glass) "eur" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -9873,22 +9543,6 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"euT" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/vehicle/train/cargo/engine, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"evu" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "evv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, @@ -9922,6 +9576,14 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/corpo/glass) +"evQ" = ( +/obj/structure/barricade/sandbags, +/obj/item/trash/uscm_mre{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "evS" = ( /obj/structure/platform, /obj/structure/platform{ @@ -10020,6 +9682,15 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor) +"exL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor/west) "exQ" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -10028,21 +9699,21 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"exZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) "eyc" = ( /obj/structure/platform{ dir = 1 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) +"eyf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/north_command_centre) "eyh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -10143,10 +9814,6 @@ icon_state = "floor_marked" }, /area/lv522/outdoors/colony_streets/north_west_street) -"ezU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/north_command_centre) "ezW" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -10219,12 +9886,6 @@ /obj/item/stack/cable_coil/cut, /turf/open/floor/plating, /area/lv522/atmos/east_reactor) -"eBm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) "eBu" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -10244,15 +9905,6 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/dorms) -"eBH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) "eCe" = ( /obj/effect/alien/resin/sticky, /turf/open/auto_turf/sand_white/layer0, @@ -10397,12 +10049,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"eGs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) "eGL" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat{ @@ -10420,12 +10066,6 @@ icon_state = "whiteyellowfull" }, /area/lv522/indoors/a_block/corpo/glass) -"eHp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) "eHu" = ( /obj/structure/closet/secure_closet/miner, /turf/open/floor/prison{ @@ -10548,6 +10188,13 @@ icon_state = "multi_tiles" }, /area/lv522/indoors/c_block/mining) +"eJl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor/west) "eJm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed{ @@ -10634,20 +10281,13 @@ icon_state = "cement4" }, /area/lv522/landing_zone_2) -"eLl" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 2; - name = "\improper A-Block - Colony Medical Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +"eLz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/medical) -"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" + icon_state = "plate" }, /area/lv522/atmos/east_reactor) "eLG" = ( @@ -10657,20 +10297,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"eLK" = ( -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/obj/structure/window/reinforced, -/obj/structure/sign/safety/synth_storage{ - pixel_x = 23; - pixel_y = 29 - }, -/turf/open/floor/bluegrid, -/area/lv522/indoors/a_block/corpo/glass) "eLN" = ( /obj/structure/machinery/light, /turf/open/floor{ @@ -10683,10 +10309,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/reactor_garage) -"eLV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/oob) "eLZ" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Cargo Bay Quartermaster" @@ -10756,18 +10378,6 @@ icon_state = "cement12" }, /area/lv522/outdoors/colony_streets/south_street) -"eNc" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Cargo Airlock"; - welded = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/cargo) "eNf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/spawner/gibspawner/xeno, @@ -10989,6 +10599,12 @@ icon_state = "platebot" }, /area/lv522/indoors/c_block/cargo) +"eSM" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt/cement{ + icon_state = "cement9" + }, +/area/lv522/outdoors/colony_streets/north_street) "eSO" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light{ @@ -11028,6 +10644,15 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) +"eTw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Tornado) "eTQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -11062,35 +10687,12 @@ "eUh" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"eUs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/west_reactor) "eUt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"eUz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bridge) "eUO" = ( /turf/open/floor/corsat{ icon_state = "marked" @@ -11126,28 +10728,18 @@ icon_state = "marked" }, /area/lv522/atmos/north_command_centre) -"eVi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) "eVW" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat{ icon_state = "squares" }, /area/lv522/atmos/east_reactor) -"eWn" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"eWm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ - icon_state = "marked" + icon_state = "squares" }, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/east_reactor/west) "eWy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -11210,10 +10802,15 @@ icon_state = "kitchen" }, /area/lv522/indoors/a_block/kitchen) -"eXe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/west) +"eXF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/filt) "eXG" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) @@ -11356,19 +10953,6 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/south_east_street) -"faJ" = ( -/obj/item/trash/uscm_mre{ - pixel_x = 12; - pixel_y = -7 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_street) -"faK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/east) "faQ" = ( /obj/structure/bed/chair/comfy{ dir = 8; @@ -11376,12 +10960,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"faZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) "fba" = ( /obj/structure/flora/bush/ausbushes/grassybush{ layer = 2.9 @@ -11425,6 +11003,12 @@ icon_state = "cement3" }, /area/lv522/outdoors/colony_streets/south_east_street) +"fbY" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Tornado) "fcd" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/prison{ @@ -11461,16 +11045,6 @@ icon_state = "brown" }, /area/lv522/atmos/north_command_centre) -"fdb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper C-Block - Casino Airlock"; - welded = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/casino) "fdf" = ( /turf/open/asphalt/cement{ icon_state = "cement15" @@ -11512,11 +11086,6 @@ icon_state = "plate" }, /area/lv522/atmos/north_command_centre) -"fdS" = ( -/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) "fdT" = ( /obj/structure/closet/crate, /turf/open/floor/prison{ @@ -11540,15 +11109,12 @@ icon_state = "darkbrownfull2" }, /area/lv522/landing_zone_2/ceiling) -"feF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"feE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/floor/corsat{ - icon_state = "plate" + icon_state = "marked" }, -/area/lv522/atmos/east_reactor/west) +/area/lv522/atmos/filt) "feS" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/corsat{ @@ -11588,18 +11154,6 @@ icon_state = "floor3" }, /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, -/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/structure/girder, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "ffL" = ( /obj/item/clothing/mask/facehugger{ desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; @@ -11695,10 +11249,6 @@ icon_state = "floor_marked" }, /area/lv522/atmos/cargo_intake) -"fib" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) "fiu" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden{ @@ -11817,13 +11367,6 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/bridge) -"fkW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "fld" = ( /mob/living/simple_animal/mouse, /turf/open/floor/prison, @@ -11840,6 +11383,12 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) +"flt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor/south) "flC" = ( /obj/structure/machinery/light/small, /obj/structure/machinery/camera/autoname{ @@ -11862,6 +11411,15 @@ /obj/item/weapon/gun/revolver/m44/custom/pkd_special/k2049, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) +"fmg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/bridges/corpo) "fms" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, @@ -11914,6 +11472,15 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) +"fnl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/filt) "fnm" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, @@ -11951,10 +11518,6 @@ "fop" = ( /turf/open/floor/corsat, /area/lv522/atmos/west_reactor) -"foO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/east) "foR" = ( /obj/structure/platform_decoration{ dir = 8 @@ -12046,6 +11609,10 @@ icon_state = "wood-broken4" }, /area/lv522/indoors/b_block/bar) +"fqa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/east) "fqD" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -12055,16 +11622,19 @@ icon_state = "floor_plate" }, /area/lv522/indoors/a_block/dorms/glass) -"fqU" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +"frc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat{ - icon_state = "plate" + icon_state = "marked" }, -/area/lv522/atmos/east_reactor/south) +/area/lv522/indoors/a_block/kitchen) "frH" = ( /obj/item/clothing/head/hardhat/dblue{ layer = 6.1; @@ -12073,15 +11643,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"frL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/west) "frZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -12098,15 +11659,6 @@ icon_state = "squares" }, /area/lv522/atmos/west_reactor) -"fsj" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) "fss" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -12126,23 +11678,10 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"fsC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/west) "fsQ" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"fsV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) "ftd" = ( /obj/structure/bed/chair{ dir = 1 @@ -12163,6 +11702,11 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"fto" = ( +/obj/item/storage/belt/grenade, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) "fts" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/decal/cleanable/dirt, @@ -12185,14 +11729,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"ftD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness/glass) "ftK" = ( /obj/structure/bed/chair, /turf/open/floor/plating, @@ -12240,6 +11776,12 @@ icon_state = "squares" }, /area/lv522/atmos/east_reactor/east) +"fvc" = ( +/obj/structure/barricade/sandbags, +/turf/open/asphalt/cement{ + icon_state = "cement14" + }, +/area/lv522/outdoors/colony_streets/north_street) "fvk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -12306,10 +11848,6 @@ icon_state = "plate" }, /area/lv522/atmos/west_reactor) -"fwo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) "fwy" = ( /obj/structure/bed/chair{ dir = 8 @@ -12354,12 +11892,6 @@ icon_state = "blue_plate" }, /area/lv522/indoors/c_block/mining) -"fwX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/north_command_centre) "fxh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -12372,12 +11904,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) -"fxq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/west) "fxZ" = ( /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, @@ -12499,6 +12025,13 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) +"fzW" = ( +/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) "fAq" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/platform_decoration{ @@ -12553,15 +12086,6 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) -"fAY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness) "fBg" = ( /turf/open/floor/corsat{ icon_state = "marked" @@ -12605,12 +12129,6 @@ icon_state = "plate" }, /area/lv522/atmos/cargo_intake) -"fBY" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) "fCb" = ( /obj/structure/platform{ dir = 1 @@ -12625,6 +12143,13 @@ icon_state = "floor_plate" }, /area/lv522/indoors/a_block/kitchen/glass) +"fCs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor) "fCE" = ( /turf/open/floor/strata{ icon_state = "fake_wood" @@ -12753,24 +12278,20 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor) -"fDS" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) "fEe" = ( /obj/structure/platform, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"fEl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/west_reactor) "fEF" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/shiva{ @@ -12796,15 +12317,20 @@ icon_state = "cement12" }, /area/lv522/outdoors/colony_streets/south_east_street) -"fFp" = ( -/obj/item/clothing/gloves/yellow, -/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, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +"fFt" = ( +/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"; + phone_color = "red"; + phone_id = "Reactor Entrance Office"; + pixel_y = 26 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "fFA" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -12853,10 +12379,6 @@ icon_state = "marked" }, /area/lv522/indoors/b_block/hydro) -"fGw" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) "fGH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -12967,13 +12489,6 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/kitchen/glass) -"fIQ" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/west_reactor) "fJe" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -12991,12 +12506,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"fJr" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "fKf" = ( /obj/structure/platform{ dir = 1 @@ -13005,12 +12514,6 @@ icon_state = "cement12" }, /area/lv522/outdoors/colony_streets/north_east_street) -"fKt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/west) "fKu" = ( /obj/structure/largecrate, /turf/open/floor/corsat{ @@ -13035,16 +12538,6 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) -"fLi" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 11 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/west) "fLz" = ( /obj/structure/machinery{ density = 1; @@ -13099,27 +12592,10 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"fLP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "fLS" = ( /obj/structure/prop/dam/crane, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"fLZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper B-Block Bar" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bar) "fMd" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 8; @@ -13223,6 +12699,13 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/garage) +"fNC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/filt) "fOc" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 @@ -13237,6 +12720,17 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/casino) +"fOq" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "browncorner" + }, +/area/lv522/atmos/cargo_intake) "fOy" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/cobweb, @@ -13289,6 +12783,15 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_2) +"fPP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor) "fPV" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -13356,6 +12859,12 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/admin) +"fRw" = ( +/obj/structure/girder, +/turf/open/asphalt/cement{ + icon_state = "cement1" + }, +/area/lv522/outdoors/colony_streets/north_street) "fRP" = ( /obj/structure/prop/vehicles/crawler{ layer = 3.3 @@ -13421,6 +12930,17 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) +"fSy" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/cargo_intake) "fSR" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -13472,6 +12992,16 @@ icon_state = "brown" }, /area/lv522/atmos/west_reactor) +"fTK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/corpo) "fTN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -13493,6 +13023,12 @@ icon_state = "plate" }, /area/lv522/atmos/cargo_intake) +"fUc" = ( +/obj/structure/girder, +/turf/open/asphalt/cement{ + icon_state = "cement15" + }, +/area/lv522/outdoors/colony_streets/north_street) "fUf" = ( /obj/effect/decal{ icon = 'icons/mob/xenos/effects.dmi'; @@ -13505,6 +13041,10 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/hallway) +"fUs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/filt) "fUx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -13515,6 +13055,15 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) +"fUQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "fUT" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -13531,18 +13080,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"fVC" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = -6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = 10 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "fVU" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -13568,20 +13105,6 @@ "fWG" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"fWH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Kitchen Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen) "fWW" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -13608,13 +13131,6 @@ icon_state = "19" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"fXs" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/filt) "fXv" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -13658,13 +13174,6 @@ icon_state = "floor_marked" }, /area/lv522/atmos/cargo_intake) -"fXU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) "fXZ" = ( /obj/structure/curtain/medical, /turf/open/floor/strata{ @@ -13708,12 +13217,6 @@ }, /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) -"fYP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) "fYZ" = ( /turf/open/floor/prison{ dir = 10; @@ -13741,15 +13244,6 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) -"fZo" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "fZy" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -13876,13 +13370,6 @@ /obj/structure/cargo_container/wy/mid, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"gbQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) "gbR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata{ @@ -13967,20 +13454,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"gdA" = ( -/obj/structure/barricade/deployable, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_street) -"gdJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) "gdO" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/hallway) @@ -13995,13 +13468,6 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) -"gdX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) "gej" = ( /obj/structure/platform, /obj/effect/landmark/lv624/fog_blocker/short, @@ -14076,13 +13542,6 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"geI" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -12; - pixel_y = 25 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) "geP" = ( /obj/structure/machinery/light{ dir = 1 @@ -14108,20 +13567,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"gfl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) -"gfs" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "gfu" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green, @@ -14244,6 +13689,18 @@ icon_state = "squares" }, /area/lv522/atmos/east_reactor/east) +"ghE" = ( +/obj/item/clothing/head/helmet/marine/grenadier{ + armor_bullet = 10; + desc = "Pairs with the M3-G4 heavy grenadier plating. A distant cousin of the experimental B18 defensive helmet. Decorated with a blue stripe the large hole in the side of this helmet somewhat limits its protection."; + name = "\improper damaged M3-G4 grenadier helmet"; + pixel_x = 3; + pixel_y = 13 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv522/outdoors/colony_streets/north_street) "gib" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/stairs/perspective{ @@ -14268,12 +13725,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"giF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/west_reactor) "giV" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/warning_stripes{ @@ -14336,6 +13787,15 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/t_comm) +"gjR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor) "gjV" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -14381,24 +13841,10 @@ icon_state = "floor_plate" }, /area/lv522/indoors/b_block/bar) -"gkH" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "gkY" = ( /obj/structure/closet/bombcloset, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) -"glj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) "gll" = ( /obj/structure/bed/chair{ dir = 4 @@ -14489,13 +13935,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/mining) -"gnx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) "gny" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison{ @@ -14594,15 +14033,6 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/north_west_street) -"gpr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Cargo Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/cargo) "gpu" = ( /obj/item/fuelCell{ pixel_x = -8; @@ -14631,13 +14061,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"gqg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "gqh" = ( /obj/item/trash/uscm_mre, /turf/open/floor/prison{ @@ -14651,6 +14074,12 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor) +"gqW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor/west) "grg" = ( /obj/effect/decal/cleanable/blood, /obj/structure/machinery/light{ @@ -14675,15 +14104,6 @@ }, /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/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) "grP" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -14713,6 +14133,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) +"gsn" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/vehicle/train/cargo/engine, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "gsM" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -14748,10 +14175,6 @@ icon_state = "darkyellowfull2" }, /area/lv522/indoors/c_block/t_comm) -"gts" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) "gtt" = ( /obj/structure/filingcabinet{ density = 0; @@ -14801,14 +14224,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"gul" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"gup" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "brown" }, -/area/lv522/indoors/a_block/kitchen) +/area/lv522/atmos/east_reactor/east) "guB" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -14856,6 +14277,19 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"gvb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "browncorner" + }, +/area/lv522/atmos/east_reactor) "gvk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/stairs/perspective{ @@ -14884,6 +14318,13 @@ icon_state = "plate" }, /area/lv522/atmos/cargo_intake) +"gvu" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "gvG" = ( /obj/item/toy/beach_ball/holoball, /turf/open/auto_turf/sand_white/layer0, @@ -14897,14 +14338,53 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/security) +"gvK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre{ + pixel_x = -12; + pixel_y = 7 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "gvT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) +"gvU" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ore/slag, +/obj/item/ore/slag, +/obj/item/ore/slag, +/obj/item/ore/slag, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) "gwb" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) +"gwg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/b_block/bridge) "gwk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -14920,13 +14400,6 @@ /obj/effect/alien/resin/sticky, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"gwH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) "gwK" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -14954,6 +14427,18 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/security) +"gwU" = ( +/obj/structure/barricade/sandbags{ + dir = 8 + }, +/obj/item/prop/alien/hugger{ + pixel_x = 13; + pixel_y = -5 + }, +/turf/open/asphalt/cement{ + icon_state = "cement3" + }, +/area/lv522/outdoors/colony_streets/north_street) "gxb" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -14972,6 +14457,11 @@ icon_state = "plate" }, /area/lv522/atmos/command_centre) +"gxe" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) "gxl" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC, @@ -15034,13 +14524,6 @@ icon_state = "plate" }, /area/lv522/atmos/command_centre) -"gyB" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "gyC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -15050,15 +14533,6 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor/south) -"gyK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) "gzk" = ( /obj/structure/prop/almayer/computers/sensor_computer2, /turf/open/floor/corsat{ @@ -15144,13 +14618,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"gAS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "gAU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -15193,6 +14660,13 @@ /obj/item/seeds/riceseed, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) +"gBw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "gBy" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -15240,16 +14714,11 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"gCV" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) +"gDo" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "gDz" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -15290,11 +14759,6 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/cargo) -"gEx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) "gEA" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 8; @@ -15372,10 +14836,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"gFy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/storage_blocks) "gFD" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine, @@ -15383,13 +14843,6 @@ icon_state = "plate" }, /area/lv522/atmos/command_centre) -"gFG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) "gFM" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 @@ -15513,6 +14966,10 @@ icon_state = "floor_plate" }, /area/lv522/indoors/a_block/dorms) +"gHY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) "gIa" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -15609,12 +15066,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) -"gKa" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/outdoors/colony_streets/south_east_street) "gKg" = ( /obj/structure/platform, /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -15637,15 +15088,6 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor) -"gKM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor) "gKO" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 @@ -15684,6 +15126,25 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) +"gLw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Corpo-Bridge-Lockdown" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/security) +"gLy" = ( +/obj/structure/surface/table/almayer, +/obj/item/map/lv522_map, +/turf/open/asphalt/cement{ + icon_state = "cement3" + }, +/area/lv522/outdoors/colony_streets/north_street) "gLK" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -15730,6 +15191,10 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) +"gMn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/lv522/oob) "gMy" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -15752,6 +15217,11 @@ icon_state = "cement9" }, /area/lv522/outdoors/colony_streets/south_west_street) +"gMT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "gMV" = ( /obj/structure/machinery/light{ dir = 1 @@ -15927,17 +15397,15 @@ icon_state = "darkyellowfull2" }, /area/lv522/indoors/lone_buildings/outdoor_bot) -"gPQ" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" +"gQf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" + icon_state = "marked" }, -/area/lv522/atmos/cargo_intake) +/area/lv522/atmos/east_reactor) "gQu" = ( /mob/living/simple_animal/cat/kitten{ dir = 8 @@ -15966,6 +15434,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"gRi" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/ore/uranium, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) "gRj" = ( /obj/structure/platform{ dir = 4 @@ -15973,6 +15448,10 @@ /obj/item/prop/colony/used_flare, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"gRl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/storage_blocks) "gRp" = ( /obj/structure/machinery/floodlight/landing, /turf/open/floor/prison{ @@ -16009,6 +15488,11 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) +"gRS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "gRU" = ( /obj/item/paper_bin/uscm{ pixel_x = -7; @@ -16025,6 +15509,12 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor) +"gRZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/command_centre) "gSn" = ( /turf/open/floor/corsat{ icon_state = "marked" @@ -16085,12 +15575,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"gUm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/lv522/atmos/east_reactor/east) "gUv" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/bottle/whiskey{ @@ -16123,6 +15607,13 @@ icon_state = "kitchen" }, /area/lv522/indoors/a_block/kitchen) +"gUT" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 25 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) "gUY" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/vomit, @@ -16190,21 +15681,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"gWc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"gWg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "gWh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -16247,6 +15723,13 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/dorms) +"gWW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "gXb" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -16355,14 +15838,6 @@ icon_state = "darkpurple2" }, /area/lv522/indoors/a_block/dorms) -"gYH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/bridges/op_centre) "gYK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -16429,14 +15904,6 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/hydro) -"gZv" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Shared Dorms Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorm_north) "gZJ" = ( /obj/structure/machinery/power/apc/weak{ dir = 1 @@ -16540,16 +16007,6 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"haG" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "haR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -16563,12 +16020,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"hbj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/filt) "hbk" = ( /obj/effect/spawner/gibspawner/robot, /turf/open/floor/corsat{ @@ -16611,26 +16062,6 @@ icon_state = "floor_marked" }, /area/lv522/landing_zone_2) -"hbw" = ( -/obj/item/explosive/grenade/high_explosive/m15{ - pixel_x = 8 - }, -/obj/item/prop/alien/hugger{ - pixel_x = -7; - pixel_y = -5 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_street) -"hbF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) "hbG" = ( /obj/structure/machinery/medical_pod/bodyscanner, /turf/open/floor/strata{ @@ -16652,18 +16083,11 @@ icon_state = "squares" }, /area/lv522/atmos/east_reactor/east) -"hcd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) +"hbO" = ( +/obj/structure/largecrate/random/case/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "hcv" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -16689,23 +16113,27 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"hcG" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "hcO" = ( /obj/structure/platform_decoration, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"hcV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +"hcX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/lv522/atmos/cargo_intake) -"hcZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11 }, -/area/lv522/atmos/command_centre) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "hdd" = ( /obj/item/prop/alien/hugger, /obj/structure/machinery/light{ @@ -16761,12 +16189,6 @@ icon_state = "plate" }, /area/lv522/atmos/command_centre) -"hdQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "hdR" = ( /obj/structure/bed/chair{ dir = 1 @@ -16782,6 +16204,13 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor/south) +"heq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "heB" = ( /obj/structure/cargo_container/ferret/right, /turf/open/floor/prison, @@ -16838,17 +16267,6 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/bridges/op_centre) -"hfi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/server_equipment/laptop/on{ - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "hft" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -16861,14 +16279,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"hfE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/server_equipment/yutani_server/off, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "hfS" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -16951,16 +16361,6 @@ icon_state = "cement12" }, /area/lv522/landing_zone_2) -"hhu" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) "hhD" = ( /turf/open/asphalt/cement{ icon_state = "cement1" @@ -16991,18 +16391,22 @@ icon_state = "marked" }, /area/lv522/atmos/way_in_command_centre) -"hhQ" = ( -/obj/structure/closet/radiation, +"hhN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/corsat{ - icon_state = "marked" + icon_state = "plate" }, /area/lv522/atmos/east_reactor/south) -"hig" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"hhQ" = ( +/obj/structure/closet/radiation, /turf/open/floor/corsat{ icon_state = "marked" }, -/area/lv522/atmos/east_reactor/east) +/area/lv522/atmos/east_reactor/south) "hij" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/corsat{ @@ -17114,12 +16518,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/garage) -"hkr" = ( -/obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_street) "hku" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/green{ @@ -17280,16 +16678,6 @@ /obj/structure/largecrate/random/barrel/white, /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/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) "hmJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -17309,13 +16697,6 @@ icon_state = "plate" }, /area/lv522/atmos/command_centre) -"hmV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "hna" = ( /turf/open/floor/corsat{ dir = 1; @@ -17344,6 +16725,24 @@ icon_state = "brown" }, /area/lv522/atmos/west_reactor) +"hnG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + req_access_txt = "100" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/way_in_command_centre) +"hnX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block Dorms And Office Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/dorms) "hoq" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent4"; @@ -17439,6 +16838,15 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor/south) +"hpO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Emergency Engineering" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/lone_buildings/engineering) "hqp" = ( /obj/structure/coatrack{ pixel_x = 11 @@ -17447,13 +16855,15 @@ icon_state = "blue1" }, /area/lv522/indoors/a_block/dorm_north) -"hqB" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, +"hqr" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack{ + pixel_y = 2 + }, /turf/open/asphalt/cement{ - icon_state = "cement3" + icon_state = "cement4" }, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/outdoors/colony_streets/north_west_street) "hqD" = ( /turf/open/floor/corsat{ dir = 1; @@ -17505,17 +16915,15 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"hry" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" +"hrE" = ( +/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/door, /turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" + icon_state = "brown" }, -/area/lv522/atmos/cargo_intake) +/area/lv522/atmos/east_reactor) "hrH" = ( /obj/structure/platform_decoration, /obj/structure/machinery/light{ @@ -17583,6 +16991,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"htL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/west_reactor) "htN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -17593,12 +17007,6 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/corpo) -"htX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/command_centre) "hup" = ( /obj/item/tool/crowbar, /turf/open/floor/corsat{ @@ -17723,16 +17131,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 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) "hxn" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -17749,6 +17147,13 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) +"hxz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/filt) "hxV" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -17897,16 +17302,6 @@ icon_state = "floor_plate" }, /area/lv522/atmos/way_in_command_centre) -"hAd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block Dorms And Office Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) "hAg" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -17993,6 +17388,12 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/north_west_street) +"hAG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, +/turf/open/floor/prison{ + icon_state = "darkpurplefull2" + }, +/area/lv522/indoors/a_block/dorms) "hAK" = ( /turf/open/floor/corsat{ dir = 8; @@ -18011,11 +17412,6 @@ icon_state = "browncorner" }, /area/lv522/atmos/command_centre) -"hBg" = ( -/obj/structure/cryofeed, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/bluegrid, -/area/lv522/atmos/east_reactor) "hBp" = ( /obj/structure/dispenser/oxygen, /obj/effect/decal/cleanable/dirt, @@ -18044,6 +17440,12 @@ icon_state = "brown" }, /area/lv522/atmos/command_centre) +"hBN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/filt) "hCi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -18072,13 +17474,6 @@ /obj/structure/surface/table/almayer, /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/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/east) "hCV" = ( /obj/item/stool, /turf/open/floor/strata{ @@ -18088,18 +17483,6 @@ "hDa" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/command_centre) -"hDe" = ( -/obj/item/tool/lighter/zippo{ - layer = 3.1; - pixel_x = 12; - pixel_y = 18 - }, -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) "hDh" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/corsat{ @@ -18128,6 +17511,13 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"hDS" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "hDZ" = ( /obj/structure/window_frame/strata, /obj/item/shard{ @@ -18141,6 +17531,13 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/admin) +"hEI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "hEJ" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/corsat{ @@ -18271,6 +17668,13 @@ icon_state = "plate" }, /area/lv522/atmos/command_centre) +"hHU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/filt) "hHY" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/corsat{ @@ -18297,20 +17701,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"hIz" = ( -/obj/structure/surface/table/almayer, -/obj/item/handcuffs{ - pixel_y = 12 - }, -/obj/item/handcuffs{ - pixel_y = 6 - }, -/obj/item/handcuffs, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) "hIA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, @@ -18515,12 +17905,6 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/kitchen/glass) -"hLT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) "hLY" = ( /turf/open/floor/corsat{ icon_state = "brown" @@ -18603,13 +17987,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"hNt" = ( -/obj/item/trash/uscm_mre, -/obj/structure/surface/table/almayer, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) "hNz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -18680,27 +18057,6 @@ icon_state = "platebot" }, /area/lv522/indoors/c_block/cargo) -"hOG" = ( -/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, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"hOI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/command_centre) "hOK" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -18783,6 +18139,16 @@ }, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) +"hPT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/hallway) "hQh" = ( /obj/structure/largecrate/random, /obj/effect/decal/warning_stripes{ @@ -18810,13 +18176,6 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/outdoors/nw_rockies) -"hRd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) "hRj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -18845,6 +18204,13 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/casino) +"hRE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "hRG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -18874,6 +18240,12 @@ icon_state = "blue_plate" }, /area/lv522/outdoors/colony_streets/north_east_street) +"hSM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/cargo_intake) "hSO" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -18949,6 +18321,16 @@ icon_state = "bcircuit" }, /area/lv522/atmos/east_reactor) +"hTJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/command_centre) "hTW" = ( /obj/structure/largecrate/random/secure, /obj/effect/landmark/lv624/fog_blocker/short, @@ -19037,6 +18419,18 @@ icon_state = "bcircuit" }, /area/lv522/atmos/east_reactor) +"hVl" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/clothing/suit/storage/marine/rto, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "hVu" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -19118,14 +18512,6 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"hXA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "hXO" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -19171,13 +18557,6 @@ icon_state = "floor_plate" }, /area/lv522/indoors/lone_buildings/storage_blocks) -"hYg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) "hYk" = ( /obj/structure/window/reinforced{ dir = 4 @@ -19210,15 +18589,33 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/b_block/bridge) +"hYS" = ( +/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{ + icon_state = "N" + }, +/turf/open/floor/plating/tunnelable, +/area/lv522/landing_zone_1/tunnel) "hYV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) -"hZc" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/cargo_container/wy/right, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) +"hZf" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/structure/window/reinforced, +/obj/structure/sign/safety/synth_storage{ + pixel_x = 23; + pixel_y = 29 + }, +/turf/open/floor/bluegrid, +/area/lv522/indoors/a_block/corpo/glass) "hZg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/server_equipment/laptop/closed, @@ -19227,6 +18624,15 @@ icon_state = "blue1" }, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"hZk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor) "hZn" = ( /obj/structure/prop/server_equipment/yutani_server{ pixel_x = -4 @@ -19235,13 +18641,6 @@ icon_state = "bcircuit" }, /area/lv522/atmos/east_reactor) -"hZC" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/ore/uranium, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) "hZK" = ( /obj/structure/prop/server_equipment/yutani_server/broken{ pixel_x = 3 @@ -19299,15 +18698,16 @@ icon_state = "whitegreenfull" }, /area/lv522/oob) -"iam" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"iaD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison{ + icon_state = "darkredfull2" }, -/area/lv522/atmos/filt) +/area/lv522/outdoors/colony_streets/north_street) "iaM" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, @@ -19348,6 +18748,10 @@ icon_state = "23" }, /area/lv522/landing_zone_forecon/UD6_Tornado) +"ibS" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) "ibT" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -19365,11 +18769,6 @@ icon_state = "marked" }, /area/lv522/indoors/b_block/hydro) -"ica" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "ici" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomit_4" @@ -19426,6 +18825,12 @@ icon_state = "white_cyan1" }, /area/lv522/oob/w_y_vault) +"icO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "icT" = ( /obj/structure/machinery/light{ dir = 1 @@ -19518,22 +18923,13 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor) -"ieE" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid"; - pixel_x = -10; - pixel_y = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +"ieF" = ( +/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" }, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/atmos/east_reactor) "ieW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -19552,15 +18948,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"ifg" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) "ifh" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 1; @@ -19594,6 +18981,14 @@ /obj/structure/barricade/wooden, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"ifR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/command_centre) "igg" = ( /obj/structure/largecrate/random/mini{ pixel_x = 9; @@ -19628,17 +19023,13 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"igA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 24 - }, +"igy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" + icon_state = "plate" }, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/command_centre) "igL" = ( /obj/structure/machinery/disposal, /turf/open/floor/prison{ @@ -19646,6 +19037,19 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/hydro) +"igN" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/cargo_intake) "igT" = ( /turf/open/asphalt/cement{ icon_state = "cement4" @@ -19671,13 +19075,6 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/hallway) -"ihf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "ihs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -19789,12 +19186,6 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/corpo/glass) -"ijO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) "ijR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -19819,6 +19210,15 @@ icon_state = "wood" }, /area/lv522/indoors/b_block/bar) +"ikp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/stack/folding_barricade, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "ikr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -19849,6 +19249,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"ilc" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor) "ild" = ( /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) @@ -20080,15 +19487,6 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"iqz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "iqQ" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" @@ -20113,6 +19511,13 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/kitchen/glass) +"iri" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "irs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, @@ -20271,6 +19676,13 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"itW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor) "iui" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/microwave{ @@ -20322,6 +19734,15 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) +"iuQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Cargo Airlock"; + welded = 1 + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/cargo) "iuW" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison{ @@ -20353,6 +19774,16 @@ /obj/item/tool/wet_sign, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"ivs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "ivy" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/jackhammer, @@ -20368,6 +19799,12 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"ivB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/west) "ivK" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/lv522/indoors/lone_buildings/engineering) @@ -20380,6 +19817,12 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"ivY" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement{ + icon_state = "cement12" + }, +/area/lv522/outdoors/colony_streets/north_street) "iwb" = ( /obj/structure/stairs/perspective{ dir = 6; @@ -20431,6 +19874,26 @@ icon_state = "marked" }, /area/lv522/atmos/command_centre) +"ixh" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/lv522/indoors/a_block/kitchen) "ixs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, @@ -20457,10 +19920,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"ixV" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "ixW" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -20472,13 +19931,6 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) -"iyl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "iyq" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/corsat{ @@ -20516,13 +19968,6 @@ icon_state = "floor_plate" }, /area/lv522/atmos/reactor_garage) -"iyQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "iyS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -20541,14 +19986,13 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/bridge) -"izb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"iyZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" }, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/atmos/north_command_centre) "izj" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -20635,6 +20079,15 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) +"iBd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Garage Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/garage) "iBe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -20700,6 +20153,13 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"iCa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 9; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "iCb" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -20751,18 +20211,6 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor/south) -"iDC" = ( -/obj/item/clothing/head/helmet/marine/grenadier{ - armor_bullet = 10; - desc = "Pairs with the M3-G4 heavy grenadier plating. A distant cousin of the experimental B18 defensive helmet. Decorated with a blue stripe the large hole in the side of this helmet somewhat limits its protection."; - name = "\improper damaged M3-G4 grenadier helmet"; - pixel_x = 3; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) "iDD" = ( /obj/item/stack/tile/plasteel{ name = "ceiling tile"; @@ -20778,6 +20226,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"iDK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) +"iEd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat{ + dir = 9; + icon_state = "brown" + }, +/area/lv522/atmos/command_centre) "iEn" = ( /turf/open/floor/corsat{ dir = 1; @@ -20791,6 +20256,28 @@ icon_state = "floor_marked" }, /area/lv522/atmos/cargo_intake) +"iFd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/prop/server_equipment/yutani_server/off, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor) +"iFe" = ( +/obj/structure/closet/crate, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/lv522/landing_zone_2) +"iFj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/cargo_intake) "iFk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -20831,15 +20318,6 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor/south) -"iGc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) "iGl" = ( /obj/structure/machinery/door/airlock/almayer/engineering, /turf/open/floor/corsat{ @@ -20857,19 +20335,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) +"iGp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/river, +/area/lv522/atmos/filt) "iGr" = ( /obj/structure/largecrate/random, /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, /area/lv522/landing_zone_2) -"iGD" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "iGF" = ( /obj/structure/bed/chair{ dir = 8 @@ -21033,12 +20508,6 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/mining) -"iJA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/west_reactor) "iJE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -21200,6 +20669,19 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) +"iML" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/barricade/metal{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "iMQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red, @@ -21264,16 +20746,6 @@ icon_state = "browncorner" }, /area/lv522/atmos/cargo_intake) -"iOt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) "iOw" = ( /obj/item/storage/toolbox/electrical{ pixel_y = -6 @@ -21339,17 +20811,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"iPy" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block Dorms And Office Airlock"; - welded = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) "iPD" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ id = "West LZ Storage"; @@ -21402,10 +20863,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"iQt" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) "iQF" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -21441,30 +20898,6 @@ /obj/item/prop/colony/used_flare, /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; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"iRW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"iRY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) "iSc" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -21483,10 +20916,6 @@ icon_state = "rasputin8" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"iSx" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/storage_blocks) "iSF" = ( /obj/structure/surface/table/almayer, /obj/structure/prop/server_equipment/laptop/on, @@ -21504,23 +20933,6 @@ icon_state = "blue_plate" }, /area/lv522/indoors/c_block/mining) -"iTf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Security Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) "iTn" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/corsat{ @@ -21745,6 +21157,12 @@ icon_state = "brown" }, /area/lv522/atmos/cargo_intake) +"iXq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/filt) "iXy" = ( /obj/structure/largecrate/random/mini/med{ pixel_x = -12; @@ -21829,12 +21247,6 @@ icon_state = "squares" }, /area/lv522/atmos/cargo_intake) -"iYG" = ( -/obj/item/stack/sandbags_empty/small_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) "iYL" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -22012,6 +21424,13 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"jbK" = ( +/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" + }, +/area/lv522/atmos/west_reactor) "jbO" = ( /obj/structure/pipes/standard/simple/visible{ dir = 6 @@ -22046,6 +21465,13 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/bridges) +"jcC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "brown" + }, +/area/lv522/atmos/north_command_centre) "jcH" = ( /obj/effect/spawner/gibspawner/human, /obj/item/clothing/suit/storage/marine/smartgunner, @@ -22114,6 +21540,14 @@ icon_state = "squares" }, /area/lv522/atmos/cargo_intake) +"jdI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Radio Tower Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/t_comm) "jeb" = ( /obj/vehicle/powerloader{ dir = 8 @@ -22128,14 +21562,12 @@ icon_state = "browncorner" }, /area/lv522/atmos/east_reactor/south) -"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" +"jeh" = ( +/obj/item/stack/sandbags/small_stack, +/turf/open/asphalt/cement{ + icon_state = "cement3" }, -/area/lv522/atmos/east_reactor/south) +/area/lv522/outdoors/colony_streets/north_street) "jeD" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine, @@ -22225,11 +21657,6 @@ "jfO" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"jfP" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) "jfZ" = ( /obj/structure/platform{ dir = 8 @@ -22306,13 +21733,6 @@ }, /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, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "jhY" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/glasses/meson, @@ -22427,6 +21847,15 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) +"jjc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Electronics Storage" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/lone_buildings/outdoor_bot) "jjg" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison{ @@ -22516,13 +21945,6 @@ icon_state = "squares" }, /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" - }, -/area/lv522/atmos/east_reactor/south) "jjW" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -22535,6 +21957,13 @@ icon_state = "marked" }, /area/lv522/atmos/reactor_garage) +"jkc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 6; + icon_state = "brown" + }, +/area/lv522/atmos/command_centre) "jkp" = ( /obj/structure/fence{ layer = 2.9 @@ -22582,6 +22011,17 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) +"jla" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/cargo_intake) "jlc" = ( /obj/structure/surface/rack, /obj/item/tool/minihoe{ @@ -22655,6 +22095,14 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/medical) +"jmn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/plating/tunnelable, +/area/lv522/landing_zone_1/tunnel) "jmv" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -22680,11 +22128,6 @@ "jmG" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/cargo) -"jmN" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) "jmU" = ( /obj/structure/barricade/handrail, /turf/open/floor/coagulation{ @@ -22835,6 +22278,12 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/garage) +"joV" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement{ + icon_state = "cement12" + }, +/area/lv522/outdoors/colony_streets/north_street) "jpa" = ( /obj/structure/bedsheetbin{ pixel_y = 7 @@ -22845,17 +22294,17 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) +"jpb" = ( +/obj/structure/closet/crate, +/obj/item/storage/pouch/shotgun/large/slug, +/obj/item/storage/pouch/general/large/m39ap, +/obj/item/storage/pouch/flamertank, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) "jpc" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"jpm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "jpx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -22906,16 +22355,19 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) +"jqV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/corpo) "jrd" = ( /obj/structure/girder/displaced, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"jri" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/west) "jrn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -22923,23 +22375,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) -"jro" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/admin) "jru" = ( /obj/structure/platform{ dir = 8 @@ -22968,18 +22403,6 @@ icon_state = "kitchen" }, /area/lv522/indoors/a_block/kitchen) -"jrE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/hydro) "jrJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, @@ -23012,15 +22435,6 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"jsk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Dorms And Office Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) "jsy" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -23089,6 +22503,13 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/corpo/glass) +"jub" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/plating{ + dir = 8; + icon_state = "platingdmg3" + }, +/area/lv522/indoors/lone_buildings/storage_blocks) "jud" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -23190,6 +22611,13 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) +"jvw" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/filt) "jvG" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/prison{ @@ -23209,17 +22637,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"jwP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Garage Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/garage) +"jwO" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "jwT" = ( /obj/item/tool/wet_sign, /turf/open/floor/corsat{ @@ -23283,20 +22705,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"jxT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Security Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen) "jyf" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3; @@ -23435,6 +22843,16 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) +"jAA" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison{ + dir = 8; + icon_state = "cell_stripe" + }, +/area/lv522/indoors/lone_buildings/storage_blocks) "jAI" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse, @@ -23562,14 +22980,6 @@ icon_state = "squares" }, /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; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) "jCS" = ( /obj/item/trash/wy_chips_pepper, /obj/structure/machinery/light{ @@ -23670,17 +23080,6 @@ icon_state = "floor_plate" }, /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 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "jEq" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/corsat{ @@ -23694,18 +23093,6 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) -"jEF" = ( -/obj/structure/transmitter/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Meeting Room"; - pixel_y = 26 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "jEW" = ( /obj/structure/bed/chair{ dir = 1 @@ -23736,6 +23123,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"jFd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor/south) "jFl" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -23867,20 +23263,26 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/medical) +"jHY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "jIk" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"jIA" = ( -/obj/structure/surface/rack, +"jID" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" }, -/area/lv522/indoors/c_block/garage) +/area/lv522/atmos/east_reactor/south) "jIG" = ( /obj/item/tool/wet_sign{ pixel_x = -11; @@ -23998,6 +23400,12 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/east_central_street) +"jKg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/west_reactor) "jKm" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, @@ -24061,6 +23469,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) +"jLI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "jLX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -24220,23 +23632,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"jOx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bridge) "jOF" = ( /obj/effect/acid_hole, /turf/closed/wall/shiva/prefabricated/reinforced, @@ -24250,6 +23645,19 @@ }, /turf/open/floor/plating, /area/lv522/oob) +"jPd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/b_block/hydro) "jPg" = ( /obj/structure/platform_decoration, /obj/structure/stairs/perspective{ @@ -24291,20 +23699,6 @@ "jPw" = ( /turf/open/floor/plating, /area/lv522/oob) -"jPz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) -"jPC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) "jQa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/dam/crane{ @@ -24463,6 +23857,13 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/north_west_street) +"jTO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 6; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "jTS" = ( /obj/structure/surface/table/almayer, /obj/item/circuitboard/apc, @@ -24471,19 +23872,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms/glass) -"jUc" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) "jUe" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -24559,12 +23947,6 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/reactor_garage) -"jVa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) "jVq" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 @@ -24582,13 +23964,6 @@ icon_state = "darkbrownfull2" }, /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" - }, -/area/lv522/atmos/east_reactor/south) "jVH" = ( /obj/item/paper{ pixel_x = -4; @@ -24612,25 +23987,9 @@ /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"jVV" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/slag, -/obj/item/ore/slag, -/obj/item/ore/slag, -/obj/item/ore/slag, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"jWr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, +"jWx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ - dir = 10; icon_state = "brown" }, /area/lv522/atmos/east_reactor/south) @@ -24656,6 +24015,13 @@ icon_state = "darkpurple2" }, /area/lv522/indoors/a_block/dorms) +"jWY" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor) "jWZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/platform_decoration{ @@ -24684,6 +24050,12 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"jXN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor) "jXQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -24694,27 +24066,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"jYc" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) -"jYj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"jYp" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "jYr" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 @@ -24776,6 +24127,13 @@ icon_state = "floor_marked" }, /area/lv522/indoors/lone_buildings/storage_blocks) +"jZn" = ( +/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" + }, +/area/lv522/atmos/west_reactor) "jZo" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 @@ -24953,13 +24311,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"kck" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) "kco" = ( /obj/structure/platform{ dir = 8 @@ -25018,17 +24369,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"kcY" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"kda" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "kdf" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -25077,20 +24417,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) -"kdw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo) "kdx" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/shale/layer1, @@ -25133,6 +24459,25 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"keA" = ( +/obj/structure/girder, +/turf/open/asphalt/cement{ + icon_state = "cement4" + }, +/area/lv522/outdoors/colony_streets/north_street) +"kfa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/security) "kfi" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/close, @@ -25160,17 +24505,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/casino) -"kfu" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "kfv" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, @@ -25189,26 +24523,12 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/kitchen) -"kfA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "kfD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva{ icon_state = "radiator_tile2" }, /area/lv522/indoors/a_block/kitchen) -"kfF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) "kfG" = ( /obj/structure/prop/dam/crane/cargo{ dir = 1; @@ -25237,19 +24557,6 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor/south) -"kgC" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) "kgQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -25320,20 +24627,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"khR" = ( -/obj/structure/largecrate/random, -/obj/item/storage/box/packet/high_explosive{ - pixel_x = -5; - pixel_y = -14 - }, -/obj/item/storage/pill_bottle/packet/oxycodone{ - pixel_x = -1; - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) "kib" = ( /obj/item/clothing/head/hardhat/white, /obj/item/prop/alien/hugger{ @@ -25476,19 +24769,6 @@ icon_state = "squares" }, /area/lv522/atmos/cargo_intake) -"kkc" = ( -/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/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) "kkr" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -25538,13 +24818,6 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/lone_buildings/chunk) -"kkZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/north_command_centre) "klj" = ( /turf/open/floor/prison{ dir = 4; @@ -25626,26 +24899,6 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) -"kmw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/uscm_mre{ - pixel_x = -12; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"kmz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) "kmE" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -25757,6 +25010,13 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) +"knU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor) "knW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -25794,6 +25054,13 @@ icon_state = "darkbrownfull2" }, /area/lv522/landing_zone_2/ceiling) +"koF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/west) "koG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25808,6 +25075,12 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"koR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/cargo_intake) "kpo" = ( /turf/open/floor/corsat{ dir = 4; @@ -25833,23 +25106,6 @@ /obj/effect/decal/cleanable/dirt, /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 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"kpG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) "kpN" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -25925,10 +25181,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"kry" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/east_reactor/south) "krH" = ( /turf/open/floor/prison{ dir = 1; @@ -25982,38 +25234,11 @@ icon_state = "brown" }, /area/lv522/atmos/north_command_centre) -"kss" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "ksA" = ( /turf/open/floor/corsat{ icon_state = "plate" }, /area/lv522/indoors/c_block/mining) -"ksO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/barricade/metal{ - dir = 1 - }, -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) "kti" = ( /obj/structure/platform, /obj/structure/platform{ @@ -26035,14 +25260,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/dorms) -"kua" = ( -/obj/effect/landmark/objective_landmark/close, -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/large_stack, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) "kug" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/pistachios, @@ -26097,6 +25314,16 @@ icon_state = "floor_plate" }, /area/lv522/atmos/way_in_command_centre) +"kuX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "brown" + }, +/area/lv522/atmos/command_centre) "kvc" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/floor/prison, @@ -26212,12 +25439,12 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/mining) -"kxH" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"kxD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "squares" }, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/atmos/north_command_centre) "kxW" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -26282,12 +25509,6 @@ icon_state = "brown" }, /area/lv522/atmos/cargo_intake) -"kzc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) "kzd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -26347,6 +25568,20 @@ "kzT" = ( /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) +"kAe" = ( +/obj/item/tank/oxygen{ + pixel_x = 4; + pixel_y = 19 + }, +/obj/item/tool/mop{ + desc = "Unlock the power of Mop-Fu!"; + force = 35; + pixel_x = -12; + pixel_y = 24 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "kAf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, @@ -26528,6 +25763,15 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"kCQ" = ( +/obj/structure/largecrate/random, +/obj/item/explosive/plastic/breaching_charge{ + pixel_y = -2 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv522/outdoors/colony_streets/north_street) "kDH" = ( /obj/structure/machinery/disposal, /turf/open/floor/prison{ @@ -26725,10 +25969,6 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/hydro) -"kGX" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) "kHd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -26817,6 +26057,12 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) +"kIG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "kIM" = ( /obj/item/ammo_magazine/rifle/m4ra/ap{ current_rounds = 0 @@ -26915,12 +26161,6 @@ icon_state = "2,0" }, /area/lv522/oob) -"kKj" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/outdoors/colony_streets/north_east_street) "kKD" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green, @@ -27067,16 +26307,6 @@ icon_state = "rasputin15" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"kNY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Dorms And Office Airlock"; - welded = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) "kOa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -27198,6 +26428,12 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"kPW" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "kQc" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/strata{ @@ -27355,6 +26591,13 @@ icon_state = "floor_plate" }, /area/lv522/indoors/a_block/admin) +"kSh" = ( +/obj/structure/closet/crate, +/obj/item/storage/pouch/pressurized_reagent_canister/revival, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv522/indoors/lone_buildings/storage_blocks) "kSm" = ( /obj/structure/machinery/light{ dir = 8 @@ -27452,6 +26695,13 @@ icon_state = "floor_plate" }, /area/lv522/indoors/c_block/cargo) +"kTy" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "browncorner" + }, +/area/lv522/atmos/east_reactor/south) "kTF" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/gloves/botanic_leather, @@ -27517,14 +26767,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"kUM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) "kUP" = ( /obj/structure/machinery/light{ dir = 1 @@ -27807,6 +27049,13 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/kitchen/damage) +"lae" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement{ + icon_state = "cement3" + }, +/area/lv522/outdoors/colony_streets/north_street) "lag" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/power/apc/weak{ @@ -27834,6 +27083,23 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) +"laB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/admin) "laX" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8; @@ -27943,12 +27209,6 @@ icon_state = "kitchen" }, /area/lv522/indoors/b_block/bar) -"lcP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) "lcT" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/camera/autoname{ @@ -27975,13 +27235,6 @@ icon_state = "plate" }, /area/lv522/atmos/cargo_intake) -"ldr" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) "ldu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -28071,18 +27324,6 @@ icon_state = "marked" }, /area/lv522/atmos/way_in_command_centre) -"leH" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/clothing/suit/storage/marine/rto, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "leI" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -28127,13 +27368,6 @@ icon_state = "floor_plate" }, /area/lv522/atmos/sewer) -"lfA" = ( -/obj/structure/closet/crate, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2) "lfS" = ( /turf/open/asphalt/cement{ icon_state = "cement2" @@ -28152,6 +27386,10 @@ icon_state = "plate" }, /area/lv522/atmos/cargo_intake) +"lgR" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "lgY" = ( /obj/structure/platform_decoration{ dir = 1 @@ -28175,18 +27413,6 @@ icon_state = "floor_plate" }, /area/lv522/indoors/a_block/admin) -"lhp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/barricade/deployable, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) "lhC" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 @@ -28236,13 +27462,6 @@ icon_state = "floor_plate" }, /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, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "liD" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison{ @@ -28270,16 +27489,6 @@ icon_state = "plate" }, /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 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) "ljq" = ( /obj/structure/girder/displaced, /turf/open/floor/plating, @@ -28298,14 +27507,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; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "ljW" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata{ @@ -28331,6 +27532,15 @@ /obj/item/stack/sheet/metal, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) +"lkr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Casino Airlock"; + welded = 1 + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/casino) "lkH" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -28380,6 +27590,17 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"lmb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor) "lmo" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -28447,15 +27668,6 @@ icon_state = "floor_plate" }, /area/lv522/indoors/lone_buildings/outdoor_bot) -"lmI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Dorms And Office Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) "lmJ" = ( /obj/structure/prop/dam/crane/cargo, /turf/open/floor/plating, @@ -28466,15 +27678,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"lmW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) "lmY" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/east_reactor/south) @@ -28504,6 +27707,14 @@ icon_state = "plate" }, /area/lv522/atmos/filt) +"lnE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "lnF" = ( /turf/open/floor/corsat{ dir = 4; @@ -28588,6 +27799,11 @@ icon_state = "blue1" }, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"loX" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/lv522/indoors/lone_buildings/storage_blocks) "lpi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -28608,10 +27824,6 @@ icon_state = "floor_marked" }, /area/lv522/indoors/lone_buildings/storage_blocks) -"lpy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) "lpH" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -28631,14 +27843,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"lqI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 9; - pixel_y = 25 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) "lqL" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden, @@ -28655,21 +27859,6 @@ icon_state = "plate" }, /area/lv522/atmos/cargo_intake) -"lrd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/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, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/cargo_intake) "lrm" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 @@ -28719,12 +27908,13 @@ icon_state = "browncorner" }, /area/lv522/atmos/reactor_garage) -"lrQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +"lrV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ - icon_state = "plate" + dir = 4; + icon_state = "brown" }, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/cargo_intake) "lsf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -28869,13 +28059,6 @@ icon_state = "plate" }, /area/lv522/atmos/reactor_garage) -"lwm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) "lwr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -28920,6 +28103,13 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"lxh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "browncorner" + }, +/area/lv522/atmos/cargo_intake) "lxj" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/sand_white/layer0, @@ -28932,6 +28122,12 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/security/glass) +"lxw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/north_command_centre) "lxG" = ( /obj/structure/surface/table/almayer, /obj/effect/spider/spiderling/nogrow, @@ -28965,19 +28161,18 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"lyb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + icon_state = "fake_wood" + }, +/area/lv522/atmos/east_reactor/east) "lyg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"lyu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "lyD" = ( /turf/open/asphalt/cement{ icon_state = "cement15" @@ -29003,6 +28198,11 @@ icon_state = "floor_plate" }, /area/lv522/atmos/way_in_command_centre) +"lzc" = ( +/obj/structure/girder/displaced, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/west) "lze" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/warning_stripes{ @@ -29110,15 +28310,6 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/north_east_street) -"lAA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "lAD" = ( /obj/structure/foamed_metal, /turf/open/floor/corsat{ @@ -29158,6 +28349,11 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"lBk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "lBl" = ( /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, @@ -29352,6 +28548,22 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"lEs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/cargo_intake) +"lEE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 10; + icon_state = "brown" + }, +/area/lv522/atmos/cargo_intake) "lEF" = ( /turf/open/floor/prison{ icon_state = "darkpurplefull2" @@ -29378,13 +28590,6 @@ icon_state = "brown" }, /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, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) "lFk" = ( /obj/structure/machinery/light{ dir = 4 @@ -29399,6 +28604,16 @@ icon_state = "brown" }, /area/lv522/atmos/filt) +"lFM" = ( +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "lFO" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -29497,13 +28712,6 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/c_block/cargo) -"lHk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) "lHl" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ @@ -29568,19 +28776,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/landing_zone_2) -"lIy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/hydro) "lIB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -29653,13 +28848,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"lKC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/filt) "lKF" = ( /obj/structure/barricade/deployable{ dir = 4 @@ -29670,6 +28858,12 @@ icon_state = "platingdmg3" }, /area/lv522/indoors/a_block/admin) +"lKH" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/outdoors/colony_streets/south_east_street) "lLl" = ( /obj/structure/foamed_metal, /obj/structure/pipes/standard/simple/hidden/green, @@ -29860,12 +29054,13 @@ icon_state = "cement4" }, /area/lv522/outdoors/colony_streets/north_street) -"lPM" = ( -/obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement15" +"lPR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 6; + icon_state = "brown" }, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/atmos/east_reactor/south) "lPT" = ( /obj/structure/bed/chair{ dir = 4 @@ -29889,6 +29084,15 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"lQA" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement{ + icon_state = "cement1" + }, +/area/lv522/outdoors/colony_streets/north_street) "lQS" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; @@ -29897,6 +29101,23 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"lRi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = -1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"lRu" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/filt) "lRx" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/sriracha{ @@ -30006,6 +29227,12 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/dorms) +"lTP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor) "lTQ" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -30047,6 +29274,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) +"lUy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Shared Dorms Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "lUJ" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -30066,16 +29301,6 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) -"lUU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo) "lUV" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -30189,10 +29414,6 @@ icon_state = "marked" }, /area/lv522/atmos/east_reactor) -"lXO" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) "lXQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -30268,6 +29489,16 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/a_block/bridges/op_centre) +"lZK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/west_reactor) "lZO" = ( /obj/structure/coatrack{ pixel_x = -6; @@ -30292,13 +29523,6 @@ icon_state = "wood" }, /area/lv522/indoors/b_block/bar) -"mad" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) "maj" = ( /turf/open/floor/prison{ icon_state = "floor_plate" @@ -30349,6 +29573,12 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"mba" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor/east) "mbq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -30514,10 +29744,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"mee" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) "men" = ( /turf/open/floor/shiva{ icon_state = "radiator_tile2" @@ -30534,15 +29760,6 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/a_block/bridges/corpo) -"meK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper C-Block - Cargo Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/bridge) "mfh" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -30573,6 +29790,16 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) +"mfS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper C-Block - Casino Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/casino) "mfV" = ( /obj/structure/machinery/light{ dir = 8 @@ -30676,13 +29903,15 @@ }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_east_street) -"mjq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +"mji" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, /turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" + icon_state = "marked" }, -/area/lv522/atmos/west_reactor) +/area/lv522/indoors/a_block/corpo/glass) "mjs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -30713,6 +29942,12 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/reactor_garage) +"mjK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/cargo_intake) "mjR" = ( /obj/item/stack/sheet/metal, /turf/open/asphalt/cement{ @@ -30788,6 +30023,14 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/security) +"mkT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/bridges/op_centre) "mkW" = ( /obj/structure/bed/chair{ dir = 4 @@ -30826,6 +30069,13 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"mlC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor) "mlE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -30869,6 +30119,20 @@ icon_state = "plate" }, /area/lv522/atmos/reactor_garage) +"mlY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger{ + pixel_x = -7; + pixel_y = -5 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "mlZ" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -30893,15 +30157,6 @@ icon_state = "floor_plate" }, /area/lv522/atmos/way_in_command_centre) -"mmj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/filt) "mmv" = ( /obj/structure/machinery/light{ dir = 8 @@ -30924,6 +30179,12 @@ icon_state = "cement1" }, /area/lv522/outdoors/colony_streets/south_west_street) +"mmA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/oob) "mmE" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 @@ -30984,6 +30245,12 @@ icon_state = "floor_plate" }, /area/lv522/indoors/a_block/garden) +"mnB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/north) "mnN" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, @@ -31006,15 +30273,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"mnX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/filt) "moe" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/lv522/oob/w_y_vault) @@ -31053,41 +30311,12 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness/glass) -"moQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Shared Dorms Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"moZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) "mpr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) -"mpF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bridge) "mpI" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -31212,6 +30441,15 @@ icon_state = "squares" }, /area/lv522/atmos/east_reactor/south) +"mrd" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "mrD" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata{ @@ -31219,12 +30457,6 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/corpo/glass) -"mrL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) "mrM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -31275,6 +30507,16 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/security) +"msw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/cargo_intake) "msB" = ( /obj/item/reagent_container/food/snacks/stewedsoymeat{ pixel_y = -6 @@ -31296,6 +30538,12 @@ icon_state = "cement3" }, /area/lv522/outdoors/n_rockies) +"mti" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "mto" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat{ @@ -31337,12 +30585,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"muB" = ( -/obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) "muO" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -31441,6 +30683,11 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/south_west_street) +"mwn" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "mwp" = ( /obj/effect/spawner/random/tool, /turf/open/auto_turf/sand_white/layer0, @@ -31453,15 +30700,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"mwL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo/glass) "mwT" = ( /obj/structure/prop/dam/truck, /obj/structure/prop/holidays/wreath{ @@ -31479,12 +30717,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"mxg" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/garden) "mxo" = ( /obj/structure/surface/rack, /obj/item/clothing/head/hardhat, @@ -31495,13 +30727,6 @@ icon_state = "darkbrownfull2" }, /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" - }, -/area/lv522/atmos/east_reactor/south) "mxt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -31608,10 +30833,6 @@ icon_state = "greenfull" }, /area/lv522/landing_zone_1/ceiling) -"mzi" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "mzP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger{ @@ -31634,6 +30855,13 @@ /obj/structure/prop/dam/crane/damaged, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"mAu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor) "mAA" = ( /obj/structure/machinery/light, /turf/open/floor/shiva{ @@ -31662,6 +30890,15 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"mAK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/cargo_intake) "mAR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -31742,13 +30979,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) -"mCQ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/filt) "mDw" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -31768,6 +30998,13 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/bridge) +"mDO" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/west_reactor) "mDT" = ( /obj/structure/largecrate/random/mini, /obj/effect/decal/cleanable/dirt, @@ -31797,6 +31034,14 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms/glass) +"mEn" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/lv522/indoors/c_block/garage) "mEp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -31876,14 +31121,6 @@ /obj/structure/platform/stair_cut/alt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"mFO" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Radio Tower Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/t_comm) "mFZ" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -31971,6 +31208,12 @@ icon_state = "E"; pixel_x = 1 }, +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 + }, +/obj/structure/barricade/metal{ + dir = 4 + }, /turf/open/floor/prison{ icon_state = "darkredfull2" }, @@ -32046,15 +31289,6 @@ icon_state = "cement4" }, /area/lv522/outdoors/colony_streets/north_east_street) -"mJG" = ( -/obj/structure/surface/rack, -/obj/item/device/analyzer, -/obj/effect/landmark/objective_landmark/close, -/obj/item/stack/sheet/cardboard/full_stack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) "mJQ" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -32101,6 +31335,14 @@ icon_state = "floor_plate" }, /area/lv522/indoors/a_block/admin) +"mKK" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/asphalt/cement{ + icon_state = "cement3" + }, +/area/lv522/outdoors/colony_streets/north_street) "mKN" = ( /obj/structure/cargo_container/kelland/left, /turf/open/floor/corsat{ @@ -32113,16 +31355,6 @@ icon_state = "squares" }, /area/lv522/atmos/cargo_intake) -"mKZ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 6; - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) "mLb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -32184,13 +31416,6 @@ icon_state = "brown" }, /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" - }, -/area/lv522/atmos/east_reactor/south) "mMr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/corporate, @@ -32275,6 +31500,11 @@ icon_state = "white_cyan2" }, /area/lv522/indoors/a_block/medical/glass) +"mNC" = ( +/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) "mNI" = ( /turf/open/floor/almayer{ dir = 1; @@ -32297,6 +31527,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"mOe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "brown" + }, +/area/lv522/atmos/west_reactor) "mOf" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -32463,17 +31700,27 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"mPQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Dorms And Office Airlock"; + welded = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/dorms) "mPR" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"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) +"mPV" = ( +/obj/structure/largecrate/random/barrel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "mQd" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -32502,6 +31749,12 @@ icon_state = "darkbrownfull2" }, /area/lv522/landing_zone_2/ceiling) +"mQo" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) "mQq" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 8 @@ -32621,6 +31874,13 @@ icon_state = "marked" }, /area/lv522/atmos/west_reactor) +"mTg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "mTo" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/prison{ @@ -32800,6 +32060,12 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms/glass) +"mVX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/west_reactor) "mWc" = ( /turf/open/asphalt/cement{ icon_state = "cement12" @@ -32831,13 +32097,6 @@ icon_state = "floor_plate" }, /area/lv522/indoors/c_block/cargo) -"mXn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "mXy" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/radio/off{ @@ -32882,6 +32141,12 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/bridges/garden_bridge) +"mZn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor) "mZs" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -32927,15 +32192,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"mZN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) "mZQ" = ( /obj/structure/barricade/deployable, /turf/open/auto_turf/shale/layer1, @@ -32948,10 +32204,6 @@ icon_state = "squares" }, /area/lv522/atmos/east_reactor/south) -"mZW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/river, -/area/lv522/atmos/filt) "mZX" = ( /obj/structure/platform_decoration{ dir = 8 @@ -32999,6 +32251,16 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) +"naM" = ( +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = 8 + }, +/obj/item/prop/alien/hugger{ + pixel_x = -7; + pixel_y = -5 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) "naN" = ( /obj/item/stack/rods, /obj/structure/machinery/light{ @@ -33111,15 +32373,18 @@ icon_state = "cement1" }, /area/lv522/outdoors/colony_streets/south_street) -"ncp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block Bar" +"ncs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "ncv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -33356,10 +32621,6 @@ "ngY" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"nhb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/lv522/atmos/filt) "nhi" = ( /obj/effect/landmark/lv624/fog_blocker/short, /obj/structure/machinery/landinglight/ds1/delaytwo{ @@ -33372,6 +32633,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"nhx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor) "nhD" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -33407,6 +32675,13 @@ icon_state = "wood" }, /area/lv522/indoors/b_block/bar) +"nic" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "niu" = ( /obj/structure/platform_decoration{ dir = 8 @@ -33503,6 +32778,16 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) +"nkl" = ( +/obj/structure/cryofeed, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/bluegrid, +/area/lv522/atmos/east_reactor) +"nkm" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "nkt" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -33567,6 +32852,13 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"nlO" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/plating{ + icon_state = "platebot" + }, +/area/lv522/indoors/c_block/cargo) "nlR" = ( /obj/structure/window/reinforced{ dir = 4; @@ -33647,14 +32939,20 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"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, +"nmL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Kitchen Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, /turf/open/floor/corsat{ - icon_state = "brown" + icon_state = "marked" }, -/area/lv522/atmos/east_reactor/south) +/area/lv522/indoors/a_block/kitchen) "nnj" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -33666,12 +32964,13 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/mining) -"nno" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +"nnk" = ( +/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 = "marked" + icon_state = "plate" }, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/east_reactor/north) "nnv" = ( /obj/item/reagent_container/food/drinks/coffeecup/wy{ pixel_x = -4; @@ -33711,6 +33010,13 @@ icon_state = "marked" }, /area/lv522/indoors/lone_buildings/storage_blocks) +"nnR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/north) "nnW" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/item/prop/alien/hugger, @@ -33723,14 +33029,6 @@ icon_state = "browncorner" }, /area/lv522/atmos/east_reactor/south) -"noH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Casino Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/casino) "noL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -33748,22 +33046,6 @@ }, /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, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"npb" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) "npd" = ( /obj/structure/machinery/light, /turf/open/floor/corsat{ @@ -33771,6 +33053,12 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor) +"npg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/cargo_intake) "npp" = ( /obj/structure/girder, /obj/structure/prop/invuln/lattice_prop{ @@ -33927,14 +33215,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"nrh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/atmos/outdoor) "nri" = ( /obj/structure/platform_decoration, /obj/effect/decal/warning_stripes{ @@ -33948,6 +33228,13 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/north_street) +"nro" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/filt) "nru" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -33991,6 +33278,12 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) +"nrO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "browncorner" + }, +/area/lv522/atmos/east_reactor/south) "nrP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -34045,14 +33338,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms/glass) -"ntk" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Garage Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/garage) "ntq" = ( /obj/structure/prop/invuln/overhead_pipe{ name = "overhead pipe"; @@ -34113,6 +33398,19 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) +"nue" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/b_block/hydro) "nuo" = ( /obj/structure/machinery/light, /turf/open/floor/strata{ @@ -34174,6 +33472,12 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/bridges/op_centre) +"nvA" = ( +/turf/open/floor/plating{ + dir = 8; + icon_state = "platingdmg3" + }, +/area/lv522/indoors/lone_buildings/storage_blocks) "nvB" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, @@ -34203,6 +33507,13 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"nwK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "nwR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -34232,27 +33543,11 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) -"nxu" = ( -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/storage_blocks) "nxF" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"nxJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/hydro) "nxO" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -34287,12 +33582,6 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/south_west_street) -"nyv" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_street) "nyJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -34448,6 +33737,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) +"nDo" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "nDt" = ( /obj/structure/platform_decoration{ dir = 4 @@ -34503,10 +33796,26 @@ icon_state = "floor_plate" }, /area/lv522/atmos/east_reactor/south) +"nEk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor) "nEq" = ( /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_1/ceiling) +"nEw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/west_reactor) "nEX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -34559,6 +33868,18 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) +"nFQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/b_block/hydro) "nGc" = ( /obj/effect/alien/resin/sticky, /turf/open/gm/river, @@ -34626,17 +33947,17 @@ icon_state = "floor_marked" }, /area/lv522/landing_zone_1) -"nHl" = ( -/obj/structure/barricade/sandbags, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/lv522/outdoors/colony_streets/north_street) "nHA" = ( /turf/open/floor/prison{ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) +"nHM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement{ + icon_state = "cement1" + }, +/area/lv522/outdoors/colony_streets/north_street) "nHT" = ( /obj/structure/bed/chair, /obj/structure/machinery/light{ @@ -34681,6 +34002,10 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/mining) +"nIM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/west) "nJr" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -34704,17 +34029,16 @@ icon_state = "floor_plate" }, /area/lv522/atmos/way_in_command_centre) +"nJS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/filt) "nJV" = ( /obj/structure/noticeboard, /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"nJW" = ( -/obj/item/toy/plush/farwa{ - desc = "A Farwa plush doll. Once soft and comforting now just really wet."; - name = "Soaked farwa plush doll" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) "nKh" = ( /obj/structure/machinery/camera/autoname{ dir = 8 @@ -34773,6 +34097,13 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/security) +"nKZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "nLe" = ( /obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/cobweb2, @@ -34803,6 +34134,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) +"nLE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "nLF" = ( /obj/structure/platform_decoration{ dir = 1 @@ -34839,10 +34174,20 @@ icon_state = "darkyellowfull2" }, /area/lv522/indoors/lone_buildings/engineering) +"nMk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) "nMl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/reactor_garage) +"nMq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/north_command_centre) "nMt" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -34888,6 +34233,15 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/north_street) +"nMP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "nMT" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3; @@ -34977,6 +34331,13 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"nNO" = ( +/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" + }, +/area/lv522/atmos/east_reactor/south) "nNR" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffee{ @@ -35068,15 +34429,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"nPn" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) "nPo" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, @@ -35121,17 +34473,6 @@ icon_state = "cement14" }, /area/lv522/outdoors/colony_streets/north_east_street) -"nQk" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/outdoors/colony_streets/north_street) "nQn" = ( /obj/item/stack/rods, /obj/structure/machinery/light{ @@ -35160,16 +34501,6 @@ /obj/item/stack/sheet/wood, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"nQL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -12; - pixel_y = -1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) "nQM" = ( /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/asphalt/cement{ @@ -35226,15 +34557,6 @@ icon_state = "floor_plate" }, /area/lv522/atmos/sewer) -"nRI" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) "nRJ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine, @@ -35244,14 +34566,6 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) -"nRK" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating, -/area/lv522/atmos/filt) "nRQ" = ( /obj/structure/window_frame/strata, /obj/structure/curtain/red, @@ -35259,11 +34573,13 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/t_comm) -"nRY" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +"nRX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "nSm" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, @@ -35323,10 +34639,6 @@ icon_state = "27" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"nTa" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) "nTg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair{ @@ -35389,6 +34701,19 @@ icon_state = "browncorner" }, /area/lv522/atmos/filt) +"nUF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/largecrate/random/case/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "nUO" = ( /obj/structure/closet/crate/trashcart, /turf/open/auto_turf/shale/layer1, @@ -35430,11 +34755,13 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) -"nVr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +"nVy" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor/south) "nVN" = ( /obj/item/ammo_magazine/flamer_tank/empty, /obj/effect/decal/cleanable/liquid_fuel, @@ -35473,13 +34800,6 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/north_east_street) -"nWl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/cargo_intake) "nWn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -35597,6 +34917,23 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"nXI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/b_block/bridge) "nXK" = ( /obj/structure/barricade/wooden{ dir = 8; @@ -35611,18 +34948,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/casino) -"nXM" = ( -/obj/structure/barricade/sandbags{ - dir = 8 - }, -/obj/item/prop/alien/hugger{ - pixel_x = 13; - pixel_y = -5 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) "nXO" = ( /obj/item/ammo_box/magazine/misc/flares, /turf/open/floor/prison, @@ -35710,6 +35035,14 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"nZn" = ( +/obj/effect/landmark/objective_landmark/close, +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/large_stack, +/turf/open/floor/plating{ + icon_state = "platebot" + }, +/area/lv522/indoors/c_block/cargo) "nZv" = ( /obj/structure/machinery/conveyor{ dir = 4; @@ -35724,6 +35057,15 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) +"nZx" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/small_stack, +/obj/item/ore/uranium, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison{ + icon_state = "darkbrownfull2" + }, +/area/lv522/indoors/c_block/mining) "nZF" = ( /turf/open/floor/prison{ icon_state = "floor_plate" @@ -35831,20 +35173,6 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/corpo/glass) -"oda" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal/small_stack, -/obj/item/ore/slag, -/obj/item/ore/slag, -/obj/item/ore/slag, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) "odg" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/plaincakeslice{ @@ -35857,6 +35185,10 @@ icon_state = "kitchen" }, /area/lv522/indoors/a_block/kitchen) +"odi" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) "odt" = ( /obj/structure/window_frame/strata, /obj/item/stack/rods, @@ -35986,10 +35318,6 @@ }, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"oeX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) "ofd" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat{ @@ -36170,6 +35498,12 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) +"oik" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/garden) "oim" = ( /obj/structure/machinery/light{ dir = 4 @@ -36221,6 +35555,13 @@ icon_state = "floor_plate" }, /area/lv522/indoors/lone_buildings/storage_blocks) +"oiS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/north_command_centre) "oiW" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, @@ -36292,14 +35633,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"ojA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Cargo Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/bridge) "ojW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -36380,6 +35713,13 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/hallway) +"omv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "omG" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -36457,14 +35797,11 @@ icon_state = "darkpurple2" }, /area/lv522/indoors/a_block/dorms) -"oox" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +"oow" = ( +/obj/effect/spawner/gibspawner/human, +/obj/item/device/defibrillator/compact, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) "ooG" = ( /obj/structure/machinery/power/apc/weak{ dir = 1 @@ -36637,6 +35974,10 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) +"orK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "orP" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -36687,15 +36028,6 @@ icon_state = "floor_plate" }, /area/lv522/atmos/sewer) -"osE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo/glass) "osN" = ( /turf/open/asphalt/cement{ icon_state = "cement4" @@ -36742,6 +36074,12 @@ icon_state = "floor_plate" }, /area/lv522/atmos/sewer) +"otC" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/outdoors/colony_streets/north_east_street) "otH" = ( /obj/structure/surface/table/almayer, /obj/item/prop/colony/proptag{ @@ -36807,6 +36145,10 @@ }, /turf/open/gm/river, /area/lv522/outdoors/colony_streets/south_street) +"ous" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "ouv" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/camera/autoname, @@ -36858,11 +36200,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ovC" = ( +"ovB" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre, /turf/open/floor/prison{ icon_state = "darkredfull2" }, @@ -37128,6 +36470,15 @@ /obj/structure/bed/chair/wheelchair, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) +"oBn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor/west) "oBw" = ( /obj/structure/machinery/camera/autoname, /obj/structure/largecrate, @@ -37183,6 +36534,13 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/east_central_street) +"oCD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/west) "oCG" = ( /obj/structure/curtain/medical, /obj/structure/pipes/standard/simple/hidden/green{ @@ -37192,6 +36550,15 @@ icon_state = "white_cyan4" }, /area/lv522/indoors/a_block/medical) +"oCW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "oDj" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 @@ -37238,6 +36605,12 @@ icon_state = "squares" }, /area/lv522/atmos/north_command_centre) +"oEW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor/west) "oFr" = ( /obj/structure/machinery/light{ dir = 8 @@ -37393,13 +36766,12 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/security/glass) -"oHW" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/plating{ - icon_state = "platebot" +"oHT" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat{ + icon_state = "plate" }, -/area/lv522/indoors/c_block/cargo) +/area/lv522/atmos/east_reactor/south) "oIr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -37411,6 +36783,10 @@ icon_state = "cement1" }, /area/lv522/outdoors/colony_streets/south_street) +"oIv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/west_reactor) "oIE" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "Showeroom" @@ -37428,6 +36804,10 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) +"oIZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/plating, +/area/lv522/atmos/filt) "oJj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -37636,6 +37016,15 @@ icon_state = "floor_plate" }, /area/lv522/atmos/reactor_garage) +"oLL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/cargo_intake) "oLW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37668,28 +37057,16 @@ }, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"oMt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) "oML" = ( /turf/open/floor/corsat{ icon_state = "brown" }, /area/lv522/atmos/north_command_centre) -"oMX" = ( -/obj/item/storage/belt/grenade, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, +"oMO" = ( +/obj/structure/tent/big, +/turf/open/asphalt/cement{ + icon_state = "cement1" + }, /area/lv522/outdoors/colony_streets/north_street) "oNd" = ( /obj/effect/decal/cleanable/dirt, @@ -37805,11 +37182,10 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/bridge) -"oQs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"oQg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" + icon_state = "plate" }, /area/lv522/atmos/cargo_intake) "oQt" = ( @@ -37827,6 +37203,16 @@ /obj/structure/largecrate/random/case, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"oQV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/stack/sandbags/small_stack, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "oQW" = ( /obj/structure/machinery/light{ dir = 8 @@ -37903,13 +37289,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/bridges) -"oSX" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) "oTc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -38030,12 +37409,10 @@ icon_state = "floor_plate" }, /area/lv522/atmos/way_in_command_centre) -"oUZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) +"oUG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating, +/area/lv522/atmos/filt) "oVb" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/dirt, @@ -38050,11 +37427,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"oVt" = ( -/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) "oVA" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/drinks/coffee, @@ -38166,12 +37538,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"oXd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) "oXk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -38217,6 +37583,14 @@ /obj/structure/barricade/deployable, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) +"oXV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Electronics Storage" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/lone_buildings/outdoor_bot) "oXX" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -38239,6 +37613,19 @@ /obj/structure/platform, /turf/open/auto_turf/sand_white/layer0, /area/lv522/indoors/a_block/bridges/dorms_fitness) +"oYm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/north_command_centre) +"oYr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/north_command_centre) "oYu" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -38322,6 +37709,12 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/reactor_garage) +"pbm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/command_centre) "pbp" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) @@ -38415,19 +37808,6 @@ }, /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) -"pdq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock"; - welded = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/hydro) "pdr" = ( /obj/structure/curtain/red, /obj/effect/decal/cleanable/dirt, @@ -38696,13 +38076,6 @@ icon_state = "darkredfull2" }, /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, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/west_reactor) "pgG" = ( /obj/structure/platform_decoration{ dir = 4 @@ -38718,15 +38091,13 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/north_east_street) -"pgJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 4 - }, +"pgZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "squares" }, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/east_reactor/south) "pha" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -38779,10 +38150,10 @@ icon_state = "marked" }, /area/lv522/landing_zone_1/ceiling) -"pit" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"piv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/area/lv522/outdoors/w_rockies) "piD" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_2/ceiling) @@ -38876,6 +38247,17 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) +"pkn" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 9; + icon_state = "brown" + }, +/area/lv522/atmos/cargo_intake) "pkB" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "9" @@ -39025,6 +38407,24 @@ /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"ppi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor) +"ppj" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor/south) "pps" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ icon_state = "100" @@ -39068,12 +38468,12 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/mining) -"ppX" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"pqc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" }, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/atmos/filt) "pqj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/spacecash/c1000, @@ -39082,6 +38482,10 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/casino) +"pqk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "pqA" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/close, @@ -39131,11 +38535,26 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/hallway) +"pqX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 25 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "pqZ" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ icon_state = "102" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"prs" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) "prD" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "5" @@ -39145,11 +38564,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; @@ -39316,6 +38730,15 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor/south) +"pvE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Cargo Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/cargo) "pvW" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -12; @@ -39336,6 +38759,18 @@ icon_state = "darkpurple2" }, /area/lv522/indoors/a_block/dorms) +"pwk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/pouch/medkit/full_advanced, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/lv522/indoors/lone_buildings/storage_blocks) "pwu" = ( /obj/structure/platform_decoration{ dir = 8 @@ -39346,16 +38781,6 @@ /obj/structure/cargo_container/horizontal/blue/middle, /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/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "pwB" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -39366,20 +38791,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) -"pwF" = ( -/obj/structure/prop/invuln/pipe_water{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "pwH" = ( /obj/effect/landmark/lv624/fog_blocker/short, /obj/structure/machinery/landinglight/ds1/delayone{ @@ -39397,15 +38808,6 @@ icon_state = "cell_stripe" }, /area/lv522/indoors/lone_buildings/storage_blocks) -"pwR" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack{ - pixel_y = 2 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) "pwT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, @@ -39420,10 +38822,6 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/bridge) -"pwX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "pxb" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) @@ -39431,6 +38829,15 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"pxp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Dorms And Office Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/dorms) "pxN" = ( /obj/structure/surface/table/almayer, /turf/open/floor/prison{ @@ -39448,6 +38855,15 @@ icon_state = "95" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"pyb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor/south) "pyc" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison{ @@ -39759,6 +39175,17 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/kitchen/glass) +"pDG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Fitness Centre Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/fitness) "pDM" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -39801,12 +39228,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/garage) -"pEm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) "pEp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -39839,13 +39260,6 @@ icon_state = "marked" }, /area/lv522/atmos/filt) -"pEw" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/command_centre) "pEA" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -39869,6 +39283,15 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) +"pFD" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor/south) "pFF" = ( /obj/structure/platform_decoration{ dir = 1 @@ -39923,6 +39346,15 @@ "pGl" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/lv522/indoors/a_block/kitchen) +"pGu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/north_command_centre) "pGN" = ( /obj/structure/prop/almayer/computers/sensor_computer3, /obj/structure/machinery/door_control/brbutton/alt{ @@ -40027,14 +39459,6 @@ icon_state = "rasputin15" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"pJb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness) "pJd" = ( /obj/effect/decal/cleanable/cobweb2, /obj/structure/surface/table/almayer, @@ -40137,6 +39561,15 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) +"pKt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/west) "pKv" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -40183,6 +39616,16 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"pLN" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 2; + name = "\improper A-Block - Colony Medical Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/medical) "pLP" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/warning_stripes{ @@ -40202,18 +39645,24 @@ /obj/effect/decal/strata_decals/grime/grime3, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) +"pMc" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "pMd" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat{ icon_state = "marked" }, /area/lv522/indoors/a_block/dorms) -"pMg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/filt) "pMs" = ( /obj/structure/surface/table/gamblingtable, /obj/item/card/id/visa{ @@ -40231,6 +39680,15 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"pMt" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 2; + name = "\improper A-Block - Colony Medical Centre Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/medical) "pMz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -40286,12 +39744,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"pNv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "pNF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil/streak, @@ -40313,20 +39765,16 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/bridge) +"pNR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/north_command_centre) "pNY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"pOa" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"pOb" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) "pOd" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -40406,21 +39854,6 @@ /obj/structure/largecrate/random, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/nw_rockies) -"pPv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) "pPC" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/nw_rockies) @@ -40435,11 +39868,10 @@ icon_state = "white_cyan2" }, /area/lv522/indoors/a_block/dorms) -"pQq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +"pQa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) "pQx" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/prison{ @@ -40556,6 +39988,24 @@ icon_state = "brown" }, /area/lv522/atmos/cargo_intake) +"pSh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"pSj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/b_block/bridge) "pSs" = ( /obj/structure/machinery/light{ dir = 4 @@ -40597,6 +40047,16 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/a_block/bridges/op_centre) +"pTA" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/cargo_intake) "pTB" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, @@ -40664,17 +40124,16 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"pUf" = ( -/obj/structure/tent/big, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) "pUo" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"pUu" = ( +/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) "pUv" = ( /turf/open/asphalt/cement{ icon_state = "cement9" @@ -40854,10 +40313,6 @@ /obj/structure/cargo_container/kelland/right, /turf/open/floor/prison, /area/lv522/landing_zone_2) -"pXv" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "pXx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -40882,14 +40337,10 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/bridge) -"pXR" = ( -/obj/structure/barricade/sandbags, -/obj/item/trash/uscm_mre{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) +"pXH" = ( +/obj/effect/alien/weeds/node/alpha, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) "pYf" = ( /obj/structure/machinery/light{ dir = 8 @@ -41089,6 +40540,15 @@ /obj/structure/sign/safety/high_voltage, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"qbL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Dorms And Office Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/dorms) "qbW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -41191,6 +40651,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) +"qdV" = ( +/obj/structure/barricade/sandbags{ + dir = 8 + }, +/obj/item/trash/uscm_mre, +/turf/open/asphalt/cement{ + icon_state = "cement3" + }, +/area/lv522/outdoors/colony_streets/north_street) +"qdZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/north_command_centre) "qer" = ( /obj/structure/prop/invuln/minecart_tracks{ layer = 2.6 @@ -41261,19 +40734,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"qfP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen) "qgj" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -41289,11 +40749,10 @@ }, /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_nest, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) +"qhk" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/storage_blocks) "qhm" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -41343,13 +40802,6 @@ icon_state = "darkyellowfull2" }, /area/lv522/indoors/c_block/t_comm) -"qix" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "qiC" = ( /obj/structure/machinery/camera/autoname{ dir = 8 @@ -41419,6 +40871,15 @@ icon_state = "platingdmg3" }, /area/lv522/indoors/a_block/dorms) +"qjw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "qjC" = ( /obj/item/stack/rods, /turf/open/floor/prison, @@ -41461,6 +40922,18 @@ }, /turf/open/floor/prison, /area/shuttle/drop1/lv522) +"qkJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/plush/farwa{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/prison{ + dir = 4; + icon_state = "greenfull" + }, +/area/lv522/indoors/a_block/fitness/glass) "qle" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /obj/effect/decal/cleanable/dirt, @@ -41676,14 +41149,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"qoj" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) "qot" = ( /obj/structure/surface/table/almayer, /obj/item/stack/sheet/cardboard/full_stack, @@ -41757,20 +41222,13 @@ icon_state = "floor_marked" }, /area/lv522/landing_zone_2/ceiling) -"qpJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper A-Block Canteen Airlock"; - welded = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, +"qpL" = ( +/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 = "marked" + icon_state = "squares" }, -/area/lv522/indoors/a_block/kitchen/glass) +/area/lv522/atmos/east_reactor) "qqc" = ( /obj/structure/filingcabinet, /turf/open/floor/prison{ @@ -41785,13 +41243,6 @@ icon_state = "white_cyan3" }, /area/lv522/indoors/a_block/medical) -"qqq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/filt) "qqx" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -41903,17 +41354,6 @@ icon_state = "white_cyan2" }, /area/lv522/outdoors/w_rockies) -"qro" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"qrG" = ( -/obj/structure/surface/table/almayer, -/obj/item/map/lv522_map, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) "qsd" = ( /obj/structure/pipes/standard/simple/visible{ dir = 10 @@ -42058,6 +41498,12 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness/glass) +"qtJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor) "qtN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -42093,6 +41539,13 @@ icon_state = "floor_marked" }, /area/lv522/landing_zone_1) +"qva" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/west_reactor) "qvb" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -42134,19 +41587,16 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"qvQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) "qvY" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) +"qwm" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "qws" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -42170,6 +41620,10 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"qxe" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "qxf" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, @@ -42213,6 +41667,13 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) +"qxv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "qxB" = ( /obj/item/ammo_magazine/sniper{ current_rounds = 0; @@ -42250,13 +41711,6 @@ icon_state = "cyan2" }, /area/lv522/indoors/a_block/medical) -"qxO" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = -6 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "qxX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -42479,6 +41933,10 @@ /obj/item/trash/plate, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"qBH" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) "qBQ" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -42527,6 +41985,10 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) +"qCw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/west) "qCB" = ( /obj/structure/surface/rack, /obj/item/clothing/shoes/blue{ @@ -42662,16 +42124,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"qEr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper C-Block - Casino Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/casino) "qEu" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -42703,21 +42155,6 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/dorms) -"qFc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.9 - }, -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) "qFs" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ icon_state = "66" @@ -42851,11 +42288,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"qIt" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) "qIu" = ( /obj/structure/bed/bedroll{ dir = 1; @@ -42932,12 +42364,6 @@ /obj/structure/largecrate/random, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"qJE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "qJH" = ( /turf/open/floor/prison{ dir = 4; @@ -42955,6 +42381,14 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"qJO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/prison{ + dir = 10; + icon_state = "floor_marked" + }, +/area/lv522/atmos/outdoor) "qJT" = ( /obj/structure/prop/server_equipment/yutani_server/off{ density = 0; @@ -43038,6 +42472,13 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) +"qLw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/cargo_intake) "qLy" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison{ @@ -43265,12 +42706,6 @@ icon_state = "white_cyan3" }, /area/lv522/indoors/a_block/medical) -"qPm" = ( -/obj/item/ammo_box/magazine/misc/mre/empty, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) "qPq" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -43316,6 +42751,14 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) +"qPS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/security) "qPT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -43607,16 +43050,6 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/kitchen) -"qTH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) "qTI" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -43690,6 +43123,10 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/t_comm) +"qUt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/filt) "qUz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -43747,14 +43184,6 @@ icon_state = "64" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"qVo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Electronics Storage" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) "qVN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -43982,12 +43411,12 @@ icon_state = "cement1" }, /area/lv522/outdoors/colony_streets/north_east_street) -"qZB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"qZx" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat{ icon_state = "brown" }, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/east_reactor/south) "qZC" = ( /turf/open/floor/corsat{ icon_state = "marked" @@ -44032,15 +43461,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"rah" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) "raj" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat{ @@ -44155,6 +43575,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"rbl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/west_reactor) +"rbF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/tunnelable, +/area/lv522/landing_zone_1/tunnel) +"rbK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "browncorner" + }, +/area/lv522/atmos/east_reactor/south) "rbL" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, @@ -44177,26 +43619,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"rbW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "rbX" = ( /obj/effect/landmark/yautja_teleport, /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/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "rcd" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/accessory/poncho, @@ -44473,15 +43899,6 @@ /obj/structure/platform, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"rgS" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "rhh" = ( /obj/structure/bed/chair/wheelchair, /obj/effect/decal/cleanable/dirt, @@ -44575,18 +43992,10 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/bridge) -"rjl" = ( -/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"; - phone_color = "red"; - phone_id = "Reactor Entrance Office"; - pixel_y = 26 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +"rjb" = ( +/obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat{ - icon_state = "plate" + icon_state = "squares" }, /area/lv522/atmos/east_reactor/south) "rjn" = ( @@ -44614,6 +44023,18 @@ icon_state = "cement3" }, /area/lv522/outdoors/colony_streets/central_streets) +"rjD" = ( +/obj/item/tool/lighter/zippo{ + layer = 3.1; + pixel_x = 12; + pixel_y = 18 + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv522/outdoors/colony_streets/north_street) "rjJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -44650,13 +44071,6 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/a_block/bridges/op_centre) -"rla" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/filt) "rls" = ( /obj/structure/bed/chair{ dir = 1 @@ -44668,6 +44082,15 @@ "rlB" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"rlE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock"; + welded = 1 + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/bridges/op_centre) "rlI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -44703,6 +44126,22 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/a_block/bridges) +"rmk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/weapon/gun/launcher/grenade/m81/m79, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) +"rmm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/lv522/indoors/lone_buildings/storage_blocks) "rmp" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating, @@ -44805,6 +44244,10 @@ icon_state = "cement12" }, /area/lv522/landing_zone_1) +"rnX" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "rod" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -44824,15 +44267,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"rov" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) "rox" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -44942,15 +44376,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"rqT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/filt) "rrf" = ( /obj/structure/platform, /obj/structure/prop/invuln/lattice_prop{ @@ -44967,12 +44392,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms/glass) -"rrB" = ( -/obj/vehicle/powerloader, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) "rrI" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -45021,14 +44440,6 @@ /obj/item/toy/beach_ball, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"rsD" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "rsF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -45048,6 +44459,15 @@ /obj/structure/barricade/wooden, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) +"rta" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor) "rtk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ @@ -45360,6 +44780,12 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/hallway) +"ryb" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv522/outdoors/colony_streets/north_street) "ryj" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison{ @@ -45391,15 +44817,6 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/security) -"ryI" = ( -/obj/structure/largecrate/random, -/obj/item/explosive/plastic/breaching_charge{ - pixel_y = -2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) "ryO" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/curtain/red, @@ -45420,6 +44837,12 @@ icon_state = "greenfull" }, /area/lv522/landing_zone_1) +"ryW" = ( +/obj/item/stack/sandbags_empty/small_stack, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv522/outdoors/colony_streets/north_street) "rza" = ( /turf/open/floor/corsat{ dir = 8; @@ -45469,6 +44892,15 @@ icon_state = "darkpurple2" }, /area/lv522/indoors/a_block/dorms) +"rAt" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Tornado) "rAu" = ( /obj/structure/platform_decoration, /obj/effect/landmark/lv624/fog_blocker/short, @@ -45494,10 +44926,6 @@ icon_state = "plate" }, /area/lv522/atmos/cargo_intake) -"rAM" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "rAX" = ( /turf/open/floor{ dir = 4; @@ -45510,6 +44938,17 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) +"rBg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement{ + icon_state = "cement4" + }, +/area/lv522/outdoors/colony_streets/north_street) +"rBu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/west) "rBy" = ( /obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/cleanable/dirt, @@ -45526,11 +44965,6 @@ icon_state = "41" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"rBV" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "rBZ" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "97" @@ -45597,10 +45031,6 @@ icon_state = "cement2" }, /area/lv522/outdoors/colony_streets/south_east_street) -"rCV" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) "rDb" = ( /obj/item/device/m56d_post, /turf/open/shuttle/dropship{ @@ -45645,15 +45075,6 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) -"rEj" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 2; - name = "\improper A-Block - Colony Medical Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/medical) "rEm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ @@ -45663,16 +45084,12 @@ icon_state = "floor_plate" }, /area/lv522/indoors/c_block/t_comm) -"rEP" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"rEV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"rEo" = ( +/obj/structure/machinery/colony_floodlight, /turf/open/floor/corsat{ - icon_state = "squares" + icon_state = "marked" }, -/area/lv522/atmos/cargo_intake) +/area/lv522/outdoors/colony_streets/east_central_street) "rFh" = ( /obj/structure/platform_decoration{ dir = 1 @@ -45689,6 +45106,13 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/east_central_street) +"rFk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "brown" + }, +/area/lv522/atmos/west_reactor) "rFp" = ( /turf/closed/shuttle/dropship2/tornado/typhoon{ icon_state = "51" @@ -45709,10 +45133,6 @@ icon_state = "40" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"rGi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) "rGm" = ( /obj/item/tool/weldingtool, /turf/open/floor/prison{ @@ -45737,6 +45157,10 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"rGX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/east_reactor/south) "rHl" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -45755,6 +45179,10 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"rHU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) "rHX" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/wy_chips_pepper, @@ -45852,13 +45280,14 @@ icon_state = "cement15" }, /area/lv522/outdoors/colony_streets/south_west_street) -"rJB" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +"rJz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Fitness Centre Airlock" }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/fitness/glass) "rJC" = ( /obj/structure/window_frame/strata, /obj/item/shard{ @@ -45867,6 +45296,17 @@ /obj/item/stack/rods, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"rJG" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/asphalt/cement{ + icon_state = "cement2" + }, +/area/lv522/outdoors/colony_streets/north_street) "rJH" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/green, @@ -45972,12 +45412,6 @@ icon_state = "marked" }, /area/lv522/indoors/b_block/hydro) -"rLk" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_street) "rLq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -46130,6 +45564,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) +"rNw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "rNF" = ( /turf/open/floor/prison{ icon_state = "darkredfull2" @@ -46267,6 +45705,18 @@ icon_state = "wood" }, /area/lv522/indoors/b_block/bar) +"rRc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Cargo Airlock"; + welded = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/cargo) "rRm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -46277,6 +45727,15 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"rRp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor) "rRr" = ( /obj/structure/filingcabinet/filingcabinet{ density = 0; @@ -46412,6 +45871,17 @@ icon_state = "floor_plate" }, /area/lv522/indoors/b_block/bar) +"rSQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "rSW" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -46479,6 +45949,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"rUJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Security Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/kitchen) "rUX" = ( /obj/structure/shuttle/engine/heater{ dir = 4; @@ -46607,6 +46091,13 @@ icon_state = "floor3" }, /area/lv522/outdoors/nw_rockies) +"rXD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "browncorner" + }, +/area/lv522/atmos/west_reactor) "rXE" = ( /obj/item/stack/sheet/wood, /turf/open/floor/prison{ @@ -46633,6 +46124,10 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) +"rYp" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) "rYq" = ( /obj/structure/platform, /obj/structure/platform{ @@ -46644,14 +46139,6 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) -"rYu" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) "rYD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -46746,6 +46233,15 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/admin) +"sau" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv522/indoors/lone_buildings/storage_blocks) "say" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/warning_stripes{ @@ -47039,6 +46535,12 @@ icon_state = "cell_stripe" }, /area/lv522/atmos/way_in_command_centre) +"sfi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/west_reactor) "sfm" = ( /obj/structure/surface/table/almayer, /obj/item/toy/bikehorn, @@ -47131,11 +46633,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/casino) -"she" = ( -/obj/structure/machinery/floodlight, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/storage_blocks) "shm" = ( /obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, @@ -47190,14 +46687,6 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/cargo) -"siB" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) "siT" = ( /obj/structure/bed/chair{ dir = 1 @@ -47217,12 +46706,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"sjb" = ( -/obj/item/stack/sandbags/small_stack, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) "sjd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/rack, @@ -47335,6 +46818,17 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor/south) +"skn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block Dorms And Office Airlock"; + welded = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/dorms) "skC" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/decal/cleanable/dirt, @@ -47347,6 +46841,15 @@ icon_state = "63" }, /area/lv522/landing_zone_forecon/UD6_Tornado) +"skQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Fitness Centre Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/fitness) "skS" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -47367,6 +46870,13 @@ icon_state = "kitchen" }, /area/lv522/indoors/b_block/bar) +"slo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "slq" = ( /obj/structure/platform_decoration{ dir = 8 @@ -47458,12 +46968,6 @@ icon_state = "cyan2" }, /area/lv522/indoors/a_block/medical/glass) -"smK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/oob) "smR" = ( /turf/open/floor/corsat{ icon_state = "marked" @@ -47507,13 +47011,11 @@ icon_state = "blue_plate" }, /area/lv522/indoors/c_block/mining) -"snP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) +"snI" = ( +/obj/structure/machinery/floodlight, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/storage_blocks) "snR" = ( /obj/structure/surface/rack, /obj/item/tank/oxygen, @@ -47659,6 +47161,12 @@ icon_state = "cement15" }, /area/lv522/outdoors/colony_streets/central_streets) +"sqr" = ( +/obj/structure/girder, +/turf/open/asphalt/cement{ + icon_state = "cement3" + }, +/area/lv522/outdoors/colony_streets/north_street) "sqH" = ( /obj/structure/machinery/door_display/research_cell{ dir = 8; @@ -47682,13 +47190,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{ @@ -47711,12 +47212,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) -"srE" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) "srJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, @@ -47856,6 +47351,12 @@ icon_state = "floor_plate" }, /area/lv522/atmos/way_in_command_centre) +"suU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor/west) "suV" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; @@ -47888,6 +47389,12 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/admin) +"svk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/cargo_intake) "svo" = ( /obj/structure/surface/table/almayer, /obj/item/tool/wrench, @@ -47911,6 +47418,15 @@ "svW" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/east_reactor) +"swf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper C-Block - Cargo Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/cargo) "swr" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "45" @@ -47973,18 +47489,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"sxU" = ( -/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, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "syl" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -48047,18 +47551,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"szh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/barricade/deployable, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) "szo" = ( /obj/structure/platform{ dir = 8 @@ -48143,6 +47635,12 @@ "sAU" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) +"sAX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/west) "sBg" = ( /obj/structure/prop/server_equipment/yutani_server{ pixel_x = 3 @@ -48244,18 +47742,6 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor/north) -"sCP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/pouch/medkit/full_advanced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "sDa" = ( /obj/structure/machinery/light/small{ dir = 8; @@ -48299,6 +47785,20 @@ "sDS" = ( /turf/open/floor/prison, /area/lv522/outdoors/nw_rockies) +"sDY" = ( +/obj/structure/surface/table/almayer, +/obj/item/handcuffs{ + pixel_y = 12 + }, +/obj/item/handcuffs{ + pixel_y = 6 + }, +/obj/item/handcuffs, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/indoors/a_block/security/glass) "sEa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -48480,13 +47980,6 @@ icon_state = "marked" }, /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, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/west_reactor) "sHS" = ( /obj/structure/stairs/perspective{ dir = 5; @@ -48570,6 +48063,14 @@ /obj/item/key/cargo_train, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"sJP" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv522/outdoors/colony_streets/north_street) "sKa" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/asphalt/cement{ @@ -48645,6 +48146,12 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) +"sKC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/west) "sKH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -48770,6 +48277,11 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"sLT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "sLU" = ( /obj/structure/sign/safety/synth_storage{ pixel_x = 23; @@ -48862,10 +48374,6 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/corpo/glass) -"sNQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating, -/area/lv522/atmos/filt) "sNR" = ( /obj/structure/coatrack{ pixel_y = 24 @@ -48897,6 +48405,13 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/corpo) +"sOb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor/south) "sOe" = ( /obj/structure/filingcabinet{ density = 0; @@ -49051,12 +48566,6 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/security) -"sPU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) "sQb" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison{ @@ -49080,10 +48589,6 @@ icon_state = "cement3" }, /area/lv522/outdoors/n_rockies) -"sQA" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) "sQD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -49238,6 +48743,12 @@ icon_state = "cement9" }, /area/lv522/outdoors/colony_streets/north_street) +"sSp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor) "sSv" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -49356,6 +48867,31 @@ icon_state = "cell_stripe" }, /area/lv522/indoors/c_block/cargo) +"sUJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"sUN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/barricade/deployable, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) +"sVm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/north_command_centre) "sVJ" = ( /obj/structure/barricade/handrail{ layer = 3.7 @@ -49399,6 +48935,12 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) +"sWK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/filt) "sWT" = ( /obj/item/shard{ icon_state = "medium" @@ -49450,6 +48992,14 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/north_west_street) +"sXV" = ( +/obj/effect/decal/cleanable/dirt, +/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" + }, +/area/lv522/atmos/east_reactor/south) "sXZ" = ( /obj/structure/platform{ dir = 8 @@ -49498,11 +49048,6 @@ icon_state = "blue1" }, /area/lv522/indoors/a_block/dorm_north) -"sZz" = ( -/obj/structure/largecrate/random/case/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) "taj" = ( /obj/structure/closet/crate, /turf/open/asphalt/cement{ @@ -49576,6 +49121,14 @@ icon_state = "16" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"tbm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "browncorner" + }, +/area/lv522/atmos/east_reactor/south) "tby" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -49809,15 +49362,6 @@ icon_state = "rasputin15" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"teO" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Cargo Airlock"; - welded = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/cargo) "tfb" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -49883,14 +49427,6 @@ /obj/structure/machinery/prop/almayer/CICmap, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"tgn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Dorms And Office Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) "tgq" = ( /obj/structure/surface/rack, /turf/open/floor/prison{ @@ -49944,6 +49480,10 @@ icon_state = "cement1" }, /area/lv522/outdoors/colony_streets/central_streets) +"thK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/west_reactor) "thU" = ( /obj/structure/prop/invuln/overhead_pipe{ name = "overhead pipe"; @@ -50048,20 +49588,6 @@ /mob/living/simple_animal/mouse, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"tku" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/hydro) "tkx" = ( /obj/structure/machinery/light{ dir = 1 @@ -50080,6 +49606,13 @@ icon_state = "cement1" }, /area/lv522/landing_zone_2) +"tkC" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "tkL" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -50117,12 +49650,6 @@ }, /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, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "tlz" = ( /obj/structure/bed/chair{ dir = 1 @@ -50143,6 +49670,23 @@ /obj/structure/platform, /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) +"tlF" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv522/outdoors/colony_streets/north_street) +"tlM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Garage Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/garage) "tlR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine{ @@ -50169,6 +49713,11 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) +"tms" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "tmy" = ( /obj/structure/machinery/light{ dir = 1 @@ -50178,6 +49727,19 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/b_block/bridge) +"tmA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock"; + welded = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/b_block/hydro) "tmC" = ( /obj/structure/platform{ dir = 1 @@ -50273,16 +49835,6 @@ icon_state = "whiteyellowfull" }, /area/lv522/indoors/a_block/corpo/glass) -"tnU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) "tog" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -50310,6 +49862,13 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) +"toO" = ( +/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" + }, +/area/lv522/atmos/cargo_intake) "toS" = ( /obj/item/storage/firstaid/o2, /obj/structure/pipes/standard/simple/hidden/green{ @@ -50402,6 +49961,21 @@ icon_state = "brown" }, /area/lv522/atmos/east_reactor/south) +"tqG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/admin) "tqU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -50568,15 +50142,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"ttE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Electronics Storage" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) "ttT" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -50592,6 +50157,13 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/medical/glass) +"tuh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "brown" + }, +/area/lv522/atmos/west_reactor) "tum" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -50672,6 +50244,13 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms/glass) +"tvH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor) "tvO" = ( /turf/open/asphalt/cement{ icon_state = "cement12" @@ -50834,6 +50413,10 @@ dir = 4 }, /area/lv522/indoors/c_block/mining) +"tzl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) "tzm" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 @@ -50866,6 +50449,10 @@ icon_state = "rasputin15" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"tzD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "tzF" = ( /obj/structure/platform_decoration{ dir = 8 @@ -50874,13 +50461,6 @@ icon_state = "rasputin15" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"tzM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) "tzY" = ( /obj/structure/bed{ layer = 2.7; @@ -50951,6 +50531,14 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"tBF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel/maintenance, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/lv522/indoors/a_block/hallway) "tBM" = ( /turf/open/shuttle/dropship{ icon_state = "rasputin6" @@ -50985,15 +50573,6 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"tCg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Emergency Engineering" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/engineering) "tCh" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -51043,6 +50622,16 @@ icon_state = "rasputin7" }, /area/lv522/landing_zone_forecon/UD6_Tornado) +"tDq" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper A-Block Fitness Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/fitness) "tDu" = ( /obj/structure/machinery/computer/operating, /obj/structure/surface/table/reinforced/prison, @@ -51205,6 +50794,12 @@ }, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) +"tFC" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "tFZ" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -51237,6 +50832,14 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) +"tGm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Corporate Liason Office " + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/corpo) "tGo" = ( /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) @@ -51304,13 +50907,6 @@ icon_state = "squares" }, /area/lv522/indoors/c_block/mining) -"tHC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) "tHJ" = ( /obj/structure/platform{ dir = 8 @@ -51348,16 +50944,11 @@ icon_state = "cement4" }, /area/lv522/outdoors/colony_streets/east_central_street) -"tIS" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) +"tIQ" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "tIT" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -51415,12 +51006,6 @@ /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"tKb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) "tKe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -51595,6 +51180,13 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) +"tMI" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/north_command_centre) "tML" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison{ @@ -51632,6 +51224,12 @@ /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) +"tNd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/west_reactor) "tNl" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -51649,10 +51247,6 @@ /obj/structure/largecrate, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"tNS" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/storage_blocks) "tNT" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_covered_bed"; @@ -51787,16 +51381,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"tQe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo) "tQi" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) @@ -51806,12 +51390,20 @@ icon_state = "floor_plate" }, /area/lv522/indoors/lone_buildings/outdoor_bot) -"tQw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +"tQE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Canteen Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, /turf/open/floor/corsat{ icon_state = "marked" }, -/area/lv522/atmos/east_reactor/west) +/area/lv522/indoors/a_block/kitchen/glass) "tQF" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "Sec-Corpo-Bridge-Lockdown" @@ -51825,13 +51417,17 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/bridges) -"tRs" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/largecrate/random, +"tRu" = ( +/obj/structure/cargo_container/wy/mid, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/outdoors/colony_streets/north_east_street) +"tRC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "browncorner" + }, +/area/lv522/atmos/west_reactor) "tRI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -51849,12 +51445,6 @@ icon_state = "greenfull" }, /area/lv522/landing_zone_1/ceiling) -"tRS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "tSb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -51880,6 +51470,10 @@ icon_state = "73" }, /area/lv522/landing_zone_forecon/UD6_Tornado) +"tSF" = ( +/obj/item/trash/uscm_mre, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "tSJ" = ( /obj/structure/machinery/light/double{ dir = 8; @@ -51981,6 +51575,13 @@ icon_state = "platebot" }, /area/lv522/indoors/c_block/cargo) +"tUk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/cargo_intake) "tUB" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, @@ -52053,19 +51654,14 @@ icon_state = "cement4" }, /area/lv522/outdoors/colony_streets/north_east_street) -"tWv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 6; - pixel_y = -6 +"tWy" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 6; - pixel_y = 6 +/turf/open/asphalt/cement{ + icon_state = "cement3" }, -/obj/structure/largecrate/random/case/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) +/area/lv522/outdoors/colony_streets/north_street) "tWC" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/prison{ @@ -52109,13 +51705,6 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) -"tXc" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "tXd" = ( /obj/structure/prop/invuln/lattice_prop{ dir = 1; @@ -52139,14 +51728,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"tXp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) "tXG" = ( /obj/structure/bed/chair{ dir = 8 @@ -52158,6 +51739,14 @@ icon_state = "floor_plate" }, /area/lv522/landing_zone_1/ceiling) +"tXS" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "tXW" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_east_street) @@ -52281,6 +51870,13 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/hallway) +"tZV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "uad" = ( /obj/structure/closet/boxinggloves, /obj/effect/decal/cleanable/dirt, @@ -52310,6 +51906,12 @@ "uaI" = ( /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) +"uaQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor) "uaT" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat{ @@ -52375,6 +51977,16 @@ icon_state = "kitchen" }, /area/lv522/indoors/a_block/fitness) +"uct" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor/south) "ucx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -52511,6 +52123,12 @@ /obj/item/tool/screwdriver, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"ueD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/north) "ueQ" = ( /obj/structure/window_frame/strata, /obj/item/shard{ @@ -52635,17 +52253,6 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/a_block/hallway) -"ugi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "ugn" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent2"; @@ -52718,19 +52325,19 @@ icon_state = "darkpurple2" }, /area/lv522/indoors/a_block/dorms) +"uht" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/cargo_intake) "uhv" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"uhx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "uhF" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/weapon/pole/fancy_cane, @@ -52937,13 +52544,12 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"ukT" = ( -/obj/structure/closet/crate, -/obj/item/storage/pouch/pressurized_reagent_canister/revival, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ukM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "squares" }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/area/lv522/atmos/east_reactor) "ulh" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "3" @@ -52971,6 +52577,13 @@ /obj/item/stack/sheet/metal, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) +"umx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/cargo_intake) "umK" = ( /obj/structure/platform{ dir = 4 @@ -52993,6 +52606,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) +"unE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/hallway) "unM" = ( /obj/structure/platform{ dir = 4 @@ -53091,6 +52713,12 @@ icon_state = "marked" }, /area/lv522/indoors/b_block/bridge) +"uoJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/north_command_centre) "upa" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat{ @@ -53175,12 +52803,6 @@ "uqo" = ( /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"uqt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) "uqx" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -53240,6 +52862,15 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) +"urR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/north_command_centre) "urY" = ( /turf/open/floor/prison{ icon_state = "floor_plate" @@ -53315,11 +52946,13 @@ icon_state = "greenfull" }, /area/lv522/landing_zone_1/ceiling) -"utq" = ( -/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) +"utn" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat{ + dir = 6; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "utx" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic{ @@ -53387,12 +53020,6 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"uul" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) "uur" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/strata{ @@ -53400,6 +53027,13 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/corpo/glass) +"uuy" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "uuA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -53483,16 +53117,18 @@ icon_state = "white_cyan3" }, /area/lv522/indoors/a_block/medical/glass) +"uvJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement{ + icon_state = "cement3" + }, +/area/lv522/outdoors/colony_streets/north_street) "uwb" = ( /obj/structure/machinery/light/double, /turf/open/asphalt/cement{ icon_state = "cement4" }, /area/lv522/outdoors/colony_streets/north_west_street) -"uwe" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "uwk" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat{ @@ -53546,19 +53182,6 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"uxf" = ( -/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, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/cargo_intake) "uxn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, @@ -53566,6 +53189,15 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/security) +"uxC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "browncorner" + }, +/area/lv522/atmos/east_reactor/south) "uxT" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -53578,6 +53210,20 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/garage) +"uye" = ( +/obj/structure/largecrate/random, +/obj/item/storage/box/packet/high_explosive{ + pixel_x = -5; + pixel_y = -14 + }, +/obj/item/storage/pill_bottle/packet/oxycodone{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv522/outdoors/colony_streets/north_street) "uyt" = ( /turf/open/floor/prison{ icon_state = "darkredfull2" @@ -53698,27 +53344,16 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"uBd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, +"uBk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ - icon_state = "marked" + icon_state = "browncorner" }, -/area/lv522/indoors/a_block/hallway) +/area/lv522/atmos/east_reactor/north) "uBm" = ( /obj/structure/girder, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/east_central_street) -"uBs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) "uBX" = ( /obj/structure/machinery/light{ dir = 1; @@ -53772,6 +53407,13 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) +"uDF" = ( +/obj/item/trash/uscm_mre{ + pixel_x = 12; + pixel_y = -7 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) "uDM" = ( /obj/structure/machinery/light/double{ dir = 8; @@ -53799,6 +53441,13 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) +"uEj" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "uEl" = ( /obj/structure/machinery/conveyor{ dir = 10; @@ -54221,6 +53870,11 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/kitchen/glass) +"uKk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "uKw" = ( /obj/structure/bed/chair{ dir = 1 @@ -54353,6 +54007,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/landing_zone_2) +"uMA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "browncorner" + }, +/area/lv522/atmos/east_reactor/south) "uMM" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, @@ -54494,12 +54155,6 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/bridges/corpo_fitness) -"uOP" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/north_street) "uPc" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/west_reactor) @@ -54557,6 +54212,13 @@ icon_state = "floor_plate" }, /area/lv522/indoors/c_block/mining) +"uQa" = ( +/obj/item/trash/uscm_mre, +/obj/structure/surface/table/almayer, +/turf/open/asphalt/cement{ + icon_state = "cement3" + }, +/area/lv522/outdoors/colony_streets/north_street) "uQf" = ( /obj/structure/platform{ dir = 1 @@ -54632,11 +54294,27 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) +"uQL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "uRb" = ( /turf/open/asphalt/cement{ icon_state = "cement4" }, /area/lv522/outdoors/colony_streets/north_east_street) +"uRm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 6 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor) "uRt" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/manifold/hidden/green, @@ -54724,6 +54402,22 @@ icon_state = "31" }, /area/lv522/landing_zone_forecon/UD6_Tornado) +"uSF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/cargo_intake) +"uSI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/corpo) "uSJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -54768,13 +54462,6 @@ /obj/structure/window_frame/strata, /turf/open/floor/plating, /area/lv522/indoors/a_block/corpo) -"uTy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "uTI" = ( /obj/structure/machinery/light{ dir = 8 @@ -54853,13 +54540,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"uVa" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"uUP" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"uUU" = ( +/obj/structure/transmitter/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Meeting Room"; + pixel_y = 26 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ - icon_state = "marked" + icon_state = "plate" }, -/area/lv522/atmos/filt) +/area/lv522/atmos/east_reactor/south) "uVj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -54900,6 +54596,9 @@ icon_state = "floor_marked" }, /area/lv522/landing_zone_1) +"uVS" = ( +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/storage_blocks) "uVU" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/wy{ @@ -55005,22 +54704,20 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/landing_zone_1/ceiling) +"uXz" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/west) "uXO" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"uXZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/plush/farwa{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/toy/plush/farwa, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness/glass) "uYi" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, @@ -55028,11 +54725,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/casino) -"uYk" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) "uYq" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/plating{ @@ -55046,13 +54738,10 @@ icon_state = "greenfull" }, /area/lv522/landing_zone_1) -"uZf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) +"uZj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "uZC" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -55283,15 +54972,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/landing_zone_2/ceiling) -"vdz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper C-Block - Garage Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/bridge) "vdH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -55339,6 +55019,10 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) +"veA" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "veD" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ @@ -55462,6 +55146,13 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) +"vgH" = ( +/obj/structure/largecrate/random/case, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor) "vgI" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva{ @@ -55481,13 +55172,6 @@ /obj/effect/decal/cleanable/blood, /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, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "vht" = ( /obj/structure/closet/emcloset, /turf/open/floor/prison{ @@ -55517,6 +55201,27 @@ icon_state = "6" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"vib" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"vil" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Security Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/security) "vir" = ( /obj/structure/closet/wardrobe/engineering_yellow, /obj/effect/decal/warning_stripes{ @@ -55527,6 +55232,12 @@ icon_state = "darkyellowfull2" }, /area/lv522/indoors/lone_buildings/engineering) +"viu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/east_reactor/south) "viA" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -55719,10 +55430,6 @@ /obj/item/pipe, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vlq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "vlv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio/off{ @@ -55767,6 +55474,14 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) +"vmp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Casino Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/casino) "vmG" = ( /obj/structure/surface/table/gamblingtable, /obj/item/reagent_container/food/drinks/drinkingglass{ @@ -55784,6 +55499,12 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/cargo) +"vmM" = ( +/obj/structure/girder, +/turf/open/asphalt/cement{ + icon_state = "cement12" + }, +/area/lv522/outdoors/colony_streets/north_street) "vmQ" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -55835,6 +55556,22 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/bridges/op_centre) +"vnz" = ( +/obj/item/toy/plush/farwa{ + desc = "A Farwa plush doll. Once soft and comforting now just really wet."; + name = "Soaked farwa plush doll" + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"vnB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/corpo/glass) "vnX" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata{ @@ -56008,15 +55745,6 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/auto_turf/shale/layer2, /area/lv522/landing_zone_1) -"vqF" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) "vqH" = ( /obj/structure/machinery/light{ dir = 1 @@ -56253,6 +55981,12 @@ icon_state = "marked" }, /area/lv522/landing_zone_1/ceiling) +"vuF" = ( +/obj/vehicle/powerloader, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "vuH" = ( /obj/structure/largecrate, /obj/effect/landmark/lv624/fog_blocker/short, @@ -56292,6 +56026,23 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/bridge) +"vvJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 20 + }, +/turf/open/floor/corsat{ + dir = 9; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/east) "vwi" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, @@ -56318,6 +56069,13 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) +"vwW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "vxa" = ( /obj/structure/closet/crate, /obj/item/clothing/under/colonist, @@ -56387,6 +56145,21 @@ /obj/structure/barricade/wooden, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"vxT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "East_Lock"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/hallway) "vxY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -56400,6 +56173,15 @@ icon_state = "cyan2" }, /area/lv522/indoors/a_block/medical) +"vyk" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper C-Block - Cargo Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/bridge) "vyz" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -56424,15 +56206,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"vzd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/west) "vzg" = ( /obj/item/stack/rods{ pixel_y = -2 @@ -56494,13 +56267,15 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"vzz" = ( -/obj/structure/closet/crate, -/obj/item/storage/pouch/shotgun/large/slug, -/obj/item/storage/pouch/general/large/m39ap, -/obj/item/storage/pouch/flamertank, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) +"vzE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block Bar" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/b_block/bar) "vzV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -56520,6 +56295,12 @@ icon_state = "white_cyan4" }, /area/lv522/indoors/a_block/medical) +"vAb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "squares" + }, +/area/lv522/atmos/cargo_intake) "vAi" = ( /turf/open/floor/corsat{ icon_state = "plate" @@ -56536,14 +56317,6 @@ icon_state = "floor_marked" }, /area/lv522/landing_zone_1/ceiling) -"vAX" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "vBa" = ( /obj/structure/girder/displaced, /turf/open/asphalt/cement{ @@ -56611,12 +56384,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"vBL" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/north_street) "vBM" = ( /obj/structure/barricade/handrail{ dir = 8 @@ -56630,17 +56397,14 @@ /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"vBV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"vCv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Shared Dorms Airlock" }, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/corsat{ + icon_state = "marked" }, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/indoors/a_block/dorm_north) "vCy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -56693,6 +56457,14 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) +"vDf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + dir = 9; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor) "vDo" = ( /turf/open/floor/corsat{ icon_state = "marked" @@ -56733,21 +56505,6 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/bridge) -"vDT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/admin) "vDV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -56762,6 +56519,15 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"vEm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "vEw" = ( /obj/structure/filingcabinet{ density = 0; @@ -56848,6 +56614,14 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"vFS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Fitness Centre Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/fitness) "vGb" = ( /obj/structure/machinery/colony_floodlight{ density = 0; @@ -56890,15 +56664,6 @@ icon_state = "floor_marked" }, /area/lv522/indoors/lone_buildings/engineering) -"vHd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) "vHo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -57105,6 +56870,12 @@ icon_state = "cell_stripe" }, /area/lv522/atmos/sewer) +"vJy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor) "vJD" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/curtain/red, @@ -57135,6 +56906,20 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/casino) +"vKm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/b_block/bridge) "vKA" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/under/redpyjamas, @@ -57231,6 +57016,15 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/c_block/casino) +"vLW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Cargo Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/cargo) "vMg" = ( /obj/structure/safe, /turf/open/floor/prison{ @@ -57283,6 +57077,17 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/lone_buildings/storage_blocks) +"vNd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "vNi" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, @@ -57291,13 +57096,6 @@ "vNk" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/casino) -"vNr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) "vNy" = ( /obj/effect/decal/cleanable/blood, /obj/structure/bed/roller, @@ -57375,6 +57173,19 @@ icon_state = "squares" }, /area/lv522/atmos/command_centre) +"vOR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/corpo/glass) "vOT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva{ @@ -57425,12 +57236,6 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/admin) -"vPm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_street) "vPs" = ( /obj/structure/prop/dam/crane/damaged, /obj/structure/platform, @@ -57443,6 +57248,20 @@ /obj/structure/platform, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"vPA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/corpo) "vPO" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 8; @@ -57450,12 +57269,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"vQn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "vQL" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ @@ -57522,6 +57335,27 @@ icon_state = "greenfull" }, /area/lv522/indoors/a_block/fitness) +"vRD" = ( +/obj/item/prop/colony/used_flare, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "vRQ" = ( /obj/structure/surface/table/almayer, /obj/item/stack/sheet/metal/medium_stack, @@ -57553,17 +57387,6 @@ icon_state = "floor_plate" }, /area/lv522/indoors/c_block/mining) -"vSJ" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) -"vSM" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) "vSN" = ( /obj/structure/platform{ dir = 4 @@ -57585,16 +57408,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"vSV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) "vTn" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; @@ -57614,12 +57427,6 @@ icon_state = "cement3" }, /area/lv522/outdoors/colony_streets/north_east_street) -"vTH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "vTK" = ( /obj/structure/prop/vehicles{ icon_state = "van_damaged" @@ -57710,6 +57517,18 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) +"vUy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "brown" + }, +/area/lv522/atmos/cargo_intake) +"vUT" = ( +/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) "vUX" = ( /obj/structure/powerloader_wreckage/ft, /obj/effect/landmark/lv624/fog_blocker/short, @@ -57793,6 +57612,16 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"vWp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper C-Block - Casino Airlock"; + welded = 1 + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/casino) "vWv" = ( /obj/structure/stairs/perspective{ dir = 5; @@ -57939,10 +57768,6 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/admin) -"vZP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) "vZS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -57956,6 +57781,12 @@ /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) +"vZZ" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat{ + icon_state = "browncorner" + }, +/area/lv522/atmos/east_reactor/south) "wac" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison{ @@ -57963,12 +57794,6 @@ icon_state = "blue" }, /area/lv522/indoors/a_block/hallway) -"waj" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "wan" = ( /obj/structure/surface/table/almayer, /turf/open/floor/prison{ @@ -58036,10 +57861,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"wbo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) "wbt" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, @@ -58119,11 +57940,6 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/corpo/glass) -"wcM" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) "wcO" = ( /obj/structure/machinery/light{ dir = 4 @@ -58158,11 +57974,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"wcY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "wdd" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, @@ -58203,12 +58014,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"wea" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) "wee" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -58314,13 +58119,6 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wft" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) "wfC" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -58401,6 +58199,18 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) +"whp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/barricade/metal{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "whs" = ( /obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, @@ -58449,12 +58259,6 @@ icon_state = "darkbrownfull2" }, /area/lv522/landing_zone_2) -"whK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) "whR" = ( /obj/item/newspaper, /obj/effect/decal/cleanable/dirt, @@ -58519,15 +58323,6 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"wjy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) "wjE" = ( /obj/structure/platform_decoration{ dir = 8 @@ -58648,6 +58443,16 @@ icon_state = "floor_marked" }, /area/lv522/landing_zone_1/ceiling) +"wmf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "wmk" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) @@ -58789,6 +58594,13 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/indoors/c_block/casino) +"wpw" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor) "wpA" = ( /obj/structure/bedsheetbin{ pixel_y = 7 @@ -58879,6 +58691,12 @@ "wrC" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/corpo) +"wrL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor/west) "wrY" = ( /obj/structure/platform, /turf/open/asphalt/cement, @@ -58955,6 +58773,17 @@ icon_state = "darkyellowfull2" }, /area/lv522/indoors/lone_buildings/outdoor_bot) +"wtp" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 5; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "wtH" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/corsat{ @@ -58977,6 +58806,13 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/security) +"wtO" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement{ + icon_state = "cement12" + }, +/area/lv522/outdoors/colony_streets/north_street) "wtT" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/floor/plating{ @@ -59039,6 +58875,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) +"wvz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/north_command_centre) "wvB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -59062,14 +58904,6 @@ icon_state = "plate" }, /area/lv522/atmos/east_reactor/north) -"wvX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Shared Dorms Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "wvY" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, @@ -59085,13 +58919,6 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"wwi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/west) "wwn" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/shovel/etool/folded, @@ -59331,6 +59158,21 @@ icon_state = "floor_plate" }, /area/lv522/outdoors/colony_streets/east_central_street) +"wzV" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_y = 16 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + icon_state = "flammable_pipe_3" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor) "wAf" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "68" @@ -59362,6 +59204,13 @@ icon_state = "floor_marked" }, /area/lv522/outdoors/colony_streets/north_east_street) +"wAZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 1; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "wBp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -59633,6 +59482,20 @@ icon_state = "marked" }, /area/lv522/indoors/c_block/cargo) +"wFC" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"wFL" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "wFP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ @@ -59730,6 +59593,10 @@ icon_state = "darkbrownfull2" }, /area/lv522/indoors/lone_buildings/storage_blocks) +"wHn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) "wHo" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/hardhat/white{ @@ -59770,24 +59637,6 @@ /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"wHX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"wHY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) "wIi" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 @@ -59854,6 +59703,13 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"wJU" = ( +/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" + }, +/area/lv522/atmos/east_reactor) "wKg" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/corpo) @@ -59902,16 +59758,6 @@ "wLp" = ( /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/east_reactor/west) -"wLw" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "wLN" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffee, @@ -60001,6 +59847,15 @@ icon_state = "darkyellowfull2" }, /area/lv522/indoors/lone_buildings/engineering) +"wOq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper C-Block - Garage Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/bridge) "wOu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -60031,6 +59886,14 @@ icon_state = "darkyellowfull2" }, /area/lv522/indoors/lone_buildings/outdoor_bot) +"wPA" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Shared Dorms Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "wPL" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -60049,13 +59912,6 @@ icon_state = "wood-broken6" }, /area/lv522/indoors/b_block/bar) -"wPV" = ( -/obj/structure/closet/crate, -/obj/item/storage/xeno_tag_case, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "wQa" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) @@ -60153,15 +60009,6 @@ icon_state = "marked" }, /area/lv522/indoors/a_block/bridges/garden_bridge) -"wSb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) "wSr" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata{ @@ -60173,6 +60020,19 @@ /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) +"wSz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/admin) "wSF" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -60180,6 +60040,21 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) +"wSW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "wTf" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/snacks/monkeyburger{ @@ -60221,10 +60096,6 @@ icon_state = "white_cyan1" }, /area/lv522/indoors/a_block/corpo) -"wTv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) "wTx" = ( /obj/structure/cargo_container/kelland/left, /turf/open/floor/prison{ @@ -60346,6 +60217,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) +"wWJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "brown" + }, +/area/lv522/atmos/filt) "wWV" = ( /turf/open/floor/prison{ dir = 1; @@ -60582,6 +60460,24 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"xbx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/structure/machinery/light, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor) +"xbE" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "xbM" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_fuel" @@ -60702,6 +60598,16 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) +"xdE" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor) "xdF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -60771,6 +60677,10 @@ }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) +"xfD" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) "xfS" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/transmitter/colony_net{ @@ -60795,12 +60705,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"xgl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) "xgA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -60885,6 +60789,14 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/security/glass) +"xhz" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement{ + icon_state = "cement1" + }, +/area/lv522/outdoors/colony_streets/north_street) "xhB" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/prison{ @@ -60920,6 +60832,13 @@ icon_state = "32" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"xig" = ( +/obj/structure/closet/crate, +/obj/item/storage/xeno_tag_case, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv522/indoors/lone_buildings/storage_blocks) "xiu" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -60940,12 +60859,6 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms) -"xiY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/west) "xje" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -61109,10 +61022,6 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"xlU" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) "xlV" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, @@ -61163,10 +61072,6 @@ icon_state = "whiteyellowfull" }, /area/lv522/indoors/a_block/corpo) -"xmT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/west_reactor) "xni" = ( /obj/structure/bed/chair{ dir = 1 @@ -61277,16 +61182,15 @@ icon_state = "floor_plate" }, /area/lv522/indoors/lone_buildings/storage_blocks) -"xoC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block - Colony Operations Centre Airlock" +"xou" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ icon_state = "marked" }, -/area/lv522/indoors/a_block/hallway) +/area/lv522/atmos/east_reactor/north) "xpg" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/outdoors/nw_rockies) @@ -61367,17 +61271,23 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/c_block/cargo) -"xrF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "xrH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"xrV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/west) +"xrZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/south) "xsc" = ( /turf/closed/shuttle/dropship2/tornado{ icon_state = "29" @@ -61391,6 +61301,17 @@ /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) +"xsi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Garage Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/garage) "xsq" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 @@ -61407,11 +61328,6 @@ }, /turf/open/gm/river, /area/lv522/atmos/sewer) -"xsN" = ( -/obj/structure/largecrate/random/barrel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "xtb" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/fitness) @@ -61439,10 +61355,9 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) -"xtH" = ( -/obj/effect/spawner/gibspawner/human, -/obj/item/device/defibrillator/compact, -/turf/open/auto_turf/sand_white/layer0, +"xto" = ( +/obj/item/storage/pouch/autoinjector/full, +/turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) "xtO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -61510,19 +61425,12 @@ icon_state = "floor_marked" }, /area/lv522/outdoors/colony_streets/north_west_street) -"xvj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, +"xvh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/floor/corsat{ - icon_state = "marked" + icon_state = "squares" }, -/area/lv522/indoors/a_block/admin) +/area/lv522/atmos/west_reactor) "xvl" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/bridge) @@ -61553,6 +61461,13 @@ icon_state = "floor_plate" }, /area/lv522/indoors/a_block/bridges) +"xwk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/atmos/east_reactor/east) "xwv" = ( /obj/structure/platform_decoration{ dir = 4 @@ -61574,26 +61489,10 @@ icon_state = "greenfull" }, /area/lv522/indoors/b_block/hydro) -"xwK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/item/stack/sandbags/small_stack, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) "xwO" = ( /obj/structure/cargo_container/seegson/left, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"xwZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) "xxk" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -61617,6 +61516,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) +"xxu" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/plating, +/area/lv522/atmos/filt) "xxw" = ( /obj/item/shard{ icon_state = "medium" @@ -61626,6 +61533,16 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) +"xxz" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 6; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "xxJ" = ( /obj/structure/cargo_container/seegson/mid, /obj/effect/decal/warning_stripes{ @@ -61648,15 +61565,6 @@ icon_state = "cement1" }, /area/lv522/outdoors/colony_streets/north_west_street) -"xxW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) "xyf" = ( /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/sand_white/layer0, @@ -61690,6 +61598,11 @@ icon_state = "cement1" }, /area/lv522/outdoors/colony_streets/central_streets) +"xyU" = ( +/obj/structure/surface/table/almayer, +/obj/item/map/lv522_map, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "xzj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -61716,13 +61629,6 @@ icon_state = "greenfull" }, /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" - }, -/area/lv522/atmos/east_reactor/south) "xzK" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) @@ -61812,19 +61718,6 @@ icon_state = "darkredfull2" }, /area/lv522/indoors/a_block/security) -"xBi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo/glass) "xBo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -61856,6 +61749,13 @@ icon_state = "cement12" }, /area/lv522/outdoors/colony_streets/east_central_street) +"xCq" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/south) "xCG" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -61903,6 +61803,10 @@ "xDu" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/corpo/glass) +"xDz" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) "xDC" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -61976,13 +61880,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"xEk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "xEp" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/prison{ @@ -62052,16 +61949,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"xFH" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper A-Block Fitness Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness) "xGa" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" @@ -62074,18 +61961,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"xGd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Corpo-Bridge-Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) "xGf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -62113,13 +61988,34 @@ icon_state = "marked" }, /area/lv522/atmos/way_in_command_centre) -"xGX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"xGY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/floor/corsat{ - icon_state = "squares" + dir = 1; + icon_state = "brown" }, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/east_reactor) +"xHi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 4; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor/west) +"xHj" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal/small_stack, +/obj/item/ore/slag, +/obj/item/ore/slag, +/obj/item/ore/slag, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) "xHr" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/camera/autoname, @@ -62128,20 +62024,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"xHz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Corporate Liason Office " - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo) -"xHO" = ( -/obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_street) "xIr" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -62154,6 +62036,13 @@ "xIv" = ( /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) +"xII" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/east_reactor) "xIK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate, @@ -62326,6 +62215,14 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"xLX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/corsat{ + dir = 8; + icon_state = "brown" + }, +/area/lv522/atmos/cargo_intake) "xLY" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -62399,13 +62296,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"xNt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "xNu" = ( /obj/structure/platform_decoration{ dir = 8 @@ -62417,6 +62307,15 @@ icon_state = "rasputin15" }, /area/lv522/landing_zone_forecon/UD6_Tornado) +"xNw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/hallway) "xNG" = ( /obj/structure/machinery/computer/crew/colony{ density = 0; @@ -62599,11 +62498,21 @@ icon_state = "floor_plate" }, /area/lv522/indoors/a_block/hallway) -"xQR" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"xQJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat{ + icon_state = "plate" }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/area/lv522/atmos/east_reactor/south) +"xQZ" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "xRg" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -62690,6 +62599,17 @@ icon_state = "darkpurplefull2" }, /area/lv522/indoors/a_block/dorms/glass) +"xRI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Radio Tower Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/c_block/t_comm) "xRK" = ( /turf/open/asphalt/cement{ icon_state = "cement2" @@ -62930,12 +62850,6 @@ icon_state = "marked" }, /area/lv522/indoors/toilet) -"xWz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) "xWA" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -62989,6 +62903,11 @@ "xXg" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) +"xXh" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/lv522/indoors/lone_buildings/storage_blocks) "xXo" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -63059,6 +62978,15 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) +"xYu" = ( +/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"; + pixel_x = -18 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) "xYx" = ( /obj/structure/platform{ dir = 1 @@ -63146,13 +63074,6 @@ }, /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/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "yaj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -63399,6 +63320,12 @@ icon_state = "blue_plate" }, /area/lv522/indoors/a_block/admin) +"yew" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "browncorner" + }, +/area/lv522/atmos/north_command_centre) "yeD" = ( /obj/item/ammo_magazine/pistol/m1911{ current_rounds = 0; @@ -63497,13 +63424,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ygu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) "ygw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -63516,6 +63436,14 @@ icon_state = "marked" }, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"ygJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Dorms And Office Airlock" + }, +/turf/open/floor/corsat{ + icon_state = "marked" + }, +/area/lv522/indoors/a_block/dorms) "yhi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -63602,6 +63530,12 @@ "yiM" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"yiU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/corsat{ + icon_state = "plate" + }, +/area/lv522/atmos/east_reactor/east) "yiZ" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; @@ -63612,15 +63546,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) -"yja" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock"; - welded = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/bridges/op_centre) "yje" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -63696,6 +63621,25 @@ icon_state = "radiator_tile2" }, /area/lv522/indoors/a_block/bridges/corpo) +"yjD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/barricade/metal{ + dir = 1 + }, +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv522/outdoors/colony_streets/north_street) "yjK" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -64610,7 +64554,7 @@ vtc vtc vtc vtc -nTa +gHY vtc cpy cpy @@ -65514,7 +65458,7 @@ vtc vtc vtc uWO -pit +rHU uWO uWO uWO @@ -65747,7 +65691,7 @@ uWO uWO uWO uWO -pit +rHU uWO uWO vtc @@ -66440,7 +66384,7 @@ vtc cpy cpy vZY -dcR +pXH bQq sRA rWS @@ -67291,10 +67235,10 @@ saC fTs fTs fTs -bSM +qva fTs -dWE -dWE +ddF +ddF saC saC saC @@ -67370,7 +67314,7 @@ vhd sRA sRA sRA -rEP +rYp ien cpy cpy @@ -67518,7 +67462,7 @@ uIW uIW uIW uIW -dxU +xvh uIW uIW saC @@ -67596,8 +67540,8 @@ rFp vhC uiK uiK -jmN -ebe +gxe +xto ien ien ien @@ -67745,11 +67689,11 @@ uIW uIW uIW uIW -dxU +xvh uIW uIW -kkc -kkc +jKg +jKg saC saC saC @@ -67823,7 +67767,7 @@ tbl vhJ uiK sRA -dtU +odi ien ien jTJ @@ -67851,7 +67795,7 @@ czW sjY ien lSg -pwR +hqr ylo ylo ylo @@ -67974,10 +67918,10 @@ uIW saC saC uIW -iJA +duT uIW uIW -kkc +jKg saC saC saC @@ -68050,7 +67994,7 @@ uEX vhO hPM uiK -xtH +oow ien sON ezH @@ -68080,7 +68024,7 @@ hJZ hJZ sus ylo -sCP +pwk tfZ wHi pYf @@ -68094,7 +68038,7 @@ hYf wHi jZe wky -wPV +xig tyl ylo ien @@ -68204,11 +68148,11 @@ uIW uIW uIW uIW -kkc -kkc +jKg +jKg saC -kkc -kkc +jKg +jKg saC saC hnD @@ -68320,8 +68264,8 @@ emt pck hYf erS -abe -ukT +sau +kSh ofS ylo ien @@ -68337,7 +68281,7 @@ umf umf ien vGk -vSM +nMk ien tzz jGK @@ -68425,7 +68369,7 @@ uIW uIW uIW uIW -dxU +xvh uIW uIW uIW @@ -68435,7 +68379,7 @@ uIW uIW uIW uIW -dxU +xvh uIW uIW doP @@ -68652,7 +68596,7 @@ uIW uIW uIW uIW -dxU +xvh uIW uIW uIW @@ -68662,7 +68606,7 @@ uIW uIW uIW uIW -dxU +xvh uIW uIW uIW @@ -68776,9 +68720,9 @@ isG vBM hYf wHi -tIS -xQR -waj +jAA +loX +aId ien ien vXc @@ -68873,13 +68817,13 @@ saC saC saC uIW -iJA +duT uIW dnQ fzL fzL fzL -dMu +rFk fzL fzL fzL @@ -68889,7 +68833,7 @@ fzL ssn uIW uIW -pgy +jZn uIW uIW uIW @@ -69002,10 +68946,10 @@ bZd yfu yfu bZd -xQR -vTH -gFy -nxu +loX +rmm +gRl +uVS ien vXc vXc @@ -69116,7 +69060,7 @@ saC bco uIW uIW -dxU +xvh uIW uIW uIW @@ -69228,11 +69172,11 @@ yfu bZd bZd yfu -tNS -gFy -gFy -rBV -iSx +cQv +gRl +gRl +xXh +qhk ien vXc vXc @@ -69343,8 +69287,8 @@ saC saC uIW uIW -kkc -kkc +jKg +jKg uIW uIW uIW @@ -69456,10 +69400,10 @@ yfu bZd bZd bZd -bOX -gFy -tNS -xQR +nvA +gRl +cQv +loX ien ien vXc @@ -69554,24 +69498,24 @@ saC saC saC saC -dxU -dxU -lcP +xvh +xvh +aoZ tiQ tiQ tiQ tiQ -dpg -dpg +rbl +rbl tiQ tiQ tiQ tiQ saC saC -kkc -kkc -kkc +jKg +jKg +jKg uIW uIW uIW @@ -69580,7 +69524,7 @@ uIW uIW fop fop -xmT +aoF fTS fTS fTS @@ -69684,8 +69628,8 @@ qpc nKj dGK qpc -she -egj +snI +jub ylo ien vXc @@ -69785,7 +69729,7 @@ uIW uIW hTh uPc -dUS +xYu saQ tiQ mTd @@ -69797,9 +69741,9 @@ saC saC saC saC -kkc -kkc -kkc +jKg +jKg +jKg uIW uIW uIW @@ -69807,8 +69751,8 @@ uIW uIW fop fop -xmT -tKb +aoF +clu jRZ xuU hAk @@ -69846,7 +69790,7 @@ vtc vtc vtc uWO -prT +vZY kWD tTr pUR @@ -70015,7 +69959,7 @@ uPc uPc uPc kmd -eow +htL mTd uPc uPc @@ -70026,7 +69970,7 @@ saC saC saC saC -gFG +mOe fzL fzL fzL @@ -70034,7 +69978,7 @@ fzL fop fop fop -xmT +aoF jqz fTS xeG @@ -70261,7 +70205,7 @@ uIW fop fop fop -xmT +aoF fop fTS xeG @@ -70477,7 +70421,7 @@ mTd uPc uIW mTd -giF +sfi saC saC saC @@ -70488,12 +70432,12 @@ fop fop fop fop -chm +eis fop fTS xeG xZw -xrF +koR fTS fTS bzC @@ -70536,7 +70480,7 @@ uiK uiK uiK hRu -rGi +piv uiK uiK uiK @@ -70704,8 +70648,8 @@ uPc uPc uIW mTd -dWT -dWT +eld +eld vAi saC saC @@ -70715,9 +70659,9 @@ saC fop fop fop -chm -chm -hLT +eis +eis +hSM xeG xZw xrA @@ -70837,7 +70781,7 @@ gcX kvq ivK wng -tCg +hpO ivK xvQ xvQ @@ -70932,7 +70876,7 @@ uPc uIW mTd vAi -dWT +eld vAi vAi saC @@ -70941,9 +70885,9 @@ saC saC saC fop -chm -chm -chm +eis +eis +eis saC kih uQI @@ -71029,7 +70973,7 @@ nLm nLm nLm eBA -lmI +qbL nLm nLm nLm @@ -71154,22 +71098,22 @@ fTO vAi iMx vAi -bXq +tNd fvo fFS mTd vAi vAi -bXq +tNd vAi mTd uIW saC saC saC -chm -chm -chm +eis +eis +eis tiQ saC kiD @@ -71226,7 +71170,7 @@ sRA uiK uiK viN -rGi +piv uiK uiK hJZ @@ -71370,7 +71314,7 @@ uIW uIW uIW uIW -iJA +duT uIW hTh uPc @@ -71395,7 +71339,7 @@ uIW saC saC saC -chm +eis saC tiQ saC @@ -71705,7 +71649,7 @@ clY sjY sjY oNQ -tgn +ygJ vJT uOs tUM @@ -71714,7 +71658,7 @@ uOs tUM uOs kcS -tgn +ygJ spo yiM yiM @@ -72071,7 +72015,7 @@ fTs fTs fTs fTs -eLV +gMn saC saC saC @@ -72298,8 +72242,8 @@ uIW uIW uIW uIW -eLV -eLV +gMn +gMn saC saC saC @@ -72391,7 +72335,7 @@ nLm nLm pMd eBA -kNY +dUr pMd nLm nLm @@ -72522,12 +72466,12 @@ nDz uIW uIW uIW -eLV +gMn uIW -eLV -eLV -eLV -eLV +gMn +gMn +gMn +gMn saC saC saC @@ -72727,10 +72671,10 @@ saC saC ssn uIW -iJA +duT uIW -chm -chm +eis +eis saC uIW uIW @@ -72745,16 +72689,16 @@ tiQ tiQ tiQ tiQ -dgI -dxU -dxU -smK -eLV -eLV -eLV -eLV -eLV -eLV +lZK +xvh +xvh +mmA +gMn +gMn +gMn +gMn +gMn +gMn saC saC tiQ @@ -72794,7 +72738,7 @@ uWO vtc vtc vtc -pit +rHU ien ien ien @@ -72841,14 +72785,14 @@ iIK uUB lLl gcv -iPy +skn xIr pQA jhl sPk dnM pxS -hAd +hnX eIk cDH cDH @@ -72951,18 +72895,18 @@ cpy cpy tiQ saC -dWT -bIY -dwG -dxU -chm -chm +eld +tuh +rXD +xvh +eis +eis saC saC saC uIW hTh -wTv +oIv tJk saQ tiQ @@ -72971,17 +72915,17 @@ mTd tJk rUX tiQ -fwo +thK nDz uIW uIW -eLV -eLV -eLV +gMn +gMn +gMn uIW uIW -eLV -eLV +gMn +gMn saC saC tiQ @@ -73178,18 +73122,18 @@ cpy cpy tiQ tiQ -dWT +eld vAi bco uIW -chm +eis saC saC saC saC uIW hTh -wTv +oIv uPc uPc kmd @@ -73203,21 +73147,21 @@ nDz uIW uIW uIW -eLV +gMn uIW uIW uIW hTh -eLV -eLV +gMn +gMn tiQ tiQ -hhu +pTA loD uEl xZw xZw -xrF +koR kPG lgf bzC @@ -73413,24 +73357,24 @@ uIW saC saC saC -chm -kkc -mjq -dWE -dWE +eis +jKg +tRC +ddF +ddF fTs fTs fTs fTs fTs fTs -bSM +qva fTs fGH uIW uIW uIW -dxU +xvh uIW uIW dnQ @@ -73438,9 +73382,9 @@ fGJ vAi tiQ tiQ -kgC -gCV -kfu +eqX +agx +fSy xZw xZw kQw @@ -73633,17 +73577,17 @@ cpy cpy cpy tiQ -dWT +eld vAi bcP ssn uIW saC -chm -chm -chm -kkc -kkc +eis +eis +eis +jKg +jKg uIW uIW uIW @@ -73651,25 +73595,25 @@ uIW uIW uIW uIW -dxU +xvh uIW gmt uIW uIW -iJA -dxU +duT +xvh uIW dnQ fGJ vAi vAi tiQ -fDS -gCV -gPQ -hry -kfF -kfF +igN +agx +pkn +fOq +aeT +aeT xrA kPG lER @@ -73699,7 +73643,7 @@ tfP eaE tfP tfP -oeX +pQa tfP tfP tfP @@ -73865,26 +73809,26 @@ vAi vAi bcP ssn -chm -chm -chm -chm -kkc -kkc +eis +eis +eis +eis +jKg +jKg uIW uIW uIW saC saC -kkc -kkc -kkc +jKg +jKg +jKg uIW gmt uIW uIW uIW -dxU +xvh dnQ fGJ vAi @@ -73892,10 +73836,10 @@ vAi tiQ tiQ isu -gPQ -hry -kfF -kfF +pkn +fOq +aeT +aeT saC xrA rAL @@ -74069,7 +74013,7 @@ bPJ bPJ bPJ bPJ -aue +pMc wfP dnO bPJ @@ -74093,25 +74037,25 @@ vAi vAi bcP fzL -chm -chm -chm -chm -kkc -dxU -dxU +eis +eis +eis +eis +jKg +xvh +xvh saC saC uIW uIW -dxU +xvh uIW uIW gmt uIW uIW dnQ -dMu +rFk fGJ vAi vAi @@ -74121,7 +74065,7 @@ xZL pyo iWZ xZw -kfF +aeT saC saC xrA @@ -74168,7 +74112,7 @@ qNM oiZ rod kvJ -uXZ +qkJ seJ xtb myP @@ -74296,11 +74240,11 @@ kEl peM jba bPJ -edi -pXv +ayf +aKE wfP -pQq -nVr +cbb +sLT bPJ cpy cpy @@ -74317,13 +74261,13 @@ cpy cpy tiQ vAi -bXq +tNd vAi vAi -chm -chm +eis +eis saC -chm +eis uIW uIW uIW @@ -74331,7 +74275,7 @@ uIW uIW uIW eAg -cyO +nEw eOn eOn fsf @@ -74340,15 +74284,15 @@ dnQ fGJ saC tiQ -fIQ -pEw -pEw +mDO +bWK +bWK tiQ isu xuU iYs xZw -rEV +vAb saC saC bKk @@ -74470,7 +74414,7 @@ mBF mBF mBF oPx -ncp +vzE mBF mBF mBF @@ -74524,10 +74468,10 @@ hTe jFl aQH mJs -czE +ous wfP wfP -wcY +uKk bPJ bPJ cpy @@ -74550,7 +74494,7 @@ vAi vAi saC saC -chm +eis uIW uIW uIW @@ -74558,9 +74502,9 @@ uIW uIW uIW gmt -kkc -kkc -iJA +jKg +jKg +duT dnQ fzL fGJ @@ -74583,7 +74527,7 @@ xZw kRa hAk kyb -lrh +npg ddy lUK aFA @@ -74622,7 +74566,7 @@ qOn qYc rpe bQl -ftD +rJz bQl xtb xWF @@ -74752,10 +74696,10 @@ sHd bPJ eeb wfP -ixV +bgw wfP wfP -uwe +pSh bPJ bPJ cpy @@ -74785,18 +74729,18 @@ ssn uIW uIW eQf -gFG -gFG -gFG -uZf +mOe +mOe +mOe +erY saC saC saC tiQ tiQ -pEw -pEw -hOI +bWK +bWK +ifR tiQ isu xeG @@ -74810,7 +74754,7 @@ mKQ kRp xWc rTh -nWl +tUk dgJ aaX atV @@ -74843,7 +74787,7 @@ ien ien clY bry -pJb +vFS xOb oiZ oiZ @@ -74851,7 +74795,7 @@ jBs oiZ xOb xOb -pJb +vFS xqd uEC xTs @@ -74859,7 +74803,7 @@ xTs uEC uEC pVx -pJb +vFS rZF tYZ kdy @@ -74867,7 +74811,7 @@ kdy kdy tMk lEF -tgn +ygJ vJT oot fjP @@ -74884,14 +74828,14 @@ ktx biY bNJ seG -dfV +mPQ osU uyP esa qvJ jDJ osU -jsk +pxp enP dnM dnM @@ -74907,7 +74851,7 @@ dnM esa gYF kcS -tgn +ygJ qQM vXc wth @@ -74978,7 +74922,7 @@ bPJ bPJ bPJ bPJ -rAM +veA wfP wfP wfP @@ -74998,23 +74942,23 @@ cpy cpy tiQ cNV -vSJ -vSJ -vSJ +tMI +tMI +tMI cNV cNV saC saC saC -dWT -dWT +eld +eld bcP fzL fzL eTZ -dWT -dWT -dWT +eld +eld +eld saC saC tiQ @@ -75037,7 +74981,7 @@ mKQ uHn xZw xrA -lrh +npg ddy lUK aFA @@ -75209,7 +75153,7 @@ qxf wfP wfP wfP -pXv +aKE sRM bPJ cpy @@ -75234,11 +75178,11 @@ saC saC saC tiQ -dWT -bet -sHy -bet -eUs +eld +mVX +jbK +mVX +fEl tiQ tiQ saC @@ -75264,7 +75208,7 @@ xZw kRw udR pRT -lrh +npg ddy lUK rnp @@ -75432,7 +75376,7 @@ cpy cpy cpy bPJ -evu +rbF wfP wfP wfP @@ -75487,7 +75431,7 @@ xZw xZw xZw kQw -iyl +lrV kRJ aCR aCR @@ -75660,10 +75604,10 @@ cpy cpy bPJ bPJ -gfs +nkm wfP wfP -gWc +vwW wfP bPJ cpy @@ -75680,7 +75624,7 @@ cpy tiQ xho kwJ -faZ +sVm kwJ xho cNV @@ -75702,7 +75646,7 @@ tiQ dAf uFG xdF -htX +pbm hDh jFa hDy @@ -75888,9 +75832,9 @@ cpy cpy bPJ bPJ -fVC -qxO -pwF +bQP +omv +lFM bPJ bPJ cpy @@ -75982,7 +75926,7 @@ xtb xtb xtb xyL -cmC +pDG xyL xtb xtb @@ -76118,7 +76062,7 @@ bPJ wfP wfP wfP -iGD +jmn bPJ cpy bMX @@ -76143,10 +76087,10 @@ saC saC saC saC -uqt -uqt -uqt -qvQ +nMq +nMq +nMq +eyf saC saC saC @@ -76344,7 +76288,7 @@ cpy bPJ bPJ wfP -ixV +bgw bPJ bPJ cpy @@ -76572,7 +76516,7 @@ cpy bPJ wfP wfP -ixV +bgw bPJ cpy bMX @@ -76617,7 +76561,7 @@ hDy eCO xVG vda -rEV +vAb jtQ jTx kll @@ -76797,7 +76741,7 @@ cpy cpy cpy bPJ -ica +gMT wfP fvn bPJ @@ -76817,7 +76761,7 @@ xho kwJ xho kwJ -faZ +sVm cNV xho dpj @@ -77285,11 +77229,11 @@ vDV oML xho otQ -dtr +cBl fGU tiQ gAJ -hbF +iEd hky hka hwr @@ -77421,7 +77365,7 @@ rAf rAf toF rlI -fLZ +bXU wCJ ghu cbp @@ -77455,7 +77399,7 @@ cpy max max yjT -qVo +oXV oDZ wvt vou @@ -77464,7 +77408,7 @@ lUf lmF aGQ tML -ttE +jjc wzH max cpy @@ -77478,7 +77422,7 @@ max osN bPJ oeN -rgS +byb wfP hiL bPJ @@ -77507,7 +77451,7 @@ xho uAd yeS xho -faZ +sVm oEw oML xho @@ -77577,13 +77521,13 @@ rLq siT xTs pVx -pJb +vFS vIe uEC roT uEC xqd -pJb +vFS pVx gvT jLF @@ -77704,8 +77648,8 @@ max max osN bPJ -tXc -fJr +awm +tFC wfP wfP bPJ @@ -77722,13 +77666,13 @@ cpy cpy tiQ cNV -vSJ -vSJ -vSJ +tMI +tMI +tMI cNV cNV -eGs -dtr +uoJ +cBl otQ xho uAd @@ -77747,18 +77691,18 @@ hcx hkD hye hye -hRd +jkc uFG hDy -xxW -dsc -rov +lEs +umx +mAK saC saC saC -kzc -lit -cyu +mjK +toO +msw bzC bzC bzC @@ -77770,7 +77714,7 @@ gWI iAv iAv iAv -vZP +tzl iAv saC saC @@ -77836,7 +77780,7 @@ aFN wLU jTr pMd -jYp +hAG ihs gGW qSw @@ -77931,8 +77875,8 @@ max max osN aQH -euT -fJr +gsn +tFC wfP bPJ bPJ @@ -77954,7 +77898,7 @@ xho xho xho cNV -eGs +uoJ otQ otQ xho @@ -77998,15 +77942,15 @@ iAv iAv xzn xzn -nrh -nrh +qJO +qJO saC saC tjR tjR xPY ylm -oeX +pQa tfP tfP tfP @@ -78069,7 +78013,7 @@ qDR dnM sPk pxS -jsk +pxp fqD oFr lOi @@ -78159,9 +78103,9 @@ max osN bPJ cLB -cJF +esx wfP -gkH +hYS bPJ cpy bMX @@ -78181,19 +78125,19 @@ xho kwJ xho cNV -eGs -uqt -uqt -xgl -dwP +uoJ +nMq +nMq +wvz +oiS saC saC saC saC saC -cdP -xgl -xgl +urR +wvz +wvz hDy hDy hDy @@ -78224,8 +78168,8 @@ iAv iAv mWw nmK -nrh -nrh +qJO +qJO xzn xzn fLS @@ -78386,7 +78330,7 @@ pAj fnA bPJ bPJ -aRB +uEj jJF bPJ bPJ @@ -78408,7 +78352,7 @@ uTj cBi xho cNV -eGs +uoJ otQ otQ xho @@ -78422,14 +78366,14 @@ goK ksm cBi fTS -uxf +svk gHF fTS hkT fTS fTS fTS -glj +oQg fTS xuU txs @@ -78451,7 +78395,7 @@ iAv iAv saC eYA -akp +aPJ hHd mTo xkB @@ -78631,11 +78575,11 @@ tiQ xho xho uTj -kkZ +dPS oML xho cNV -eGs +uoJ otQ otQ xho @@ -78649,14 +78593,14 @@ oEw yeS oML fTS -lrh +npg gIH -hcV +uht hkY hAk hAk hRj -kfA +xLX ick iMS xWc @@ -78781,7 +78725,7 @@ tSL ibW tSL tSL -dvn +jPd tSL rdz kTF @@ -78796,7 +78740,7 @@ tSL phn kzT xNR -nxJ +dMo hpq ofi ofi @@ -78862,8 +78806,8 @@ jJa gTw xho cNV -eGs -dya +uoJ +oYm otQ xho uAd @@ -78876,18 +78820,18 @@ fkb dLs fJe tLQ -uxi +iFj gLK xWc hlf tso tso hRG -kzc +mjK xZw xZw xZw -iGc +oLL xZw xZw xZw @@ -78905,13 +78849,13 @@ wAB iAv saC saC -jPC +aFt xzn xkB xkB xzn xzn -vZP +tzl jdv ylm yim @@ -78974,7 +78918,7 @@ nLm nLm nLm eBA -lmI +qbL nLm nLm nLm @@ -79037,7 +78981,7 @@ fnA wIr wIr vLI -mpF +pSj wIr wIr kmq @@ -79068,7 +79012,7 @@ cpy cpy bPJ wfP -uwe +pSh sRM bPJ cpy @@ -79089,8 +79033,8 @@ oML xho xho cNV -eGs -dya +uoJ +oYm otQ xho uAd @@ -79100,18 +79044,18 @@ saC saC saC oEw -fwX +lxw oML fTS -lrh +npg gMy udR iKw udR udR udR -xEk -iyl +vUy +lrV iOl xZw uHn @@ -79177,7 +79121,7 @@ xAO xAO xAO xyL -kxH +ivY ugV hNR xhL @@ -79309,7 +79253,7 @@ cpy cpy tiQ vDV -kmz +oYr yeS yeS oML @@ -79317,10 +79261,10 @@ xho cNV cNV cNV -fsj +bCt xho xho -kmz +oYr saC saC saC @@ -79330,7 +79274,7 @@ fpH dOw gTw fTS -lrh +npg gHF fTS hkT @@ -79408,7 +79352,7 @@ tvO ugV hNR ugV -uOP +cJg yjm nLm lfe @@ -79418,7 +79362,7 @@ nLm ahP wCC fjr -rCV +xfD fjr fjr bPH @@ -79520,7 +79464,7 @@ vDL wIr wIr bPJ -xsN +mPV wfP wfP bPJ @@ -79542,7 +79486,7 @@ yeS oML xho xho -uqt +nMq xho uTj ksm @@ -79552,10 +79496,10 @@ saC saC saC saC -gyK -xgl -xgl -xgl +pGu +wvz +wvz +wvz hDy hDy hDy @@ -79620,7 +79564,7 @@ kcw sjp ohP oZC -xFH +tDq oZC cZN rrN @@ -79636,16 +79580,16 @@ ugV hNR ugV ugV -vBL +eSM cHw cHw hhD -ppX +dhj hhD wCC ugV ugV -kGX +nLE fjr fjr rZc @@ -79747,8 +79691,8 @@ hhI vDL wIr wIr -nRY -uwe +dSJ +pSh wfP bPJ cpy @@ -79769,7 +79713,7 @@ yeS epI cBi xho -uqt +nMq xho uAd yeS @@ -79794,9 +79738,9 @@ msp hDy hDy saC -dsc -rov -kzc +umx +mAK +mjK saC saC saC @@ -79862,7 +79806,7 @@ tvO ugV hNR ugV -pOb +nDo ugV fjr fjr @@ -79871,7 +79815,7 @@ fjr ugV ugV ugV -wft +xQZ ugV ugV fjr @@ -79975,7 +79919,7 @@ hhI lBd wIr guh -bQA +acC wfP bPJ cpy @@ -79992,11 +79936,11 @@ cpn aGg dAm dXq -ekt +ahm eoH eqU cJo -fsV +iyZ cJo dAm dLs @@ -80013,7 +79957,7 @@ otQ dyl tiQ gGq -hcZ +gRZ hlJ hAK wyv @@ -80088,10 +80032,10 @@ xyL tvO ugV spe -uBs +hcX vwi vwi -gEx +gRS vwi vwi vwi @@ -80100,7 +80044,7 @@ vwi vwi vwi vwi -lqI +pqX nQx rvx fZy @@ -80137,7 +80081,7 @@ tBQ yiM yiM fXx -pdq +tmA xNR wnM kzT @@ -80148,7 +80092,7 @@ qNl kzT wnM yfS -jrE +nFQ yfS wnM wnM @@ -80158,16 +80102,16 @@ kzT kzT kzT kDY -lIy +nue xNR yfS yfS kLO -cfz +gwg jmv tkf dgY -cfz +gwg cHb qzQ oLa @@ -80177,7 +80121,7 @@ tkf fTP fTP pCG -cfz +gwg jmv oLa oLa @@ -80190,7 +80134,7 @@ tkf tkf tkf dgY -cfz +gwg cHb oqp oLa @@ -80201,9 +80145,9 @@ qzQ hhI hLx wIr -oox -mzi -pXv +hcG +lgR +aKE bPJ cpy cpy @@ -80223,7 +80167,7 @@ yeS oML cCC xho -uqt +nMq xho aut dOw @@ -80313,25 +80257,25 @@ xAO xAO xtb tvO -pOb +nDo ugV hNR -nQk -rYu -siB -hqB -oXd -nXM -sjb -biZ -ieE -akP +rJG +mKK +tWy +lae +uvJ +gwU +jeh +qdV +byD +sqr tNr ugV spe nQx fjr -rCV +xfD crH pQE pQE @@ -80428,9 +80372,9 @@ qzQ aPu jmv ueY -tRs -eqV -bQA +tkC +rnX +acC bPJ cpy cpy @@ -80472,7 +80416,7 @@ qPq hxV hFu hSO -kck +igy ixf tLQ jbs @@ -80525,7 +80469,7 @@ xtb xtb xtb rMb -fAY +skQ xtb xtb xtb @@ -80543,18 +80487,18 @@ tEJ fjr ugV hNR -hkr -pPv -kmw -ovC -rah -lmW +keA +wSW +gvK +nMP +ovB +ikp cVR -iRW -ovC -szh -rLk -epe +ivs +nMP +eqb +joV +pqk ugV jXQ nQx @@ -80655,8 +80599,8 @@ fTP aPu pfq wIr -rsD -bQA +tXS +acC wfP bPJ cpy @@ -80680,7 +80624,7 @@ xho cNV lxW dCx -dtr +cBl xho uAd saC @@ -80770,20 +80714,20 @@ wCC fjr ugV hNR -hkr +keA vCy -fBY -iDC -qoj +ryb +ghE +sJP urY urY -iYG +ryW fIr -lhp -eiY -epe +sUN +bKu +pqk ugV -lXO +ibS jXQ iKF sQL @@ -80823,7 +80767,7 @@ tSL ibW ibW ily -tku +dlM ibW ibW tSL @@ -80882,7 +80826,7 @@ aPu mOJ wIr wIr -mzi +lgR wfP jJF bPJ @@ -80917,7 +80861,7 @@ xho jKu xho otQ -dtr +cBl saC tiQ oDU @@ -80996,23 +80940,23 @@ fjr fjr fjr fjr -vHd -vPm -eoi -khR -hbw +fUQ +rBg +whp +uye +naM uAa -oMX -faJ -nyv +fto +uDF +mQo urY -izb -gdA +dHx +wtO ugV fjr fjr fjr -lXO +ibS miz tRd xvW @@ -81108,7 +81052,7 @@ jJc vDL wIr wIr -evu +rbF wfP jJF jJF @@ -81124,7 +81068,7 @@ cpy cpy cpy tiQ -aKK +bPw uAd yeS yeS @@ -81137,9 +81081,9 @@ otQ otQ xho uAd -xgl +wvz kwJ -ezU +qdZ xho jKu xho @@ -81160,7 +81104,7 @@ xeG uHn jxu xZw -rEV +vAb mKQ saC saC @@ -81221,22 +81165,22 @@ fjr fjr fjr cpy -sQA +bKf fjr -tzM -vPm -jUc -ryI -hDe -iYG -nRI +nKZ +rBg +iML +kCQ +rjD +ryW +tlF fIr -fBY +ryb urY -izb -aem +dHx +csl ugV -rCV +xfD cpy fjr fjr @@ -81364,7 +81308,7 @@ otQ otQ xho uAd -dEk +kxD xho xho yeS @@ -81376,7 +81320,7 @@ saC tiQ gxl hai -hmD +hTJ iKN hGU hTd @@ -81433,14 +81377,14 @@ xtb xtb xtb rMb -fAY +skQ xtb xtb xtb xtb xtb rMb -fAY +skQ xtb xtb tvO @@ -81449,19 +81393,19 @@ fjr cpy cpy cpy -fGw -lHk +xDz +bAn crH -ksO -qFc -vBV -tnU -bdY -eiC +yjD mIa -xwK -hcd -xHO +rSQ +iaD +rmk +mlY +cqL +oQV +ncs +vmM fjr fjr cpy @@ -81534,7 +81478,7 @@ bYV wIr wIr bZV -mpF +pSj wIr wIr rZK @@ -81561,7 +81505,7 @@ srk vLI wIr bPJ -wLw +djL wfP wfP wfP @@ -81591,7 +81535,7 @@ saC otQ xho uAd -dEk +kxD yeS yeS yeS @@ -81677,18 +81621,18 @@ cpy cpy cpy cpy -gwH +dBQ sSn -jYc +xhz hhD -jYc -sPU -pUf +xhz +nHM +oMO hhD hhD -vqF -muB -lPM +lQA +fRw +fUc fjr cpy cpy @@ -81788,7 +81732,7 @@ oIu tOo bPJ bPJ -fZo +oCW wfP wfP wfP @@ -81810,7 +81754,7 @@ uAd yeS yeS yeS -cCQ +pNR saC saC saC @@ -81818,7 +81762,7 @@ saC saC saC aut -ejo +jcC dOw dOw dOw @@ -81836,7 +81780,7 @@ uFG hTd hDy iBs -oQs +cjt jcq uHn kib @@ -81904,19 +81848,19 @@ cpy cpy cpy fjr -nQL +lRi ugV ugV ugV -qrG -bRv +xyU +tSF ugV ugV -epe -bHk +pqk +tIQ ugV ugV -geI +gUT cpy cpy cpy @@ -82032,10 +81976,10 @@ cpy cpy cpy tiQ -cdP -dwP -dEk -dEk +urR +oiS +kxD +kxD saC saC saC @@ -82135,16 +82079,16 @@ hNR ugV xRK emH -hNt -aQf -qPm +uQa +gLy +aAX emH -oXd -nHl +uvJ +fvc fjr fjr fjr -ldr +prs cpy fjr fjr @@ -82367,7 +82311,7 @@ sjy sjy sjy sjy -pXR +evQ tNr fjr fjr @@ -82716,7 +82660,7 @@ tiQ vDV uAd yeS -enG +yew gTw xho xho @@ -82738,7 +82682,7 @@ saC tiQ hTg uFG -qTH +kuX hye hFS hTg @@ -82750,10 +82694,10 @@ jTb xZw xZw xZw -kzc +mjK kCM kWa -mXn +lEE fTS lqY saC @@ -82802,7 +82746,7 @@ yjp beB beB uPk -mwL +vnB beB wrC wrC @@ -82810,10 +82754,10 @@ xXR emH emH tNr -gwH +dBQ fjr xRK -rJB +uuy sjy uxn ckT @@ -82977,14 +82921,14 @@ jTB xWc xWc xWc -gnx +qLw xWc xWc mXA ick lvH -lAA -ugi +aMP +jla saC saC saC @@ -83174,8 +83118,8 @@ xho cNV cNV cNV -fxq -fxq +sAX +sAX saC saC wLp @@ -83184,7 +83128,7 @@ qUQ qUQ ezj cSh -feF +pKt qUQ qUQ qUQ @@ -83202,9 +83146,9 @@ saC saC xZw xZw -rEV +vAb kmg -kzc +mjK xZw xZw xZw @@ -83212,7 +83156,7 @@ xZw xZw xZw uHn -kfF +aeT saC saC saC @@ -83250,7 +83194,7 @@ ugV ugV crH beB -eLK +hZf tmC tDQ ueR @@ -83266,7 +83210,7 @@ wrC tvO jDO xRK -xlU +qxe sjy sjy sjy @@ -83402,10 +83346,10 @@ cNV cNV cNV cSb -dcD -moZ -moZ -moZ +aiR +koF +koF +koF dDC dDC dDC @@ -83431,7 +83375,7 @@ saC xZw xZw xZw -kzc +mjK xZw xZw xZw @@ -83439,8 +83383,8 @@ xZw xZw xZw uHn -rEV -aKQ +vAb +lxh saC saC saC @@ -83496,7 +83440,7 @@ crH sjy sjy mhn -hIz +sDY kTm oHR ort @@ -83606,7 +83550,7 @@ eso sCi jas nQu -uYk +tms jas cpy cpy @@ -83632,7 +83576,7 @@ qUQ jth kbV kbV -ear +eWm tjg tjg tjg @@ -83645,9 +83589,9 @@ saC saC saC tiQ -dli -dli -dli +nVy +nVy +nVy tiQ tiQ tiQ @@ -83667,7 +83611,7 @@ xZw xZw uHn xZw -kfF +aeT saC saC saC @@ -83833,7 +83777,7 @@ vpe wHz jas nQu -wbo +bWv jas cpy cpy @@ -83859,7 +83803,7 @@ cuF jth tjg tjg -ear +eWm tjg tjg tjg @@ -83873,7 +83817,7 @@ saC saC tiQ lAK -hmV +iCa vIS saC saC @@ -83895,7 +83839,7 @@ xZw uHn xZw xZw -pNv +uSF saC saC saC @@ -84086,15 +84030,15 @@ qUQ jth tjg tjg -ear +eWm kbV kbV kbV -xiY -fKt -fKt -vzd -tQw +oEW +gqW +gqW +exL +dRM saC saC saC @@ -84306,18 +84250,18 @@ aVt beb bDS bDS -cqr +nnR cDh cKp qUQ jth tjg tjg -ear +eWm kbV kbV -xiY -xiY +oEW +oEW tjg tjg gPq @@ -84325,7 +84269,7 @@ tjg tjg hJB qUQ -vlq +jLI xmD hna yiu @@ -84376,14 +84320,14 @@ pSK kgR kwg anb -bJY +hnG jSU xDu xDu xDu raI jSU -osE +mji ijE nTx eHn @@ -84394,10 +84338,10 @@ vBI nTx vNy mvR -bNy +jqV jyx xmN -lUU +fTK kgQ mLO fIr @@ -84425,7 +84369,7 @@ hnk xGf xGf xiG -qpJ +dtl fCl yca jfO @@ -84540,11 +84484,11 @@ qUQ jth tjg tjg -xiY -xiY +oEW +oEW saC saC -xiY +oEW kbV kbV caN @@ -84552,8 +84496,8 @@ hgM hgM idn cSh -oVt -dNn +vUT +vEm hna yiu hLY @@ -84562,9 +84506,9 @@ lmY iBI iQe pfj -jjV -cuu -jVC +qwm +bFN +oHT tiQ tiQ kEx @@ -84573,9 +84517,9 @@ tiQ saC saC saC -uhx -pwX -pwX +nRX +rNw +rNw saC saC tTv @@ -84740,7 +84684,7 @@ hBp eso vpe jas -wbo +bWv nQu jas cpy @@ -84765,26 +84709,26 @@ sCw cKp jur jth -fsC +suU kbV -xiY +oEW saC saC saC -ffr -xiY +fzW +oEW kbV gPq -fsC +suU kbV hJB qUQ -pwX +rNw knt qjG yiu hLY -qJE +aEG ujg iCk iQF @@ -84879,7 +84823,7 @@ hnk lxL lxL tVN -qpJ +dtl gDz jfO xXo @@ -84967,7 +84911,7 @@ cwe vpe oCs jas -wbo +bWv nQu jas cpy @@ -84990,47 +84934,47 @@ tDR cqP cEw dOa -fxq +sAX jth tjg tjg -xiY +oEW saC saC saC saC -xiY -xiY +oEW +oEW gPq tjg tjg hJB qUQ -pwX +rNw knt qjG yiu hLY -qJE +aEG ujg iDg -iRV +hDS yiu -xzu -jCQ -jWr +rjb +kTy +bxs xmD xmD -jVC +oHT miH saC saC saC -qgx +vib yaj qjG qjG -qgx +vib saC tTv men @@ -85073,7 +85017,7 @@ beB beB beB uam -xBi +vOR wrC sgT sgT @@ -85194,7 +85138,7 @@ yak qbB snR jas -uYk +tms nQu jas cpy @@ -85217,7 +85161,7 @@ spI crm cEx dOa -fxq +sAX jth tjg tjg @@ -85227,18 +85171,18 @@ saC saC saC saC -xiY +oEW gPq tjg tjg hJB qUQ -vlq +jLI knt hna yiu hLY -vhr +nNO ujg iFB iSc @@ -85247,13 +85191,13 @@ wTq wTq jWB xYD -kry -jjV +rGX +qwm miH saC saC saC -pwC +qjG yaj qjG qjG @@ -85444,10 +85388,10 @@ bYd cvP dOa dOa -fxq -gdJ -ear -ear +sAX +oCD +eWm +eWm saC saC saC @@ -85455,32 +85399,32 @@ saC saC saC saC -vzd -fKt -fKt -fYP -fxq +exL +gqW +gqW +xrV +sAX saC knt hna yiu hLY -qJE +aEG lmY iFV iDg -jey +cfW jlh -jEk +hhN hef kmP xmD -jVC +oHT kXa saC saC saC -pwC +qjG yaj qjG qjG @@ -85670,8 +85614,8 @@ bHa dOa dOa dOa -dZs -fLi +qCw +uXz jth tjg tjg @@ -85682,11 +85626,11 @@ saC saC saC saC -frL +oBn tjg tjg hJB -sxU +ivB saC knt hna @@ -85706,11 +85650,11 @@ lmY saC saC saC -pwC +qjG qjG yaj qjG -pwC +qjG saC saC saC @@ -85823,9 +85767,9 @@ jmG jmG jmG khd -eNc +rRc wZy -teO +iuQ khd aZj aZj @@ -85847,7 +85791,7 @@ bYV wIr wIr bZV -mpF +pSj wIr wIr rZK @@ -85891,15 +85835,15 @@ cpy cpy cpy tiQ -dzv +xou dOa dOa dOa -cwq -dQg -dZs -fxq -ddN +nnk +mnB +qCw +sAX +epi tjg tjg saC @@ -85932,12 +85876,12 @@ xmD saC saC saC -lrQ +xmD qjG qjG yaj qjG -qgx +vib saC saC saC @@ -85981,7 +85925,7 @@ jyx uuA wrC vpO -kdw +vPA wrC sgT sgT @@ -86034,7 +85978,7 @@ wdy rMF jmG six -cIo +swf jmG jmG jmG @@ -86123,8 +86067,8 @@ bgg bIr tDR tDR -eVi -dZs +ueD +qCw qUQ jth tjg @@ -86144,9 +86088,9 @@ saC saC knt hna -wea +viu jef -uTy +slo vIS vIS vIS @@ -86158,13 +86102,13 @@ knS vIS saC saC -ljQ +xCq pfj qjG qjG yaj qjG -pwC +qjG saC saC saC @@ -86203,7 +86147,7 @@ crH wrC wrC wrC -xHz +tGm wrC wrC wrC @@ -86350,19 +86294,19 @@ bgg bIr tDR tDR -eVi +ueD cKw qUQ jth tjg -dQm +wrL kbV saC saC saC saC saC -fsC +suU gPq kbV kbV @@ -86373,8 +86317,8 @@ knt hna yiu yiu -xwZ -wea +flt +viu yiu mrc wXA @@ -86386,12 +86330,12 @@ saC saC saC saC -lwm -pwX -pwX -uhx -vlq -vlq +aRF +rNw +rNw +nRX +jLI +jLI saC saC saC @@ -86450,7 +86394,7 @@ sjy sjy sjy nAu -iTf +vil sjy sjy sjy @@ -86472,7 +86416,7 @@ lVp lVp lVp qVb -eum +tQE lVp kqb kqb @@ -86578,13 +86522,13 @@ tDR tDR tDR cEM -eXe +nIM jur jth kbV kbV kbV -fKt +gqW tjg tjg saC @@ -86600,7 +86544,7 @@ gRJ ggH wXA wXA -xGX +pgZ wXA wXA gck @@ -86613,7 +86557,7 @@ saC saC saC yiu -wea +viu qjG qjG yaj @@ -86769,7 +86713,7 @@ nax nax fki jas -mJG +ddq eso eso eso @@ -86805,13 +86749,13 @@ bhL bhL bhL cFP -cKy +rBu cSh ddS bVF bVF bVF -wwi +eJl dcy hgM hgM @@ -86827,7 +86771,7 @@ lAK hna yiu yiu -xwZ +flt yiu yiu nqe @@ -86887,7 +86831,7 @@ tpz tGY uiO uwn -tQe +uSI itl aVD oLu @@ -86922,13 +86866,13 @@ ucM cpJ cLi ycv -qfP +frc ycv uKa ucM uKa ycv -qfP +frc ycv uKa uKa @@ -86939,12 +86883,12 @@ eSY tPs tPs jUI -cSf +vLW grP jze grP grP -cSf +vLW xNd iYt oFU @@ -86967,17 +86911,17 @@ grP aVA xNd xNd -cSf +vLW oFU tPs tPs tPs oFU -gpr +pvE tZc pOs tZc -eUz +vKm vUe hoy qzU @@ -87004,8 +86948,8 @@ xFv bxr iqV iqV -oda -jVV +xHj +gvU boQ vpe tuK @@ -87032,15 +86976,15 @@ tDR tDR tDR cDo -eXe +nIM qUQ jth dGV roM roM -ygu +xHi duN -erZ +aQp roM roM roM @@ -87076,7 +87020,7 @@ saC tiQ tiQ hhQ -ehM +vNd fdE ayX lAS @@ -87126,7 +87070,7 @@ nTx nTx nTx mvR -kUM +qPS oGp xxs eUh @@ -87259,13 +87203,13 @@ tDR tDR tDR cEM -cKC +lzc jur del dHc qUQ qUQ -jri +sKC dEL qUQ qUQ @@ -87284,9 +87228,9 @@ saC saC saC saC -wjy -xwZ -xwZ +pyb +flt +flt saC saC saC @@ -87299,8 +87243,8 @@ saC saC saC saC -jjV -qJE +qwm +aEG tiQ hhQ gtX @@ -87311,7 +87255,7 @@ vuS pfj ncv tfK -dXB +xQJ tiQ bjd eZF @@ -87483,7 +87427,7 @@ cpn tDR tDR tDR -bZe +uBk spI aXa tiQ @@ -87493,10 +87437,10 @@ dfn dfn jEu nTl -eWn -oSX -oSX -oSX +xdE +wpw +wpw +wpw nTl jEu saC @@ -87518,19 +87462,19 @@ yiu saC saC saC -xwZ -xwZ -mZN -pEm +flt +flt +jFd +dqT saC saC -mxp +vZZ jWB xmD xQc xQc xQc -eoA +vRD ehO qjG yiu @@ -87607,7 +87551,7 @@ kqb kqb kqb mUS -fWH +nmL kqb kqb kqb @@ -87737,28 +87681,28 @@ saC saC saC saC -pEm +dqT nqe yiu yiu yiu saC saC -xzu +rjb yiu yiu -ljm +pFD saC saC saC -cnA -hdQ +qZx +mti xmD xQc -qJE +aEG xQc -qJE -qJE +aEG +aEG qjG yiu qjG @@ -87829,7 +87773,7 @@ xGf pNs kVV xGf -gul +bYG kqb hAi cMv @@ -87942,9 +87886,9 @@ xLm tiQ tiQ tiQ -hBg -hBg -hBg +nkl +nkl +nkl tiQ lXC lXC @@ -87964,29 +87908,29 @@ saC saC saC saC -pEm +dqT nqe yiu yiu yiu saC -xzu +rjb yiu yiu yiu nqe -xzu +rjb saC -eBm -gWg +rbK +utn xmD xQc xQc -qJE +aEG xQc xQc -gAS -chT +iDK +wtp mis yiu acD @@ -88077,7 +88021,7 @@ bmg xXg jmG gEk -cIo +swf jmG jmG jmG @@ -88167,19 +88111,19 @@ xLm cbB tiQ tiQ -aEL -aEL -aEL -aEL +vJy +vJy +vJy +vJy jcl -jVa +cPJ jcl jcl ewp fIe fIe fIe -aWX +mAu fIe fMd ewt @@ -88190,31 +88134,31 @@ tiQ saC saC saC -pEm -pEm +dqT +dqT nqe yiu yiu yiu -xwZ +flt yiu mrc wXA wXA mZU wXA -hwG -syg -jjV +ppj +jWx +qwm xmD cHu -jVC -qJE -qJE +oHT +aEG +aEG cHu -cLH -gAS -aox +sXV +iDK +nwK rKa fpm yld @@ -88344,7 +88288,7 @@ xzK wIr wIr vLI -jOx +nXI wIr wIr xzK @@ -88393,8 +88337,8 @@ bsx tiQ tiQ tiQ -aJT -aEL +wJU +vJy cTX iZI iZI @@ -88404,7 +88348,7 @@ ept hRW ewm hRW -gqg +xII npd svW swu @@ -88418,12 +88362,12 @@ tiQ tiQ saC saC -pEm +dqT mbq wXA wXA wXA -xGX +pgZ wXA mAC yiu @@ -88431,22 +88375,22 @@ yiu yiu yiu cpZ -kda -qJE +lPR +aEG xQc xQc xmD -mPY -qJE +uUP +aEG xQc xQc -fqU -ecU -tXp -xwZ -lrd -ihf -lyu +avZ +tZV +tbm +flt +uxC +jTO +jID tiQ bjd eZF @@ -88479,7 +88423,7 @@ wKg wKg wKg vQT -cjy +fmg wKg wKg wKg @@ -88618,10 +88562,10 @@ tiQ xLm tiQ tiQ -cbY -aEL -aEL -aLJ +wzV +vJy +vJy +uZj dDS iZI iZI @@ -88646,11 +88590,11 @@ tiQ tiQ saC saC -pEm +dqT yiu yiu yiu -xwZ +flt yiu yiu yiu @@ -88659,21 +88603,21 @@ yiu yiu wvB xmD -qJE +aEG xQc xmD xmD -mPY -qJE -qJE +uUP +aEG +aEG xQc -rjl -gyB -aox +fFt +gvu +nwK yiu wvB csS -yai +gBw tiQ bjd pqQ @@ -88844,15 +88788,15 @@ cpy tiQ tiQ tiQ -aEL -aEL -aLJ -aLJ -aLJ +vJy +vJy +uZj +uZj +uZj dDS iZI -fFw -fib +tzD +orK jcl aCQ dXd @@ -88861,7 +88805,7 @@ jcl swu hwt jcl -eHp +ukM dHk gKD gpu @@ -88874,10 +88818,10 @@ saC saC saC saC -pEm -pEm +dqT +dqT yiu -xwZ +flt yiu yiu yiu @@ -88888,15 +88832,15 @@ wvB xmD xQc xQc -hdQ +mti iQe vIS -jWr -qJE +bxs +aEG xQc xQc enk -aox +nwK yiu wvB pvz @@ -88943,14 +88887,14 @@ opl opl kEN ben -xGd +gLw ygw ndb vbX tjM ndb ygw -oMt +kfa ogf nLD xen @@ -89070,11 +89014,11 @@ cpy cpy tiQ tiQ -aEL -aEL -aLJ -aLJ -aLJ +vJy +vJy +uZj +uZj +uZj iZI dDS iZI @@ -89102,7 +89046,7 @@ saC saC saC saC -pEm +dqT saC saC yiu @@ -89110,17 +89054,17 @@ kVa yiu yiu yiu -uul +nrO dZG xmD seF -qJE -lrQ -dRy +aEG +xmD +hna yiu -mMj -qJE -qJE +kPW +aEG +aEG seF uPv iSc @@ -89296,25 +89240,25 @@ cpy cpy cpy tiQ -aEL -aEL -aLJ -aLJ -aLJ -aLJ -fib -fXU -fib -fib +vJy +vJy +uZj +uZj +uZj +uZj +orK +hRE +orK +orK svW jcl aCQ -emr +lmb nTl nTl -dBe -qZB -jVa +fPP +qtJ +cPJ svW dYX jcl @@ -89341,13 +89285,13 @@ hLY knt kOF seF -qJE +aEG iQe baG yiu jef -jWr -qJE +bxs +aEG seF xuD ezB @@ -89523,20 +89467,20 @@ cpy cpy tiQ tiQ -aEL -aLJ -aLJ -dFT -aLJ +vJy +uZj +uZj +mNC +uZj iZI iZI dDS iZI iZI svW -jVa -fLP -wSb +cPJ +cci +eLz nTl nTl jcl @@ -89545,7 +89489,7 @@ jcl svW dYX hRy -grz +uRm uNT aCQ saC @@ -89561,20 +89505,20 @@ saC vjl vjl vjl -xzu -xzu -xzu +rjb +rjb +rjb hLY knt xQc xQc -srf -dRy +mti +hna yiu yiu -wea -nmX -qJE +viu +nic +aEG xQc xQc ayX @@ -89643,13 +89587,13 @@ sjy kqb kqb mUS -jxT +rUJ kqb kqb pGl kqb kqb -bJp +ixh fpl dfH qcA @@ -89749,10 +89693,10 @@ cpy cpy tiQ tiQ -aEL -aEL -aLJ -aLJ +vJy +vJy +uZj +uZj iZI iZI iZI @@ -89770,7 +89714,7 @@ eVW hwt jcl svW -rbW +hrE tiQ tiQ tiQ @@ -89789,22 +89733,22 @@ vjl vjl vjl vjl -vlq -xwZ -syg -iqz +jLI +flt +jWx +qjw xQc -qJE -qJE -aox -xwZ -xwZ -pEm -syg -qJE -qJE +aEG +aEG +nwK +flt +flt +dqT +jWx +aEG +aEG xQc -pwA +wmf kaQ nqe hLY @@ -89893,7 +89837,7 @@ cpy tTD tTD lpi -noH +vmp sCr uew xMO @@ -89926,7 +89870,7 @@ jwM ild ild vBd -kua +nZn jmG fEY fWG @@ -89975,10 +89919,10 @@ bMX cpy cpy tiQ -aJT -aEL -aLJ -aLJ +wJU +vJy +uZj +uZj iZI iZI iZI @@ -89995,7 +89939,7 @@ ojn swu swu hwt -aEL +vJy svW dYX hRy @@ -90020,7 +89964,7 @@ ntq qjG hLY knt -npb +uct xmD iQe baG @@ -90029,7 +89973,7 @@ yiu yiu jef pfj -tRS +xrZ yhz xmD kaQ @@ -90153,7 +90097,7 @@ ild uqP wjF ngL -oHW +nlO jmG fEY fWG @@ -90202,19 +90146,19 @@ bMX cpy tiQ tiQ -aEL -aLJ -aLJ +vJy +uZj +uZj iZI iZI ccN cwO cwO cKQ -cUg +gWW iZI dHj -vNr +sUJ jcl egt swu @@ -90222,15 +90166,15 @@ swu swu swu hwt -aEL -cWH +vJy +hZk dYX jcl jcl gOG heU lXC -ijO +mZn saC tiQ tiQ @@ -90247,7 +90191,7 @@ vjl qjG hLY knt -whK +emj xmD hna yiu @@ -90256,9 +90200,9 @@ yiu yiu noD jWB -tRS +xrZ aiO -snP +heq vxq dxJ jWB @@ -90316,7 +90260,7 @@ ulZ ulZ wIE mVi -mxg +oik tAu hre oTY @@ -90430,7 +90374,7 @@ cpy tiQ acq bJE -aLJ +uZj dFR azz azz @@ -90441,7 +90385,7 @@ cKS eJw iZI iZI -fib +orK jcl aCQ swu @@ -90450,7 +90394,7 @@ swu swu hwt jcl -mrL +jXN dYX hRy oUC @@ -90474,10 +90418,10 @@ qjG yiu hLY knt -mad +aaC xmD juw -wea +viu yiu yiu yiu @@ -90489,7 +90433,7 @@ mMr eJq knt xmD -jpm +jHY tiQ bjd yje @@ -90657,10 +90601,10 @@ cpy tiQ afn iZI -bNE +kAe dDS iZI -fFw +tzD iZI cxu cGY @@ -90668,21 +90612,21 @@ hgy iZI iZI iZI -aLJ +uZj jcl aCQ -bOv +gQf lXC eAz lFk hwt jcl -mrL +jXN dYX tiQ tiQ tiQ -hfi +eou lXC lXC tiQ @@ -90701,7 +90645,7 @@ yiu yiu lDc lMN -whK +emj mnw qjG yiu @@ -90811,7 +90755,7 @@ vNk vNk vNk vKl -fdb +vWp vNk vNk vNk @@ -90869,7 +90813,7 @@ lHS phq aam jas -wcM +wFC aEF jas cpy @@ -90882,7 +90826,7 @@ bMX bMX cpy tiQ -aEL +vJy aqT azz aZD @@ -90895,8 +90839,8 @@ frH ciS iZI iZI -fFp -nno +cVE +acm nTl nTl nTl @@ -90904,7 +90848,7 @@ nTl nTl nTl lXC -eHp +ukM dYX jcl jcl @@ -90924,11 +90868,11 @@ xmD rVB mbs mLX -leH +hVl lmu lDr lNI -aqo +sOb ugN pHT lXQ @@ -90936,7 +90880,7 @@ yiu yiu yiu hLY -tRS +xrZ cRD sRx cRD @@ -91096,7 +91040,7 @@ phq phq qYq jas -wbo +bWv aEF jas cpy @@ -91110,7 +91054,7 @@ bMX cpy tiQ jEu -aEL +vJy svW svW jcl @@ -91120,10 +91064,10 @@ jcl aqT jcl eJZ -dgO -aEL -nno -nno +dYM +vJy +acm +acm nTl nTl nTl @@ -91131,7 +91075,7 @@ nTl nTl nTl lXC -eLx +cDI dYX jcl jcl @@ -91144,7 +91088,7 @@ tiQ idq jcl jcl -kkq +itW tiQ jEu xmD @@ -91162,8 +91106,8 @@ yaj yiu kEL yiu -noV -lyu +icO +jID cRD ayX xVq @@ -91323,7 +91267,7 @@ eJd ptU jas jas -wbo +bWv aEF jas cpy @@ -91344,11 +91288,11 @@ hRW hRW hRW hRW -gqg +xII hRW eMl iOx -cHL +tvH nTl nTl nTl @@ -91390,7 +91334,7 @@ qjG yiu yiu hLY -haG +ety xVq xmD xVq @@ -91398,7 +91342,7 @@ xmD jjl hLY vDw -rbZ +uQL qjG bjd rMD @@ -91408,7 +91352,7 @@ fSf cZH jDN mqx -nJW +vnz hvh eZF lfj @@ -91441,12 +91385,12 @@ xjF xFp dHF xZP -gYH +mkT xAZ xAZ xOw ykT -yja +rlE buI mSe nYF @@ -91456,12 +91400,12 @@ mSe nDn hYV mZj -yja +rlE xAZ qqx pag bia -gYH +mkT lDE tTD tTD @@ -91476,7 +91420,7 @@ cpy cpy rnB plN -pOa +rEo jKb tTD rnB @@ -91575,7 +91519,7 @@ swu cyv eMz cyv -gdX +knU nTl nTl nTl @@ -91586,7 +91530,7 @@ nTl nTl nTl nTl -dZd +gvb hRW hRW hRW @@ -91616,8 +91560,8 @@ lNA wXA vhA wXA -iyQ -qix +hEI +mTg eKK hef eKK @@ -91720,12 +91664,12 @@ nYW vkD ngx sSG -ctu +lkr cXf qDw ngx wNp -ctu +lkr xgA bsG vOT @@ -91770,8 +91714,8 @@ qHr vpe vxa ppU -wbo -wbo +bWv +bWv nQu nQu nQu @@ -91802,7 +91746,7 @@ lXC ezW cUh dhW -nno +acm nTl nTl nTl @@ -91813,15 +91757,15 @@ nTl nTl nTl nTl -efS +dKc elx -enr +nhx elx elx elx elx hNj -hXA +vDf fvQ fDC gwk @@ -91842,9 +91786,9 @@ knt hna yiu yiu -pEm -tlv -qJE +dqT +kIG +aEG xVq xmD xVq @@ -91998,13 +91942,13 @@ vpe ahZ jas jas -jfP -mKZ +mwn +xxz pYO pYO -apC -apC -tWv +afa +afa +nUF jas jas cpy @@ -92022,14 +91966,14 @@ bLk cce lXC lXC -ijO +mZn ciL lXC crX eBi cUl dhX -dIX +nEk nTl nTl nTl @@ -92040,8 +91984,8 @@ nTl nTl nTl nTl -nno -nno +acm +acm lXC lXC lXC @@ -92070,14 +92014,14 @@ hna yiu yiu yiu -syg +jWx xmD xVq xmD xVq uGj hna -wea +viu hLY dpz qjG @@ -92104,7 +92048,7 @@ eJR iDH eJR rtX -wvX +lUy tJm vGp vGp @@ -92210,10 +92154,10 @@ xxq xzK jas jas -bKj +nZx vpe eso -hZC +gRi coR jas sjA @@ -92253,7 +92197,7 @@ swu cil swu swu -eBH +rRp cVc dip gnd @@ -92267,9 +92211,9 @@ nTl nTl nTl nTl -gKM -jhS -jhS +aEX +fCs +fCs tra egY lXC @@ -92282,7 +92226,7 @@ iUX tCX jcl xQc -jjV +qwm xmD knt xQc @@ -92297,7 +92241,7 @@ hna yiu yiu yiu -syg +jWx xmD cRD uvt @@ -92325,7 +92269,7 @@ alI alI alI wDj -cPg +btA eJR kbH iHD @@ -92455,7 +92399,7 @@ ctE jas aEF nQu -wcM +wFC jas cpy cpy @@ -92494,9 +92438,9 @@ nTl nTl nTl nTl -vQn -aEL -aEL +sSp +vJy +vJy jcl aCQ lXC @@ -92509,9 +92453,9 @@ tCX jcl cYe tiQ -dXo +dGI xYD -kpE +mrd xQc xQc nEd @@ -92524,15 +92468,15 @@ hna qFW yiu noD -ihf +jTO suG cRD lkl xVq -hdQ +mti ayX nqQ -hdQ +mti asH tiQ bjd @@ -92628,7 +92572,7 @@ uQr wpd hMT hFG -qEr +mfS osV qAt wMq @@ -92682,7 +92626,7 @@ ctE jas kFd nQu -qIt +jwO jas cpy cpy @@ -92702,7 +92646,7 @@ jEu bIQ svW svW -oUZ +uaQ jcl jcl jcl @@ -92719,13 +92663,13 @@ nTl nTl nTl nTl -nno +acm lXC hwt -jVa +cPJ jcl jcl -fkW +xGY lXC lXC hOy @@ -92738,7 +92682,7 @@ tiQ jEu xmD xYD -kpE +mrd xmD xQc xQc @@ -92813,7 +92757,7 @@ gUi jHi fkj mVi -mxg +oik tAu mHU fkj @@ -92907,9 +92851,9 @@ ctE ctE ctE jas -wHX +wFL nQu -sZz +hbO jas cpy cpy @@ -92936,7 +92880,7 @@ iZI iZI iZI dDS -fFw +tzD iZI iZI lXC @@ -92949,7 +92893,7 @@ nTl lXC swu hwt -jVa +cPJ jcl jcl aCQ @@ -92962,31 +92906,31 @@ hRW kHX jhY tiQ -jjV +qwm xmD xYD fxh -hdQ +mti tMV -whK +emj xmD xmD xmD xmD gyC -kpG +uMA saC saC saC saC tiQ tiQ -yai +gBw ayX ayX xmD xmD -kss +lnE tiQ tiQ alI @@ -93134,7 +93078,7 @@ ctE ctE ctE jas -wHX +wFL nQu fZA jas @@ -93153,13 +93097,13 @@ bMX saC saC saC -aLJ +uZj iZI iZI iZI iZI dDS -fFw +tzD iZI iZI dDS @@ -93169,12 +93113,12 @@ iZI jcl aCQ pQR -nno -nno -jPz +acm +acm +rta hwt jcl -iRY +lTP hwt tiQ tiQ @@ -93189,13 +93133,13 @@ fMT iVk jic tiQ -jjV +qwm iQe vIS kBm pEs qET -aqo +sOb pEs rmV gwK @@ -93213,7 +93157,7 @@ iQe vIS vIS pfj -vAX +xbE kJc tiQ saC @@ -93260,7 +93204,7 @@ xAw pKX pKX kIZ -jro +laB pKX pKX pKX @@ -93379,10 +93323,10 @@ bMX bMX saC saC -aGI -bdv -aLJ -aLJ +ilc +vgH +uZj +uZj iZI iZI dDS @@ -93392,13 +93336,13 @@ iZI eOe iZI iZI -fFw +tzD jcl aCQ swu -mrL -mrL -mrL +jXN +jXN +jXN hwt jcl swu @@ -93411,7 +93355,7 @@ lXC lXC tiQ tiQ -igA +csg tCX iVU jig @@ -93422,7 +93366,7 @@ yiu hLY xmD tMV -whK +emj xmD ajY yiu @@ -93435,7 +93379,7 @@ saC saC tiQ dck -hmV +iCa qCE xSL txo @@ -93465,7 +93409,7 @@ iJE rtX vGB ncz -kKj +otC pgp umR qSH @@ -93502,7 +93446,7 @@ gdO gdO gdO ayn -wHY +xNw gdO gdO tTK @@ -93607,11 +93551,11 @@ bMX saC saC saC -aGI -aLJ -aLJ -aLJ -aLJ +ilc +uZj +uZj +uZj +uZj dDS iZI iZI @@ -93624,16 +93568,16 @@ jcl aCQ swu swu -mrL -lFd -qZB -jVa -pgJ +jXN +qpL +qtJ +cPJ +gjR hwt jcl jcl gRV -hfE +iFd lXC lXC swu @@ -93651,7 +93595,7 @@ xCS tiQ tiQ lAK -xNt +wAZ yiu yiu nqe @@ -93835,11 +93779,11 @@ saC saC saC saC -aGI -aLJ -aLJ -dFT -cmB +ilc +uZj +uZj +mNC +iri azz azz cMc @@ -93886,7 +93830,7 @@ yiu yiu kVa hLY -hdQ +mti yjg xmD hna @@ -93915,7 +93859,7 @@ wDj wDj wDj vGB -moQ +wPA vGB wDj qSH @@ -94064,14 +94008,14 @@ saC saC saC saC -cdj -aLJ -aLJ -aLJ +gDo +uZj +uZj +uZj iZI iZI dDS -fFw +tzD iZI svW jcl @@ -94083,14 +94027,14 @@ swu hwt jcl svW -bye +ieF tiQ tiQ tiQ aCQ lXC lXC -iRY +lTP swu jcl saC @@ -94292,14 +94236,14 @@ saC saC saC saC -aLJ -aLJ -aLJ -aLJ -fib -gbQ -jYj -jYj +uZj +uZj +uZj +uZj +orK +qxv +lBk +lBk eFP fIe egd @@ -94346,7 +94290,7 @@ iDg tqh gGg xME -hYg +cll jWB eIT kJc @@ -94453,7 +94397,7 @@ vOT xgA acE kEQ -meK +vyk otS fWG cpy @@ -94520,22 +94464,22 @@ saC saC saC saC -aLJ -aLJ -aLJ +uZj +uZj +uZj iZI dDS iZI iZI svW -jVa -fLP -iOt +cPJ +cci +xbx nTl nTl -dBe -qZB -jVa +fPP +qtJ +cPJ svW hwt jcl @@ -94569,7 +94513,7 @@ tiQ tiQ tiQ tiQ -snP +heq sDf kpo wQs @@ -94617,7 +94561,7 @@ xuk kHP wxZ ldg -vDT +tqG kSb nIa jvu @@ -94747,9 +94691,9 @@ saC saC saC cfg -aLJ -aLJ -aLJ +uZj +uZj +uZj iZI dDS iZI @@ -94973,15 +94917,15 @@ saC saC saC saC -oUZ -aEL -aLJ -aLJ +uaQ +vJy +uZj +uZj iZI dDS iZI iZI -fib +orK jcl aCQ equ @@ -94990,7 +94934,7 @@ jcl dXd fbC fIe -ame +mlC fDn fDH fFE @@ -95024,12 +94968,12 @@ nbj sZq tiQ tiQ -jEF +uUU ayX ayX ayX dpz -cXi +aMK tiQ tiQ saC @@ -95094,7 +95038,7 @@ niE seA tNC fyD -eLl +pLN sBy qqk tMl @@ -95201,10 +95145,10 @@ saC saC saC saC -aEL -aEL -aEL -aLJ +vJy +vJy +vJy +uZj dDS iZI iZI @@ -95212,7 +95156,7 @@ svW svW aCQ swu -exZ +ppi oWq eKj hwt @@ -95243,7 +95187,7 @@ lFt xUx mdD woG -xWz +hBN pNo xUx mQd @@ -95270,7 +95214,7 @@ saC sYl saC saC -utq +pUu saC qSH qSH @@ -95279,7 +95223,7 @@ sOL rlB eJR rtX -wvX +lUy nTp qSH qSH @@ -95430,8 +95374,8 @@ saC saC saC tiQ -aEL -aEL +vJy +vJy cTX iZI iZI @@ -95493,14 +95437,14 @@ saC saC saC saC -cYn +cRx qSH shD cCH qSH qSH bha -cYn +cRx qSH eJR rlB @@ -95541,14 +95485,14 @@ hYw hKJ mjT eOl -gfl +unE mMQ mWF njH psT poQ pzs -rEj +pMt vyH rYD aNP @@ -95658,19 +95602,19 @@ saC saC tiQ tiQ -cOZ -aEL -oUZ +jWY +vJy +uaQ jcl jcl -jVa +cPJ jcl jcl jcl jcl evx jcl -jVa +cPJ jcl jcl jcl @@ -95755,7 +95699,7 @@ tDS tDS thc kIZ -jro +laB thc tDS tDS @@ -95931,8 +95875,8 @@ mua nbj sZq sZq -mZW -mZW +iGp +iGp sZq sZq sZq @@ -96037,7 +95981,7 @@ oNd uuD xXg imT -ojA +cgG ffb xhD bsG @@ -96148,7 +96092,7 @@ kKh tiQ saC plb -xWz +hBN mcE xUx xUx @@ -96158,8 +96102,8 @@ ljA woR sZq sZq -mZW -mZW +iGp +iGp sZq sZq sZq @@ -96171,7 +96115,7 @@ saC saC saC saC -cYn +cRx qSH qSH qSH @@ -96211,7 +96155,7 @@ dEy iss lbA ufs -xvj +wSz sQb lOk mqv @@ -96346,17 +96290,17 @@ uMP uMP jEu nTl -oSX -oSX -oSX -eWn +wpw +wpw +wpw +xdE nTl tiQ fBP fNm get get -gUm +lyb saC saC saC @@ -96402,12 +96346,12 @@ qSH qSH qSH qSH -fdS +duK qSH cpy tOt qSH -cYn +cRx xei hrw iWg @@ -96639,7 +96583,7 @@ dRL dRL dRL rJf -gZv +vCv rJf dRL dRL @@ -97030,7 +96974,7 @@ kca kca kca eGL -dSy +gup eWy tiQ tiQ @@ -97083,7 +97027,7 @@ qSH qSH qSH qSH -cYn +cRx cpy cpy cpy @@ -97131,7 +97075,7 @@ oHQ dkh xRz gdO -vSV +tBF oyB eqe sha @@ -97298,7 +97242,7 @@ sZq sZq sZq sZq -mZW +iGp sZq sZq saC @@ -97390,9 +97334,9 @@ uuD uuD uuD uuD -mFO +jdI rWP -aWd +xRI uuD uuD uuD @@ -97524,8 +97468,8 @@ mZX sZq sZq sZq -mZW -mZW +iGp +iGp sZq sZq lJl @@ -97664,7 +97608,7 @@ wQa dkX rBd nPb -lfA +iFe rVR hIf rqn @@ -97737,10 +97681,10 @@ tiQ tiQ mua mua -pMg -rqT -uVa -pMg +pqc +eXF +jvw +pqc mua tiQ tiQ @@ -97751,7 +97695,7 @@ nAC kBK kBK kBK -nRK +xxu kBK kBK kBK @@ -97761,7 +97705,7 @@ tiQ saC saC qSH -cYn +cRx qSH qSH cpy @@ -97856,7 +97800,7 @@ wrY xvl xvl lot -vdz +wOq xvl xvl xWO @@ -97929,7 +97873,7 @@ saC saC saC tiQ -cZu +vvJ cWL dJN cIV @@ -97960,7 +97904,7 @@ xUx xUx xUx xUx -hOH +dXV mua fol ptc @@ -97978,7 +97922,7 @@ xSN xSN xSN xSN -pMg +pqc xSN xSN xSN @@ -98071,9 +98015,9 @@ cUG cUG cUG cUG -ntk +tlM wao -jwP +xsi cUG cUG cUG @@ -98187,8 +98131,8 @@ jJO kbg kqa rza -qqq -mmj +hxz +awn nUD xUx xUx @@ -98199,13 +98143,13 @@ xUx cNQ cWZ rza -rla +hHU rza rza rza rza -qqq -qqq +hxz +hxz rza rza rza @@ -98217,7 +98161,7 @@ saC saC dJt eCe -cYn +cRx eCe eCe cpy @@ -98404,18 +98348,18 @@ saC xUx xSN xUx -iam +cVZ nUV nUV nUV -tHC +fNC nUV jKm nUV nUV nUV kKD -mnX +fnl xUx xUx woG @@ -98426,15 +98370,15 @@ xUx xUx cWZ xUx -qro +nJS xUx xUx xUx -hOH -hOH -hOH -hOH -hOH +dXV +dXV +dXV +dXV +dXV xUx xUx ybd @@ -98480,7 +98424,7 @@ svf rEc wWV kAj -kcY +azJ tgj svo bqo @@ -98528,7 +98472,7 @@ tum tum pRH gEd -csC +iBd pRH pRH pRH @@ -98571,7 +98515,7 @@ hIf qvA qvA bYx -vzz +jpb hbu qvA qvA @@ -98627,7 +98571,7 @@ fSe fCP dKF uMP -hig +mba xUx xSN xUx @@ -98635,14 +98579,14 @@ mdD woG woG xUx -qro +nJS xUx woG woG woG xUx kLc -pMg +pqc woG woG mua @@ -98653,17 +98597,17 @@ woG woG cWZ xUx -qro +nJS woG woG woG -hOH -hOH -hOH -mee -mee -lpy -eqD +dXV +dXV +dXV +fUs +fUs +qUt +nro ybd saC saC @@ -98847,14 +98791,14 @@ aTK cGd cLb mNm -foO +fqa fuQ fDi fSR ghy eAF fiA -hCU +xwk nUV oyM nUV @@ -98862,14 +98806,14 @@ bOE woG woG xUx -qro +nJS xUx woG woG woG xUx xUx -mCQ +lRu woG woG tiQ @@ -98880,14 +98824,14 @@ woG woG cWZ xUx -hOH -lpy -lpy -lpy -hOH -hOH -hOH -mee +dXV +qUt +qUt +qUt +dXV +dXV +dXV +fUs woG woG xUx @@ -98901,7 +98845,7 @@ qSH qSH qSH qSH -cYn +cRx gwC cpy dRL @@ -99081,22 +99025,22 @@ fSX cUx dKF uMP -hig -xWz +mba +hBN xSN xUx xUx xUx xUx iWy -qro +nJS xUx jKo kbu -xWz +hBN xUx kLs -pMg +pqc xUx mHP woG @@ -99106,18 +99050,18 @@ woG xUx xUx cWZ -hOH -hOH +dXV +dXV xUx xUx xUx mHP -hOH -hOH +dXV +dXV xUx xUx dbs -xWz +hBN ybd saC saC @@ -99308,10 +99252,10 @@ mNm mNm dKF uMP -hig +mba xUx xSN -hOG +wWJ aCJ aCJ aCJ @@ -99322,8 +99266,8 @@ aCJ kbJ aCJ aCJ -hOG -hbj +wWJ +feE lnF xUx xUx @@ -99332,8 +99276,8 @@ woG xUx xUx mEg -fXs -hOG +bsO +wWJ aCJ aCJ aCJ @@ -99351,7 +99295,7 @@ saC bUN saC saC -cYn +cRx qSH qSH qSH @@ -99404,7 +99348,7 @@ gdO gdO psC ayn -wHY +xNw psC gdO tTK @@ -99437,7 +99381,7 @@ nKK fzf sHY wao -jIA +mEn tID uaI wqA @@ -99538,8 +99482,8 @@ uMP tiQ saC saC -hOH -hOH +dXV +dXV xUx iIt saC @@ -99548,8 +99492,8 @@ saC saC xUx xUx -hOH -hOH +dXV +dXV mua lnU lnF @@ -99780,10 +99724,10 @@ tiQ tiQ mua mua -pMg -pMg -pMg -pMg +pqc +pqc +pqc +pqc mua tiQ tiQ @@ -99806,7 +99750,7 @@ saC saC saC eCe -cYn +cRx qSH qSH qSH @@ -99834,7 +99778,7 @@ vGp vGp vGp ncz -kKj +otC pgp umR gMG @@ -99861,7 +99805,7 @@ bHF kpN seA ojW -xoC +hPT gAU lBu ipN @@ -99898,7 +99842,7 @@ xCY bnf cUG cUG -jwP +xsi cUG cUG cUG @@ -100009,7 +99953,7 @@ iIt lFt xUx xUx -xWz +hBN xUx pNo tiQ @@ -100208,7 +100152,7 @@ tiQ tiQ bbL feZ -faK +yiU uMP uMP uMP @@ -100234,7 +100178,7 @@ kKh vrV iIt lFt -hOH +dXV xUx xUx xUx @@ -100251,7 +100195,7 @@ wbR wbR wbR wbR -nhb +oUG wbR wbR tiQ @@ -100461,8 +100405,8 @@ kKh vrV xUx lFt -hOH -mee +dXV +fUs woG xUx pNo @@ -100490,7 +100434,7 @@ saC qSH qSH qSH -cYn +cRx eCe qSH qSH @@ -100584,7 +100528,7 @@ inA xjO hMz fac -gKa +lKH spW uwT uwT @@ -100689,7 +100633,7 @@ vrV xUx lFt xUx -mee +fUs woG xUx pNo @@ -100697,7 +100641,7 @@ tiQ tiQ ndP wbR -nhb +oUG wbR wbR wbR @@ -100714,7 +100658,7 @@ saC saC saC saC -ffG +dbh qSH qSH eCe @@ -100920,21 +100864,21 @@ woG woG xUx pNo -pMg +pqc mUh ngo wbR wbR wbR wbR -sNQ -sNQ +oIZ +oIZ wbR wbR wbR wbR qSH -cYn +cRx saC saC saC @@ -100993,7 +100937,7 @@ gdO gdO gdO ayn -wHY +xNw gdO gdO gdO @@ -101141,20 +101085,20 @@ ktp kKh vrV xUx -lKC +cBd xUx xUx xUx xUx pNo -pMg +pqc mUl wbR wbR wbR wbR -sNQ -sNQ +oIZ +oIZ wbR wbR wbR @@ -101374,7 +101318,7 @@ xUx xUx xUx pNo -hbj +feE mUl wbR wbR @@ -101600,8 +101544,8 @@ xUx xUx xUx xUx -djq -hbj +sWK +feE mUl wbR wbR @@ -101617,10 +101561,10 @@ qSH qSH qSH qSH -cYn +cRx saC saC -cYn +cRx qSH qSH sBX @@ -101826,9 +101770,9 @@ lFt xUx woG woG -hOH -djq -hbj +dXV +sWK +feE mUl wbR wbR @@ -101852,7 +101796,7 @@ qSH qSH qSH qSH -cYn +cRx cpy cpy cpy @@ -101898,12 +101842,12 @@ aoi aoi dcc vxG -aYE +vxT vCG vUj puJ pej -uBd +dFE lDE rnB rnB @@ -102054,7 +101998,7 @@ xUx woG woG xUx -djq +sWK xSN mUl wbR @@ -102064,7 +102008,7 @@ wbR wbR wbR wbR -cYn +cRx qSH qSH qSH @@ -102281,7 +102225,7 @@ xUx woG woG xUx -dDF +iXq xSN mUl wbR @@ -102295,7 +102239,7 @@ tiQ cpy cpy cpy -cYn +cRx qSH qSH qSH @@ -102305,7 +102249,7 @@ qSH qSH qSH qSH -cYn +cRx cpy cpy cpy @@ -102507,11 +102451,11 @@ lFt xUx xUx xUx -xWz -dDF +hBN +iXq xSN mUl -nhb +oUG wbR wbR wbR @@ -102527,7 +102471,7 @@ qSH qSH qSH qSH -cYn +cRx qSH qSH qSH @@ -102978,7 +102922,7 @@ cpy cpy cpy cpy -cYn +cRx qSH qSH qSH @@ -103043,7 +102987,7 @@ cpy cpy rnB rnB -gts +wHn cpy cpy cpy @@ -103210,7 +103154,7 @@ cpy qSH qSH qSH -cYn +cRx cpy cpy cpy @@ -103702,9 +103646,9 @@ dqn dic uDM tth -nPn +eTw lVs -bUy +qBH lAn krH nTp @@ -103928,10 +103872,10 @@ tCR fTm uKQ uKQ -rrB -srE +vuF +fbY qUL -iQt +tRu lAn krH nTp @@ -104156,9 +104100,9 @@ vbk xNu vjs tIF -ifg +rAt gOZ -hZc +cJc lAn krH nTp diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm index ba11b0b8ee3d..20fdbb79731b 100644 --- a/maps/map_files/LV624/LV624.dmm +++ b/maps/map_files/LV624/LV624.dmm @@ -2,11 +2,6 @@ "aaa" = ( /turf/open/space, /area/space) -"aab" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "aac" = ( /turf/closed/shuttle{ dir = 1; @@ -19,10 +14,6 @@ "aah" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) -"aai" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "aaj" = ( /turf/open/gm/coast/west, /area/lv624/ground/caves/north_central_caves) @@ -36,15 +27,6 @@ "aaq" = ( /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, -/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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_central_caves) "aat" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/caves/north_central_caves) @@ -73,12 +55,6 @@ "aaC" = ( /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/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "aaE" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -99,16 +75,6 @@ "aaK" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/north_central_caves) -"aaM" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/xvx_hive/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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "aaO" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/caves/north_central_caves) @@ -151,20 +117,9 @@ "aaZ" = ( /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, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/east_caves) "abb" = ( /turf/open/gm/river, /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" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/caves/north_central_caves) @@ -186,12 +141,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/caves/north_central_caves) -"abj" = ( -/obj/structure/tunnel{ - id = "hole2" - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "abk" = ( /turf/closed/wall/wood, /area/lv624/ground/caves/north_central_caves) @@ -230,16 +179,6 @@ icon_state = "vault" }, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"abv" = ( -/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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "aby" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -254,40 +193,11 @@ /obj/structure/closet/crate/freezer/rations, /turf/open/floor/wood, /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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) "abE" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/gm/dirt, /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_nest, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"abG" = ( -/obj/item/clothing/head/helmet/augment{ - desc = "Part of a strange alien mask. It loosely fits on a human, but just barely."; - name = "alien mask"; - unacidable = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/west_caves) -"abH" = ( -/obj/effect/landmark/good_item, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "abI" = ( /obj/effect/landmark/xeno_spawn, /turf/open/gm/dirt, @@ -302,10 +212,6 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"abQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) "abS" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_central_caves) @@ -335,11 +241,6 @@ icon_state = "wood-broken" }, /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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "acb" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating{ @@ -364,10 +265,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"aci" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "ack" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/tool/kitchen/knife/butcher{ @@ -398,18 +295,9 @@ icon_state = "bar" }, /area/lv624/lazarus/canteen) -"aco" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/strata_grass/layer1, -/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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "acr" = ( /obj/structure/flora/jungle/vines/light_2{ pixel_y = -22 @@ -505,12 +393,6 @@ icon_state = "floor4" }, /area/lv624/ground/barrens/north_east_barrens) -"acK" = ( -/obj/structure/tunnel{ - id = "hole1" - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "acL" = ( /obj/item/tool/shovel, /turf/open/shuttle{ @@ -532,11 +414,6 @@ icon_state = "floor4" }, /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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "acQ" = ( /obj/item/device/flashlight/on, /turf/open/shuttle{ @@ -582,13 +459,6 @@ /obj/effect/decal/cleanable/blood/gibs/xeno/down, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"acY" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "acZ" = ( /obj/structure/closet/secure_closet/freezer/meat, /turf/open/floor/wood{ @@ -616,12 +486,6 @@ icon_state = "floor4" }, /area/lv624/lazarus/crashed_ship_containers) -"ade" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/west_caves) "adf" = ( /obj/effect/landmark/corpsespawner/wygoon, /turf/open/shuttle{ @@ -669,17 +533,18 @@ /obj/structure/largecrate/random/barrel/blue, /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/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_central_caves) "adu" = ( /turf/closed/shuttle{ icon_state = "wall3" }, /area/lv624/lazarus/crashed_ship_containers) +"adv" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "adw" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/gm/dirt, @@ -790,11 +655,6 @@ icon_state = "vault" }, /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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "adQ" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/weapon/gun/rifle/mar40, @@ -834,10 +694,6 @@ icon_state = "asteroidfloor" }, /area/lv624/ground/barrens/north_east_barrens) -"adX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "adY" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -875,12 +731,6 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/wood, /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) "aeg" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed, @@ -1200,11 +1050,6 @@ /obj/effect/landmark/crap_item, /turf/open/floor/plating, /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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "afK" = ( /obj/item/ammo_magazine/rifle, /turf/open/floor/plating, @@ -1329,10 +1174,6 @@ /obj/item/device/flashlight/lantern, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"agm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "ago" = ( /obj/item/attachable/bayonet, /turf/open/floor/plating, @@ -1508,6 +1349,15 @@ /obj/item/attachable/suppressor, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) +"ahj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "ahk" = ( /obj/structure/surface/table/reinforced{ flipped = 1 @@ -1559,17 +1409,9 @@ icon_state = "redyellowfull" }, /area/lv624/ground/barrens/west_barrens/ceiling) -"ahB" = ( -/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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "ahJ" = ( /obj/structure/girder, /turf/open/floor{ @@ -1648,12 +1490,6 @@ icon_state = "redyellowfull" }, /area/lv624/ground/barrens/west_barrens/ceiling) -"aie" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) "aif" = ( /obj/effect/landmark/crap_item, /turf/open/floor{ @@ -1907,12 +1743,6 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/west_jungle) -"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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "ajd" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, @@ -2132,6 +1962,16 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/river, /area/lv624/ground/river/east_river) +"ake" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -5; + pixel_y = -5; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "akh" = ( /obj/item/trash/candy, /obj/structure/machinery/power/apc{ @@ -2250,10 +2090,6 @@ }, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"akL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "akM" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -2551,12 +2387,6 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"amy" = ( -/obj/structure/tunnel{ - id = "hole3" - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "amA" = ( /obj/structure/disposalpipe/broken{ dir = 1 @@ -2587,13 +2417,6 @@ /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"amI" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "amK" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -2693,12 +2516,6 @@ /obj/effect/landmark/lv624/fog_blocker, /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/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "anE" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/floor/plating{ @@ -2721,10 +2538,6 @@ icon_state = "whiteyellowcorner" }, /area/lv624/lazarus/corporate_dome) -"anM" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) "anP" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, @@ -3053,6 +2866,15 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) +"aqg" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "aqi" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, @@ -3189,6 +3011,12 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/river/east_river) +"arm" = ( +/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, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "arn" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/west_jungle) @@ -3271,6 +3099,11 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/lazarus/quartstorage/outdoors) +"arx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "arE" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/west_jungle) @@ -4080,18 +3913,6 @@ /obj/structure/barricade/wooden, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"avp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/south_east_caves) "avq" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ dir = 1; @@ -4851,12 +4672,6 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"axY" = ( -/obj/structure/tunnel{ - id = "hole4" - }, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/quartstorage/outdoors) "axZ" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -4866,10 +4681,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 @@ -5496,6 +5307,15 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) +"aAf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "aAh" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating{ @@ -7940,12 +7760,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_jungle) -"aIA" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ - pixel_x = 8 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "aIB" = ( /obj/structure/closet, /turf/open/floor{ @@ -7953,17 +7767,6 @@ icon_state = "purple" }, /area/lv624/lazarus/sleep_female) -"aIE" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 11; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "aIH" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/clothing/mask/cigarette/cigar, @@ -8363,11 +8166,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"aKn" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/grass/grass2, -/area/lv624/lazarus/yggdrasil) "aKo" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) @@ -8813,10 +8611,6 @@ icon_state = "warning" }, /area/lv624/lazarus/landing_zones/lz1) -"aMr" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/lv624/ground/jungle/east_jungle) "aMt" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass2, @@ -9566,14 +9360,6 @@ icon_state = "chapel" }, /area/lv624/lazarus/chapel) -"aPM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "aPN" = ( /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, @@ -9934,12 +9720,6 @@ icon_state = "whiteyellowfull" }, /area/lv624/lazarus/quart) -"aRo" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/flora/jungle/vines/heavy, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/gm/grass/grass2, -/area/lv624/lazarus/yggdrasil) "aRq" = ( /obj/structure/surface/table/reinforced{ dir = 1; @@ -10442,6 +10222,13 @@ icon_state = "brown" }, /area/lv624/lazarus/comms) +"aTn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "aTo" = ( /obj/structure/machinery/power/geothermal, /obj/structure/lattice{ @@ -10487,12 +10274,6 @@ /obj/item/shard, /turf/open/floor/plating, /area/lv624/lazarus/captain) -"aTy" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) "aTB" = ( /obj/structure/machinery/light/small, /turf/open/floor{ @@ -11109,10 +10890,6 @@ icon_state = "dark" }, /area/lv624/lazarus/engineering) -"aVJ" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_west_jungle) "aVK" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -11852,11 +11629,6 @@ icon_state = "dark" }, /area/lv624/lazarus/engineering) -"aYj" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_west_jungle) "aYm" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 24 @@ -11907,19 +11679,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"aYx" = ( -/obj/structure/tunnel{ - id = "hole4" - }, -/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/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "aYD" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/clothing/glasses/sunglasses, @@ -11959,11 +11718,6 @@ icon_state = "red" }, /area/lv624/lazarus/security) -"aYI" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/lv624/ground/caves/south_west_caves) "aYJ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/trash/chips, @@ -12319,13 +12073,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"bak" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) "bav" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/up, /turf/open/gm/dirt, @@ -12354,6 +12101,16 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"bbA" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -1; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "bbC" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass2, @@ -12404,29 +12161,6 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_central_jungle) -"bcb" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 - }, -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) -"bcU" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) -"bdu" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) "bdL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/metal{ @@ -12451,6 +12185,15 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"beQ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "bfc" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -12458,12 +12201,6 @@ "bfe" = ( /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/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "bgL" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, @@ -12493,25 +12230,26 @@ icon_state = "whiteyellowfull" }, /area/lv624/ground/caves/sand_temple) +"bim" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "bit" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"bje" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 9 +"biR" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -10; + pixel_y = -2; + light_on = 1; + light_range = 1; + light_system = 1 }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "bkG" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/river/central_river) -"bkK" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "bkP" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -12526,6 +12264,22 @@ icon_state = "floor4" }, /area/lv624/lazarus/crashed_ship_containers) +"blX" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) +"bmj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) +"bnd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "bnz" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -12539,12 +12293,6 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"bnM" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "bnX" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner/south_west, @@ -12577,10 +12325,15 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"brC" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) +"bsK" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "bsR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_west_jungle) @@ -12653,17 +12406,12 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"bvj" = ( -/turf/open/auto_turf/strata_grass/layer1, +"bvd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/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) -"bvS" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) -"bvX" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "bwc" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/west_barrens) @@ -12674,12 +12422,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"bxb" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) "byl" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -12716,21 +12458,24 @@ "bAB" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_east_jungle) +"bBi" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "bBk" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"bBs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_central_caves) "bBu" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/jungle/west_jungle) -"bBT" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "bCe" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_east_jungle) @@ -12744,17 +12489,25 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"bEj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +"bDg" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 10 + dir = 9 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) +/area/lv624/ground/caves/west_caves) "bEq" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_barrens) +"bED" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 6; + pixel_y = -8; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "bEU" = ( /obj/structure/showcase{ color = "#95948B"; @@ -12783,10 +12536,27 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"bFR" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "bGb" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/river/west_river) +"bGK" = ( +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) +"bGQ" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) +"bGU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "bGV" = ( /obj/structure/machinery/iv_drip, /turf/open/floor{ @@ -12800,28 +12570,32 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/caves/sand_temple) +"bJf" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "bJz" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"bJQ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) -"bLs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +"bJD" = ( +/obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) +/area/lv624/ground/caves/north_west_caves) "bLE" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) "bMu" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_jungle) +"bMT" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "bNn" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, @@ -12847,15 +12621,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"bOm" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 - }, +"bOx" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) +/area/lv624/ground/caves/south_west_caves) "bOy" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -12870,17 +12639,6 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"bPE" = ( -/obj/structure/flora/bush/ausbushes/pointybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) -"bQz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "bQA" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -12892,6 +12650,13 @@ "bQP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_east_jungle) +"bRv" = ( +/obj/effect/landmark/good_item, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "bRV" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -12929,6 +12694,12 @@ icon_state = "dark" }, /area/lv624/lazarus/corporate_dome) +"bWx" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "bXd" = ( /obj/item/device/flashlight/on, /obj/effect/decal/cleanable/blood/drip, @@ -12937,6 +12708,10 @@ icon_state = "floor4" }, /area/lv624/lazarus/crashed_ship_containers) +"bXA" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "bXP" = ( /obj/structure/flora/jungle/vines/light_3, /obj/item/stack/sheet/wood{ @@ -12945,6 +12720,21 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"bYz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) +"bZa" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -10; + pixel_y = -2; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "bZb" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -12958,6 +12748,10 @@ icon_state = "vault" }, /area/lv624/ground/barrens/east_barrens/ceiling) +"cab" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "cac" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 3 @@ -12967,6 +12761,25 @@ "cag" = ( /turf/open/gm/coast/south, /area/lv624/ground/caves/sand_temple) +"cap" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"caw" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/decal/grass_overlay/grass1{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"caC" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "caH" = ( /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating{ @@ -12985,6 +12798,17 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"ccX" = ( +/turf/open/gm/dirt{ + icon_state = "desert1" + }, +/area/lv624/ground/caves/south_west_caves) +"cdg" = ( +/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, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "cdj" = ( /obj/structure/window_frame/colony, /obj/effect/decal/cleanable/blood/drip, @@ -12992,10 +12816,6 @@ icon_state = "white" }, /area/lv624/lazarus/medbay) -"cdw" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "cdF" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-centralcaves" @@ -13011,11 +12831,6 @@ "cfD" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/quartstorage/outdoors) -"cfL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/grass/grass1/weedable, -/area/lv624/ground/caves/north_east_caves) "cfN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_jungle) @@ -13058,16 +12873,6 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"chi" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "cij" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -13097,13 +12902,13 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"clO" = ( -/obj/effect/landmark/crap_item, +"clU" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/decal/grass_overlay/grass1{ - dir = 4 + dir = 8 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) +/area/lv624/ground/caves/central_caves) "cmf" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -13126,12 +12931,6 @@ icon_state = "squareswood" }, /area/lv624/ground/caves/sand_temple) -"cop" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "cpQ" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) @@ -13150,14 +12949,6 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_west_jungle) -"cqC" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "cqE" = ( /obj/structure/barricade/wooden, /obj/structure/flora/jungle/vines/light_2, @@ -13166,23 +12957,6 @@ icon_state = "warning" }, /area/lv624/lazarus/landing_zones/lz1) -"cqH" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"cqN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"crn" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) "crF" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/heavy, @@ -13192,15 +12966,20 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/south, /area/lv624/ground/river/central_river) -"csM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/central_barrens) "cvk" = ( /obj/structure/fence, /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/west_central_jungle) +"cvM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "cwv" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, @@ -13215,28 +12994,28 @@ icon_state = "desert_dug" }, /area/lv624/ground/barrens/west_barrens) -"cxi" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "cys" = ( /obj/structure/foamed_metal, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_central_jungle) -"czq" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "czu" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"czw" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "cAl" = ( /obj/structure/girder/displaced, /obj/effect/decal/cleanable/blood/oil, /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"cAR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "cAZ" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -13273,11 +13052,6 @@ "cCr" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) -"cCP" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/lv624/ground/caves/south_west_caves) "cDr" = ( /obj/structure/girder, /turf/open/gm/grass/grass1, @@ -13302,12 +13076,6 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"cEi" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) "cEn" = ( /obj/effect/decal/remains/xeno, /turf/open/gm/dirt, @@ -13320,12 +13088,17 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"cHW" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 +"cHE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1{ + dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"cII" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/angel, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "cIL" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -13334,15 +13107,6 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"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/decal/grass_overlay/grass1/inner{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "cJw" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/structure/machinery/light/small{ @@ -13368,6 +13132,12 @@ icon_state = "whiteyellowcorner" }, /area/lv624/lazarus/corporate_dome) +"cLV" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "cMj" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, @@ -13376,12 +13146,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/river/west_river) -"cMG" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) "cNH" = ( /obj/structure/surface/rack, /obj/item/storage/box/beakers, @@ -13407,10 +13171,6 @@ "cPV" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"cQB" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "cQJ" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -13428,6 +13188,12 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/caves/sand_temple) +"cRw" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) "cRT" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -13436,12 +13202,6 @@ /obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"cSL" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ - pixel_x = 8 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "cTi" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -13453,6 +13213,15 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"cWl" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 4; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "cWm" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -13463,10 +13232,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"cWs" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) "cXd" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/jungle/vines/heavy, @@ -13494,14 +13259,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"daY" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, -/obj/effect/decal/grass_overlay/grass1{ +"dbq" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) +/area/lv624/ground/caves/west_caves) "dbA" = ( /obj/structure/xenoautopsy/tank, /turf/open/shuttle{ @@ -13512,12 +13275,20 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"dci" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "ddS" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"dex" = ( +/obj/effect/decal/grass_overlay/grass1/inner, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "deU" = ( /obj/item/circuitboard/airlock{ pixel_x = 12 @@ -13534,12 +13305,16 @@ icon_state = "whiteyellow" }, /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, +"dfD" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +/area/lv624/ground/caves/central_caves) +"dfW" = ( +/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, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "dhp" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, @@ -13550,16 +13325,6 @@ }, /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) -"dhD" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "diZ" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, @@ -13589,18 +13354,9 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"dmT" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "dmZ" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"doe" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "dop" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -13658,13 +13414,6 @@ icon_state = "green" }, /area/lv624/lazarus/hydroponics) -"dtr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "dvf" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -13727,30 +13476,18 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) -"dzM" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) -"dAu" = ( -/obj/effect/landmark/crap_item, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"dBS" = ( +"dzf" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -10; + pixel_y = -2; light_on = 1; light_range = 1; light_system = 1 }, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) -"dCD" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 9 - }, -/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) +"dCF" = ( +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) "dCL" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -13771,6 +13508,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) +"dDM" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "dEc" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_central_jungle) @@ -13793,29 +13536,27 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/sandstone/runed, /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/decal/grass_overlay/grass1{ - dir = 10 +"dFE" = ( +/turf/open/gm/dirt{ + icon_state = "desert3" }, -/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) +"dFQ" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) "dGc" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) +"dGB" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "dGG" = ( /turf/open/gm/coast/beachcorner2/south_west, /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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"dHg" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) "dHo" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -13826,18 +13567,6 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/medbay) -"dIj" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) -"dIu" = ( -/obj/structure/flora/bush/ausbushes/genericbush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) -"dIv" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) "dID" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata{ @@ -13859,10 +13588,6 @@ "dKg" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"dKl" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "dLd" = ( /obj/structure/bookcase, /obj/item/book/manual/research_and_development, @@ -13874,13 +13599,6 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/corporate_dome) -"dLm" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "dLn" = ( /obj/effect/acid_hole, /turf/closed/wall/r_wall, @@ -13891,15 +13609,19 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) -"dLW" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "dLY" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"dMo" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -10; + pixel_y = -2; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "dMF" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -13928,19 +13650,11 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"dOb" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/angel, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "dOf" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"dOA" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "dOC" = ( /obj/structure/kitchenspike, /obj/effect/decal/cleanable/blood, @@ -13948,20 +13662,61 @@ icon_state = "wood-broken" }, /area/lv624/ground/caves/north_central_caves) -"dOQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/queen_spawn, +"dPG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) +/area/lv624/ground/caves/north_west_caves) +"dQl" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) +"dSm" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "dTm" = ( /turf/open/gm/dirt{ icon_state = "desert1" }, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"dTs" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) +"dTz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "dTY" = ( /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) +"dUA" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 11; + pixel_y = -2; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "dVH" = ( /turf/open/gm/dirt, /area/lv624/ground/river/central_river) @@ -13997,20 +13752,10 @@ icon_state = "floor4" }, /area/lv624/lazarus/crashed_ship_containers) -"dWM" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "dXq" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"dYx" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "dYE" = ( /obj/structure/fence, /turf/open/gm/dirt, @@ -14034,14 +13779,11 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"eaI" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 1 - }, +"eax" = ( +/obj/effect/decal/grass_overlay/grass1, +/obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) +/area/lv624/ground/caves/east_caves) "eaJ" = ( /obj/item/stack/sheet/wood{ amount = 2 @@ -14051,18 +13793,14 @@ icon_state = "bot" }, /area/lv624/lazarus/landing_zones/lz1) +"ebh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) "ebS" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/south_nexus_road) -"ecn" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "ecy" = ( /turf/closed/wall/sulaco, /area/lv624/lazarus/crashed_ship_containers) @@ -14076,12 +13814,23 @@ "ecO" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/west_nexus_road) +"ecT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/containers) "edS" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"eep" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "eeW" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -14089,27 +13838,24 @@ "efp" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"eft" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 +"efw" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 6 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) +/area/lv624/ground/caves/north_west_caves) "efX" = ( /turf/open/gm/coast/east, /area/lv624/ground/river/east_river) -"egc" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) -"egU" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, +"egz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) +/area/lv624/ground/caves/south_west_caves) +"egF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "ehy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "Hydroponics" @@ -14141,14 +13887,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) -"ejp" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "ejx" = ( /obj/structure/disposalpipe/segment, /obj/structure/window/framed/colony, @@ -14180,22 +13918,6 @@ icon_state = "green" }, /area/lv624/lazarus/hydroponics) -"elp" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) -"enn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) "eny" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, @@ -14210,10 +13932,6 @@ icon_state = "whitebluecorner" }, /area/lv624/lazarus/medbay) -"eoW" = ( -/obj/structure/flora/bush/ausbushes/pointybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "epG" = ( /obj/structure/showcase, /obj/structure/window/reinforced{ @@ -14244,26 +13962,27 @@ }, /area/lv624/lazarus/medbay) "eqS" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) +/area/lv624/ground/caves/south_central_caves) "erx" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/jungle/west_jungle) "esi" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/barrens/west_barrens) -"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, -/turf/open/floor{ - icon_state = "cult" +"etJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 }, -/area/lv624/ground/caves/south_west_caves) -"etU" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"etL" = ( +/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, +/turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "euh" = ( /obj/effect/landmark/objective_landmark/medium, @@ -14287,6 +14006,16 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"ewp" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 11; + pixel_y = -2; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "exf" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_west_jungle) @@ -14372,12 +14101,13 @@ "eER" = ( /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/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"eFe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) +/area/lv624/ground/caves/central_caves) "eGg" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -14412,6 +14142,13 @@ "eHQ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/north_west_jungle) +"eIx" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "eKs" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, @@ -14423,12 +14160,29 @@ icon_state = "floor4" }, /area/lv624/lazarus/crashed_ship_containers) -"eMe" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 8 +"eLC" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) +/area/lv624/ground/caves/south_central_caves) +"eMh" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"eMQ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"eNd" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "eNK" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/south_east_jungle) @@ -14466,9 +14220,6 @@ /obj/structure/largecrate/random, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) -"eQL" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) "eSg" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -14477,22 +14228,22 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/west_central_jungle) +"eTx" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "eTI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "eTQ" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_east_jungle) -"eVH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "cult" +"eXh" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 5 }, -/area/lv624/ground/caves/south_west_caves) -"eYb" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "eYh" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, @@ -14506,17 +14257,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, /area/lv624/ground/river/east_river) -"eZg" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) -"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) "eZD" = ( /obj/structure/barricade/metal{ health = 250 @@ -14541,19 +14281,16 @@ /obj/structure/flora/jungle/planttop1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) -"fcQ" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -5; - pixel_y = -5; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "fdl" = ( /turf/open/floor, /area/lv624/lazarus/hydroponics) +"fee" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "fem" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -14572,6 +14309,10 @@ icon_state = "green" }, /area/lv624/lazarus/hydroponics) +"fff" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "ffC" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -14635,6 +14376,11 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"fjA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "fjM" = ( /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) @@ -14657,25 +14403,27 @@ icon_state = "asteroidfloor" }, /area/lv624/lazarus/corporate_dome) -"fmV" = ( -/obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) -"fmW" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) +"fog" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "fpn" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/barrens/east_barrens) +"fpL" = ( +/turf/open/gm/dirt{ + icon_state = "desert2" + }, +/area/lv624/ground/caves/west_caves) +"fpN" = ( +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "fqh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) -"fqi" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "fqM" = ( /obj/structure/machinery/power/apc{ start_charge = 0 @@ -14685,12 +14433,6 @@ icon_state = "asteroidwarning" }, /area/lv624/ground/colony/telecomm/sw_lz2) -"frV" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) "fsa" = ( /obj/structure/surface/table, /turf/open/floor{ @@ -14698,12 +14440,6 @@ icon_state = "barber" }, /area/lv624/lazarus/kitchen) -"fsc" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "fsu" = ( /obj/structure/machinery/light{ dir = 8 @@ -14716,6 +14452,14 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/corporate_dome) +"fsO" = ( +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) +"ful" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "fur" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) @@ -14740,6 +14484,13 @@ icon_state = "whiteyellowfull" }, /area/lv624/ground/caves/sand_temple) +"fwi" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) +"fxy" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "fyA" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -14750,6 +14501,13 @@ icon_state = "white" }, /area/lv624/lazarus/corporate_dome) +"fzn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "fzZ" = ( /obj/structure/showcase{ color = "#95948B"; @@ -14777,18 +14535,6 @@ icon_state = "whitebluefull" }, /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) -"fAM" = ( -/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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "fDq" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -14799,18 +14545,10 @@ icon_state = "warning" }, /area/lv624/lazarus/landing_zones/lz1) -"fDE" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "fDO" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/barrens/west_barrens) -"fDT" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/lv624/ground/caves/south_west_caves) "fEn" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, @@ -14819,10 +14557,14 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"fEU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"fEH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) +"fFf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, -/area/lv624/ground/barrens/south_west_barrens) +/area/lv624/ground/caves/south_west_caves) "fFA" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor{ @@ -14851,21 +14593,28 @@ icon_state = "asteroidfloor" }, /area/lv624/ground/colony/telecomm/cargo) -"fGn" = ( -/obj/effect/decal/grass_overlay/grass1, -/obj/structure/flora/bush/ausbushes/pointybush, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "fGO" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"fGQ" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "fHi" = ( /obj/item/ammo_magazine/smg/mp5, /turf/open/floor{ icon_state = "white" }, /area/lv624/lazarus/corporate_dome) +"fHj" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "fHw" = ( /obj/item/device/sentry_computer{ pixel_y = 5 @@ -14881,33 +14630,28 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /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" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor, /area/lv624/lazarus/medbay) -"fIW" = ( -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) +"fIL" = ( +/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, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "fJQ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"fKc" = ( -/obj/structure/flora/bush/ausbushes/ausbush, +"fLz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"fLh" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/angel, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "fMl" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -14927,20 +14671,29 @@ "fPi" = ( /turf/open/gm/coast/north, /area/lv624/ground/caves/sand_temple) +"fPq" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/north_east_barrens) "fPH" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_central_jungle) "fQL" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/west_river) -"fRD" = ( -/obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) -"fRU" = ( -/obj/structure/flora/bush/ausbushes/genericbush, +"fSl" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 6 + }, +/obj/effect/decal/grass_overlay/grass1{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) +"fSQ" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +/area/lv624/ground/caves/south_east_caves) "fSX" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) @@ -14960,14 +14713,21 @@ "fTM" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"fTN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) -"fUj" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, +"fUh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) +"fVn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) +/area/lv624/ground/caves/central_caves) +"fXd" = ( +/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, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "fXr" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -14976,13 +14736,25 @@ /obj/structure/flora/jungle/alienplant1, /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, +"fYg" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 4 + }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"fYG" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, +/area/lv624/ground/caves/central_caves) +"fYs" = ( +/turf/open/gm/dirt{ + icon_state = "desert0" + }, +/area/lv624/ground/caves/south_west_caves) +"fYD" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = -2; + light_on = 1; + light_range = 1; + light_system = 1 + }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) "fZO" = ( @@ -15006,10 +14778,6 @@ icon_state = "warning" }, /area/lv624/lazarus/landing_zones/lz2) -"gbz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/river/west_river) "gcn" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, @@ -15018,16 +14786,6 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_central_jungle) -"gcB" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 6; - pixel_y = -8; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "gcI" = ( /obj/effect/landmark/crap_item, /turf/open/shuttle{ @@ -15042,6 +14800,9 @@ icon_state = "white" }, /area/lv624/lazarus/corporate_dome) +"gda" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "gdr" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, @@ -15060,6 +14821,18 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"gdI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "cult" + }, +/area/lv624/ground/caves/west_caves) +"gdX" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "gef" = ( /obj/item/stack/sheet/wood{ amount = 2 @@ -15078,12 +14851,20 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) +"gff" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "ggl" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"ggK" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "gin" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating{ @@ -15094,17 +14875,26 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"gjJ" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "gkh" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/gm/grass/grass1, /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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) +"gkq" = ( +/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) "glp" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, @@ -15113,16 +14903,6 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"gnt" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -5; - pixel_y = -5; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) "gnx" = ( /turf/open/floor{ icon_state = "white" @@ -15132,15 +14912,15 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_nexus_road) -"gos" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "gpC" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/west_central_jungle) +"gpP" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "gqG" = ( /obj/item/device/assembly/infra, /obj/structure/surface/table/reinforced/prison, @@ -15154,21 +14934,14 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"grW" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, +"grX" = ( +/obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "grZ" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"gsq" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) "gss" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/shuttle{ @@ -15208,23 +14981,29 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/jungle/south_west_jungle/ceiling) -"gvm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "gvr" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "gwP" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "gxd" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/caves/sand_temple) +"gxD" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"gyp" = ( +/obj/effect/decal/remains/xeno, +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "gyP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_west_jungle) @@ -15237,12 +15016,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"gze" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "gzo" = ( /turf/open/gm/dirt{ icon_state = "desert3" @@ -15254,9 +15027,9 @@ icon_state = "dark" }, /area/lv624/lazarus/quartstorage) -"gzH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/strata_grass/layer1, +"gzF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) "gzW" = ( /obj/effect/landmark/hunter_secondary, @@ -15289,6 +15062,10 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"gEj" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "gEn" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/vines/light_2, @@ -15310,10 +15087,40 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"gHC" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "gIe" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"gIo" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) +"gIN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) +"gJa" = ( +/obj/effect/decal/grass_overlay/grass1/inner, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) +"gJq" = ( +/obj/item/clothing/head/helmet/augment{ + desc = "Part of a strange alien mask. It loosely fits on a human, but just barely."; + name = "alien mask"; + unacidable = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "cult" + }, +/area/lv624/ground/caves/west_caves) "gKg" = ( /obj/item/clothing/head/hardhat/orange, /turf/open/floor/plating{ @@ -15333,22 +15140,29 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"gPu" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "gPN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/barrens/south_eastern_barrens) +"gPR" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/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) +"gQn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) +"gQo" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "gQr" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/caves/sand_temple) -"gRk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "gRm" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/north, @@ -15356,12 +15170,12 @@ "gRx" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/south_medbay_road) -"gTj" = ( +"gSG" = ( /obj/effect/decal/grass_overlay/grass1/inner{ - dir = 8 + dir = 9 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) +/area/lv624/ground/caves/south_central_caves) "gTu" = ( /obj/structure/filingcabinet{ density = 0; @@ -15391,21 +15205,27 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"gUj" = ( +/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/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "gUq" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_east_jungle) -"gVw" = ( -/obj/effect/decal/grass_overlay/grass1{ +"gUz" = ( +/obj/effect/decal/grass_overlay/grass1/inner, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) +"gUJ" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"gVR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1/inner, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) +/area/lv624/ground/caves/south_east_caves) "gWf" = ( /obj/structure/surface/rack, /obj/item/stack/sandbags/large_stack{ @@ -15421,16 +15241,14 @@ icon_state = "vault" }, /area/lv624/lazarus/quartstorage) -"gWE" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/south_east_caves) "gWI" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"gWQ" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "gXu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, /turf/open/floor{ @@ -15444,6 +15262,10 @@ icon_state = "warning" }, /area/lv624/lazarus/landing_zones/lz1) +"gXM" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "gYs" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, @@ -15452,16 +15274,11 @@ /obj/structure/prop/brazier, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) -"han" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, +"gZR" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"hav" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "haN" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, @@ -15479,6 +15296,12 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"hbP" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "hbU" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -15493,6 +15316,12 @@ icon_state = "platebotc" }, /area/lv624/lazarus/quartstorage/outdoors) +"hcE" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) "hcN" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -15513,16 +15342,6 @@ icon_state = "asteroidwarning" }, /area/lv624/lazarus/landing_zones/lz2) -"hez" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "heC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -15535,16 +15354,42 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"hfw" = ( +/obj/effect/decal/grass_overlay/grass1/inner, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) +"hfT" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "hfX" = ( /obj/effect/decal/remains/xeno, /obj/effect/decal/cleanable/blood/drip, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"hgo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "hgt" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"hgF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "hgO" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -15555,11 +15400,6 @@ }, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/west_jungle) -"hhs" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "hhv" = ( /turf/open/floor{ dir = 8; @@ -15575,12 +15415,12 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/west_tcomms_road) -"hjo" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 5 +"hjq" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) +/area/lv624/ground/caves/south_west_caves) "hke" = ( /obj/structure/platform/mineral/sandstone/runed, /obj/structure/stairs/perspective{ @@ -15590,25 +15430,20 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"hkT" = ( +"hkq" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"hmq" = ( -/obj/structure/flora/bush/ausbushes/ausbush, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 8 - }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"hmJ" = ( +"hmG" = ( +/obj/effect/landmark/crap_item, /obj/effect/decal/grass_overlay/grass1{ - dir = 8 + dir = 4 }, /turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) +/area/lv624/ground/caves/west_caves) "hmK" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -15618,22 +15453,17 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/west_central_jungle) +"hpv" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "hpG" = ( /turf/open/floor{ dir = 1; icon_state = "bot" }, /area/lv624/ground/caves/north_central_caves) -"hpK" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "hpN" = ( /obj/structure/surface/table, /obj/effect/landmark/good_item, @@ -15652,6 +15482,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) +"hqU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "hrD" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ locked = 1; @@ -15662,6 +15496,15 @@ icon_state = "white" }, /area/lv624/lazarus/corporate_dome) +"hrF" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 4; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/north_east_barrens) "hrG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, @@ -15669,15 +15512,25 @@ "hsc" = ( /turf/closed/wall/r_wall, /area/lv624/ground/river/central_river) -"htV" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 +"hsW" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) +"htK" = ( +/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/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "huH" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/light_3, @@ -15697,13 +15550,6 @@ /obj/effect/decal/remains/xeno, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"hyF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "hyK" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, @@ -15717,10 +15563,6 @@ icon_state = "warning" }, /area/lv624/lazarus/landing_zones/lz1) -"hzR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "hBt" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -15730,19 +15572,10 @@ icon_state = "white" }, /area/lv624/lazarus/corporate_dome) -"hBL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "hDX" = ( /obj/effect/decal/remains/xeno, /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) -"hEe" = ( -/obj/effect/landmark/crap_item, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) "hEl" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, @@ -15794,6 +15627,10 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"hJj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "hJn" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, @@ -15807,10 +15644,6 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) -"hKP" = ( -/obj/effect/decal/grass_overlay/grass1/inner, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) "hLu" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_central_jungle) @@ -15848,16 +15681,26 @@ /obj/item/clothing/under/colonist, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"hNT" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet, +"hOb" = ( +/obj/effect/decal/grass_overlay/grass1/inner, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) +"hPa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) +/area/lv624/ground/caves/south_west_caves) "hPV" = ( /obj/effect/decal/remains/xeno{ pixel_x = 31 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"hQd" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "hQW" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, /obj/structure/reagent_dispensers/water_cooler{ @@ -15868,18 +15711,6 @@ icon_state = "vault" }, /area/lv624/lazarus/quartstorage) -"hRy" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/caves/south_west_caves) -"hRB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) "hRI" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, @@ -15905,10 +15736,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_central_jungle) -"hTR" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) "hUs" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) @@ -15952,9 +15779,24 @@ icon_state = "redyellowfull" }, /area/lv624/ground/barrens/west_barrens/ceiling) +"iaa" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -10; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "iab" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/east_jungle) +"iah" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "iap" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -15981,15 +15823,23 @@ icon_state = "whiteyellowfull" }, /area/lv624/ground/caves/sand_temple) +"iaI" = ( +/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, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_central_caves) "ibS" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"icd" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) +"ibW" = ( +/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, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "idz" = ( /obj/item/weapon/sword{ pixel_x = 6; @@ -16018,24 +15868,10 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"ieN" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "ifk" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"ifr" = ( -/obj/structure/flora/bush/ausbushes/pointybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) "ifF" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/south_east_jungle) @@ -16046,11 +15882,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"igN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "ihS" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/lemon_lime{ @@ -16062,15 +15893,11 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"iiK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/queen_spawn, +"ikr" = ( +/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/east_caves) -"ikA" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) +/area/lv624/ground/caves/south_central_caves) "ilf" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -16078,13 +15905,6 @@ /obj/structure/flora/jungle/planttop1, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) -"ilF" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ - pixel_x = 8 - }, -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "ilO" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/device/flashlight/lantern{ @@ -16095,14 +15915,42 @@ icon_state = "bcarpet09" }, /area/lv624/ground/caves/north_central_caves) +"ilP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "iml" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"inP" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "ioC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/east_jungle) +"ioF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) +"iqz" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) +"ire" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "isF" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -16114,13 +15962,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"isL" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "isR" = ( /obj/effect/landmark/objective_landmark/medium, /obj/structure/largecrate/random, @@ -16135,13 +15976,6 @@ icon_state = "asteroidwarning" }, /area/lv624/lazarus/landing_zones/lz2) -"iuf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "iuO" = ( /turf/open/gm/dirtgrassborder{ icon_state = "desert3" @@ -16173,28 +16007,33 @@ icon_state = "multi_tiles" }, /area/lv624/ground/caves/sand_temple) -"iye" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 +"iyg" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -10; + light_on = 1; + light_range = 1; + light_system = 1 }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) -"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) -"izh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) +"iyN" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "izv" = ( /turf/open/gm/dirt{ icon_state = "desert0" }, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"izU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "izX" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -16218,6 +16057,10 @@ "iAH" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_central_jungle) +"iBe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "iBy" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_jungle) @@ -16227,15 +16070,23 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/medbay) +"iCM" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "iCN" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/west_nexus_road) -"iDX" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) +"iEk" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "iFp" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/barricade/wooden{ @@ -16246,23 +16097,30 @@ icon_state = "warning" }, /area/lv624/lazarus/landing_zones/lz1) -"iGf" = ( +"iGh" = ( /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/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +/area/lv624/ground/caves/north_east_caves) "iGn" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"iGx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +"iGT" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "iHQ" = ( /obj/structure/xenoautopsy/tank/broken, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"iIo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "iIB" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_central_caves) @@ -16289,6 +16147,17 @@ icon_state = "floor4" }, /area/lv624/lazarus/crashed_ship_containers) +"iKu" = ( +/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) +"iKT" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "iLL" = ( /obj/effect/decal/remains/human, /turf/open/gm/dirt, @@ -16307,10 +16176,17 @@ /obj/structure/ore_box, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"iNJ" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, +"iND" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) +"iOv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) +/area/lv624/ground/caves/north_east_caves) "iOz" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -16352,14 +16228,16 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"iTQ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 +"iTt" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 6; + pixel_y = -8; + light_on = 1; + light_range = 1; + light_system = 1 }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/north_east_barrens) "iUm" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -16372,6 +16250,10 @@ icon_state = "desert2" }, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"iWy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/south_west_jungle) "iWC" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, @@ -16382,14 +16264,35 @@ "iXz" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/barrens/west_barrens) +"iXD" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "iXG" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/west_nexus_road) -"iXX" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/angel, +"iXK" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"iXT" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) +/area/lv624/ground/caves/east_caves) "iYJ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, @@ -16398,11 +16301,6 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"iZZ" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_west_jungle) "jaa" = ( /turf/open/gm/dirt{ icon_state = "desert2" @@ -16416,18 +16314,22 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"jbs" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -10; + pixel_y = -2; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "jbB" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"jcn" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "jdi" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_3, @@ -16437,33 +16339,23 @@ "jeL" = ( /turf/closed/wall/r_wall, /area/lv624/ground/caves/north_central_caves) +"jfr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "jga" = ( /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) -"jgj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) -"jgy" = ( +"jgs" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 6 + dir = 9 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) +/area/lv624/ground/caves/south_east_caves) "jgJ" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/south_nexus_road) -"jhj" = ( -/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/decal/grass_overlay/grass1/inner, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "jhG" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -16477,6 +16369,13 @@ "jik" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) +"jiO" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "jiR" = ( /turf/open/floor{ dir = 8; @@ -16487,12 +16386,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) -"jlt" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "jnG" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -16516,21 +16409,24 @@ icon_state = "whitebluecorner" }, /area/lv624/lazarus/corporate_dome) -"jpX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 +"joE" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 1 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"jqr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 +/area/lv624/ground/caves/south_west_caves) +"jrg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv624/ground/caves/south_east_caves) "jrC" = ( /obj/structure/curtain/red, /turf/open/shuttle{ @@ -16555,12 +16451,19 @@ /obj/structure/cargo_container/lockmart/mid, /turf/open/floor, /area/lv624/ground/barrens/containers) -"jvQ" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 8 +"jvD" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) +"jvU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1{ + dir = 4 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) +/area/lv624/ground/caves/north_east_caves) "jwW" = ( /turf/open/floor/plating{ dir = 6; @@ -16617,11 +16520,12 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /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, +"jAG" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 6 + }, /turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) +/area/lv624/ground/barrens/north_east_barrens) "jAK" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -16636,19 +16540,6 @@ icon_state = "floor6" }, /area/lv624/ground/caves/sand_temple) -"jBl" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) -"jCO" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ - pixel_x = 8; - pixel_y = 13 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "jDY" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/limb, /turf/open/gm/dirt, @@ -16664,6 +16555,11 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"jFI" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "jGo" = ( /obj/structure/girder, /obj/structure/foamed_metal, @@ -16673,12 +16569,6 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/dirt, /area/lv624/ground/jungle/south_west_jungle/ceiling) -"jGU" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "jGW" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/central_jungle) @@ -16688,6 +16578,10 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"jHj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/central_barrens) "jHN" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) @@ -16702,16 +16596,16 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"jJg" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) -"jKc" = ( +"jJw" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 8 + }, /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, +/obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) +/area/lv624/ground/caves/south_east_caves) "jKu" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/heavy, @@ -16741,12 +16635,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_central_jungle) -"jLY" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) "jMk" = ( /obj/structure/lattice{ layer = 2.9 @@ -16762,12 +16650,6 @@ icon_state = "warnplate" }, /area/lv624/lazarus/engineering) -"jMD" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "jMH" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -16781,11 +16663,16 @@ icon_state = "floor6" }, /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, +"jNe" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 1 + }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) +/area/lv624/ground/caves/north_east_caves) +"jNy" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "jNR" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/objective_landmark/far, @@ -16843,15 +16730,9 @@ /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) "jRL" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, +/obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +/area/lv624/ground/caves/north_east_caves) "jRM" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, @@ -16883,16 +16764,23 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"jTP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/west_barrens) +"jTE" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "jWM" = ( /obj/structure/girder, /turf/closed/shuttle{ icon_state = "wall3" }, /area/lv624/lazarus/crashed_ship_containers) +"jXk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "jXT" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_east_jungle) @@ -16914,20 +16802,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"jZX" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"kae" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) "kbn" = ( /obj/structure/machinery/sensortower, /turf/open/floor{ @@ -16950,10 +16824,11 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/closed/wall/rock/brown, /area/lv624/ground/river/west_river) -"kdj" = ( -/obj/structure/flora/bush/ausbushes/pointybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) +"keR" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "keS" = ( /turf/open/floor/plating, /area/lv624/ground/barrens/east_barrens/ceiling) @@ -16965,6 +16840,16 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/river/central_river) +"kgz" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) +"khR" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "kip" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, @@ -16980,18 +16865,17 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) -"klD" = ( +"kku" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"kls" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/grass_overlay/grass1{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) -"kmH" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 + dir = 4 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) +/area/lv624/ground/barrens/north_east_barrens) "kmP" = ( /obj/item/stool, /turf/open/gm/dirt, @@ -17003,6 +16887,11 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"knS" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_central_caves) "koh" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirt, @@ -17011,12 +16900,12 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"kpx" = ( +"kpe" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 5 + dir = 10 }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/south_east_caves) "kqx" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/flora/jungle/vines/light_3, @@ -17026,18 +16915,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"krs" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/lv624/ground/caves/south_west_caves) -"ksc" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - icon_state = "fernybush_2"; - pixel_y = 10 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) "ksB" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -17064,12 +16941,10 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) -"ktr" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 - }, +"ktX" = ( +/obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) +/area/lv624/ground/caves/north_west_caves) "kuP" = ( /obj/item/tool/hatchet{ pixel_x = 6; @@ -17100,29 +16975,20 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"kxv" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "kxI" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) "kyc" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/river/central_river) -"kyt" = ( -/obj/effect/decal/grass_overlay/grass1/inner, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "kyN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"kyP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "kza" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -17140,12 +17006,6 @@ icon_state = "green" }, /area/lv624/lazarus/hydroponics) -"kzn" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) "kzu" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, @@ -17154,10 +17014,6 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"kzw" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "kzE" = ( /obj/structure/cargo_container/lockmart/right, /turf/open/floor, @@ -17189,10 +17045,24 @@ icon_state = "vault" }, /area/lv624/lazarus/quartstorage) -"kCD" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, +"kBh" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 6; + pixel_y = -8; + light_on = 1; + light_range = 1; + light_system = 1 + }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"kDe" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) +"kDr" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "kFx" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -17212,11 +17082,18 @@ icon_state = "desert3" }, /area/lv624/ground/barrens/central_barrens) +"kHP" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "kHU" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) -"kIM" = ( -/obj/structure/flora/bush/ausbushes/reedbush, +"kIx" = ( +/obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) "kJm" = ( @@ -17230,35 +17107,42 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"kKa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) -"kLl" = ( +"kJT" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) +"kKT" = ( +/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) +"kLK" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) +/area/lv624/ground/caves/west_caves) "kLP" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"kML" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "kNm" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"kPj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1/inner, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) +"kPH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "kPL" = ( /obj/structure/fence, /turf/open/floor{ @@ -17317,20 +17201,29 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/south_medbay_road) +"kTX" = ( +/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) "kUr" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_tcomms_road) -"kVG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) +"kUz" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "kVP" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"kWn" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "kWH" = ( /turf/open/floor{ icon_state = "dark" @@ -17342,16 +17235,25 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"kWV" = ( -/obj/effect/decal/grass_overlay/grass1/inner, +"kWK" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 1 + }, /turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) +/area/lv624/ground/barrens/north_east_barrens) "kWX" = ( /turf/open/floor{ dir = 8; icon_state = "asteroidwarning" }, /area/lv624/ground/colony/telecomm/sw_lz2) +"kXg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) "kXE" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/north, @@ -17389,11 +17291,16 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/corporate_dome) -"lav" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" +"laT" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -5; + pixel_y = -5; + light_on = 1; + light_range = 1; + light_system = 1 }, -/area/lv624/ground/caves/west_caves) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "laY" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, @@ -17401,23 +17308,19 @@ "lbd" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/barrens/west_barrens) -"lbt" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 +"lbf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1{ + dir = 4 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) +/area/lv624/ground/caves/north_east_caves) "lbX" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) -"ldi" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) "ldB" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -17435,24 +17338,21 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"lhE" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) -"lhH" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, +"lgL" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"liI" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/area/lv624/ground/caves/south_east_caves) +"lhC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) +"lip" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) +/area/lv624/ground/barrens/north_east_barrens) "lju" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/central_river) @@ -17464,11 +17364,6 @@ /obj/structure/inflatable/popped/door, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"lkq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "lkF" = ( /obj/item/stack/sheet/wood{ amount = 2 @@ -17480,10 +17375,10 @@ icon_state = "warning" }, /area/lv624/lazarus/landing_zones/lz1) -"lnr" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) +"lmk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/gm/grass/grass1, +/area/lv624/lazarus/quartstorage/outdoors) "lnK" = ( /obj/structure/flora/bush/ausbushes/genericbush, /obj/effect/landmark/nightmare{ @@ -17499,16 +17394,18 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/south_east_jungle) -"loP" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 8 +"lpp" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 6 }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) +"lpq" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 10 + dir = 4 }, -/obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) +/area/lv624/ground/caves/east_caves) "lpV" = ( /turf/open/floor/plating{ icon_state = "platebotc" @@ -17533,6 +17430,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"lsi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "lsq" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/plantbot1, @@ -17550,6 +17454,12 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_tcomms_road) +"lug" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "lxr" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/south, @@ -17572,34 +17482,21 @@ "lyS" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/quartstorage) -"lyZ" = ( -/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, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) -"lzf" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "lzE" = ( /turf/open/gm/dirt{ icon_state = "desert0" }, /area/lv624/ground/barrens/west_barrens) +"lAi" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "lAX" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"lBl" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "lBq" = ( /obj/structure/barricade/handrail/strata, /obj/structure/barricade/handrail/strata{ @@ -17620,6 +17517,11 @@ "lBw" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) +"lCn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "lCG" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood/gibs/robot/down, @@ -17682,16 +17584,13 @@ icon_state = "dark" }, /area/lv624/lazarus/quartstorage) -"lIL" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "lIU" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/south_central_jungle) +"lJd" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "lJm" = ( /obj/structure/showcase{ color = "#95948B"; @@ -17728,16 +17627,6 @@ icon_state = "warning" }, /area/lv624/lazarus/landing_zones/lz2) -"lKl" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 6; - pixel_y = -8; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "lKF" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/containers) @@ -17745,23 +17634,12 @@ /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"lLK" = ( -/obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "lLO" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"lLU" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/obj/structure/flora/bush/ausbushes/genericbush, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "lNe" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor{ @@ -17769,24 +17647,25 @@ icon_state = "whitebluecorner" }, /area/lv624/lazarus/corporate_dome) -"lNG" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) "lPJ" = ( /turf/open/gm/dirtgrassborder{ icon_state = "desert" }, /area/lv624/ground/barrens/south_eastern_barrens) +"lPK" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "lQC" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) +"lQO" = ( +/mob/living/simple_animal/bat, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "lRd" = ( /obj/item/stack/sheet/wood{ amount = 2 @@ -17796,11 +17675,25 @@ icon_state = "warning" }, /area/lv624/lazarus/landing_zones/lz1) +"lRv" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) +"lRw" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "lRy" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"lRS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "lSs" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -17816,23 +17709,15 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/corporate_dome) -"lSA" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) -"lSN" = ( -/obj/effect/decal/grass_overlay/grass1/inner, -/obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) -"lTv" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 1 +"lSu" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) +"lSB" = ( +/turf/open/gm/dirt{ + icon_state = "desert3" }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) +/area/lv624/ground/caves/west_caves) "lTZ" = ( /obj/item/tool/shovel, /turf/open/gm/dirt, @@ -17854,25 +17739,10 @@ /obj/structure/prop/brazier/torch, /turf/closed/wall/rock/brown, /area/lv624/ground/caves/sand_temple) -"lUQ" = ( -/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/decal/grass_overlay/grass1/inner{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) -"lWh" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) -"lWl" = ( -/obj/effect/decal/grass_overlay/grass1/inner, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) +"lUX" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "lWw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -17885,12 +17755,6 @@ "lWO" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_west_jungle) -"lYt" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "lYB" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, @@ -17911,6 +17775,11 @@ icon_state = "bot" }, /area/lv624/lazarus/landing_zones/lz1) +"mae" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "maE" = ( /obj/item/stack/sheet/wood{ amount = 2 @@ -17921,6 +17790,10 @@ icon_state = "bot" }, /area/lv624/lazarus/landing_zones/lz1) +"mbc" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "mbp" = ( /obj/structure/flora/jungle/alienplant1{ layer = 4.13; @@ -17938,33 +17811,25 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"mca" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 +"mbU" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "mdQ" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/west_caves) +"meE" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "meP" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"mfn" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) "mfu" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -17979,12 +17844,6 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"mgi" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) "mgs" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 8; @@ -17995,6 +17854,12 @@ icon_state = "dark" }, /area/lv624/lazarus/corporate_dome) +"mgE" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "mhZ" = ( /turf/open/shuttle{ icon_state = "floor6" @@ -18052,10 +17917,19 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"mlt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass2, +/area/lv624/lazarus/yggdrasil) "mmu" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) +"mnl" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "mnr" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/east_jungle) @@ -18096,11 +17970,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/east_river) -"mrg" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "mrQ" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 @@ -18110,6 +17979,12 @@ "msd" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/caves/sand_temple) +"msr" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "msV" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, @@ -18121,6 +17996,12 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/medbay) +"mud" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv624/ground/barrens/west_barrens/ceiling) "mun" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -18161,6 +18042,12 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) +"mxu" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) "mxW" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/flora/jungle/vines/light_2, @@ -18171,6 +18058,15 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"myK" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_west_jungle) +"mAd" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "mBL" = ( /turf/open/floor{ dir = 1; @@ -18193,36 +18089,31 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/corporate_dome) -"mEo" = ( +"mCB" = ( /obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 + dir = 1 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "mEw" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_jungle) +"mFf" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "mFu" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/north_nexus_road) -"mFZ" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "mGG" = ( /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) -"mHk" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "mHM" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/colony/south_medbay_road) @@ -18237,10 +18128,6 @@ icon_state = "whiteyellowcorner" }, /area/lv624/lazarus/corporate_dome) -"mJF" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "mKf" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/west_nexus_road) @@ -18250,10 +18137,21 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"mLv" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/strata_grass/layer1, +"mLc" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) +"mLx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"mLP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/river/west_river) "mMq" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -18273,12 +18171,12 @@ icon_state = "vault" }, /area/lv624/lazarus/quartstorage) -"mNl" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 +"mME" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 1 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "mNz" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -18295,10 +18193,6 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"mOL" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "mPt" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -18322,6 +18216,16 @@ icon_state = "dark" }, /area/lv624/lazarus/corporate_dome) +"mRn" = ( +/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, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) +"mRQ" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "mSo" = ( /turf/open/gm/dirt{ icon_state = "desert1" @@ -18375,10 +18279,6 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/corporate_dome) -"mVr" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "mVK" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -18389,13 +18289,43 @@ "mWe" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/south_west_jungle) -"mWA" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) +"mWH" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) +"mXo" = ( +/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) +"mXK" = ( +/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/xvx_hive/xeno_wall, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "mXR" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_nexus_road) +"mYw" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"mYx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "mZf" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -18413,6 +18343,13 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz1) +"ncy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "ncV" = ( /obj/structure/machinery/door_control{ id = "garage_lv"; @@ -18423,22 +18360,10 @@ icon_state = "asteroidwarning" }, /area/lv624/lazarus/landing_zones/lz2) -"ndk" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "ndK" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) -"ner" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "nfD" = ( /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, @@ -18453,18 +18378,15 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"nha" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "nhi" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"niy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "niF" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, @@ -18505,6 +18427,11 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"nlJ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_central_caves) "nmO" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -18513,9 +18440,22 @@ /obj/structure/prop/brazier, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"nnH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "nnL" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/barrens/east_barrens) +"noN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "npf" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/jungle/west_jungle) @@ -18524,6 +18464,12 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"nqg" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "nqt" = ( /obj/item/device/analyzer/plant_analyzer, /turf/open/floor{ @@ -18538,6 +18484,10 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"nqK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "nrb" = ( /turf/open/floor{ dir = 1; @@ -18557,14 +18507,15 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"nrR" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - light_on = 1; - light_range = 1; - light_system = 1 - }, +"nrZ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/corpsespawner/scientist, /turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) +"nsb" = ( +/obj/effect/decal/grass_overlay/grass1/inner, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) "nsk" = ( /turf/open/gm/dirt, @@ -18600,6 +18551,10 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"nuI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "nuU" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass2, @@ -18656,6 +18611,11 @@ icon_state = "wood-broken6" }, /area/lv624/ground/caves/north_central_caves) +"nxj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/grass/grass1/weedable, +/area/lv624/ground/caves/north_east_caves) "nxu" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor{ @@ -18663,17 +18623,6 @@ icon_state = "whiteyellowcorner" }, /area/lv624/lazarus/corporate_dome) -"nys" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) -"nzw" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "nAR" = ( /obj/item/stack/sheet/wood{ amount = 2 @@ -18744,6 +18693,12 @@ icon_state = "green" }, /area/lv624/lazarus/hydroponics) +"nEO" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) "nHj" = ( /obj/item/tool/extinguisher, /turf/open/floor{ @@ -18751,13 +18706,10 @@ icon_state = "green" }, /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_nest, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) +"nHA" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "nHE" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/genericbush, @@ -18792,6 +18744,12 @@ icon_state = "desert0" }, /area/lv624/ground/barrens/east_barrens) +"nIB" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "nIH" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -18813,6 +18771,13 @@ icon_state = "bar" }, /area/lv624/lazarus/canteen) +"nJc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "nJF" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -18825,12 +18790,6 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"nLF" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "nLH" = ( /obj/structure/prop/tower, /turf/open/floor{ @@ -18842,6 +18801,12 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"nMc" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "nMu" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor{ @@ -18852,20 +18817,20 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) -"nNu" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 6; - pixel_y = -8; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) "nNw" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/west_nexus_road) +"nNQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "cult" + }, +/area/lv624/ground/caves/east_caves) +"nOA" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "nOD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -18893,16 +18858,6 @@ icon_state = "squareswood" }, /area/lv624/ground/caves/sand_temple) -"nQH" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 6; - pixel_y = -8; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "nRb" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -18914,19 +18869,23 @@ icon_state = "whiteyellowfull" }, /area/lv624/ground/caves/sand_temple) -"nRA" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ - pixel_x = 8; - pixel_y = 13 +"nRj" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "nSg" = ( /obj/structure/window/framed/colony, /turf/open/floor{ icon_state = "white" }, /area/lv624/lazarus/medbay) +"nSL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "nSR" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -18940,6 +18899,10 @@ icon_state = "multi_tiles" }, /area/lv624/ground/caves/sand_temple) +"nUa" = ( +/obj/effect/landmark/crap_item, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/north_east_barrens) "nUs" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -18970,10 +18933,6 @@ icon_state = "white" }, /area/lv624/lazarus/corporate_dome) -"nUZ" = ( -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "nVC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -18995,10 +18954,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"nWe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) "nWw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -19018,6 +18973,12 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) +"nYs" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "nYx" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/light_3, @@ -19053,6 +19014,12 @@ /obj/structure/curtain/red, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"oca" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "ock" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass2, @@ -19104,24 +19071,22 @@ icon_state = "squareswood" }, /area/lv624/ground/caves/sand_temple) -"ofg" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/lv624/ground/caves/west_caves) "ofv" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"ogJ" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "ogM" = ( /turf/open/gm/dirt, /area/lv624/ground/river/east_river) +"ogP" = ( +/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) +"ogQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "ogR" = ( /turf/open/floor/plating{ dir = 9; @@ -19132,21 +19097,6 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"oha" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"ohf" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ - pixel_x = 8; - pixel_y = 13 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "ohE" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/snacks/tomatomeat, @@ -19158,11 +19108,27 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"ohO" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "oiv" = ( /obj/effect/decal/remains/human, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) +"oiH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "omu" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, @@ -19170,10 +19136,6 @@ "omK" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/barrens/west_barrens) -"onP" = ( -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "onU" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/west_caves) @@ -19181,6 +19143,12 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirt, /area/lv624/ground/jungle/south_east_jungle) +"ooD" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "ooM" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -19210,24 +19178,22 @@ icon_state = "asteroidwarning" }, /area/lv624/ground/colony/telecomm/cargo) -"osf" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 11; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 +"osi" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"otl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) "oua" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) +"ouQ" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "ovg" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -19238,26 +19204,31 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"ovk" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "ovw" = ( /obj/structure/inflatable/popped, /obj/item/stack/sheet/wood, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"owe" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ - pixel_x = 8 - }, +"owy" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +/area/lv624/ground/caves/central_caves) "owQ" = ( /turf/open/gm/coast/east, /area/lv624/ground/barrens/east_barrens) -"owZ" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 - }, -/turf/open/gm/dirt, +"oxO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"oxV" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "oxY" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -19296,6 +19267,16 @@ icon_state = "asteroidfloor" }, /area/lv624/lazarus/corporate_dome) +"oyZ" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) +"ozo" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "oAD" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -19308,19 +19289,30 @@ }, /turf/open/gm/grass/grass1, /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" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-medbay" }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"oDE" = ( -/obj/effect/decal/grass_overlay/grass1, +"oBm" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) +"oBK" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) +"oCZ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "oDY" = ( @@ -19360,17 +19352,18 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"oFf" = ( -/turf/open/gm/grass/grass1, -/area/lv624/ground/river/east_river) -"oFJ" = ( +"oFc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 8 +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1{ + dir = 4 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) +/area/lv624/ground/caves/west_caves) +"oFf" = ( +/turf/open/gm/grass/grass1, +/area/lv624/ground/river/east_river) "oFO" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 @@ -19397,6 +19390,18 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_tcomms_road) +"oGD" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) +"oGV" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "oHu" = ( /turf/open/gm/coast/north, /area/lv624/ground/river/east_river) @@ -19410,6 +19415,10 @@ icon_state = "asteroidplating" }, /area/lv624/ground/caves/north_central_caves) +"oIP" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/angel, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "oJL" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, @@ -19425,10 +19434,20 @@ /obj/structure/fence, /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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) +"oLs" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) +"oNx" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -5; + pixel_y = -5; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "oNJ" = ( /obj/structure/safe{ spawnkey = 0 @@ -19474,10 +19493,16 @@ icon_state = "loadingarea" }, /area/lv624/lazarus/landing_zones/lz1) -"oQm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"oRh" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +/area/lv624/ground/caves/west_caves) "oRH" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_east_jungle) @@ -19517,6 +19542,12 @@ "oTt" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/central_river) +"oTu" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "oTx" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -19553,6 +19584,15 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"oXi" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "oXl" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_west_jungle) @@ -19567,9 +19607,29 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) +"oYF" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 6; + pixel_y = -8; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "oYM" = ( /turf/open/gm/coast/south, /area/lv624/ground/barrens/west_barrens) +"oZK" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) +"oZO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "pab" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -19634,6 +19694,10 @@ "pcA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/south_central_jungle) +"pcI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/east_barrens) "pfl" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/chef, @@ -19647,10 +19711,6 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) -"pgc" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) "pgf" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -19663,6 +19723,10 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/medbay) +"pgA" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "pgD" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor{ @@ -19684,14 +19748,10 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"pkU" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ - pixel_x = 8 +"ple" = ( +/turf/open/gm/dirt{ + icon_state = "desert0" }, -/turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) "plf" = ( /obj/structure/flora/jungle/vines/heavy, @@ -19716,6 +19776,12 @@ /obj/structure/largecrate/random, /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) +"pnx" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "por" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 3 @@ -19731,13 +19797,6 @@ icon_state = "white" }, /area/lv624/lazarus/corporate_dome) -"poX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "ppR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/colony/north_nexus_road) @@ -19785,11 +19844,6 @@ icon_state = "floor4" }, /area/lv624/lazarus/crashed_ship_containers) -"ptm" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/lv624/ground/caves/west_caves) "ptr" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, @@ -19797,6 +19851,12 @@ "puo" = ( /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) +"puQ" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "pwq" = ( /turf/open/floor{ icon_state = "white" @@ -19809,6 +19869,9 @@ icon_state = "squareswood" }, /area/lv624/ground/caves/sand_temple) +"pwy" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "pxc" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_west, @@ -19817,6 +19880,10 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"pxy" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/angel, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "pyG" = ( /turf/open/floor{ icon_state = "whiteyellowcorner" @@ -19839,18 +19906,17 @@ icon_state = "white" }, /area/lv624/lazarus/medbay) -"pAE" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "pBk" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"pBH" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) +"pDg" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/decal/grass_overlay/grass1/inner, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "pDh" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -19873,6 +19939,10 @@ icon_state = "whiteyellowfull" }, /area/lv624/ground/caves/sand_temple) +"pDm" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "pDt" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) @@ -19885,16 +19955,24 @@ icon_state = "desert0" }, /area/lv624/ground/caves/sand_temple) +"pEh" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "pEl" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"pET" = ( +"pEr" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) +/area/lv624/ground/caves/east_caves) +"pEE" = ( +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "pEV" = ( /turf/open/floor/strata{ color = "#5e5d5d"; @@ -19904,24 +19982,21 @@ "pFe" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_east_jungle) -"pFB" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, +"pFk" = ( +/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, /turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) +/area/lv624/ground/caves/central_caves) +"pFL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "pGD" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"pGL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "pHn" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, @@ -19937,12 +20012,6 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/corporate_dome) -"pIl" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "pIy" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, @@ -19951,14 +20020,18 @@ /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"pIB" = ( -/obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "pIC" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"pIL" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) +"pJi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "pJr" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -19967,6 +20040,12 @@ /obj/effect/landmark/hunter_secondary, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) +"pKi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor{ + icon_state = "cult" + }, +/area/lv624/ground/caves/south_west_caves) "pKm" = ( /turf/open/floor{ icon_state = "asteroidwarning"; @@ -19988,15 +20067,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/west_nexus_road) -"pLv" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) "pMM" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/east, @@ -20015,6 +20085,13 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) +"pNW" = ( +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "pOC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_west_jungle) @@ -20043,10 +20120,6 @@ icon_state = "white" }, /area/lv624/lazarus/corporate_dome) -"pQV" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) "pRe" = ( /obj/item/storage/firstaid/adv/empty, /obj/structure/machinery/door_control{ @@ -20093,25 +20166,25 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"pRD" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "pRT" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/sand_temple) -"pSe" = ( +"pRV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/grass_overlay/grass1{ - dir = 5 + dir = 10 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) +/area/lv624/ground/caves/east_caves) "pSt" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/colony/west_nexus_road) +"pTj" = ( +/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) "pTk" = ( /obj/item/bedsheet/medical, /obj/effect/landmark/objective_landmark/medium, @@ -20119,18 +20192,37 @@ icon_state = "white" }, /area/lv624/lazarus/medbay) +"pTE" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) +"pTO" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) +"pUf" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "pUm" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/east_caves) -"pVZ" = ( +"pWk" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; + pixel_x = 4; light_on = 1; light_range = 1; light_system = 1 }, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) +/area/lv624/ground/caves/south_west_caves) "pXI" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, @@ -20145,6 +20237,19 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"pYC" = ( +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"pYG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "pYJ" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, @@ -20152,31 +20257,28 @@ "pZb" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/north_east_caves) +"pZu" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "pZM" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"qaE" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/landmark/queen_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "qcz" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, /area/lv624/ground/river/east_river) +"qcR" = ( +/turf/open/gm/dirt{ + icon_state = "desert_dug" + }, +/area/lv624/ground/caves/west_caves) "qcX" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"qdx" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "qdQ" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -20209,25 +20311,9 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz2) -"qfK" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "qgA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_east_jungle) -"qhl" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) -"qiL" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) "qjf" = ( /turf/open/floor, /area/lv624/ground/barrens/containers) @@ -20235,6 +20321,13 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"qkN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "qns" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, @@ -20257,14 +20350,6 @@ "qqJ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) -"qrH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) "qsM" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -20274,18 +20359,15 @@ "qtj" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_central_jungle) -"qtK" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "qtS" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"quH" = ( +/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) "quK" = ( /obj/structure/showcase{ color = "#95948B"; @@ -20342,6 +20424,13 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"qyA" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "qAc" = ( /obj/structure/platform/mineral/sandstone/runed, /turf/open/floor/sandstone/runed, @@ -20466,12 +20555,6 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"qJE" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "qKl" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/north_nexus_road) @@ -20485,6 +20568,17 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) +"qLd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) +"qLv" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "qMX" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, @@ -20495,6 +20589,13 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) +"qPe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "qPx" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, @@ -20514,34 +20615,22 @@ icon_state = "whiteyellowfull" }, /area/lv624/ground/caves/sand_temple) -"qPY" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) -"qRj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) +"qQp" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "qSn" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"qSG" = ( -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) -"qSS" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 +"qSp" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 6 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) +/area/lv624/ground/caves/west_caves) "qSZ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -20564,32 +20653,13 @@ "qUM" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/west_central_jungle) -"qVh" = ( -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) -"qVi" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) -"qVN" = ( -/obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) "qWf" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/colony/west_nexus_road) -"qWI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1/inner, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) +"qXc" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "qXo" = ( /obj/structure/surface/rack, /obj/item/explosive/grenade/incendiary/molotov, @@ -20606,10 +20676,10 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"qYS" = ( +"qYX" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) +/area/lv624/ground/caves/west_caves) "qZv" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, @@ -20632,22 +20702,24 @@ icon_state = "desert1" }, /area/lv624/ground/barrens/west_barrens) -"rbs" = ( +"rbw" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 10 + dir = 6 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"rby" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) +/area/lv624/ground/caves/south_west_caves) "rck" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"rct" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "rcy" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, @@ -20698,26 +20770,14 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) -"rgj" = ( -/obj/effect/decal/remains/xeno, -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "rgQ" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"rhi" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 - }, +"rhk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +/area/lv624/ground/caves/south_central_caves) "rit" = ( /turf/open/gm/coast/south, /area/lv624/ground/river/central_river) @@ -20728,6 +20788,16 @@ icon_state = "green" }, /area/lv624/lazarus/hydroponics) +"rkL" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) +"rll" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "rmg" = ( /obj/structure/machinery/power/monitor, /obj/structure/foamed_metal, @@ -20738,37 +20808,25 @@ icon_state = "dark" }, /area/lv624/lazarus/engineering) -"rmt" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"rmW" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 11; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "rox" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"roQ" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, +"roO" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) +/area/lv624/ground/caves/north_west_caves) "rpx" = ( -/obj/effect/decal/grass_overlay/grass1, +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) +"rpz" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/grass_overlay/grass1{ + dir = 4 + }, /turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) +/area/lv624/ground/caves/central_caves) "rpR" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/floor{ @@ -20780,6 +20838,16 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"rqA" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"rqO" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "rrz" = ( /obj/structure/curtain/red, /obj/effect/decal/cleanable/blood/drip, @@ -20808,6 +20876,21 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"rvj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) +"rvK" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "rvL" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass2, @@ -20820,15 +20903,6 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /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, -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "rwB" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 @@ -20840,11 +20914,6 @@ icon_state = "desert_dug" }, /area/lv624/ground/barrens/south_eastern_barrens) -"ryp" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "ryJ" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -20859,12 +20928,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"rze" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "rzT" = ( /obj/structure/flora/jungle/vines/light_3, /obj/item/stack/sheet/wood{ @@ -20887,16 +20950,6 @@ icon_state = "asteroidfloor" }, /area/lv624/lazarus/corporate_dome) -"rAU" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 6; - pixel_y = -8; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) "rBF" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -20915,18 +20968,33 @@ "rCV" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_central_jungle) -"rER" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 +"rEB" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 9 }, -/obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) +/area/lv624/ground/caves/central_caves) +"rEJ" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 11; + pixel_y = -2; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "rGd" = ( /obj/structure/girder/displaced, /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"rGr" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "rGu" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -20940,54 +21008,30 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"rGE" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 6; - pixel_y = -8; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) "rGW" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) -"rGZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "rHp" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"rHV" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) -"rIc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"rIm" = ( -/obj/effect/decal/grass_overlay/grass1/inner, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) +"rIf" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "rIq" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"rID" = ( +"rIS" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, /obj/effect/decal/grass_overlay/grass1{ - dir = 5 + dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) @@ -21001,17 +21045,26 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) +"rJT" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) +"rKO" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "rKQ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"rKR" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/obj/structure/flora/jungle/vines/light_2, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_west_jungle) +"rMN" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "rMR" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -21029,17 +21082,29 @@ icon_state = "dark" }, /area/lv624/lazarus/corporate_dome) +"rOs" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "rON" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /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_nest, +"rPl" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"rPQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_west_barrens) +"rQb" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "rQf" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal{ @@ -21074,6 +21139,11 @@ "rSy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/east_jungle) +"rTA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "rTG" = ( /obj/structure/machinery/colony_floodlight, /obj/structure/flora/jungle/vines/light_3, @@ -21083,13 +21153,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_tcomms_road) -"rTT" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"rUX" = ( -/obj/structure/flora/bush/ausbushes/genericbush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "rVH" = ( /obj/structure/transmitter/colony_net{ phone_category = "Lazarus Landing"; @@ -21102,12 +21165,6 @@ icon_state = "brown" }, /area/lv624/lazarus/comms) -"rWs" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "rWW" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/river, @@ -21117,11 +21174,15 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"rYe" = ( +"rYw" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "rYA" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -21132,6 +21193,10 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/gm/river, /area/lv624/ground/caves/west_caves) +"rZb" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "rZL" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/mar40, @@ -21154,12 +21219,6 @@ icon_state = "white" }, /area/lv624/lazarus/corporate_dome) -"scs" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "sdh" = ( /obj/structure/barricade/sandbags/wired, /turf/open/floor/wood, @@ -21193,16 +21252,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/north_nexus_road) -"sgU" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) -"shb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "shq" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -21220,10 +21269,21 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) +"siI" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "slW" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/caves/sand_temple) +"smv" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "smx" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/west_central_jungle) @@ -21233,15 +21293,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"snc" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "sne" = ( /obj/item/ammo_casing/bullet{ icon_state = "cartridge_10_1" @@ -21263,25 +21314,13 @@ icon_state = "cult" }, /area/lv624/lazarus/armory) -"soz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) -"soY" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "spm" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/barrens/east_barrens) -"spK" = ( -/obj/effect/decal/grass_overlay/grass1/inner, -/turf/open/gm/dirt, +"spD" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) "sqj" = ( /turf/open/gm/river, @@ -21312,24 +21351,24 @@ icon_state = "whiteyellowfull" }, /area/lv624/ground/caves/sand_temple) -"srn" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "ssc" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/east_central_jungle) +"ssk" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "ssK" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"stt" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) +"suq" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "suv" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, @@ -21338,6 +21377,11 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"swc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/random/burst, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "swR" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -21347,21 +21391,13 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"sxl" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "sxn" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/barrens/south_eastern_barrens) -"sxo" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, +"sxQ" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) +/area/lv624/ground/caves/south_west_caves) "sxY" = ( /obj/structure/surface/rack, /obj/item/moneybag, @@ -21375,20 +21411,14 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/river, /area/lv624/ground/barrens/east_barrens) +"szm" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/north_east_barrens) "szy" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) -"sAh" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) -"sAI" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "sBg" = ( /obj/structure/machinery/vending/cigarette, /obj/structure/machinery/light{ @@ -21407,9 +21437,6 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"sBY" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) "sCg" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -21435,27 +21462,20 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"sDm" = ( +/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, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "sDE" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"sET" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "sFc" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"sFD" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "sFY" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Workshop Storage"; @@ -21473,6 +21493,19 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"sHf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) +"sHu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor{ + icon_state = "cult" + }, +/area/lv624/ground/caves/south_west_caves) "sHT" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, @@ -21509,42 +21542,18 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"sLT" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) -"sLU" = ( -/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/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "sLX" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /turf/open/floor/sandstone/runed, /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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "sMK" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"sNq" = ( -/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, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "sOp" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -21568,10 +21577,17 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"sPK" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/angel, +"sQO" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 11; + pixel_y = -2; + light_on = 1; + light_range = 1; + light_system = 1 + }, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) +/area/lv624/ground/caves/south_west_caves) "sRH" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, @@ -21606,12 +21622,11 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor, /area/lv624/lazarus/hydroponics) -"sVx" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, -/obj/effect/decal/grass_overlay/grass1{ - dir = 1 - }, +"sVT" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "sWy" = ( @@ -21645,22 +21660,16 @@ icon_state = "squareswood" }, /area/lv624/ground/caves/sand_temple) -"sXg" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "sXi" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"sXr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/lv624/ground/jungle/east_jungle) "sYY" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, @@ -21684,21 +21693,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"tcF" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) -"tde" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"tdX" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_central_caves) "tem" = ( /obj/structure/machinery/power/geothermal, /obj/structure/lattice{ @@ -21729,6 +21723,13 @@ /obj/item/storage/firstaid, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"tfR" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "tgi" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz-containers" @@ -21746,16 +21747,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/west_river) -"thk" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -5; - pixel_y = -5; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "thn" = ( /obj/item/weapon/sword{ pixel_x = -6; @@ -21784,13 +21775,6 @@ icon_state = "multi_tiles" }, /area/lv624/ground/caves/sand_temple) -"thI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "thS" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -21798,6 +21782,34 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/barrens/south_eastern_barrens) +"tiy" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 4; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) +"tjn" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) +"tjF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "tka" = ( /obj/item/ammo_casing/bullet{ icon_state = "casing_9_1" @@ -21810,10 +21822,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"tlk" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "tlD" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, @@ -21837,11 +21845,16 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"tnY" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" +"tnn" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 }, -/area/lv624/ground/caves/west_caves) +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) +"tos" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/angel, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "toz" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -21863,6 +21876,12 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"tpa" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "tqe" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -21871,10 +21890,10 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"tqQ" = ( -/obj/effect/decal/grass_overlay/grass1/inner, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) +"tri" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "trs" = ( /obj/item/tool/shovel, /turf/open/gm/dirt, @@ -21893,17 +21912,14 @@ "tsa" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_central_jungle) +"tsp" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "tsK" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_nexus_road) -"tti" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ - pixel_x = 8; - pixel_y = 13 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "ttu" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, @@ -21912,6 +21928,12 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"ttS" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "ttZ" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -21919,26 +21941,33 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) -"tuJ" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -5; - pixel_y = -5; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) "tuX" = ( /obj/effect/landmark/crap_item, /turf/open/floor/wood{ icon_state = "wood-broken6" }, /area/lv624/ground/caves/north_central_caves) +"tuZ" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "tvC" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_east_jungle) +"tvK" = ( +/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/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "twg" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -21946,6 +21975,16 @@ "twC" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/barrens/east_barrens) +"twH" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "twN" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -21993,6 +22032,11 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"tCD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "tDa" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -22004,14 +22048,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"tEm" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "tEn" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/floor{ @@ -22068,6 +22104,17 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"tKu" = ( +/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/xvx_hive/xeno_door, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "tKI" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -22095,10 +22142,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"tMB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/east_barrens) "tMF" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -22111,38 +22154,14 @@ icon_state = "whiteyellowfull" }, /area/lv624/ground/barrens/south_eastern_barrens) -"tMQ" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"tOS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"tRn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"tOV" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) -"tPH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"tQU" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, +"tRq" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) +/area/lv624/ground/caves/central_caves) "tRu" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/heavy, @@ -22152,40 +22171,31 @@ /obj/effect/decal/cleanable/blood/gibs/xeno, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"tRM" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "tSd" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/lazarus/quartstorage/outdoors) -"tSi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "tSN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"tTh" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_east_jungle) +"tTl" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/decal/grass_overlay/grass1{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "tTX" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"tVw" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) +"tUI" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "tWw" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor{ @@ -22198,6 +22208,12 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"tXn" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "tXO" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_central_jungle) @@ -22207,19 +22223,6 @@ icon_state = "floor4" }, /area/lv624/lazarus/crashed_ship_containers) -"tYx" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"tYW" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) "tZa" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, @@ -22231,14 +22234,20 @@ "tZD" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) -"uaL" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +"uaw" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "uaP" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"uaR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "ubb" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/river, @@ -22257,6 +22266,15 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"ucM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "udj" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 @@ -22272,6 +22290,23 @@ "udP" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) +"ueI" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) +"ueS" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) +"ueW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/west_barrens) +"ueX" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "ueZ" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -22279,11 +22314,16 @@ }, /turf/open/gm/grass/grass1, /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, +"ufw" = ( +/obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) +/area/lv624/ground/caves/east_caves) +"ufx" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/flora/jungle/vines/heavy, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/gm/grass/grass2, +/area/lv624/lazarus/yggdrasil) "ufW" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -22354,19 +22394,17 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"ukC" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "ukE" = ( /turf/open/gm/dirt{ icon_state = "desert1" }, /area/lv624/ground/barrens/south_eastern_barrens) -"ukY" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "ukZ" = ( /turf/open/floor{ dir = 1; @@ -22392,9 +22430,10 @@ }, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"umb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, +"ump" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) "unp" = ( @@ -22408,20 +22447,26 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) -"uop" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +"uoG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) +"upL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "upM" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /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) "upV" = ( /obj/item/stack/cable_coil/random{ pixel_y = 9; @@ -22429,10 +22474,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"uqm" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "urR" = ( /turf/open/floor/corsat{ dir = 1; @@ -22445,6 +22486,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) +"usd" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "usE" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, @@ -22453,22 +22498,45 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) +"uuI" = ( +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "uuV" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) +"uvb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"uvc" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "uve" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "uvh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/barrens/south_eastern_barrens) -"uwG" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 6 +"uvz" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 8 + }, +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) +"uwF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 8 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) +/area/lv624/ground/caves/south_west_caves) "uxh" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, @@ -22478,16 +22546,6 @@ /obj/effect/landmark/corpsespawner/security/liaison, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"uxL" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 11; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "uxT" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/east, @@ -22498,12 +22556,6 @@ "uya" = ( /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"uyn" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "uzH" = ( /turf/open/floor/plating{ dir = 8; @@ -22513,11 +22565,6 @@ "uAp" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_barrens) -"uBR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) "uDd" = ( /obj/structure/showcase{ desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; @@ -22537,6 +22584,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"uDB" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "uEb" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -22579,12 +22632,6 @@ icon_state = "whitebluecorner" }, /area/lv624/lazarus/corporate_dome) -"uHc" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "uHI" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass2, @@ -22595,6 +22642,10 @@ icon_state = "wood-broken3" }, /area/lv624/ground/caves/north_central_caves) +"uKA" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "uKT" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 @@ -22607,55 +22658,44 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) -"uMd" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"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, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "uMD" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) +"uNC" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "uOi" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/caves/sand_temple) -"uOl" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"uOu" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/libertycap, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) -"uOD" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "uOK" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor{ icon_state = "cult" }, /area/lv624/ground/caves/south_west_caves) +"uQJ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) +"uRa" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/landmark/queen_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "uRb" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"uRe" = ( -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "uRE" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/lazarus/landing_zones/lz2) @@ -22669,10 +22709,6 @@ "uSy" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/east_barrens) -"uSF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "uST" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/device/flashlight/lantern, @@ -22695,6 +22731,16 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/corporate_dome) +"uUj" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "uUl" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_west_jungle) @@ -22703,6 +22749,15 @@ icon_state = "desert1" }, /area/lv624/ground/barrens/south_eastern_barrens) +"uVf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) "uVk" = ( /obj/effect/landmark/objective_landmark/far, /turf/open/gm/grass/grass1, @@ -22714,11 +22769,10 @@ name = "Shuttle Landing Lights" }, /area/lv624/lazarus/landing_zones/lz1) -"uVU" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/east_jungle) +"uWp" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "uWr" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor{ @@ -22728,15 +22782,18 @@ "uWJ" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_west_caves) +"uXn" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "uXW" = ( /obj/structure/barricade/sandbags/wired, /turf/open/floor/wood{ icon_state = "wood-broken" }, /area/lv624/ground/caves/north_central_caves) -"uYj" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) "uYC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -22783,22 +22840,29 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"vbK" = ( -/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/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) +"vbC" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 4; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "vcY" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"vdt" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"vdj" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 6; + pixel_y = -8; + light_on = 1; + light_range = 1; + light_system = 1 + }, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) +/area/lv624/ground/caves/east_caves) "vdy" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -22857,19 +22921,22 @@ /obj/structure/girder, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"vih" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"viC" = ( +"via" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) +"vir" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1/inner, -/turf/open/gm/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"vjl" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "vjH" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -22897,30 +22964,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/gm/dirt, /area/lv624/ground/jungle/south_central_jungle) -"vkS" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) -"vle" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) -"vly" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "vmv" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/structure/flora/jungle/vines/heavy, @@ -22938,6 +22981,13 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"voT" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) "vpu" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -22954,14 +23004,6 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) -"vtk" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) "vtt" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -22989,6 +23031,12 @@ icon_state = "whiteblue" }, /area/lv624/lazarus/corporate_dome) +"vwv" = ( +/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, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "vxa" = ( /obj/structure/flora/jungle/vines/light_3, /obj/item/stack/sheet/wood{ @@ -22996,13 +23044,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"vxj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "vxU" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, @@ -23014,24 +23055,12 @@ icon_state = "vault" }, /area/lv624/lazarus/quartstorage) -"vAg" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) -"vAB" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"vAT" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) -"vBd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 4 +"vAF" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 8; + pixel_y = 13 }, -/turf/open/gm/dirt, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) "vBe" = ( /turf/open/gm/dirtgrassborder/east, @@ -23042,6 +23071,11 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"vBG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "vBQ" = ( /obj/structure/largecrate, /turf/open/floor{ @@ -23049,12 +23083,6 @@ icon_state = "bot" }, /area/lv624/lazarus/landing_zones/lz1) -"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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "vDy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/barrens/south_eastern_barrens) @@ -23062,6 +23090,12 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"vEh" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "vEj" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor{ @@ -23073,25 +23107,17 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"vES" = ( +/turf/open/gm/dirt{ + icon_state = "desert_dug" + }, +/area/lv624/ground/caves/south_west_caves) "vGg" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"vGj" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) -"vGy" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) "vHe" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/plasteel{ @@ -23106,11 +23132,25 @@ icon_state = "vault" }, /area/lv624/lazarus/quartstorage) +"vHB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "vIt" = ( /turf/open/gm/dirt{ icon_state = "desert0" }, /area/lv624/ground/river/east_river) +"vIU" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 6; + pixel_y = -8; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "vIY" = ( /obj/item/ammo_casing/bullet{ icon_state = "cartridge_9_1" @@ -23135,29 +23175,10 @@ "vLO" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/lazarus/quartstorage/outdoors) -"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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) -"vNs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/grass_overlay/grass1{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) "vNP" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"vNT" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) "vNW" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, @@ -23169,14 +23190,13 @@ "vOF" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_central_jungle) -"vPo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 +"vPh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) +/area/lv624/ground/caves/central_caves) "vPu" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor, @@ -23184,14 +23204,26 @@ "vPV" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/east_jungle) -"vQR" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) "vSG" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"vTA" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) +"vTT" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"vTZ" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 4 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "vUw" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, @@ -23229,33 +23261,32 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) -"vXP" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "vXW" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"vZz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "vZT" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) "waw" = ( /obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 + dir = 6 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) -"wbg" = ( +/area/lv624/ground/caves/north_east_caves) +"wby" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) +/area/lv624/ground/caves/south_west_caves) "wbK" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -23300,6 +23331,20 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/caves/sand_temple) +"wdT" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) +"weu" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "weH" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass2, @@ -23311,16 +23356,6 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/caves/sand_temple) -"whk" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) "whr" = ( /obj/item/ammo_magazine/smg/mp5, /obj/item/ammo_magazine/smg/mp5, @@ -23337,10 +23372,6 @@ icon_state = "desert2" }, /area/lv624/ground/barrens/south_eastern_barrens) -"whx" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) "whQ" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ desc = "The oranges aren't done yet... this sucks."; @@ -23354,10 +23385,6 @@ "whU" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_east_caves) -"wib" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/containers) "wjT" = ( /obj/structure/sign/safety/analysis_lab{ pixel_x = 40 @@ -23371,6 +23398,10 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"wkN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "wkP" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -23379,12 +23410,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/east, /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_nest, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "wlo" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/bush/ausbushes/genericbush, @@ -23396,6 +23421,20 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"wmH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) +"wnD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "woF" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/barricade/metal/wired{ @@ -23435,19 +23474,9 @@ icon_state = "multi_tiles" }, /area/lv624/ground/caves/sand_temple) -"woT" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "wpw" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"wpY" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) "wqy" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, @@ -23469,10 +23498,6 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) -"wty" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "wtK" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/cigarettes/wypacket{ @@ -23501,15 +23526,20 @@ "wxP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_jungle) +"wzv" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -10; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "wzG" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"wzI" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "wAe" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/structure/machinery/door_control{ @@ -23522,16 +23552,17 @@ icon_state = "white" }, /area/lv624/lazarus/research) -"wAF" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) +"wAw" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "wAI" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_central_jungle) +"wAM" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "wAP" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -23540,17 +23571,21 @@ /obj/item/clothing/suit/armor/yautja_flavor, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"wCs" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 +"wDh" = ( +/turf/open/gm/dirt{ + icon_state = "desert1" }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) -"wEO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) +/area/lv624/ground/caves/west_caves) +"wEc" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -5; + pixel_y = -5; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "wEQ" = ( /obj/effect/decal/remains/xeno, /obj/structure/flora/jungle/vines/light_1, @@ -23571,28 +23606,19 @@ icon_state = "wood-broken3" }, /area/lv624/ground/caves/north_central_caves) -"wHh" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 6 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "wHp" = ( /turf/open/floor/plating{ dir = 1; icon_state = "asteroidfloor" }, /area/lv624/lazarus/landing_zones/lz2) -"wHE" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -1; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, +"wHH" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) +/area/lv624/ground/caves/east_caves) +"wJl" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "wJA" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/window/framed/colony/reinforced, @@ -23602,10 +23628,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "wKv" = ( /obj/structure/barricade/metal/wired{ dir = 8 @@ -23627,24 +23649,16 @@ icon_state = "asteroidwarning" }, /area/lv624/lazarus/landing_zones/lz2) -"wLT" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) "wMk" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"wMr" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 +"wNn" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 9 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "wNp" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/gm/dirt, @@ -23656,6 +23670,10 @@ icon_state = "warning" }, /area/lv624/lazarus/landing_zones/lz1) +"wOf" = ( +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "wOv" = ( /obj/structure/window/reinforced{ dir = 1 @@ -23687,18 +23705,15 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"wQK" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 1 +"wRw" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 4; + light_on = 1; + light_range = 1; + light_system = 1 }, -/turf/open/gm/dirt, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"wRb" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "wSg" = ( /obj/structure/inflatable/popped, /turf/open/gm/dirt, @@ -23711,6 +23726,19 @@ "wSo" = ( /turf/open/gm/coast/east, /area/lv624/ground/barrens/west_barrens) +"wSw" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "wSA" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -23832,18 +23860,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"wYz" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) -"wYB" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) "wZc" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, @@ -23852,6 +23868,10 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) +"wZg" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "wZW" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) @@ -23861,10 +23881,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"xar" = ( -/obj/effect/decal/grass_overlay/grass1/inner, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "xbu" = ( /obj/item/shard, /turf/open/floor{ @@ -23872,6 +23888,10 @@ icon_state = "whiteyellow" }, /area/lv624/lazarus/corporate_dome) +"xbV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "xch" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) @@ -23879,10 +23899,11 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"xdb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) +"xcO" = ( +/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) "xdO" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_west_jungle) @@ -23919,20 +23940,26 @@ "xgE" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) -"xhc" = ( -/mob/living/simple_animal/bat, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) -"xhv" = ( -/obj/effect/decal/grass_overlay/grass1, +"xhk" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) +/area/lv624/ground/caves/south_east_caves) "xhC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) +"xhW" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "xkU" = ( /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor{ @@ -23940,10 +23967,22 @@ icon_state = "whiteyellow" }, /area/lv624/lazarus/corporate_dome) -"xmK" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +"xmH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"xnc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "xov" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -23954,9 +23993,22 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"xoY" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "xpf" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_nexus_road) +"xpm" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "xpz" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -23992,6 +24044,10 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) +"xvp" = ( +/obj/effect/decal/grass_overlay/grass1/inner, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "xvN" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -24009,13 +24065,14 @@ }, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) +"xwd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "xwr" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"xwN" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) "xwQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/handcuffs/cable/white{ @@ -24035,14 +24092,6 @@ icon_state = "whiteyellow" }, /area/lv624/lazarus/corporate_dome) -"xyH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "xyI" = ( /obj/item/ammo_magazine/rifle/nsg23{ current_rounds = 0 @@ -24058,6 +24107,10 @@ "xzD" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_jungle) +"xAV" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "xBi" = ( /turf/open/gm/dirt{ icon_state = "desert1" @@ -24066,10 +24119,6 @@ "xBm" = ( /turf/open/gm/river, /area/lv624/ground/barrens/west_barrens) -"xBO" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "xCF" = ( /obj/item/ammo_magazine/smg/mp5, /obj/item/weapon/gun/smg/mp5, @@ -24077,6 +24126,12 @@ icon_state = "white" }, /area/lv624/lazarus/corporate_dome) +"xCW" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) "xDl" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/west, @@ -24101,27 +24156,35 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"xGL" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 6 - }, -/obj/effect/decal/grass_overlay/grass1{ - dir = 9 - }, -/turf/open/gm/dirt, +"xGO" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) "xHa" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"xHW" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +"xIn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "xJA" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, /area/lv624/ground/river/west_river) +"xJF" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "xJG" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-skylight" @@ -24136,21 +24199,19 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/west_jungle) -"xKL" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "xLi" = ( /obj/structure/surface/rack, /obj/item/storage/box/lights/mixed, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"xNi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"xLS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/west_caves) +"xNn" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 4 + dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) @@ -24172,6 +24233,11 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"xQc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) "xQy" = ( /obj/structure/largecrate/random, /turf/open/floor{ @@ -24185,32 +24251,20 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"xRe" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "xRo" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"xSk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) -"xSA" = ( -/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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) "xTa" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"xTz" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "xTM" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, @@ -24234,12 +24288,6 @@ "xVN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/south_central_jungle) -"xWy" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) "xXB" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, @@ -24251,17 +24299,16 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"xYD" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 9 +"xYs" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"ybk" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"xZE" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/dirt, -/area/lv624/ground/caves/west_caves) "ybu" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/river, @@ -24283,16 +24330,14 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"ydz" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"yfe" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, +"ydZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) +/area/lv624/ground/caves/east_caves) +"yfy" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "yfH" = ( /turf/open/shuttle{ icon_state = "floor4" @@ -24312,6 +24357,11 @@ "yhd" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) +"yhl" = ( +/turf/open/gm/dirt{ + icon_state = "desert2" + }, +/area/lv624/ground/caves/south_west_caves) "yhH" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -24330,11 +24380,6 @@ icon_state = "purple" }, /area/lv624/lazarus/sleep_female) -"yhT" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/lv624/ground/caves/west_caves) "yhY" = ( /obj/structure/inflatable/door, /turf/open/gm/dirt, @@ -24348,11 +24393,6 @@ icon_state = "white" }, /area/lv624/lazarus/corporate_dome) -"yiE" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_west_jungle) "yiT" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/adv{ @@ -24367,10 +24407,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/west_tcomms_road) -"yjs" = ( -/obj/structure/flora/bush/ausbushes/pointybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) "yjN" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ @@ -24378,6 +24414,12 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"ykH" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "ykM" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/pointybush, @@ -25016,7 +25058,7 @@ oyx oyx aZb nsk -gbz +mLP nsk aZb aqS @@ -25051,7 +25093,7 @@ asw aKb aKb aLj -aVJ +iWy aKb aKb aKb @@ -25240,7 +25282,7 @@ ane ane oyx oyx -fEU +rPQ oyx aZb nsk @@ -25299,7 +25341,7 @@ aXh aKc aXj aKc -aVJ +iWy aKf aLj aKb @@ -25642,7 +25684,7 @@ mdQ mdQ gwP gwP -yhT +fpL mdQ mdQ mdQ @@ -26093,11 +26135,11 @@ gwP gwP gwP gwP -tOS -vle -qdx -qdx -hyF +jfr +bDg +tpa +tpa +nJc gwP gwP gwP @@ -26150,7 +26192,7 @@ ane ane oyx oyx -fEU +rPQ oyx aYQ aud @@ -26303,8 +26345,8 @@ mdQ mdQ mdQ mdQ -xZE -xZE +ueS +ueS mdQ mdQ mdQ @@ -26320,31 +26362,31 @@ gwP gwP gwP gwP -vle -qdx -cHW -dOA -dmT -grW -xKL +bDg +tpa +dbq +gXM +bim +fog +oZK gwP -yhT -tOS +fpL +jfr gwP -ptm +ple gwP gwP gwP gwP gwP -esp +sHu nBh nBh nBh nBh nBh nBh -eVH +pKi nBh nBh nBh @@ -26529,11 +26571,11 @@ mdQ mdQ mdQ mdQ -xZE -xZE +ueS +ueS gwP -xZE -xZE +ueS +ueS mdQ mdQ mdQ @@ -26543,29 +26585,29 @@ mdQ mdQ mdQ gwP -ptm +ple gwP -tnY -tOS +lSB +jfr gwP -wQK -cQB -dmT -dmT -rmW -ndk -grW -xKL +mME +lRv +bim +bim +rEJ +ggK +fog +oZK gwP gwP gwP gwP gwP -tOS +jfr gwP gwP gwP -esp +sHu nBh nBh cCe @@ -26587,11 +26629,11 @@ ahF ahF ahF ahF -amy +ogQ ane ane ane -krs +yhl ahF ane ane @@ -26756,13 +26798,13 @@ mdQ mdQ mdQ mdQ -xZE -xZE +ueS +ueS gwP gwP gwP -xZE -xZE +ueS +ueS mdQ mdQ mdQ @@ -26776,14 +26818,14 @@ gwP gwP gwP gwP -wQK +mME mdQ mdQ onU onU -owe -dmT -uRe +ouQ +bim +grX gwP gwP gwP @@ -26792,11 +26834,11 @@ gwP gwP gwP gwP -tOS -esp +jfr +sHu nBh nBh -eVH +pKi nBh cCe nBh @@ -26811,7 +26853,7 @@ nBh afV ahF ahF -aYI +fYs ahF ahF ahF @@ -26983,14 +27025,14 @@ mdQ mdQ mdQ mdQ -xZE -xZE +ueS +ueS gwP gwP gwP gwP gwP -xZE +ueS mdQ mdQ mdQ @@ -27001,27 +27043,27 @@ gwP gwP gwP gwP -vle -qdx -qdx +bDg +tpa +tpa mdQ mdQ mdQ onU onU mdQ -dmT -igN +bim +xLS gwP gwP mdQ gwP gwP -yhT +fpL gwP gwP gwP -esp +sHu nBh cCe nBh @@ -27030,11 +27072,11 @@ nBh afV nBh nBh -eVH +pKi nBh nBh nBh -eVH +pKi nBh afV ahF @@ -27059,7 +27101,7 @@ ane ane ane ane -fEU +rPQ oyx oyx aZa @@ -27210,15 +27252,15 @@ mdQ mdQ mdQ mdQ -xZE -xZE +ueS +ueS gwP gwP gwP gwP -tOS +jfr gwP -xZE +ueS mdQ mdQ mdQ @@ -27227,10 +27269,10 @@ mdQ mdQ gwP gwP -tOS -vle -amI -dmT +jfr +bDg +qyA +bim mdQ mdQ onU @@ -27238,8 +27280,8 @@ onU onU mdQ mdQ -bcb -wHh +kHP +qSp gwP gwP mdQ @@ -27270,13 +27312,13 @@ ahF ahF ahV ahF -afJ +egz ahF ahF ahF ahF ahF -cCP +ccX ahF ane ane @@ -27422,32 +27464,32 @@ mdQ mdQ mdQ mdQ -xZE -xZE -xZE -xZE -xZE -xZE -xZE -xZE -xZE -xZE -xZE +ueS +ueS +ueS +ueS +ueS +ueS +ueS +ueS +ueS +ueS +ueS mdQ mdQ mdQ mdQ mdQ -xZE +ueS gwP -tOS +jfr gwP gwP gwP gwP gwP -xZE -xZE +ueS +ueS mdQ mdQ mdQ @@ -27456,8 +27498,8 @@ gwP gwP gwP gwP -wQK -dmT +mME +bim mdQ mdQ onU @@ -27484,7 +27526,7 @@ afV afV afV uOK -eVH +pKi nBh nBh nBh @@ -27494,15 +27536,15 @@ nBh nBh afV ahF -ahH +fFf ahF ahF ahF -afJ +egz ahF ahF ahF -ahH +fFf ahF ahF ahF @@ -27650,23 +27692,23 @@ mdQ mdQ mdQ mdQ -xZE -wlh -oAV -sMx -tOS +ueS +mae +lhC +qLd +jfr gwP gwP -sMx -oAV -wlh -xZE +qLd +lhC +mae +ueS mdQ mdQ mdQ mdQ mdQ -xZE +ueS gwP gwP gwP @@ -27680,13 +27722,13 @@ mdQ mdQ mdQ mdQ -ofg +wDh gwP gwP gwP -wQK -dmT -fRU +mME +bim +jvD onU onU onU @@ -27695,7 +27737,7 @@ mdQ gwP gwP gwP -ptm +ple gwP gwP mdQ @@ -27714,8 +27756,8 @@ afV afV afV afV -hRy -aYI +dFE +fYs ahF afV afV @@ -27858,7 +27900,7 @@ abM abM abM abM -abQ +hqU abN abM abM @@ -27878,23 +27920,23 @@ mdQ mdQ mdQ mdQ -xZE -oAV +ueS +lhC gwP -aca +arx gwP gwP gwP -aca +arx gwP -oAV -xZE +lhC +ueS mdQ mdQ mdQ mdQ mdQ -xZE +ueS gwP gwP gwP @@ -27908,18 +27950,18 @@ gwP mdQ mdQ gwP -ptm +ple gwP gwP gwP -wQK -dmT -dmT -nRA -htV +mME +bim +bim +tfR +wRw onU mdQ -uRe +grX gwP gwP gwP @@ -27940,7 +27982,7 @@ ahF ahF ahF ahF -aYI +fYs ahF ahF ahF @@ -27951,7 +27993,7 @@ ahF ahF ahF ahF -krs +yhl ahF ane ane @@ -28085,12 +28127,12 @@ abM abM abM abM -abB +bnd abN abN abN abN -dhD +dPG abN abM abM @@ -28106,27 +28148,27 @@ mdQ mdQ mdQ mdQ -xZE -sMx -sMx -sMx +ueS +qLd +qLd +qLd gwP gwP -tOS -sMx -sMx -sMx -xZE +jfr +qLd +qLd +qLd +ueS mdQ mdQ mdQ mdQ mdQ -xZE +ueS gwP gwP gwP -tOS +jfr gwP gwP gwP @@ -28135,21 +28177,21 @@ gwP gwP mdQ mdQ -lav +qcR gwP gwP -ofg +wDh gwP -hjo -gvm -qJE -dmT -dmT -dmT -fLh -uRe +vTA +cHE +rMN +bim +bim +bim +cII +grX gwP -tOS +jfr gwP gwP gwP @@ -28165,7 +28207,7 @@ ane ane afV ahF -ahH +fFf ahF ahF ahF @@ -28174,7 +28216,7 @@ ahF ahF ahF ahF -fDT +vES ahF ahF ahF @@ -28312,13 +28354,13 @@ abM abM abM abM -abB -abB +bnd +bnd abN abN abN -abQ -dhD +hqU +dPG abN abN abM @@ -28334,17 +28376,17 @@ mdQ mdQ mdQ mdQ -xZE -oAV +ueS +lhC gwP -aca +arx gwP gwP gwP -aca +arx gwP -oAV -xZE +lhC +ueS mdQ mdQ mdQ @@ -28365,17 +28407,17 @@ mdQ mdQ gwP gwP -tOS +jfr gwP gwP gwP gwP -hjo -qJE -tlk -gRk -owZ -wHh +vTA +rMN +dFQ +oxO +tuZ +qSp gwP gwP gwP @@ -28400,22 +28442,22 @@ ahF ahF ahF ahF -krs +yhl ahF ahF -ahH +fFf ahF ahF ahF ahF -cCP +ccX ahF ane -fDT +vES ahF ahF ahF -aYI +fYs ahF ahF ane @@ -28427,7 +28469,7 @@ ane ane ane oyx -fEU +rPQ oyx aYQ aud @@ -28537,16 +28579,16 @@ abM abM abM abM -abB -abB -abB -abB +bnd +bnd +bnd +bnd abN abN abN abN abN -abB +bnd abN abN abM @@ -28562,17 +28604,17 @@ mdQ mdQ mdQ mdQ -xZE -wlh -oAV -sMx -tOS +ueS +mae +lhC +qLd +jfr gwP gwP -sMx -oAV -wlh -xZE +qLd +lhC +mae +ueS mdQ mdQ mdQ @@ -28585,13 +28627,13 @@ gwP gwP gwP gwP -tOS +jfr gwP gwP gwP gwP -aca -ptm +arx +ple gwP gwP gwP @@ -28599,13 +28641,13 @@ gwP gwP gwP gwP -hjo -qhl -qhl -wHh +vTA +iKT +iKT +qSp gwP -ptm -yhT +ple +fpL gwP mdQ mdQ @@ -28624,10 +28666,10 @@ ahF ahF ahV ahF -xYD -gTj -gTj -nys +msr +uwF +dDM +xoY ahF ahF ahF @@ -28718,7 +28760,7 @@ aXh haN aKb aKb -iZZ +mXo aKX aLj aKb @@ -28762,10 +28804,10 @@ abM abM abM abM -abB -abB -abB -abB +bnd +bnd +bnd +bnd abN abN abN @@ -28774,7 +28816,7 @@ abN abN abN abN -abB +bnd abN abN abN @@ -28790,17 +28832,17 @@ mdQ mdQ mdQ mdQ -xZE -xZE -xZE -xZE -aca -xZE -aca -xZE -xZE -xZE -xZE +ueS +ueS +ueS +ueS +arx +ueS +arx +ueS +ueS +ueS +ueS mdQ mdQ mdQ @@ -28818,8 +28860,8 @@ gwP gwP gwP gwP -aca -tOS +arx +jfr gwP gwP gwP @@ -28850,13 +28892,13 @@ ane ane ahF ahF -xYD -hmq -lYt -chi -fmW -rHV -nys +msr +iND +bWx +dzf +wAM +hjq +xoY ePu ahF ahF @@ -28871,9 +28913,9 @@ ane ahF ahF ahF -hRy -hRy -fDT +dFE +dFE +vES afV ane ane @@ -28998,11 +29040,11 @@ abN abN abN abN -abQ +hqU abN abN abN -dhD +dPG abN abN abN @@ -29018,7 +29060,7 @@ mdQ mdQ mdQ mdQ -uRe +grX gwP gwP gwP @@ -29028,7 +29070,7 @@ gwP gwP gwP gwP -xZE +ueS mdQ mdQ gwP @@ -29046,10 +29088,10 @@ gwP gwP gwP gwP -xZE -aca -aca -xZE +ueS +arx +arx +ueS mdQ mdQ mdQ @@ -29077,28 +29119,28 @@ ane ane ane ane -xYD -lYt -fmW -fmW +msr +bWx +wAM +wAM uWJ -ilF -fmW -rHV -nys +uvz +wAM +hjq +xoY ahF ahF ahF -aYI +fYs ahF -ahH +fFf ahF ahF ane ane ahF ahF -ahH +fFf ahF ahF ahF @@ -29200,14 +29242,14 @@ abM abM abM abM -abB -abB -abB -abB +bnd +bnd +bnd +bnd abN -pSe -kzn -tcF +lug +iCM +bMT amk amk amk @@ -29216,12 +29258,12 @@ abM abM abM abM -qVh +ktX abN abN abN abN -abQ +hqU abN abN abN @@ -29230,9 +29272,9 @@ abN abN abN abN -dhD +dPG abN -abQ +hqU abN abN abN @@ -29244,19 +29286,19 @@ amk onU onU mdQ -gRk -dmT -uRe +oxO +bim +grX gwP gwP gwP gwP -tOS +jfr gwP gwP gwP gwP -aca +arx gwP gwP gwP @@ -29266,7 +29308,7 @@ gwP gwP gwP gwP -tOS +jfr gwP gwP gwP @@ -29305,16 +29347,16 @@ ane ane ane ahF -wAF -aIE -fmW +joE +sQO +wAM uWJ uWJ uWJ -fmW -fmW -vGj -nys +wAM +wAM +hkq +xoY ahF ahF ahF @@ -29428,24 +29470,24 @@ abM abM abM abM -abB -abB -abB +bnd +bnd +mXK tgL abN abN -lTv -pLv -sBY +bGQ +cWl +fwi amk amk amk amk amk abM -qiL -qVh -abQ +rIf +ktX +hqU abN abN abN @@ -29455,26 +29497,26 @@ abN abN abN abN -abB -abB -abB -abB +bnd +bnd +bnd +bnd abN abN abN abN abN abN -cMG -waw -cWs -sBY +fGQ +meE +fxy +fwi onU onU onU -lKl -tRM -uRe +kBh +lSu +grX gwP gwP gwP @@ -29484,24 +29526,24 @@ gwP gwP gwP gwP -aca +arx gwP gwP gwP gwP -vle -jvQ -jvQ -jvQ -xKL +bDg +kLK +kLK +kLK +oZK gwP gwP gwP gwP -tOS +jfr gwP gwP -tOS +jfr gwP gwP mdQ @@ -29533,25 +29575,25 @@ ane ane ahF ahF -wAF -fmW +joE +wAM uWJ uWJ uWJ -eoW -fmW -fmW -fmW -rHV -vXP -nys +rpx +wAM +hPa +wAM +hjq +oGD +xoY ahF -aYI +fYs ahF ahF ahF ahF -afJ +egz ahF ahF ahF @@ -29564,7 +29606,7 @@ ane ane oyx oyx -fEU +rPQ oyx oyx aYX @@ -29613,7 +29655,7 @@ atC ayT aKb aKb -aYj +kKT aKf aKc myI @@ -29656,23 +29698,23 @@ abM abM abM abM -abB -abB +bnd +bnd abN abN abN abN -pSe -kzn -sBY -sBY -sBY +lug +iCM +fwi +fwi +fwi amk amk -gnt -qVN -sBY -qVh +oNx +tUI +fwi +ktX abN abN abN @@ -29691,18 +29733,18 @@ abN abN abN abN -abQ -cMG -waw -sBY -sBY -sBY -iGf -dKl -dmT -dmT -owZ -wHh +hqU +fGQ +meE +fwi +fwi +fwi +blX +pDm +bim +bim +tuZ +qSp gwP gwP gwP @@ -29710,19 +29752,19 @@ gwP gwP gwP gwP -tOS +jfr gwP -aYC +mRn gwP gwP -vle -jvQ -pkU -gRk -lLK -dmT -grW -xKL +bDg +kLK +gjJ +oxO +mbc +bim +fog +oZK gwP gwP gwP @@ -29760,26 +29802,26 @@ ane ane ahF ahF -ahF -doe -pIl -eZg -fmW -fmW -fmW -fmW -fmW -fmW -fmW -fmW -rHV +fFf +lAi +ybk +bOx +wAM +wAM +wAM +wAM +wAM +wAM +wAM +wAM +hjq ahF ahF ane ahF ahF ahF -afJ +egz ahF ahF ane @@ -29883,31 +29925,31 @@ abM abM abM abM -abB -abB +bnd +bnd abN abN abN abN abN abN -bak -kzn -iXX -sBY -sBY -iNJ -sBY -sBY -frV -klD +xIn +iCM +pxy +fwi +fwi +bXA +fwi +fwi +rll +efw abN abN abN abN abN -abB -abB +bnd +bnd abM abM abM @@ -29919,17 +29961,17 @@ abN abN abN abN -cMG -waw -sBY -sBY -fTN -sBY -iGf -dmT -gRk -owZ -wHh +fGQ +meE +fwi +fwi +gff +fwi +blX +bim +oxO +tuZ +qSp gwP gwP gwP @@ -29940,18 +29982,18 @@ gwP gwP gwP gwP -aca +arx gwP gwP -jGU -hhs -hhs -hhs -htV -dOA -fRU -grW -xKL +pnx +pFL +pFL +pFL +wRw +gXM +jvD +fog +oZK gwP gwP gwP @@ -29987,33 +30029,33 @@ ane ane ane ahF -aYI +fYs ahF ahF -doe -pIl -uqm -fmW -fmW -fmW -ikA -fmW -fmW -wty -chi +lAi +ybk +wZg +wAM +wAM +wAM +mRQ +wAM +wAM +nOA +dzf ane ane ane ane -afJ -afJ +egz +egz ane ane ane ahF ahF -ahH -cCP +fFf +ccX ahF ane ane @@ -30115,26 +30157,26 @@ abN abN abN abN -vNs -bdu -bdu -bdu -jKc -pSe -jLY -jLY -jLY -jLY -jLY -kKa -klD +lsi +tXn +tXn +tXn +nRj +lug +uXn +uXn +uXn +uXn +uXn +ncy +efw abN abN abN abN -abQ -abB -abB +hqU +bnd +bnd abM abM abM @@ -30143,22 +30185,22 @@ abM abM abM abM -abB +bnd abN abN -cMG -waw -gvr -uOu -sBY -iNJ -sBY -iGf -owZ -qhl -wHh +fGQ +meE +gHC +roO +fwi +bXA +fwi +blX +tuZ +iKT +qSp gwP -qaE +uRa gwP gwP aLr @@ -30168,7 +30210,7 @@ gwP aLr gwP gwP -aca +arx gwP gwP mdQ @@ -30176,14 +30218,14 @@ mdQ onU onU onU -hhs -hhs -hhs -grW -jvQ +pFL +pFL +pFL +fog +kLK gwP gwP -tOS +jfr gwP gwP mdQ @@ -30219,22 +30261,22 @@ ahF vZT ahF ahF -doe -qSS -pIl -dWM -fmW -fmW -fmW -fmW -sAI -pBH +lAi +gQo +ybk +lJd +wAM +wAM +wAM +wAM +gWQ +fff ane ane afV afV -hRy -krs +dFE +yhl afV afV ane @@ -30296,7 +30338,7 @@ bXP tZD aAp aAp -aYj +kKT aPf aKf aKf @@ -30340,17 +30382,17 @@ abN abN abN abN -cMG -bdu -bdu -waw -tcF -sBY -sBY -mgi -bdu -jKc -abQ +fGQ +tXn +tXn +meE +bMT +fwi +fwi +hQd +tXn +nRj +hqU abN abN abN @@ -30360,8 +30402,8 @@ abN abN abN abN -abB -abB +bnd +bnd abM abM abM @@ -30371,13 +30413,13 @@ abM abM abN abN -dhD +dPG abN -vNs -waw -sBY -sBY -sBY +lsi +meE +fwi +fwi +fwi amk abM abM @@ -30391,7 +30433,7 @@ gwP gwP gwP gwP -tOS +jfr gwP gwP gwP @@ -30406,11 +30448,11 @@ onU onU onU onU -hhs -hhs -hhs -grW -xKL +pFL +pFL +pFL +fog +oZK gwP gwP gwP @@ -30426,7 +30468,7 @@ gwP gwP gwP gwP -tOS +jfr gwP gwP acp @@ -30447,13 +30489,13 @@ ane ane ane ahF -fDT +vES ahF -wAF -fmW -fmW -snc -fmW +joE +wAM +wAM +pWk +wAM uWJ uWJ uWJ @@ -30461,7 +30503,7 @@ ane ane afV ahF -aYI +fYs ahF ahF afV @@ -30567,17 +30609,17 @@ abM abN abN abN -vNs -waw -dIj -sBY -sBY -sBY -sBY -pLv -sBY -sBY -hKP +lsi +meE +kWn +fwi +fwi +fwi +fwi +cWl +fwi +fwi +bJD abN abN abN @@ -30588,7 +30630,7 @@ abN abN abN abN -abB +bnd abM abM abM @@ -30598,14 +30640,14 @@ abM abM abN abN -abQ -dhD -cMG -waw -sBY -sBY -sBY -sBY +hqU +dPG +fGQ +meE +fwi +fwi +fwi +fwi amk amk abM @@ -30636,9 +30678,9 @@ onU onU onU onU -hhs -hhs -uRe +pFL +pFL +grX gwP gwP gwP @@ -30647,9 +30689,9 @@ gwP gwP gwP gwP -tOS +jfr gwP -xZE +ueS gwP gwP gwP @@ -30676,12 +30718,12 @@ afV afV afV ahF -cCP -wAF -fmW -fmW -jCO -uqm +ccX +gIN +wAM +wAM +xpm +wZg uWJ ane ane @@ -30701,7 +30743,7 @@ ane ane ane ane -fEU +rPQ oyx oyx oyx @@ -30795,24 +30837,24 @@ abM abN abN abN -vGy -sBY -whk -sBY +mCB +fwi +xJF +fwi amk amk amk amk -sBY -sBY -hKP +fwi +fwi +bJD abN abN abN abN abN abN -abQ +hqU abN abN abN @@ -30827,12 +30869,12 @@ abN abN abN abN -dhD -vGy -sBY -sBY -gnt -sBY +dPG +mCB +fwi +fwi +oNx +fwi amk amk amk @@ -30868,7 +30910,7 @@ onU mdQ gwP gwP -tOS +jfr gwP gwP gwP @@ -30877,7 +30919,7 @@ gwP gwP gwP gwP -xZE +ueS gwP gwP gwP @@ -30900,14 +30942,14 @@ ahF ahF ahF ahF -cCP +ccX ahF -afJ -xYD -vXP -lYt -dIu -fmW +egz +msr +oGD +bWx +rkL +wAM ane ane ane @@ -30920,7 +30962,7 @@ ahF ahF ahF ahF -cCP +ccX ahF ahF ahF @@ -31023,7 +31065,7 @@ abN abN abN abN -vGy +mCB abM abM amk @@ -31055,11 +31097,11 @@ abN abN abN abN -dhD -vGy -qVN -sBY -ksc +dPG +mCB +tUI +fwi +bBi amk amk amk @@ -31070,7 +31112,7 @@ mdQ mdQ gwP gwP -tOS +jfr gwP gwP gwP @@ -31104,8 +31146,8 @@ gwP gwP gwP gwP -xZE -xZE +ueS +ueS gwP gwP gwP @@ -31122,19 +31164,19 @@ acp ane ane ahF -fDT +vES ahF ahF -ahH +fFf ahF ahF ahF ahF -afJ -wAF -fmW -fmW -fmW +egz +joE +wAM +wAM +wAM ane ane ane @@ -31146,12 +31188,12 @@ ahF ahF ahF ahF -ahH +fFf ahF ahF ahF ahF -ahH +fFf ahF ane ane @@ -31250,8 +31292,8 @@ abM abN abN abN -cMG -waw +fGQ +meE abM abM abM @@ -31279,7 +31321,7 @@ abM abN abN abN -abQ +hqU abN abN abN @@ -31328,17 +31370,17 @@ acp gwP gwP gwP -tOS +jfr gwP gwP gwP -xZE +ueS gwP gwP gwP -xZE -xZE -tOS +ueS +ueS +jfr gwP gwP aes @@ -31354,13 +31396,13 @@ ahF ahF ahF ahF -gTj -gTj -gTj -nys +dDM +dDM +dDM +xoY afV -wAF -tQU +joE +uUj uWJ uWJ ane @@ -31377,7 +31419,7 @@ ahF ahF ahF ahF -krs +yhl ahF ahF ahF @@ -31476,10 +31518,10 @@ abM abM abN abN -abQ -cMG -waw -tcF +hqU +fGQ +meE +bMT abM abM abM @@ -31495,7 +31537,7 @@ abM abM abM abM -abB +bnd abN abN abN @@ -31531,7 +31573,7 @@ gwP gwP gwP gwP -aca +arx gwP gwP gwP @@ -31560,7 +31602,7 @@ gwP gwP gwP gwP -xZE +ueS gwP gwP gwP @@ -31581,11 +31623,11 @@ afV ahF isF ahF -lYt -fmW -gos -fmW -lWl +bWx +wAM +lPK +wAM +gUz afV afV uWJ @@ -31687,7 +31729,7 @@ aTf aTf jdi aKf -rKR +iKu aKb aac aaa @@ -31705,8 +31747,8 @@ abM abN abN abN -vGy -sBY +mCB +fwi abM abM abM @@ -31723,13 +31765,13 @@ abM abM abM abM -abB -abB -abQ +bnd +bnd +hqU abN abN abN -abQ +hqU abN abN abN @@ -31748,18 +31790,18 @@ abM abM abM abM -xZE +ueS gwP gwP -xZE -xZE +ueS +ueS gwP gwP gwP gwP gwP gwP -aca +arx gwP gwP gwP @@ -31792,7 +31834,7 @@ gwP gwP gwP gwP -xZE +ueS gwP gwP gwP @@ -31806,15 +31848,15 @@ acp ane ane vUx -vMV -vMV -lUQ -bJQ +smv +smv +tKu +fLz uWJ -nQH -fmW -lWl -krs +oYF +wAM +gUz +yhl afV ane ane @@ -31828,7 +31870,7 @@ ahF ahF ahF ahF -krs +yhl ahF ahV ahF @@ -31932,9 +31974,9 @@ abM abM abN abN -cMG -waw -pLv +fGQ +meE +cWl abM abM abM @@ -31950,11 +31992,11 @@ abM abM abM abM -abB -abB -abB -abB -abB +bnd +bnd +bnd +bnd +bnd abN abN abN @@ -31976,22 +32018,22 @@ abM abM abM abM -xZE +ueS gwP gwP -xZE -xZE +ueS +ueS gwP gwP -tOS +jfr gwP gwP gwP -aYC +mRn gwP gwP gwP -tOS +jfr gwP acp acp @@ -32006,7 +32048,7 @@ mdQ acp acu acu -ade +gdI acu acy acu @@ -32018,12 +32060,12 @@ gwP gwP gwP gwP -tOS +jfr gwP gwP gwP gwP -xZE +ueS gwP aes aez @@ -32036,12 +32078,12 @@ ane afV ahF ahF -wAF -fmW +joE +wAM uWJ -dIu -fmW -lWl +rkL +wAM +gUz ahF afV afV @@ -32052,9 +32094,9 @@ afV ahF ahF ahF -fDT +vES ahF -ahH +fFf ahF ahF ahF @@ -32062,7 +32104,7 @@ ahF ahF ahF ahF -aYI +fYs ahF ane ane @@ -32159,9 +32201,9 @@ abM abM abN abN -cMG -waw -sBY +fGQ +meE +fwi amk abM abM @@ -32179,8 +32221,8 @@ abM abM abM abM -abB -abB +bnd +bnd abN abN abN @@ -32188,10 +32230,10 @@ abN abN abN abN -abQ +hqU abN abN -abB +bnd abM abM abM @@ -32245,7 +32287,7 @@ gwP gwP gwP gwP -uSF +tRn gwP gwP gwP @@ -32264,16 +32306,16 @@ ane ane ahF ahF -thI -cdw +gIN +nHA uWJ uWJ -dOb -lWl -aYI +oIP +gUz +fYs ahF ahF -krs +yhl ahF ahF ahF @@ -32287,7 +32329,7 @@ ahF ahF ahF ahF -ahH +fFf ahF ahF ahF @@ -32387,9 +32429,9 @@ abM abM abN abN -vGy -fTN -sLT +mCB +gff +tri amk amk abM @@ -32407,10 +32449,10 @@ abM abM abM abM -abB +bnd abN abN -abQ +hqU abN abN abN @@ -32418,8 +32460,8 @@ abN abN abN abN -abB -abB +bnd +bnd abM abM abM @@ -32435,7 +32477,7 @@ mdQ mdQ gwP gwP -tOS +jfr gwP gwP gwP @@ -32459,13 +32501,13 @@ mdQ mdQ mdQ mdQ -xZE +ueS acp acu acu acu acp -xZE +ueS gwP gwP gwP @@ -32473,8 +32515,8 @@ gwP gwP gwP gwP -xZE -xZE +ueS +ueS gwP gwP gwP @@ -32490,20 +32532,20 @@ acp ane ane ane -krs +yhl ahF -wAF -fmW +joE +wAM uWJ uWJ -kzw -kyt -nys +rQb +hfw +xoY ahF ahF ahF ahF -krs +yhl ahF ahF ahF @@ -32615,8 +32657,8 @@ abM abN abN abN -xhc -sBY +lQO +fwi amk amk amk @@ -32635,7 +32677,7 @@ abM abM abM abM -abB +bnd abN abN abN @@ -32646,7 +32688,7 @@ abN abN abN abN -abB +bnd abM abM abM @@ -32666,13 +32708,13 @@ gwP gwP gwP gwP -xZE -xZE +ueS +ueS gwP mdQ mdQ acp -tOS +jfr gwP gwP gwP @@ -32687,16 +32729,16 @@ mdQ mdQ mdQ mdQ -xZE -xZE +ueS +ueS acp acp acp -xZE -xZE +ueS +ueS gwP -xZE -xZE +ueS +ueS gwP gwP gwP @@ -32708,7 +32750,7 @@ gwP gwP gwP gwP -tOS +jfr aes aez aez @@ -32720,22 +32762,22 @@ ane ane ahF ahF -wAF -tOV -fKc +joE +sxQ +cab uWJ -jCO -fmW -rHV -nys +xpm +wAM +hjq +xoY +fFf ahF ahF ahF ahF ahF ahF -ahF -krs +yhl ahF ahF ahF @@ -32843,8 +32885,8 @@ abM abN abN abN -vGy -sBY +mCB +fwi amk amk abM @@ -32869,12 +32911,12 @@ abN abN abN abN -abQ +hqU abN abN abN abN -abB +bnd abM abM abM @@ -32894,8 +32936,8 @@ gwP gwP gwP gwP -xZE -xZE +ueS +ueS gwP mdQ mdQ @@ -32923,8 +32965,8 @@ gwP gwP gwP gwP -xZE -xZE +ueS +ueS gwP gwP gwP @@ -32948,19 +32990,19 @@ afV afV ahF ahF -doe -pIl -fmW +lAi +ybk +wAM uWJ ane uWJ -fmW -qSG +wAM +wOf ahF ahF -cCP +ccX ahF -ahH +fFf ahF ahF ahF @@ -33071,9 +33113,9 @@ abM abN abN abN -vGy -sBY -bPE +mCB +fwi +rJT amk abM abM @@ -33150,11 +33192,11 @@ gwP gwP gwP gwP -tOS +jfr gwP gwP gwP -tOS +jfr gwP gwP gwP @@ -33173,18 +33215,18 @@ acp ane ane ahF -cCP +ccX ahF ahF ahF -wYz -chi +wby +dzf uWJ ane uWJ -fmW -rHV -nys +wAM +hjq +xoY ahF ahF ahF @@ -33192,10 +33234,10 @@ ahF ahF ahF ahF -ahH +fFf ahF ahF -ahH +fFf ahF ahF ahF @@ -33225,7 +33267,7 @@ auP oTJ teS pDI -yiE +myK pYJ dmS cRT @@ -33299,11 +33341,11 @@ abM abN abN abN -pSe -kzn -sBY -dBS -stt +lug +iCM +fwi +iyg +ssk abM abM abM @@ -33321,16 +33363,16 @@ abN abN abN abN -abQ +hqU abN abM -abB -abB -abB +bnd +bnd +bnd abN abN abN -abQ +hqU abM abM abM @@ -33347,9 +33389,9 @@ gwP gwP gwP gwP -xZE -xZE -xZE +ueS +ueS +ueS gwP gwP gwP @@ -33374,8 +33416,8 @@ mdQ mdQ mdQ mdQ -qdx -xKL +tpa +oZK gwP gwP gwP @@ -33390,7 +33432,7 @@ gwP gwP gwP gwP -tOS +jfr gwP gwP aes @@ -33405,15 +33447,15 @@ ahF ane ane ahF -ahF -pIl +fFf +ybk ane ane uWJ -tOV -fmW -rHV -nys +sxQ +wAM +hjq +xoY ahF ahF ahF @@ -33425,7 +33467,7 @@ ahF ahF ahF ahF -ahH +fFf ahF ane ane @@ -33528,12 +33570,12 @@ abM abN abN abN -bak -kzn -qYS -stt -stt -stt +xIn +iCM +ozo +ssk +ssk +ssk abM abM abM @@ -33544,8 +33586,8 @@ abM abM abM abM -abB -abQ +bnd +hqU abN abN abN @@ -33570,14 +33612,14 @@ abM abM acp gwP -tOS +jfr gwP gwP gwP gwP -xZE -xZE -xZE +ueS +ueS +ueS gwP gwP gwP @@ -33587,7 +33629,7 @@ acp acp gwP gwP -tOS +jfr gwP acp mdQ @@ -33601,9 +33643,9 @@ mdQ mdQ mdQ mdQ -tlk -dmT -uRe +dFQ +bim +grX gwP gwP acS @@ -33611,13 +33653,13 @@ gwP gwP gwP gwP -xZE -xZE -xZE -xZE +ueS +ueS +ueS +ueS gwP gwP -xZE +ueS gwP gwP gwP @@ -33634,16 +33676,16 @@ ane ane ane ahF -doe -pIl -fmW +lAi +ybk +wAM uWJ uWJ ane -eZg -rHV -gTj -nys +bOx +hjq +dDM +xoY isF ahF ahF @@ -33660,7 +33702,7 @@ ane ane oyx oyx -fEU +rPQ oyx oyx oyx @@ -33757,12 +33799,12 @@ abM abN abN abN -pSe -jLY -jLY -jLY -jLY -qrH +lug +uXn +uXn +uXn +uXn +rYw abM abM abM @@ -33772,7 +33814,7 @@ abM abM abM abM -abB +bnd abN abN abN @@ -33783,8 +33825,8 @@ abM abM abM abM -abB -abB +bnd +bnd abN abN abN @@ -33799,7 +33841,7 @@ abM acp gwP gwP -xZE +ueS gwP gwP gwP @@ -33811,7 +33853,7 @@ gwP gwP gwP gwP -xZE +ueS acp acp gwP @@ -33830,13 +33872,13 @@ mdQ mdQ mdQ mdQ -dmT -igN +bim +xLS gwP gwP gwP -xZE -xZE +ueS +ueS gwP gwP gwP @@ -33863,20 +33905,20 @@ ane ane ahF ahF -doe -pIl -fcQ +lAi +ybk +wEc uWJ ane ane -fmW -fmW -lWl +wAM +hPa +gUz ahF ahF ahF ahF -krs +yhl ahF ahF ahF @@ -33990,8 +34032,8 @@ abN abN abN abN -abB -abB +bnd +bnd abM abM abM @@ -33999,8 +34041,8 @@ abM abM abM abM -abB -abB +bnd +bnd abN abN abN @@ -34012,7 +34054,7 @@ abM abM abM abM -abB +bnd abN abN abN @@ -34030,17 +34072,17 @@ gwP gwP gwP gwP -xZE +ueS gwP gwP gwP gwP gwP gwP -tOS +jfr gwP -xZE -xZE +ueS +ueS acp acp acp @@ -34057,20 +34099,20 @@ mdQ mdQ mdQ onU -dmT -dmT -uRe +bim +bim +grX gwP gwP gwP -xZE -xZE +ueS +ueS gwP gwP -tOS +jfr abO acp -xZE +ueS gwP gwP gwP @@ -34085,26 +34127,26 @@ mdQ ane afV ahF -aYI -krs +fYs +yhl ahF ahF ahF ahF ahF -wYz -fmW -fmW +wby +wAM +wAM uWJ uWJ uWJ -fmW -lWl +wAM +gUz ahF -hRy -hRy -hRy -hRy +dFE +dFE +dFE +dFE ahF ahF ahF @@ -34216,18 +34258,18 @@ abN abN abN abN -abQ +hqU abN abN -abB -abB +bnd +bnd abM abM abM abM abM -abB -abB +bnd +bnd abN abN abN @@ -34240,8 +34282,8 @@ abM abM abM abM -abB -abB +bnd +bnd abN abN abN @@ -34255,16 +34297,16 @@ abM acp gwP gwP -tOS +jfr gwP gwP -xZE +ueS gwP gwP gwP gwP gwP -xZE +ueS gwP gwP gwP @@ -34285,10 +34327,10 @@ mdQ mdQ onU onU -dmT -dmT -kVG -sMx +bim +bim +fee +qLd gwP gwP gwP @@ -34298,7 +34340,7 @@ gwP gwP pqa acp -xZE +ueS gwP gwP gwP @@ -34313,27 +34355,27 @@ mdQ ane afV ahF -ahH +fFf ahF ahF ahF ahF -fDT +vES ahF ahF -pIl -fmW +xnc +wAM uWJ uWJ -wHE -fmW -lWl +bbA +wAM +gUz ahF ahF ahF ahF ahF -ahH +fFf ahF ahF ane @@ -34448,13 +34490,13 @@ abN abN abN abN -abB +bnd abM abM abM abM -abB -abB +bnd +bnd abN abN abN @@ -34469,9 +34511,9 @@ abM abM abM abM -abB +bnd abN -abQ +hqU abN abN abM @@ -34488,7 +34530,7 @@ gwP gwP gwP gwP -tOS +jfr gwP gwP gwP @@ -34513,28 +34555,28 @@ mdQ mdQ onU onU -dmT -xHW -kVG -sMx +bim +yfy +fee +qLd gwP gwP -tOS +jfr gwP gwP gwP gwP gwP acp -xZE -xZE -xZE +ueS +ueS +ueS gwP -tOS +jfr gwP gwP gwP -tOS +jfr gwP mdQ mdQ @@ -34549,15 +34591,15 @@ ahF ahF ahF ahF -wYz -sgU +wby +ueX uWJ ane -xBO -lWh -dYx +pEh +lRw +rbw ahF -ahH +fFf ahF ahF ahF @@ -34675,7 +34717,7 @@ abN abN abN abN -abQ +hqU abN abM abM @@ -34684,7 +34726,7 @@ abN abN abN abN -abQ +hqU abN abN abM @@ -34725,7 +34767,7 @@ gwP gwP gwP gwP -xZE +ueS mdQ mdQ mdQ @@ -34740,10 +34782,10 @@ mdQ mdQ mdQ onU -lKl -dmT -dmT -uRe +kBh +bim +bim +grX gwP gwP gwP @@ -34757,13 +34799,13 @@ acp acp acp acp -aca -aca -xZE +arx +arx +ueS acp -xZE -aca -aca +ueS +arx +arx mdQ mdQ ane @@ -34772,18 +34814,18 @@ ahF ane ane ane -hRy -hRy -hRy +dFE +dFE +dFE ahF ahF -doe -pIl +lAi +ybk ane ane -lWh -dYx -ahH +lRw +rbw +fFf ahF ahF ahF @@ -34795,7 +34837,7 @@ ane ane ane oyx -fEU +rPQ iJA oyx oyx @@ -34948,12 +34990,12 @@ gwP gwP gwP gwP -xZE -xZE -aca -aca -aca -xZE +ueS +ueS +arx +arx +arx +ueS mdQ mdQ mdQ @@ -34963,19 +35005,19 @@ mdQ mdQ onU onU -ieN -kWV -xZE -xyH -hhs -ndk -dmT -dmT -uRe -tOS +oRh +gJa +ueS +ucM +pFL +ggK +bim +bim +grX +jfr gwP -sMx -sMx +qLd +qLd gwP gwP gwP @@ -35000,12 +35042,12 @@ ahF ahF ane ane -krs +yhl afV afV afV -afJ -afJ +egz +egz ane ane ahF @@ -35135,7 +35177,7 @@ abN abN abN abN -abQ +hqU abN abN abN @@ -35175,9 +35217,9 @@ gwP adJ gwP gwP -xZE -xZE -xZE +ueS +ueS +ueS gwP gwP gwP @@ -35187,33 +35229,33 @@ mdQ mdQ mdQ mdQ -jGU -ndk +pnx +ggK onU -dmT -dmT -kWV +bim +bim +gJa gwP -hjo -qtK -qhl -clO -qhl -wHh +vTA +oFc +iKT +hmG +iKT +qSp gwP gwP -sMx -sMx +qLd +qLd gwP gwP -tOS +jfr gwP -oMZ -oMZ +cAR +cAR gwP gwP -xZE -oMZ +ueS +cAR gwP acp mdQ @@ -35228,20 +35270,20 @@ ahF ahF ane ane -cCP +ccX afV ahF ahF ahF ahF ane -aYI +fYs ahF ahF ane ahF -aYI -fDT +fYs +vES ahF ane ane @@ -35334,7 +35376,7 @@ mVK kxI kxI tsa -aYx +kTX wbK tsa aac @@ -35382,7 +35424,7 @@ abM abM abM abM -abB +bnd abN abN abN @@ -35397,38 +35439,38 @@ mdQ gwP gwP gwP -xZE -xZE +ueS +ueS gwP gwP gwP gwP gwP -xZE -xZE +ueS +ueS gwP gwP gwP -tOS +jfr gwP gwP mdQ gwP gwP -jGU -dmT -iGf -dmT -owZ -wHh -tOS +pnx +bim +blX +bim +tuZ +qSp +jfr gwP -aca +arx gwP gwP -vle -qdx -xKL +bDg +tpa +oZK gwP gwP gwP @@ -35436,12 +35478,12 @@ gwP gwP gwP gwP -oMZ -xZE +cAR +ueS gwP gwP -oMZ -oMZ +cAR +cAR gwP gwP gwP @@ -35450,7 +35492,7 @@ gwP gwP gwP pat -afJ +egz ahF ahF ahF @@ -35610,10 +35652,10 @@ abM abM abM abM -abB +bnd abN abN -abQ +hqU abN abN abM @@ -35625,15 +35667,15 @@ gwP gwP gwP gwP -xZE -xZE +ueS +ueS gwP -tOS +jfr gwP gwP gwP gwP -xZE +ueS gwP gwP gwP @@ -35643,22 +35685,22 @@ gwP gwP gwP gwP -hjo -kML -ukY -soY -wHh +vTA +aTn +oXi +qLv +qSp gwP gwP gwP -aca -vle -qdx -cHW -dmT -grW -qdx -xKL +arx +bDg +tpa +dbq +bim +fog +tpa +oZK gwP gwP gwP @@ -35668,17 +35710,17 @@ gwP gwP gwP gwP -tOS +jfr gwP gwP gwP gwP gwP gwP -tOS +jfr gwP pat -afJ +egz ahF ahF ahV @@ -35691,14 +35733,14 @@ ahF ane ane ane -vMV -vMV +smv +smv ane ane ane ane -vMV -vMV +smv +smv ane ane ane @@ -35821,7 +35863,7 @@ abN abN abN abN -abQ +hqU abN abN abN @@ -35838,7 +35880,7 @@ abM abM abM abM -abB +bnd abN abN abN @@ -35847,7 +35889,7 @@ abN abN abN abN -abQ +hqU abN gwP gwP @@ -35861,8 +35903,8 @@ gwP gwP gwP gwP -aca -tOS +arx +jfr gwP gwP gwP @@ -35873,7 +35915,7 @@ gwP gwP abO gwP -aca +arx gwP gwP gwP @@ -35881,15 +35923,15 @@ gwP gwP mdQ mdQ -hhs -hhs -hhs -fLh -dmT -grW +pFL +pFL +pFL +cII +bim +fog acp acp -xKL +oZK gwP gwP abO @@ -35899,21 +35941,21 @@ gwP gwP gwP gwP -tOS +jfr gwP gwP gwP gwP gwP pat -fAM +ibW ahF ahF ahF ahF ahF ahF -afJ +egz ahF ane ane @@ -36066,8 +36108,8 @@ abM abM abM abM -abB -abB +bnd +bnd abN abN abN @@ -36085,11 +36127,11 @@ gwP gwP gwP gwP -sMx -sMx +qLd +qLd gwP gwP -aca +arx gwP gwP gwP @@ -36101,7 +36143,7 @@ gwP gwP gwP gwP -aca +arx gwP gwP gwP @@ -36111,37 +36153,37 @@ mdQ mdQ onU onU -hhs -hhs -hhs -dmT -dmT -hhs -eft -xKL +pFL +pFL +pFL +bim +bim +pFL +aqg +oZK gwP -oMZ -oMZ +cAR +cAR gwP gwP -xZE -xZE +ueS +ueS gwP gwP -xZE -xZE -xZE -xZE +ueS +ueS +ueS +ueS gwP pat -afJ +egz ahF ahF ahF ahF ahF -ahH -afJ +fFf +egz ahF ahF ahF @@ -36149,7 +36191,7 @@ ane ane xwr xwr -jTP +ueW xwr xwr xwr @@ -36274,10 +36316,10 @@ abM abM abN abN -abQ -abB -abB -abB +hqU +bnd +bnd +bnd abN abN abM @@ -36295,12 +36337,12 @@ abM abM abM abM -abB +bnd abN abN abN abN -abQ +hqU abN abN abN @@ -36313,11 +36355,11 @@ gwP gwP gwP gwP -sMx -sMx +qLd +qLd gwP gwP -aca +arx gwP gwP gwP @@ -36327,10 +36369,10 @@ gwP gwP gwP gwP -xZE -xZE -xZE -xZE +ueS +ueS +ueS +ueS mdQ mdQ mdQ @@ -36340,26 +36382,26 @@ mdQ mdQ onU onU -acK -dmT -dmT -kCD -dmT -hhs -soz -jqr -dFz -oMZ -aca -aca -xZE -xZE -aca +nuI +bim +bim +xTz +bim +pFL +jiO +uVf +dQl +cAR +arx +arx +ueS +ueS +arx mdQ mdQ mdQ mdQ -xZE +ueS mdQ mdQ afV @@ -36369,9 +36411,9 @@ ahF ahF ahF ahF -afJ +egz ahF -ahH +fFf xwr xwr xwr @@ -36392,7 +36434,7 @@ oyx oyx oyx oyx -fEU +rPQ oyx oyx oyx @@ -36501,13 +36543,13 @@ abM abM abM abm -tdX -tdX -aas -aas -aas -tdX -tdX +nlJ +nlJ +knS +knS +knS +nlJ +nlJ abm abM amk @@ -36537,7 +36579,7 @@ mdQ mdQ mdQ gwP -tOS +jfr gwP gwP gwP @@ -36545,20 +36587,20 @@ gwP gwP gwP gwP -aca +arx gwP gwP -tOS +jfr gwP gwP gwP -tOS +jfr gwP gwP gwP -tOS -uSF -xZE +jfr +tRn +ueS mdQ mdQ mdQ @@ -36569,15 +36611,15 @@ mdQ mdQ onU onU -htV -dmT -dmT -dmT -sNq -rTT -rTT -nLF -rbs +wRw +bim +bim +bim +arm +gda +gda +uaw +eLC eGD eGD eGD @@ -36764,7 +36806,7 @@ abM mdQ mdQ mdQ -xZE +ueS gwP gwP gwP @@ -36772,8 +36814,8 @@ gwP gwP gwP gwP -xZE -xZE +ueS +ueS gwP gwP gwP @@ -36801,18 +36843,18 @@ onU onU onU onU -hhs -rTT -aIA -lhH -lkq +pFL +gda +eNd +qXc +niy eGD eGD eGD eGD eGD eGD -ufG +rTA abS abS abS @@ -36841,7 +36883,7 @@ xwr xwr xwr xwr -jTP +ueW xwr oyx oyx @@ -36982,7 +37024,7 @@ abM abM abN abN -abQ +hqU abN abN abM @@ -36992,16 +37034,16 @@ abM mdQ mdQ mdQ -xZE +ueS gwP -tOS +jfr gwP gwP -xZE -xZE -xZE -xZE -xZE +ueS +ueS +ueS +ueS +ueS gwP gwP gwP @@ -37031,16 +37073,16 @@ iIB iIB iIB iIB -rTT -rTT -nLF -liI +gda +gda +uaw +mYw eGD eGD -ufG -ufG +rTA +rTA eGD -ufG +rTA abS abS abS @@ -37065,7 +37107,7 @@ ahy ahx ahx xwr -jTP +ueW xwr akl xwr @@ -37224,21 +37266,21 @@ mdQ gwP gwP gwP -xZE -xZE +ueS +ueS acp acp acp -xZE -xZE -xZE +ueS +ueS +ueS gwP gwP gwP gwP gwP gwP -tOS +jfr gwP gwP gwP @@ -37259,24 +37301,24 @@ abS iIB iIB iIB -rTT -dAu -hkT -shb +gda +eqS +iXD +sVT eGD eGD gIe -ufG +rTA eGD -ufG -ufG +rTA +rTA abS abS abS abS afV ahF -ahH +fFf ahF ane ane @@ -37301,7 +37343,7 @@ xwr xwr oyx oyx -fEU +rPQ oyx oyx oyx @@ -37450,19 +37492,19 @@ mdQ mdQ mdQ mdQ -jqr -sxl -xZE +uVf +uQJ +ueS acp acu acu acu acp -xZE -xZE +ueS +ueS gwP gwP -tOS +jfr gwP gwP gwP @@ -37487,17 +37529,17 @@ abS abS iIB iIB -rmt -rTT -tde -vtk +vbC +gda +iGT +tjF eGD -acq +noN eGD -ufG +rTA eGD eGD -ufG +rTA abS abS abS @@ -37678,8 +37720,8 @@ mdQ mdQ mdQ mdQ -fLh -uRe +cII +grX acp acu acu @@ -37687,7 +37729,7 @@ acy acu acu acp -xZE +ueS gwP gwP gwP @@ -37715,10 +37757,10 @@ abS abS abS iIB -rTT -rTT -onP -ufG +gda +gda +pYC +rTA eGD eGD eGD @@ -37744,7 +37786,7 @@ xwr ahz rcY ahL -aie +mud aiu ahL ahz @@ -37906,16 +37948,16 @@ mdQ mdQ mdQ onU -gRk -uRe +oxO +grX acu acu acu -abG +gJq acu acy acp -xZE +ueS gwP gwP gwP @@ -37943,9 +37985,9 @@ abS abS abS abS -wzI -tde -uwG +pgA +iGT +ukC eGD eGD eGD @@ -38120,10 +38162,10 @@ abm abm abm abm -tdX -adt -tdX -tdX +nlJ +iaI +nlJ +nlJ abm acf acf @@ -38134,8 +38176,8 @@ mdQ mdQ onU onU -dmT -uRe +bim +grX acp acu acy @@ -38143,7 +38185,7 @@ acu acy acu acp -xZE +ueS gwP gwP gwP @@ -38153,9 +38195,9 @@ gwP gwP gwP mdQ -aca -aca -aca +arx +arx +arx mdQ abS abS @@ -38171,10 +38213,10 @@ abS ady ady ady -tde -uwG -ufG -hzR +iGT +ukC +rTA +kPH eGD eGD eGD @@ -38188,12 +38230,12 @@ ady abS afV ahF -ahH +fFf ahF ane xwr xwr -jTP +ueW xwr xwr xwr @@ -38362,21 +38404,21 @@ acf onU onU onU -dmT -grW -xZE +bim +fog +ueS acp acu acu acu acp -xZE -xZE +ueS +ueS gwP gwP gwP gwP -tOS +jfr gwP gwP acf @@ -38398,17 +38440,17 @@ abS abS ady eGD -fqi -uwG +ttS +ukC eGD -ufG -hzR +rTA +kPH eGD eGD eGD eGD -hzR -fYl +kPH +ikr eGD eGD eGD @@ -38418,13 +38460,13 @@ afV ahF ahF ahF -afJ +egz xwr xwr xwr xwr xwr -jTP +ueW ahx ahx ahy @@ -38435,7 +38477,7 @@ ahx xwr xwr ajR -jTP +ueW xwr xwr xwr @@ -38590,15 +38632,15 @@ acf onU onU onU -dOA -dmT -xZE -xZE +gXM +bim +ueS +ueS acp acp acp -xZE -xZE +ueS +ueS gwP gwP gwP @@ -38635,18 +38677,18 @@ eGD eGD eGD eGD -hzR -ufG +kPH +rTA eGD eGD eGD abS abS afV -afJ -afJ -afJ -afJ +egz +egz +egz +egz xwr xwr rba @@ -38818,14 +38860,14 @@ acf mdQ onU mdQ -htV -dmT -grW -xKL -xZE -xZE -xZE -xZE +wRw +bim +fog +oZK +ueS +ueS +ueS +ueS gwP gwP gwP @@ -38838,7 +38880,7 @@ acf acf abS eGD -acq +noN eGD eGD eGD @@ -38854,16 +38896,16 @@ abS eGD eGD eGD -adP -adP +siI +siI eGD -acq +noN eGD -bje -gVw -vih -gVw -rbs +gxD +ykH +eep +ykH +eLC eGD eGD eGD @@ -39046,10 +39088,10 @@ acf mdQ mdQ mdQ -iGx -dmT -cQB -uRe +xbV +bim +lRv +grX gwP gwP gwP @@ -39082,17 +39124,17 @@ abS eGD eGD eGD -adP -adP -adP -bje -gVw -tMQ -rTT -mJF -rTT -nLF -rbs +siI +siI +siI +gxD +ykH +gSG +gda +wAw +gda +uaw +eLC eGD ady ady @@ -39274,18 +39316,18 @@ acf acf mdQ mdQ -hhs -hhs -uaL -iuf -jvQ -abH -jvQ -xKL +pFL +pFL +qYX +jXk +kLK +bRv +kLK +oZK gwP gwP gwP -tOS +jfr gwP gwP acf @@ -39297,7 +39339,7 @@ abS eGD eGD eGD -acq +noN eGD abS abS @@ -39311,16 +39353,16 @@ eGD eGD eGD eGD -adP -daY -tPH -rTT -pIB -rTT -hpK -rTT -ohf -onP +siI +caw +hgF +gda +rqO +gda +dMo +gda +adv +pYC eGD ady abS @@ -39344,7 +39386,7 @@ xwr xwr xwr xwr -jTP +ueW xwr xwr aZa @@ -39503,15 +39545,15 @@ acf acf mdQ mdQ -hhs -hhs -hhs -hhs -dmT -dmT -grW -jvQ -xKL +pFL +pFL +pFL +pFL +bim +bim +fog +kLK +oZK gwP gwP gwP @@ -39536,25 +39578,25 @@ abS abS eGD eGD -acq +noN eGD eGD eGD -sVx -iDX -kdj -rTT +tTl +hpv +pZu +gda iIB iIB iIB -uOD -onP +xYs +pYC abS abS abS abS xwr -jTP +ueW xwr xwr xwr @@ -39564,11 +39606,11 @@ xwr xwr xwr xwr -jTP +ueW xwr xwr xwr -jTP +ueW xwr xwr xwr @@ -39736,10 +39778,10 @@ mdQ onU onU onU -sXg -dmT -tlk -uRe +bZa +bim +dFQ +grX gwP acf acf @@ -39767,10 +39809,10 @@ eGD eGD eGD eGD -bje -tMQ -rTT -rTT +gxD +gSG +gda +gda iIB iIB abS @@ -39786,7 +39828,7 @@ xwr xwr xwr xwr -jTP +ueW xwr xwr xwr @@ -39966,9 +40008,9 @@ uxU uxU uxU uxU -ryp -vbK -dGQ +fVn +gUj +keR acf acf acf @@ -39995,7 +40037,7 @@ eGD adc eGD eGD -fqi +ttS abS iIB iIB @@ -40018,7 +40060,7 @@ xwr xwr xwr xwr -jTP +ueW xwr cxc nrm @@ -40190,12 +40232,12 @@ acf acf acf acf -fDE -pAE -fDE -vAB -fDE -nUZ +pwy +mAd +pwy +caC +pwy +uuI abl acf acf @@ -40210,7 +40252,7 @@ acf abS abS eGD -acq +noN eGD eGD abS @@ -40415,15 +40457,15 @@ acf acf acf acf -pAE -fDE -fDE -sPK -ogJ -scs -scs -scs -jgy +mAd +pwy +pwy +tos +mbU +fYg +fYg +fYg +vEh abl abl abl @@ -40448,7 +40490,7 @@ abS abS eGD eGD -acq +noN eGD abS abS @@ -40483,7 +40525,7 @@ mnQ iXz xwr xwr -jTP +ueW xwr xwr xwr @@ -40639,15 +40681,15 @@ acf acf acf acf -izh -izh -izh -ejp -scs -rIc -scs -scs -jgy +xwd +xwd +xwd +cvM +fYg +mYx +fYg +fYg +vEh abl abl abl @@ -40689,12 +40731,12 @@ abS abS xwr xwr -jTP +ueW xwr xwr xwr xwr -jTP +ueW xwr xwr xwr @@ -40867,21 +40909,21 @@ acf acf acf acf -izh -abF -abc -izh +xwd +jFI +hJj +xwd abl abl abl abl abl abl -abv +bGU abl abl -izh -izh +xwd +xwd abl abl abl @@ -40896,12 +40938,12 @@ abS abS eGD eGD -bje -gVw -gVw -rbs +gxD +ykH +ykH +eLC eGD -acO +iIo eGD eGD eGD @@ -41095,10 +41137,10 @@ acf acf acf acf -izh -abc +xwd +hJj abl -abw +pFk abl abl abl @@ -41108,30 +41150,30 @@ abl abl abl abl -izh -izh +xwd +xwd abl -abv +bGU abl -izh -izh +xwd +xwd abl abl abl abl abl abl -dGQ -bje -gVw -lbt -rTT -rTT -nLF -rbs -acO +keR +gxD +ykH +mFf +gda +gda +uaw +eLC +iIo eGD -acq +noN eGD eGD abS @@ -41323,10 +41365,10 @@ acf acf acf acf -izh -hBL -hBL -izh +xwd +eMQ +eMQ +xwd abl abl abl @@ -41341,23 +41383,23 @@ abl abl abl abl -izh -izh +xwd +xwd abl abl abl abl abl abl -dGQ -wbg -xdb -rTT -mca -rTT -rTT -onP -acO +keR +fHj +rhk +gda +xhW +gda +gda +pYC +iIo eGD eGD eGD @@ -41368,7 +41410,7 @@ abS abS abS xwr -jTP +ueW xwr xwr xwr @@ -41382,7 +41424,7 @@ xwr xwr xwr xwr -jTP +ueW xwr xwr kFV @@ -41551,10 +41593,10 @@ acf acf acf acf -izh -abc +xwd +hJj abl -dGQ +keR abl abl abI @@ -41572,20 +41614,20 @@ abl abl abl abl -abv +bGU abl abl abl abl -dGQ -wbg -rTT -rTT +keR +fHj +gda +gda iIB iIB abS -onP -acO +pYC +iIo eGD eGD eGD @@ -41603,7 +41645,7 @@ xwr mPK xwr xwr -jTP +ueW xwr nrm nrm @@ -41779,13 +41821,13 @@ acf acf acf acf -izh -abF -abc -izh +xwd +jFI +hJj +xwd abl abl -abv +bGU abl abl abl @@ -41799,13 +41841,13 @@ abl abl abl abl -izh -izh +xwd +xwd abl abl abl abl -izh +xwd abS abS iIB @@ -41826,7 +41868,7 @@ abS xwr xwr xwr -jTP +ueW xwr xwr xwr @@ -42007,28 +42049,28 @@ acf acf acf acf -izh -hBL -hBL -izh +xwd +eMQ +eMQ +xwd abl abl abI abl abl -dOQ +pTj abl abl abl -abv +bGU abl abl abl abl abl abl -izh -izh +xwd +xwd abl abl abl @@ -42235,11 +42277,11 @@ acf acf acf acf -izh -abc +xwd +hJj abl -dGQ -abv +keR +bGU abl abl abl @@ -42290,7 +42332,7 @@ wvP wVk wVk wVk -csM +jHj wVk wVk wVk @@ -42298,7 +42340,7 @@ wvP wVk wVk wVk -csM +jHj wVk wVk wVk @@ -42463,10 +42505,10 @@ acf acf acf acf -izh -abF -abc -izh +xwd +jFI +hJj +xwd abl abl abI @@ -42482,7 +42524,7 @@ abl abl abl abl -abv +bGU abl abl abl @@ -42502,8 +42544,8 @@ abS abS abS abS -gVw -jpX +ykH +etJ eGD abS abS @@ -42531,7 +42573,7 @@ wvP wVk jaa wVk -csM +jHj wVk wVk aop @@ -42691,10 +42733,10 @@ acf acf acf acf -izh -izh -izh -izh +xwd +xwd +xwd +xwd abl abl abl @@ -42706,8 +42748,8 @@ abl abl abl abl -izh -izh +xwd +xwd abl abl abl @@ -42730,9 +42772,9 @@ abS abS abS abS -bBT -rze -acO +aAf +oiH +iIo abS abS abS @@ -42929,13 +42971,13 @@ abl sJM abl abl -abv +bGU abl abl abl abl -izh -izh +xwd +xwd abl abl abl @@ -42958,16 +43000,16 @@ abS abS abS abS -rTT -nLF -rbs +gda +uaw +eLC eGD xTa abS abS wVk wVk -csM +jHj wvP wVk wVk @@ -43160,14 +43202,14 @@ abl abl abl abl -hBL -hBL -hBL -hBL +eMQ +eMQ +eMQ +eMQ abl abl -izh -izh +xwd +xwd abl abl acf @@ -43185,10 +43227,10 @@ abS abS abS iIB -rTT -kdj -rTT -onP +gda +pZu +gda +pYC eGD eGD abS @@ -43199,7 +43241,7 @@ wVk wVk wVk wVk -csM +jHj wVk afk afu @@ -43219,7 +43261,7 @@ wVk wVk wVk wVk -csM +jHj wVk wVk ajr @@ -43380,7 +43422,7 @@ acf acf acf abl -abv +bGU abl abl abl @@ -43388,14 +43430,14 @@ abl abl abl abl -hBL -hBL -hBL -hBL +eMQ +eMQ +eMQ +eMQ abl abl -izh -izh +xwd +xwd abl abg acf @@ -43413,10 +43455,10 @@ abS abS iIB iIB -rTT -rTT -rTT -onP +gda +gda +gda +pYC eGD eGD abS @@ -43525,7 +43567,7 @@ aOt aLe aEt aQp -aRo +ufx aIO aSg aSL @@ -43641,10 +43683,10 @@ abS iIB iIB iIB -mca -rTT -tde -uwG +xhW +gda +iGT +ukC eGD eGD abS @@ -43867,12 +43909,12 @@ abS abS abS iIB -rTT -rTT -rTT -rTT -onP -acq +gda +gda +gda +gda +pYC +noN eGD eGD abS @@ -44061,7 +44103,7 @@ acf acf acf acf -izh +xwd abl abl abl @@ -44070,13 +44112,13 @@ abl abl abl abl -izh -izh +xwd +xwd abl abl abl abl -abv +bGU abl abl abl @@ -44096,11 +44138,11 @@ abS abS abS abS -rTT -xdb -rTT -acY -rbs +gda +rhk +gda +eIx +eLC eGD eGD abS @@ -44288,20 +44330,20 @@ acf acf acf acf -izh -izh +xwd +xwd abl abl abl -izh -izh +xwd +xwd abl -abv +bGU abl -izh -izh +xwd +xwd abl -abv +bGU abl abl abl @@ -44323,12 +44365,12 @@ abS abS abS abS -wzI -aIA -rTT -rTT -rTT -onP +pgA +eNd +gda +gda +gda +pYC eGD eGD abS @@ -44357,7 +44399,7 @@ afN ahR wVk afk -csM +jHj wVk wVk wVk @@ -44516,13 +44558,13 @@ acf acf acf acf -izh +xwd abl abl -abv +bGU abl -izh -izh +xwd +xwd abl abl abl @@ -44553,10 +44595,10 @@ abS abS abS iIB -rTT -rTT -rTT -onP +gda +gda +gda +pYC eGD eGD abS @@ -44655,7 +44697,7 @@ iXG iXG aIO aIO -aKn +mlt aKF aLf aLN @@ -44744,7 +44786,7 @@ acf acf acf acf -izh +xwd abl abl abl @@ -44762,10 +44804,10 @@ abl abl abl abl -dGQ -aaM -dGQ -izh +keR +eMh +keR +xwd acf acf acf @@ -44782,9 +44824,9 @@ abS abS iIB iIB -rTT -uxL -onP +gda +ewp +pYC eGD abS abS @@ -44972,7 +45014,7 @@ acf acf acf acf -izh +xwd abl abl abl @@ -44980,21 +45022,21 @@ abl abl abl abl -izh -izh +xwd +xwd abl abl abl abl abl abl -abv +bGU abl -dGQ +keR abl abl abl -izh +xwd acf acf abS @@ -45010,9 +45052,9 @@ abS abS abS iIB -rTT -rTT -onP +gda +gda +pYC eGD abS abS @@ -45021,7 +45063,7 @@ abS abS abS wVk -csM +jHj wvP wVk wVk @@ -45204,12 +45246,12 @@ abl abl abl abg -abv +bGU abl abl abl -izh -izh +xwd +xwd abl abl abl @@ -45217,13 +45259,13 @@ abl abl abl abl -izh -izh -abv +xwd +xwd +bGU abl -izh -izh -izh +xwd +xwd +xwd acf abS abS @@ -45238,9 +45280,9 @@ abS abS abS iIB -rTT -cxi -onP +gda +uKA +pYC eGD abS abS @@ -45443,13 +45485,13 @@ abl acf acf acf -dGQ -dGQ -izh -izh +keR +keR +xwd +xwd abl abl -izh +xwd acf acf acf @@ -45466,10 +45508,10 @@ abS abS abS abS -rTT -rTT -nLF -rbs +gda +gda +uaw +eLC eGD abS abS @@ -45657,10 +45699,10 @@ acf acf abl abl -abv +bGU abl -izh -izh +xwd +xwd abl abl abl @@ -45693,11 +45735,11 @@ abS abS abS abS -rTT -rTT -hpK -xdb -onP +gda +gda +dMo +rhk +pYC eGD abS abS @@ -45726,7 +45768,7 @@ ahQ wVk wVk jaa -csM +jHj wVk wVk ajr @@ -45887,11 +45929,11 @@ abl abl abl abl -izh -izh +xwd +xwd abl abl -abv +bGU abl abl acf @@ -45920,12 +45962,12 @@ abS abS abS abS -brC -rTT -rTT -rTT -rTT -onP +vTT +gda +gda +gda +gda +pYC eGD abS abS @@ -46110,18 +46152,18 @@ acf acf acf acf -izh +xwd abl abl abl abl abl -gPu -jcn -jcn -jcn -jcn -jcn +rEB +cLV +cLV +cLV +cLV +cLV acf acf acf @@ -46131,7 +46173,7 @@ acf abl abl abl -abv +bGU abl abl acf @@ -46148,12 +46190,12 @@ abS abS abS abS -rTT -rTT -xdb -rTT -lnr -onP +gda +gda +rhk +gda +mnl +pYC eGD abS abS @@ -46331,25 +46373,25 @@ aaw aaK aah aah -tdX +nlJ abl acf acf acf -izh -izh -izh +xwd +xwd +xwd abl -abv +bGU abl abl abl -xWy -cqH -fDE -bvX -fDE -fDE +cap +spD +pwy +tRq +pwy +pwy acf acf acf @@ -46377,11 +46419,11 @@ abS abS abS abS -rTT -mOL -rTT -tde -uwG +gda +kku +gda +iGT +ukC eGD abS abS @@ -46391,7 +46433,7 @@ abS wVk wVk wVk -csM +jHj wVk wVk wVk @@ -46401,7 +46443,7 @@ wVk wVk wVk wVk -csM +jHj wVk wvP wVk @@ -46558,13 +46600,13 @@ aaw aaw aaK aah -aar -tdX +bBs +nlJ abl abl acf acf -izh +xwd abl abl abl @@ -46575,9 +46617,9 @@ abl acf acf uxU -ryp -uMz -ryp +fVn +sDm +fVn acf acf acf @@ -46605,10 +46647,10 @@ abS abS abS abS -ohf -rTT -rTT -onP +adv +gda +gda +pYC eGD abS abS @@ -46787,7 +46829,7 @@ aaw aaK aah aah -tdX +nlJ abl abl abl @@ -46804,9 +46846,9 @@ acf acf uxU uxU -fDE -gcB -fDE +pwy +vIU +pwy acf acf acf @@ -46833,17 +46875,17 @@ abS abS abS iIB -rTT -rTT -xdb -onP +gda +gda +rhk +pYC eGD abS abS abS abS wVk -csM +jHj wVk wVk wVk @@ -46851,7 +46893,7 @@ wVk wVk wVk wVk -csM +jHj wvP wVk afk @@ -46861,7 +46903,7 @@ wVk wVk wVk wVk -csM +jHj wVk wVk wVk @@ -47015,7 +47057,7 @@ aaw aaK aah aah -tdX +nlJ abl abl abl @@ -47032,9 +47074,9 @@ acf acf acf uxU -fDE -tti -fDE +pwy +vAF +pwy acf acf acf @@ -47061,10 +47103,10 @@ abS abS iIB iIB -rTT -rmt -rTT -onP +gda +vbC +gda +pYC abS abS abS @@ -47094,7 +47136,7 @@ wVk wVk wVk wVk -csM +jHj wVk wVk ajr @@ -47243,15 +47285,15 @@ aaw aaK aah aah -tdX +nlJ abl abl abl abl -abv +bGU abl abl -abv +bGU abl abl acf @@ -47260,14 +47302,14 @@ acf acf acf uxU -fDE -otl -fDE -fDE +pwy +oZO +pwy +pwy acf acf uxU -fDE +pwy acf acf acf @@ -47275,9 +47317,9 @@ acf acf abl abl -abv +bGU abl -gPu +rEB abS abS abS @@ -47289,10 +47331,10 @@ abS iIB iIB iIB -rTT -rTT -rTT -onP +gda +gda +gda +pYC abS abS abS @@ -47473,10 +47515,10 @@ aah abm abm acf -izh -izh -izh -izh +xwd +xwd +xwd +xwd abl abl abl @@ -47488,16 +47530,16 @@ acf acf acf acf -fDE -fDE -fDE -fDE +pwy +pwy +pwy +pwy uxU uxU uxU -hez -fDE -spK +wdT +pwy +xvp acf acf acf @@ -47505,7 +47547,7 @@ acf abl abl abl -kxv +iah abS abS abS @@ -47517,9 +47559,9 @@ abS abS iIB iIB -hav -hav -cIU +oTu +oTu +tvK abS abS abS @@ -47539,7 +47581,7 @@ wVk wVk wVk wVk -csM +jHj tzo kHB kHB @@ -47704,7 +47746,7 @@ acf acf acf acf -izh +xwd abl abl abl @@ -47717,15 +47759,15 @@ acf acf acf acf -fDE -fDE -fDE -czq +pwy +pwy +pwy +ueI uxU uxU -rUX -fDE -spK +tsp +pwy +xvp abl acf acf @@ -47733,8 +47775,8 @@ acf abl abl abl -kxv -han +iah +dfD abS abS abS @@ -47745,9 +47787,9 @@ abS abS abS abS -aTy -aTy -tYW +nEO +nEO +jAG abS pDt pDt @@ -47946,14 +47988,14 @@ acf acf acf acf -fDE -fDE -fDE +pwy +pwy +pwy uxU -mrg -fDE -poX -jgy +gZR +pwy +eFe +vEh acf acf acf @@ -47961,8 +48003,8 @@ abl abl abl abl -uMd -bvX +nqg +tRq iIB abS abS @@ -47992,7 +48034,7 @@ qjf qjf aex wVk -csM +jHj lQC lQC muz @@ -48162,9 +48204,9 @@ acf acf acf acf -dGQ -dGQ -any +keR +keR +dfW acf acf acf @@ -48174,13 +48216,13 @@ acf acf acf acf -mrg -fDE -fDE -otl -ryp -ogJ -jgy +gZR +pwy +pwy +oZO +fVn +mbU +vEh abl acf acf @@ -48188,8 +48230,8 @@ acf abl abl abl -kxv -fDE +iah +pwy iIB iIB abS @@ -48206,7 +48248,7 @@ pDt pDt pDt pDt -qRj +ebh pDt aem qjf @@ -48232,7 +48274,7 @@ pcd wVk wVk wVk -csM +jHj xov wVk dIO @@ -48402,31 +48444,31 @@ acf acf acf acf -mrg -sPK -fDE -fDE -mrg -spK +gZR +tos +pwy +pwy +gZR +xvp abl abl abl -dGQ +keR abl abl -abv +bGU abl abl -uOl -ydz -eQL -eQL -eQL -pgc +nYs +owy +dCF +dCF +dCF +fPq iIB iIB -bOm -xhv +hrF +bGK abS pDt pDt @@ -48620,7 +48662,7 @@ acf acf acf acf -abv +bGU abl abg acf @@ -48631,35 +48673,35 @@ acf acf acf acf -fDE -fDE -fDE -mrg -spK +pwy +pwy +pwy +gZR +xvp abl abl abl -abw +pFk abl abl abl abl abl -bnM -lIL -aTy -xNi -aTy -bxb -eQL -eQL -eQL -xhv +eXh +rpz +nEO +kls +nEO +mxu +dCF +dCF +dCF +bGK pDt pDt pDt pDt -qRj +ebh pDt pDt pDt @@ -48860,29 +48902,29 @@ acf acf acf uxU -tti -fDE -ryp -spK -abl -gPu -jcn -ner -jcn -jcn -jcn -jcn -jcn -jcn -dLm -kae +vAF +pwy +fVn +xvp +abl +rEB +cLV +iXK +cLV +cLV +cLV +cLV +cLV +cLV +clU +cRw pDt pDt -kpx -aTy -aTy -aTy -tYW +xNn +nEO +nEO +nEO +jAG pDt pDt pDt @@ -49088,29 +49130,29 @@ acf uxU uxU uxU -fDE -fDE -acf -xRe -kLl -cqN -fDE -ryp -fDE -fDE -fDE -fDE -osf -hNT -ydz -xhv +pwy +pwy +acf +hfT +ooD +vPh +pwy +fVn +pwy +pwy +pwy +pwy +dUA +rZb +owy +bGK pDt pDt -dCD -hmJ -hmJ -hmJ -enn +mLc +hcE +hcE +hcE +lip pDt pDt pDt @@ -49314,31 +49356,31 @@ acf acf uxU uxU -fDE -fDE -fDE -fDE +pwy +pwy +pwy +pwy acf acf -fDE -icd -fDE +pwy +ful +pwy uxU uxU -fDE -fDE -han -otl -fDE +pwy +pwy +dfD +oZO +pwy acf -xhv +bGK pDt -dCD -cEi -wpY -eQL -eQL -xhv +mLc +osi +szm +dCF +dCF +bGK pDt oeN oeN @@ -49533,40 +49575,40 @@ acf acf abl abl -abv +bGU abl abl acf -xWy -fDE +cap +pwy acf uxU -fDE -fDE -yjs -fDE -fDE +pwy +pwy +jTE +pwy +pwy acf acf -fDE -cSL -fDE +pwy +rGr +pwy uxU acf acf -fDE -mVr +pwy +kIx uxU uxU acf -tYW +jAG pDt -crn -eQL -eQL +kWK +dCF +dCF ntr -hEe -xhv +nUa +bGK pDt oeN adC @@ -49591,7 +49633,7 @@ qjf qjf qjf lQC -tMB +pcI lQC fpn uSy @@ -49765,36 +49807,36 @@ abl abl abl abl -xWy -cSL -ryp -fDE -fDE -pVZ -fDE -fDE +cap +rGr +fVn +pwy +pwy +iaa +pwy +pwy acf acf uxU -fDE -fDE -fDE -fDE +pwy +pwy +pwy +pwy acf acf -fDE -fDE +pwy +pwy uxU acf acf nbw pDt -crn +kWK nbw ntr ntr -nNu -xhv +iTt +bGK pDt oeN adD @@ -49831,7 +49873,7 @@ lQC eOq lQC lQC -tMB +pcI lQC lQC lQC @@ -49993,21 +50035,21 @@ abl abl abl abl -bnM -uOl -ryp -fDE -fDE -fDE -fDE -ogJ -jgy +eXh +nYs +fVn +pwy +pwy +pwy +pwy +mbU +vEh acf uxU uxU -fDE -ogJ -tYx +pwy +mbU +pNW acf acf acf @@ -50020,9 +50062,9 @@ nbw nbw nbw nbw -eQL -eQL -xhv +dCF +dCF +bGK pDt oeN adE @@ -50054,7 +50096,7 @@ lQC lQC lQC lQC -tMB +pcI lQC qIw lQC @@ -50220,21 +50262,21 @@ abl abl abl abl -abv +bGU abl -bnM -oha -rWs -rWs -rWs -vBd -jgy +eXh +beQ +rqA +rqA +rqA +izU +vEh abl acf uxU -osf -fDE -qWI +dUA +pwy +uvb abl acf acf @@ -50247,10 +50289,10 @@ acf nbw nbw nbw -aTy -aTy -aTy -hRB +nEO +nEO +nEO +kXg pDt oeN abt @@ -50258,7 +50300,7 @@ adM adM ajd oeN -qRj +ebh pDt aem qjf @@ -50460,9 +50502,9 @@ abl abl acf acf -fDE -ogJ -jgy +pwy +mbU +vEh abl acf acf @@ -50506,7 +50548,7 @@ lQC lQC lQC lQC -tMB +pcI lQC lQC lQC @@ -50682,14 +50724,14 @@ acf acf acf acf -kLl -kLl -kLl +ooD +ooD +ooD abl acf acf acf -jgy +vEh abl abl acf @@ -50703,7 +50745,7 @@ acf nbw nbw pDt -qRj +ebh pDt pDt pDt @@ -50900,9 +50942,9 @@ acf acf acf acf -dGQ -any -dGQ +keR +dfW +keR acf acf acf @@ -50910,10 +50952,10 @@ acf acf acf uxU -fDE -roQ -fDE -spK +pwy +iqz +pwy +xvp abl acf abl @@ -50937,7 +50979,7 @@ pDt pDt pDt pDt -qRj +ebh pDt pDt pDt @@ -51131,23 +51173,23 @@ acf abl abl abl -izh +xwd acf acf acf acf uxU uxU -mrg -fDE -fDE -qWI +gZR +pwy +pwy +uvb abl abl abl abl abl -izh +xwd acf acf acf @@ -51193,7 +51235,7 @@ lQC lQC lQC lQC -tMB +pcI lQC lQC bZX @@ -51355,27 +51397,27 @@ acf acf acf acf -izh +xwd abl abl abl -izh +xwd acf acf acf acf uxU uxU -mrg -thk -ogJ -jgy +gZR +laT +mbU +vEh abl abl abl abl abl -izh +xwd acf acf acf @@ -51392,14 +51434,14 @@ jWM rGd pHn pDt -qRj +ebh pDt pDt pDt pDt pDt ugG -qRj +ebh aen xNK xNK @@ -51583,27 +51625,27 @@ acf acf acf acf -izh +xwd abl -abv +bGU abl -izh +xwd acf acf acf acf uxU acf -mrg -kIM -spK +gZR +usd +xvp abl abl -abv +bGU abl abl -izh -izh +xwd +xwd acf acf acf @@ -51811,7 +51853,7 @@ acf acf acf acf -izh +xwd abl abl abl @@ -51822,15 +51864,15 @@ acf acf acf acf -mrg -fDE -spK +gZR +pwy +xvp abl abl abl abl abl -izh +xwd acf acf acf @@ -51853,7 +51895,7 @@ pDt pDt adU acJ -qRj +ebh pDt pDt aen @@ -52049,16 +52091,16 @@ acf acf acf acf -mrg -mrg -ogJ -jgy +gZR +gZR +mbU +vEh abl abl abl abl abl -izh +xwd acf acf acf @@ -52102,7 +52144,7 @@ lQC lQC lQC lQC -tMB +pcI lQC lQC eOq @@ -52277,10 +52319,10 @@ acf acf acf acf -iTQ -rWs -jgy -abv +xmH +rqA +vEh +bGU abl abl abl @@ -52498,14 +52540,14 @@ acf acf abl abl -abv +bGU abl acf acf acf acf acf -jZX +ahj abl abl abl @@ -52534,7 +52576,7 @@ wSg pDt acF pDt -qRj +ebh iLL pDt pDt @@ -52689,22 +52731,22 @@ abm abm abm abm -tdX -adt -tdX -tdX -tdX +nlJ +iaI +nlJ +nlJ +nlJ abm abm abm abm abm abm -tdX -tdX -adt -tdX -tdX +nlJ +nlJ +iaI +nlJ +nlJ abm abm abm @@ -52741,7 +52783,7 @@ abl acf acf abl -abv +bGU abl abl acf @@ -53216,16 +53258,16 @@ jWM cAl adg pDt -qRj +ebh acF pDt pDt pDt -qRj +ebh pDt pDt xNK -wib +ecT xNK xNK xNK @@ -53245,7 +53287,7 @@ hHR hHR hHR hHR -tMB +pcI lQC bZX aio @@ -53376,15 +53418,15 @@ pZb pZb aag aag -aai +gzF aag pZb pZb pZb -aab +ioF aag aag -aai +gzF aag aag pZb @@ -53429,7 +53471,7 @@ abl abl abl abl -abv +bGU abl acf whU @@ -53467,7 +53509,7 @@ ahv ahv lQC lQC -tMB +pcI lQC hHR hHR @@ -53609,7 +53651,7 @@ aag aag pZb pZb -aab +ioF aag aag aag @@ -53646,9 +53688,9 @@ acf acf acf acf -oFJ -sLU -dGQ +upL +htK +keR acf acf acf @@ -53678,7 +53720,7 @@ pDt pDt pDt pDt -qRj +ebh pDt ahv ahv @@ -53835,9 +53877,9 @@ aag aag aag aag -aab -aab -aab +ioF +ioF +ioF aag aag aag @@ -53865,24 +53907,24 @@ acf acf pUm pUm -gkC -xSA -gkC +xQc +vwv +xQc pUm pUm pUm pUm pUm vVC -bvj -mHk -egU +wJl +rPl +nMc pUm whU whU fTM fTM -akL +egF fTM fTM whU @@ -53892,8 +53934,8 @@ whU whU whU whU -jMS -jMS +vZz +vZz whU whU whU @@ -54093,8 +54135,8 @@ acf vVC pUm pUm -iye -dtr +rct +pRV acg pUm pUm @@ -54102,9 +54144,9 @@ pUm pUm vVC vVC -uop -bvj -xar +dci +wJl +ufw pUm whU whU @@ -54118,11 +54160,11 @@ fTM whU whU whU -jMS -jMS +vZz +vZz fTM fTM -jMS +vZz whU whU whU @@ -54320,19 +54362,19 @@ acf uxU vVC vVC -fYG -bvj -mHk -iye +uWp +wJl +rPl +rct pUm pUm pUm pUm vVC vVC -rhi -etU -xar +tiy +uNC +ufw pUm whU whU @@ -54348,15 +54390,15 @@ whU fTM fTM fTM -akL +egF fTM fTM fTM fTM fTM -vCG +inP pDt -qRj +ebh pDt pDt pDt @@ -54384,7 +54426,7 @@ ahv ahv ahv ahv -rGZ +kyP xch xch xch @@ -54519,7 +54561,7 @@ pZb aag aag aag -aai +gzF aag aag aag @@ -54548,29 +54590,29 @@ vVC vVC vVC vVC -bvj -jRL -bvj -bvj +wJl +iXT +wJl +wJl pUm pUm pUm pUm vVC -bvj -bvj -jgj -dLW +wJl +wJl +fzn +pEr pUm whU whU whU whU fTM -lSA -yfe -yfe -uyn +jgs +mWH +mWH +ire fTM fTM fTM @@ -54580,15 +54622,15 @@ fTM fTM fTM fTM -akL +egF fTM -vCG +inP pDt pDt pDt pDt pDt -qRj +ebh pDt ahv ahv @@ -54751,11 +54793,11 @@ aag aag aag aag -aai +gzF aag -aab -aab -aab +ioF +ioF +ioF pZb pZb pZb @@ -54775,19 +54817,19 @@ pUm vVC vVC vVC -bvj -bvj -pQV -bvj +wJl +wJl +xAV +wJl pUm pUm pUm pUm pUm vVC -xwN -wCs -dLW +xGO +oyZ +pEr acg pUm whU @@ -54796,21 +54838,21 @@ whU whU whU whU -vAT -wLT -lBl -yfe -bQz +kDe +via +uDB +mWH +ilP fTM fTM fTM fTM fTM -lSA -eMe -eMe -uyn -vCG +jgs +gUJ +gUJ +ire +inP pDt pDt pDt @@ -54983,7 +55025,7 @@ aag aag aag aag -aab +ioF pZb pZb pZb @@ -55003,9 +55045,9 @@ pUm vVC vVC vVC -bvj -oQm -bvj +wJl +lRS +wJl pUm pUm pUm @@ -55013,8 +55055,8 @@ pUm pUm pUm pUm -bvj -xar +wJl +ufw acg pUm pUm @@ -55025,20 +55067,20 @@ whU whU whU unp -vAT -lNG -vAT -lBl -uyn -jMS -jMS -fTM -lSA -bkK -vAT -vAT -lBl -vCG +kDe +twH +kDe +uDB +ire +vZz +vZz +fTM +jgs +suq +kDe +kDe +uDB +inP pDt pDt iZG @@ -55071,7 +55113,7 @@ xch xch xch xch -rGZ +kyP xch xch xch @@ -55120,7 +55162,7 @@ ask ask ask arK -axY +lmk abY atH ati @@ -55201,7 +55243,7 @@ pZb aag aag aag -aai +gzF aag aag aag @@ -55211,7 +55253,7 @@ aag aag aag aag -aab +ioF pZb pZb pZb @@ -55230,10 +55272,10 @@ pUm pUm pUm vVC -bvj -mfn -bvj -bvj +wJl +fYD +wJl +wJl pUm pUm pUm @@ -55241,9 +55283,9 @@ pUm pUm pUm pUm -nha -tEm -gkC +bsK +rvj +xQc pUm pUm whU @@ -55255,16 +55297,16 @@ whU unp unp unp -wLT -vAT -lBl -vAg -pGL -tSi -bkK -vAT -jJg -nrR +via +kDe +uDB +nSL +ohO +uoG +suq +kDe +oxV +wzv whU whU pDt @@ -55442,7 +55484,7 @@ aag pZb pZb pZb -uYj +bFR xpR xpR xpR @@ -55458,22 +55500,22 @@ pUm pUm pUm pUm -bvj -bvj -bvj -ifr +wJl +wJl +wJl +oLs pUm -nzw -nzw +mLx +mLx acg acg acg pUm acg acg -aaN +wkN acg -gkC +xQc fTM whU whU @@ -55484,12 +55526,12 @@ whU whU unp unp -vAT -vAT -vAT -vAT -vAT -vAT +kDe +kDe +kDe +kDe +kDe +kDe whU unp unp @@ -55521,7 +55563,7 @@ cag agX agX agX -wJT +iBe xch xch xch @@ -55659,21 +55701,21 @@ aag aag aag aag -tVw -srn -srn -srn -pRD +oGV +dTs +dTs +dTs +kgz aag aag aag pZb pZb pZb -uYj -eqS -uYj -tuJ +bFR +rOs +bFR +ake xpR xpR xpR @@ -55685,12 +55727,12 @@ pZb pUm pUm pUm -rID -woT -woT -woT -woT -dLW +pTE +lpq +lpq +lpq +lpq +pEr acg acg acg @@ -55701,7 +55743,7 @@ acg acg acg acg -nzw +mLx fTM fTM whU @@ -55711,21 +55753,21 @@ whU whU whU whU -vAT -sxo -rby -vAT -vAT -jMD +kDe +fSQ +pJi +kDe +kDe +tnn whU whU unp whU whU whU -vCG -vCG -adX +inP +inP +uaR ahv ahv ahv @@ -55879,7 +55921,7 @@ pZb pZb pZb pZb -aab +ioF aag aag aag @@ -55887,24 +55929,24 @@ aag aag aag aag -dzM -uYj -tuJ -gzH -qfK -pRD +hbP +bFR +ake +iOv +dGB +kgz aag aag aag pZb pZb -uYj -uYj -uYj -mWA -uYj -uYj -uYj +bFR +bFR +bFR +gIo +bFR +bFR +bFR pZb pZb pZb @@ -55929,7 +55971,7 @@ acg acg acg acg -nzw +mLx fTM fTM fTM @@ -55938,20 +55980,20 @@ whU whU whU whU -jlt -jlt -jlt -jlt -jlt -jlt -pET +vTZ +vTZ +vTZ +vTZ +vTZ +vTZ +xCW whU whU whU whU fTM fTM -akL +egF fTM fTM ahv @@ -56106,35 +56148,35 @@ pZb pZb pZb pZb -aab -aab +ioF +ioF aag aag -aai +gzF aag aag aag -tVw -vxj -uYj -uYj -dHg -uYj -rIm +oGV +qkN +bFR +bFR +pUf +bFR +dex aag -aai +gzF aag -vly -wYB -pFB -pFB -fsc -uYj -uYj -uYj -dIv -uYj -uYj +bYz +oBK +nIB +nIB +gdX +bFR +bFR +bFR +eTx +bFR +bFR pZb pZb pZb @@ -56142,14 +56184,14 @@ pUm pUm acg acg -nzw -nzw +mLx +mLx acg acg acg acg -nzw -nzw +mLx +mLx acg acg acg @@ -56157,15 +56199,15 @@ acg acg acg acg -nzw +mLx fTM -akL +egF fTM fTM fTM fTM fTM -akL +egF fTM fTM fTM @@ -56177,9 +56219,9 @@ whU whU whU whU -yfe -yfe -uyn +mWH +mWH +ire fTM fTM fTM @@ -56214,7 +56256,7 @@ xch xch xch xch -rGZ +kyP xch xch ajw @@ -56333,59 +56375,59 @@ pZb pZb pZb pZb -aab -aab +ioF +ioF aag aag aag aag aag aag -tVw -uHc -uYj -uYj +oGV +uvc +bFR +bFR xpR -uYj -uYj -rIm +bFR +bFR +dex aag aag aag -vly +bYz aag -aai +gzF aag -wYB -pFB -sET -pFB -pFB -pFB -pFB -pFB -mFZ -vly +oBK +nIB +lbf +nIB +nIB +nIB +nIB +nIB +lpp +bYz acg acg acg acg -nzw -bfY +mLx +etL acg acg -aaN -nzw -nzw -nzw -nzw -aaN +wkN +mLx +mLx +mLx +mLx +wkN acg acg acg acg acg -gkC +xQc fTM fTM fTM @@ -56406,8 +56448,8 @@ whU whU whU whU -vAT -fIW +kDe +fsO fTM fTM fTM @@ -56438,7 +56480,7 @@ xch xch xch xch -rGZ +kyP xch xch xch @@ -56560,27 +56602,27 @@ pZb pZb pZb pZb -aab -aab +ioF +ioF aag aag aag aag aag aag -tVw -uHc -uYj -eYb +oGV +uvc +bFR +lUX xpR xpR -uYj -uYj -rIm +bFR +bFR +dex aag aag aag -vly +bYz aag aag aag @@ -56593,12 +56635,12 @@ aag aag aag aag -vly -cop -iye -iye -iye -egU +bYz +wNn +rct +rct +rct +nMc acg acg acg @@ -56609,8 +56651,8 @@ acg acg acg acg -nzw -nzw +mLx +mLx acg acg pUm @@ -56620,12 +56662,12 @@ fTM fTM fTM fTM -jMS -jMS +vZz +vZz fTM fTM fTM -akL +egF whU whU whU @@ -56634,8 +56676,8 @@ whU whU whU whU -fUj -fIW +khR +fsO aeT fTM fTM @@ -56788,7 +56830,7 @@ pZb pZb pZb pZb -aaD +fXd aag aag aag @@ -56796,19 +56838,19 @@ aag aag aag aag -dzM -uYj -rYe +hbP +bFR +sHf xpR xpR xpR -uYj -uYj -rIm +bFR +bFR +dex aag aag aag -vly +bYz aag aag aag @@ -56820,14 +56862,14 @@ aag aag aag aag -tVw -cqC -kmH -mLv -bvj -bvj -elp -egU +oGV +hsW +ump +wHH +wJl +wJl +rIS +nMc acg acg acg @@ -56837,8 +56879,8 @@ acg acg acg acg -nzw -nzw +mLx +mLx acg acg pUm @@ -56848,8 +56890,8 @@ whU whU fTM fTM -jMS -jMS +vZz +vZz fTM fTM uns @@ -56861,9 +56903,9 @@ whU whU whU unp -vAT -vAT -fIW +kDe +kDe +fsO fTM sIH fTM @@ -57014,25 +57056,25 @@ pZb pZb pZb pZb -aab -aab -aab +ioF +ioF +ioF aag aag aag aag aag aag -aai -dzM -rYe -rYe +gzF +hbP +sHf +sHf xpR xpR -rYe -uYj -anM -rIm +sHf +bFR +gEj +dex aag aag aag @@ -57046,24 +57088,24 @@ aag aag aag aag -aai +gzF aag -jBl -vdt -bvj -bvj -oQm -bvj -mfn -mHk -egU +jNe +iGh +wJl +wJl +lRS +wJl +fYD +rPl +nMc acg acg acg acg acg acg -aaN +wkN acg acg acg @@ -57077,7 +57119,7 @@ whU fTM fTM fTM -akL +egF fTM fTM whU @@ -57090,8 +57132,8 @@ whU whU unp unp -vAT -fIW +kDe +fsO fTM agd afE @@ -57242,8 +57284,8 @@ pZb pZb pZb pZb -aab -aab +ioF +ioF aag aag aag @@ -57252,15 +57294,15 @@ aag aag aag aag -eaI -rYe +dTz +sHf pZb xpR pZb -rYe -tuJ -uYj -rIm +sHf +ake +bFR +dex aag aag aag @@ -57276,22 +57318,22 @@ aag aag aag aag -jBl -xSk +jNe +fEH vVC vVC vVC vVC -bvj -fmV -oDE +wJl +rKO +pEE acg acg pUm acg acg -nzw -nzw +mLx +mLx acg acg acg @@ -57318,9 +57360,9 @@ whU whU whU unp -rGE -fIW -akL +bED +fsO +egF adZ fTM sIH @@ -57390,7 +57432,7 @@ bit cpY cpY cpY -aya +lmk arK lpV lpV @@ -57470,7 +57512,7 @@ pZb pZb pZb pZb -aab +ioF aag aag aag @@ -57480,15 +57522,15 @@ aag aag aag aag -eaI +dTz pZb pZb pZb pZb -rYe -ktr -sFD -mFZ +sHf +waw +mgE +lpp aag aag aag @@ -57504,22 +57546,22 @@ aag aag aag aag -wYB +oBK pZb pUm vVC vVC vVC vVC -lyZ -lhE -gkC +fIL +qPe +xQc pUm pUm acg acg -nzw -nzw +mLx +mLx acg acg acg @@ -57546,8 +57588,8 @@ whU whU whU unp -vAT -fIW +kDe +fsO fTM adH fTM @@ -57577,7 +57619,7 @@ boe aeg bEU wBS -ahB +fUh wZW wZW oFO @@ -57679,7 +57721,7 @@ wpw lBw fEn meP -tTh +ogP lBw aac aaa @@ -57697,27 +57739,27 @@ pZb pZb pZb pZb -vPo -vPo -wRb -pRD +pYG +pYG +puQ +kgz aag aag aag -aai +gzF aag aag -aab -aab +ioF +ioF pZb pZb pZb pZb -ktr -mFZ +waw +lpp aag aag -aai +gzF aag aag aag @@ -57739,8 +57781,8 @@ pUm vVC vVC pUm -fYG -oDE +uWp +pEE acg pUm pUm @@ -57752,14 +57794,14 @@ acg acg acg acg -aaN +wkN acg -gkC +xQc fTM fTM fTM fTM -akL +egF fTM fTM whU @@ -57773,9 +57815,9 @@ whU whU whU whU -vQR -vAT -fIW +czw +kDe +fsO aeT aek agA @@ -57925,23 +57967,23 @@ pZb pZb pZb pZb -rYe -fRD -uYj -lLU -pRD +sHf +gpP +bFR +vjl +kgz aag aag aag aag aag -aab +ioF pZb pZb pZb pZb pZb -mFZ +lpp aag aag aag @@ -57959,16 +58001,16 @@ aag aag aag aag -aci -aci +nqK +nqK pZb pUm pUm pUm pUm pUm -wCs -dLW +oyZ +pEr acg pUm pUm @@ -57982,7 +58024,7 @@ acg acg acg acg -nzw +mLx fTM fTM fTM @@ -58001,9 +58043,9 @@ whU fTM whU whU -sAh -sAh -pET +rvK +rvK +xCW fTM adH fTM @@ -58153,24 +58195,24 @@ pZb pZb pZb xpR -rYe -uYj -gzH -mEo -rpx +sHf +bFR +iOv +iyN +fpN aag aag aag aag -aab -aab +ioF +ioF pZb pZb pZb pZb pZb aag -aai +gzF aag aag aag @@ -58186,8 +58228,8 @@ aag aag aag aag -aci -aci +nqK +nqK pZb pZb pUm @@ -58195,14 +58237,14 @@ pUm pUm pUm pUm -xGL -egU +fSl +nMc acg pUm pUm pUm acg -aaN +wkN acg acg acg @@ -58210,8 +58252,8 @@ pUm acg acg acg -nzw -akL +mLx +egF fTM fTM fTM @@ -58223,14 +58265,14 @@ fTM whU fTM fTM -akL +egF whU fTM fTM fTM whU -vCG -vCG +inP +inP fTM fTM aek @@ -58382,20 +58424,20 @@ pZb pZb xpR xpR -uYj -wMr -uYj -rpx +bFR +tjn +bFR +fpN aag aag aag aag -aab +ioF pZb pZb pZb pZb -aab +ioF aag aag aag @@ -58405,16 +58447,16 @@ aag aag aag aag -vly +bYz aag -aai +gzF aag aag aag aag -aai -aci -aci +gzF +nqK +nqK pZb pZb pZb @@ -58424,8 +58466,8 @@ pUm pUm pUm pUm -mHk -dtr +rPl +pRV pUm pUm pUm @@ -58438,7 +58480,7 @@ pUm acg acg acg -nzw +mLx fTM fTM whU @@ -58448,7 +58490,7 @@ fTM fTM fTM fTM -akL +egF fTM fTM fTM @@ -58458,12 +58500,12 @@ fTM fTM fTM fTM -vCG +inP fTM fTM aer aKj -avp +jrg aKj ahv aeg @@ -58501,7 +58543,7 @@ sIM nsF kZs ekJ -rGZ +kyP ajw alz ajI @@ -58610,12 +58652,12 @@ pZb pZb xpR xpR -uYj -uYj -uYj -rpx +bFR +bFR +bFR +fpN aag -aai +gzF aag aag aag @@ -58623,7 +58665,7 @@ pZb pZb pZb pZb -aab +ioF aag aag aag @@ -58633,15 +58675,15 @@ aag aag aag aag -vly +bYz aag aag aag aag aag aag -aci -aci +nqK +nqK pZb pZb pZb @@ -58652,10 +58694,10 @@ pUm pUm pUm vVC -bvj -mHk -egU -abj +wJl +rPl +nMc +ydZ pUm acg acg @@ -58666,13 +58708,13 @@ acg acg acg acg -gkC +xQc fTM whU whU whU whU -jMS +vZz fTM fTM fTM @@ -58684,15 +58726,15 @@ fTM fTM fTM fTM -akL +egF fTM -vCG +inP fTM -akL +egF fTM -lSA -rgj -gWE +jgs +gyp +kpe ahv ahv slW @@ -58838,10 +58880,10 @@ pZb pZb pZb xpR -bvS -uYj -ktr -mFZ +qQp +bFR +waw +lpp aag aag aag @@ -58850,7 +58892,7 @@ aag pZb pZb pZb -aab +ioF aag aag aag @@ -58861,14 +58903,14 @@ aag aag aag aag -aab +ioF aag aag aag aag aag -aci -aci +nqK +nqK pZb pZb pZb @@ -58880,10 +58922,10 @@ pUm pUm vVC vVC -xmK -bvj -mHk -egU +jNy +wJl +rPl +nMc abo acg acg @@ -58901,26 +58943,26 @@ whU whU whU whU -jMS -jMS +vZz +vZz fTM fTM fTM fTM -jMS -jMS +vZz +vZz fTM fTM fTM fTM fTM -vCG +inP fTM fTM fTM -vNT -vAT -vkS +oca +kDe +wSw ahv ahv slW @@ -58943,7 +58985,7 @@ bLE kHU ahv ahv -rGZ +kyP xch xch xch @@ -59066,9 +59108,9 @@ pZb pZb pZb pZb -uYj -ktr -mFZ +bFR +waw +lpp aag aag aag @@ -59083,19 +59125,19 @@ aag aag aag aag -aai +gzF aag aag aag aag aag -aab +ioF aag aag aag aag aag -aci +nqK pZb pZb pZb @@ -59108,10 +59150,10 @@ pUm pUm vVC vVC -rhi -bvj -mNl -oDE +tiy +wJl +kUz +pEE acg acg acg @@ -59130,25 +59172,25 @@ whU whU whU whU -jMS -jMS +vZz +vZz fTM fTM fTM -jMS -jMS -akL +vZz +vZz +egF fTM -jMS -jMS +vZz +vZz fTM whU whU fTM -lSA -bkK -vAT -vAT +jgs +suq +kDe +kDe ahv ahv aeg @@ -59179,7 +59221,7 @@ abz xch xch xch -rGZ +kyP xch xch xch @@ -59294,15 +59336,15 @@ pZb pZb pZb pZb -aPM -mFZ +jvU +lpp aag aag aag aag aag aag -aai +gzF aag aag aag @@ -59316,14 +59358,14 @@ aag aag aag aag -aai -vly +gzF +bYz aag aag aag -aai +gzF aag -aci +nqK pZb pZb pZb @@ -59336,18 +59378,18 @@ pUm pUm vVC vVC -bvj -bvj -wCs -dLW +wJl +wJl +oyZ +pEr acg vjL acg acg acg -nzw -nzw -aaN +mLx +mLx +wkN acg pUm pUm @@ -59360,22 +59402,22 @@ whU whU whU whU -jMS -jMS +vZz +vZz fTM -lSA -eMe -eMe -uyn -jMS -jMS +jgs +gUJ +gUJ +ire +vZz +vZz fTM whU -ajc -vCG +bmj +inP whU -vAT -hTR +kDe +lgL pRT ahv ahv @@ -59522,10 +59564,10 @@ pZb pZb pZb pZb -aab -aab +ioF +ioF aag -aai +gzF aag aag aag @@ -59545,7 +59587,7 @@ aag aag aag aag -vly +bYz aag aag aag @@ -59564,17 +59606,17 @@ pUm pUm pUm pUm -bvj -rER -dLW -iiK +wJl +dSm +pEr +xcO acg acg acg acg acg -nzw -nzw +mLx +mLx acg acg pUm @@ -59590,17 +59632,17 @@ whU whU whU whU -eMe -bkK -ldi -vAT -lBl -loP -bQz +gUJ +suq +weu +kDe +uDB +jJw +ilP fTM -wEO +tCD fTM -akL +egF whU unp unp @@ -59642,7 +59684,7 @@ vty vty koM mPt -nWe +hgo ajw ajI ajI @@ -59751,8 +59793,8 @@ pZb pZb pZb pZb -aab -aab +ioF +ioF aag aag aag @@ -59791,9 +59833,9 @@ pUm pUm pUm pUm -woT -woT -dLW +lpq +lpq +pEr acg acg acg @@ -59818,15 +59860,15 @@ whU whU whU whU -aco -vAT -vAT -bcU -vAT -whx -lBl -uyn -wEO +kJT +kDe +kDe +biR +kDe +pIL +uDB +ire +tCD fTM fTM whU @@ -59980,7 +60022,7 @@ pZb pZb pZb pZb -aab +ioF aag aag aag @@ -59989,11 +60031,11 @@ aag aag aag aag -aai +gzF aag aag aag -aai +gzF aag aag aag @@ -60050,11 +60092,11 @@ whU unp unp unp -vAT -vAT -vAT -tqQ -eFS +kDe +kDe +kDe +hOb +cdg fTM fTM whU @@ -60080,7 +60122,7 @@ agX pDK agX agX -rGZ +kyP xch xch fgS @@ -60177,7 +60219,7 @@ akj phU phU apu -tTh +ogP tbV lBw lBw @@ -60208,8 +60250,8 @@ pZb pZb pZb pZb -aab -aab +ioF +ioF aag aag aag @@ -60262,7 +60304,7 @@ acg acg acg acg -nzw +mLx acg acg acg @@ -60280,9 +60322,9 @@ whU unp unp unp -gsq -viC -wEO +vir +xhk +tCD fTM fTM fTM @@ -60437,10 +60479,10 @@ pZb pZb pZb pZb -aab +ioF aag aag -aai +gzF aag aag aag @@ -60480,19 +60522,19 @@ aaR aaR aaQ acg -aaN +wkN acg abs pUm pUm -aaN +wkN acg acg acg acg -nzw +mLx acg -aaN +wkN acg acg aaQ @@ -60507,11 +60549,11 @@ whU whU whU whU -vAg -vAT -lSN +nSL +kDe +nsb fTM -akL +egF fTM fTM whU @@ -60539,7 +60581,7 @@ agX xch xch xch -rGZ +kyP xch xch xch @@ -60582,7 +60624,7 @@ dLY dLY dLY dLY -aMr +sXr asN atI avS @@ -60665,15 +60707,15 @@ pZb pZb pZb pZb -vPo -vPo -lzf -wRb -wRb -pRD +pYG +pYG +bJf +puQ +puQ +kgz aag aag -aai +gzF aag aag aag @@ -60681,7 +60723,7 @@ aag aag aag aag -aai +gzF aag pZb pZb @@ -60703,7 +60745,7 @@ pUm aaQ aaR aaR -aba +nNQ aaR aaR aaQ @@ -60718,7 +60760,7 @@ acg acg acg acg -nzw +mLx acg acg acg @@ -60735,12 +60777,12 @@ whU whU whU whU -ecn -jlt -pET +pTO +vTZ +xCW fTM fTM -diW +fjA fTM whU whU @@ -60784,7 +60826,7 @@ vty iJs hba hba -nWe +hgo hba ePp hba @@ -60894,15 +60936,15 @@ pZb pZb pZb pZb -rYe -rYe -uYj -gzH -qfK -wRb -wRb -wRb -pRD +sHf +sHf +bFR +iOv +dGB +puQ +puQ +puQ +kgz aag aag aag @@ -60946,7 +60988,7 @@ acg acg acg acg -nzw +mLx acg acg acg @@ -60962,15 +61004,15 @@ whU whU whU whU -jMS -jMS -jMS +vZz +vZz +vZz fTM fTM fTM -diW -agm -agm +fjA +vHB +vHB whU ahv afS @@ -60998,7 +61040,7 @@ xch eGg xch boy -rGZ +kyP xch dGc rwg @@ -61016,7 +61058,7 @@ mPt hba hba hba -nWe +hgo hba hba ajw @@ -61123,18 +61165,18 @@ pZb pZb pZb pZb -cfL -rYe -uYj -qVi -egc -uYj -mEo -isL -pRD +nxj +sHf +bFR +jbs +jRL +bFR +iyN +voT +kgz aag aag -aai +gzF aag aag aag @@ -61156,13 +61198,13 @@ pZb pZb vVC vVC -uBR +gQn aaQ aaR aaR aaR aaQ -nzw +mLx acg acg acg @@ -61174,7 +61216,7 @@ pUm acg acg acg -gkC +xQc acg acg acg @@ -61190,13 +61232,13 @@ whU whU whU whU -aed -fIt -wEO -akL +wmH +gvr +tCD +egF fTM fTM -wEO +tCD fTM fTM fTM @@ -61356,15 +61398,15 @@ xpR xpR xpR xpR -rYe -rYe -uYj -rpx +sHf +sHf +bFR +fpN aag aag aag -aab -aab +ioF +ioF pZb pZb pZb @@ -61384,13 +61426,13 @@ pZb pZb vVC vVC -uBR -uBR +gQn +gQn aaQ aaQ aaQ -nzw -nzw +mLx +mLx acg acg acg @@ -61400,14 +61442,14 @@ acg acg acg acg -aaN +wkN acg -gkC +xQc acg acg acg acg -aaN +wkN acg acg aaQ @@ -61417,15 +61459,15 @@ whU whU whU whU -jMS -fIt +vZz +gvr fTM -jMS +vZz fTM fTM fTM -diW -akL +fjA +egF whU fTM agX @@ -61554,7 +61596,7 @@ wpw wpw fEn nfK -tTh +ogP lBw lBw aac @@ -61585,13 +61627,13 @@ xpR xpR xpR xpR -rYe -rYe -gze -aab -aab -aab -aab +sHf +sHf +iEk +ioF +ioF +ioF +ioF pZb pZb pZb @@ -61612,16 +61654,16 @@ pZb pZb vVC vVC -bvj -uBR -nzw -nzw -nzw -nzw +wJl +gQn +mLx +mLx +mLx +mLx acg acg aZO -aaN +wkN aZO acg aZO @@ -61630,7 +61672,7 @@ acg acg acg acg -nzw +mLx acg acg acg @@ -61645,14 +61687,14 @@ whU whU whU whU -jMS -diW -diW -jMS -diW -wEO -wEO -diW +vZz +fjA +fjA +vZz +fjA +tCD +tCD +fjA fTM fTM fTM @@ -61840,12 +61882,12 @@ pZb pZb vVC vVC -bvj -bvj -mHk -egU +wJl +wJl +rPl +nMc acg -aaN +wkN acg acg acg @@ -61856,11 +61898,11 @@ acg acg acg acg -iye -iye -bEj +rct +rct +nnH acg -aaN +wkN acg acg acg @@ -61873,14 +61915,14 @@ whU whU whU whU -jMS -fIt -akL -wEO +vZz +gvr +egF +tCD fTM fTM -akL -diW +egF +fjA fTM fTM fTM @@ -61906,7 +61948,7 @@ ahv ahv xch xch -rGZ +kyP xch xch eGg @@ -61929,7 +61971,7 @@ git uve uve iJs -nWe +hgo hba ajw qcz @@ -62069,24 +62111,24 @@ pZb vVC vVC vVC -bvj -bvj -mHk -egU +wJl +wJl +rPl +nMc acg -nzw -bfY -nzw -nzw -xSA -nzw -nzw -nzw -nzw +mLx +etL +mLx +mLx +vwv +mLx +mLx +mLx +mLx pUm -pQV -bvj -lhE +xAV +wJl +qPe acg acg acg @@ -62101,17 +62143,17 @@ whU whU whU whU -jMS -fIt +vZz +gvr fTM -wEO +tCD fTM fTM fTM -wEO +tCD fTM -agm -bLs +vHB +quH ahv rac cAZ @@ -62297,28 +62339,28 @@ pZb pUm vVC vVC -bvj -bvj -oQm -mHk -egU -nzw -nHq -jAo -umb -acg -umb -iyr -eZC -uBR +wJl +wJl +lRS +rPl +nMc +mLx +gPR +oCZ +lCn +acg +lCn +vBG +bvd +gQn pUm vVC -rAU -lhE +vdj +qPe acg acg acg -aaN +wkN acg acg acg @@ -62330,13 +62372,13 @@ whU whU whU whU -jMS -diW -diW -fIt +vZz +fjA +fjA +gvr fTM -fIt -diW +gvr +fjA fTM fTM whU @@ -62366,7 +62408,7 @@ xch xch xch xch -rGZ +kyP dGc dNj uve @@ -62526,24 +62568,24 @@ pUm vVC vVC vVC -bvj -bvj -bvj -mHk -bEj -jAo +wJl +wJl +wJl +rPl +nnH +oCZ acg -gkC +xQc acg -gkC +xQc acg -jAo -uBR +oCZ +gQn vVC vVC aaQ -qPY -egU +wnD +nMc acg acg acg @@ -62559,13 +62601,13 @@ whU whU whU whU -jMS -jMS -aed -fIt -jMS -diW -agm +vZz +vZz +wmH +gvr +vZz +fjA +vHB whU whU ahv @@ -62756,22 +62798,22 @@ vVC vVC vVC pUm -bvj -bvj -gVR -umb -umb -umb -aaN -umb -umb -umb -uBR +wJl +wJl +kPj +lCn +lCn +lCn +wkN +lCn +lCn +lCn +gQn vVC vVC vVC -uBR -oDE +gQn +pEE acg acg acg @@ -62788,10 +62830,10 @@ whU whU whU whU -jMS -jMS -jMS -jMS +vZz +vZz +vZz +vZz whU whU whU @@ -62843,7 +62885,7 @@ uve uve iJs hba -nWe +hgo hba hba jum @@ -62984,22 +63026,22 @@ pUm vVC vVC vVC -bvj -bvj -qPY -rwx +wJl +wJl +wnD +oBm acg -gkC +xQc acg -gkC +xQc acg -dfJ -uBR +nrZ +gQn pUm vVC vVC -uBR -oDE +gQn +pEE acg acg acg @@ -63046,11 +63088,11 @@ ahv xch xch xch -rGZ +kyP xch xch xch -rGZ +kyP dGc jxR uve @@ -63214,21 +63256,21 @@ vVC vVC vVC pUm -uBR -jhj -upQ -umb +gQn +pDg +swc +lCn acg -umb -fAD -rPK -uBR +lCn +ovk +kDr +gQn pUm pUm vVC -uBR -mHk -dtr +gQn +rPl +pRV acg acg acg @@ -63442,21 +63484,21 @@ pUm vVC pUm pUm -uBR -gVR -nzw -nzw -nzw -nzw -nzw -nzw -nzw +gQn +kPj +mLx +mLx +mLx +mLx +mLx +mLx +mLx pUm pUm pUm -uBR -bvj -fGn +gQn +wJl +eax acg acg aaQ @@ -63800,7 +63842,7 @@ oUa mbN unT djI -uVU +gkq jik jik jik diff --git a/maps/map_files/LV624/centralcaves/10.T.dmm b/maps/map_files/LV624/centralcaves/10.T.dmm index 56c54485e09e..48df15693d9e 100644 --- a/maps/map_files/LV624/centralcaves/10.T.dmm +++ b/maps/map_files/LV624/centralcaves/10.T.dmm @@ -1,87 +1,56 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"b" = ( +"aa" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 8 + dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"c" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ +"ab" = ( +/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/xvx_hive/xeno_door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"ac" = ( +/obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"d" = ( +/area/lv624/ground/caves/south_central_caves) +"ad" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/central_caves) -"e" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"f" = ( +"af" = ( /turf/open/gm/dirt, /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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"h" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"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, +"aj" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 1 + }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"j" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, -/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"k" = ( +"ak" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"l" = ( +"al" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_central_caves) -"m" = ( -/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, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"o" = ( +"ao" = ( /obj/structure/fence, /turf/open/floor{ dir = 9; icon_state = "warning" }, /area/lv624/ground/barrens/containers) -"p" = ( +"ap" = ( /obj/structure/fence, /turf/open/floor{ dir = 1; icon_state = "warning" }, /area/lv624/ground/barrens/containers) -"s" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"t" = ( +"aq" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 4; light_on = 1; @@ -90,867 +59,917 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) -"u" = ( +"ar" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"v" = ( -/obj/effect/decal/grass_overlay/grass1, +"as" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"at" = ( +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"w" = ( +"au" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"av" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"aw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"A" = ( +"ax" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"ay" = ( /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) -"B" = ( +"aB" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 9 + dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"C" = ( +"aC" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"D" = ( +"aD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"aF" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/north_east_barrens) +"aH" = ( +/obj/effect/landmark/hunter_primary, /obj/effect/decal/grass_overlay/grass1/inner{ - dir = 8 + dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"E" = ( -/turf/closed/wall/strata_ice/jungle, -/area/lv624/ground/caves/south_central_caves) -"F" = ( -/obj/effect/decal/grass_overlay/grass1{ +"aI" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"G" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"aJ" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 8 + }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"H" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) -"I" = ( -/obj/effect/decal/grass_overlay/grass1, +"aK" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) -"K" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"M" = ( +"aL" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) -"N" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, +"aM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"O" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 1 - }, +/area/lv624/ground/barrens/north_east_barrens) +"aN" = ( +/obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"Q" = ( +/area/lv624/ground/caves/south_central_caves) +"aO" = ( +/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) -"R" = ( +"aP" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 1 + dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"S" = ( +"aR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"U" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"aS" = ( +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) +"aT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"aU" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) +"aV" = ( +/turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"V" = ( +"aW" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"Z" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, +"aX" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) +"aY" = ( +/turf/closed/wall/strata_ice/jungle, +/area/lv624/ground/caves/south_central_caves) +"aZ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"rk" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"Pn" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) (1,1,1) = {" -f -g -B -b -N -S -S -s -F -Q -V -V -V -V -l -l -l -l -l -l -l +af +ab +ac +aP +aH +at +aR +aI +aa +av +aV +aV +aV +aV +al +al +al +al +al +al +al "} (2,1,1) = {" -f -g -R -U -S -K -S -S -v -Q -V -V -V -V -l -l -l -l -l -l -l +af +as +aB +at +at +ax +at +at +aN +av +aV +aV +aV +aV +al +al +al +al +al +al +al "} (3,1,1) = {" -f -g -R -S -S -E -E -l -v -Q -V -G -V -V -l -l -l -l -l -l -w +af +as +aB +aR +at +aY +aY +al +aW +aK +aV +aD +aV +aV +al +al +al +al +al +al +aw "} (4,1,1) = {" -f -A -l -l -E -E -l -l -l -l -V -V -V -V -V -l -l -l -V -V -w +af +ay +al +al +aY +aY +al +al +al +al +aV +aV +aV +aV +aV +al +al +al +aV +aV +aw "} (5,1,1) = {" -d -l -l -l -l -l -l -l -l -l -V -V -V -V -V -l -l -V -V -V -w +ad +al +al +al +al +al +al +al +al +al +aV +aV +aV +aV +aV +al +al +aV +aV +aV +aw "} (6,1,1) = {" -d -l -l -l -l -l -l -l -l -l -C -V -V -V -V -l -V -V -V -G -w +ad +al +al +al +al +al +al +al +al +al +aC +aV +aV +aV +aV +al +aV +aV +aV +aD +aw "} (7,1,1) = {" -d -l -l -l -l -l -l -l -l -l -l -V -V -G -V -V -V -V -V -V -w +ad +al +al +al +al +al +al +al +al +al +al +aV +aV +aD +aV +aV +aV +aV +aV +aV +aw "} (8,1,1) = {" -d -l -l -l -l -l -l -l -l -l -l -l -V -V -V -V -V -V -V -V -w +ad +al +al +al +al +al +al +al +al +al +al +al +aV +aV +aV +aV +aV +aV +aV +aV +aw "} (9,1,1) = {" -d -l -l -l -l -l -l -l -l -l -l -l -V -V -V -V -G -n -n -l -l +ad +al +al +al +al +al +al +al +al +al +al +al +aV +aV +aV +aV +aD +aZ +aZ +al +al "} (10,1,1) = {" -d -l -l -l -l -l -l -l -l -l -l -l -V -V -V -V -n -n -l -l -l +ad +al +al +al +al +al +al +al +al +al +al +al +aV +aV +aV +aV +aZ +aZ +al +al +al "} (11,1,1) = {" -d -l -l -l -l -l -l -l -l -l -l -l -l -V -V -n -n -l -l -l -l +ad +al +al +al +al +al +al +al +al +al +al +al +al +aV +aV +aZ +aZ +al +al +al +al "} (12,1,1) = {" -d -l -l -l -l -l -l -l -l -l -l -l -l -l -n -n -l -l -l -l -l +ad +al +al +al +al +al +al +al +al +al +al +al +al +al +aZ +aZ +al +al +al +al +al "} (13,1,1) = {" -d -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l +ad +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al "} (14,1,1) = {" -d -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l +ad +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al "} (15,1,1) = {" -d -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l +ad +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al "} (16,1,1) = {" -d -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l -l +ad +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al "} (17,1,1) = {" -d -l -l -l -l -l -l -l -l -l -l -l -l -n -n -V -l -l -l -l -l +ad +al +al +al +al +al +al +al +al +al +al +al +al +aZ +aZ +aV +al +al +al +al +al "} (18,1,1) = {" -d -l -l -l -l -V -l -l -l -l -n -n -n -n -G -V -V -n -l -l -l +ad +al +al +al +al +aV +al +al +al +al +aZ +aZ +aZ +aZ +aD +aV +aV +aZ +al +al +al "} (19,1,1) = {" -d -l -l -l -V -V -V -l -l -n -n -V -V -V -V -V -V -n -l -l -l +ad +al +al +al +aV +aV +aV +al +al +aZ +aZ +aV +aV +aV +aV +aV +aV +aZ +al +al +al "} (20,1,1) = {" -d -l -l -V -V -V -V -V -V -Q -V -V -V -V -V -V -V -n -n -l -l +ad +al +al +aV +aV +aV +aV +aV +aV +av +aV +aV +aV +aV +aV +aV +aV +aZ +aZ +al +al "} (21,1,1) = {" -d -l -V -V -V -V -V -G -V -Q -V -V -V -V -V -V -G -V -n -l -l +ad +al +aV +aV +aV +aV +aV +aD +aV +av +aV +aV +aV +aV +aV +aV +aD +aV +aZ +al +al "} (22,1,1) = {" -d -V -V -V -V -V -V -V -V -Q -V -V -G -V -V -V -V -V -n -l -l +ad +aV +aV +aV +aV +aV +aV +aV +aV +av +aV +aV +aD +aV +aV +aV +aV +aV +aZ +al +al "} (23,1,1) = {" -d -V -V -V -V -V -V -V -V -n -n -V -V -V -V -V -V -V -n -l -l +ad +aV +aV +aV +aV +aV +aV +aV +aV +aZ +aZ +aV +aV +aV +aV +aV +aV +aV +aZ +al +al "} (24,1,1) = {" -d -V -V -V -G -V -V -V -l -l -n -n -V -V -V -V -V -V -V -l -l +ad +aV +aV +aV +aD +aV +aV +aV +al +al +aZ +aZ +aV +aV +aV +aV +aV +aV +aV +al +al "} (25,1,1) = {" -d -V -V -V -V -V -V -l -l -l -l -n -n -V -V -V -V -V -l -l -l +ad +aV +aV +aV +aV +aV +aV +al +al +al +al +aZ +aZ +aV +aV +aV +aV +aV +al +al +al "} (26,1,1) = {" -f -V -V -V -V -V -l -l -l -l -l -l -n -V -V -G -V -C -l -l -l +af +aV +aV +aV +aV +aV +al +al +al +al +al +al +aZ +aV +aV +aD +aV +aC +al +al +al "} (27,1,1) = {" -f -V -V -V -V -l -l -l -l -l -l -l -l -V -V -V -V -l -l -l -o +af +aV +aV +aV +aV +al +al +al +al +al +al +al +al +aV +aV +aV +aV +al +al +al +ao "} (28,1,1) = {" -f -e -D -D -D -l -l -l -l -l -l -l -l -V -V -V -V -l -l -l -p +af +aT +aJ +aJ +aJ +al +al +al +al +al +al +al +al +aV +aV +aV +aV +al +al +al +ap "} (29,1,1) = {" -f -O -S -S -l -l -l -l -l -l -l -l -l -i -i -i -l -l -l -l -p +af +aj +at +at +al +al +al +al +al +al +al +al +al +aO +aO +aO +al +al +al +al +ap "} (30,1,1) = {" -f -O -j -l -l -l -l -l -l -l -l -l -l -k -k -k -l -k -k -k -p +af +aj +aX +al +al +al +al +al +al +al +al +al +al +ak +ak +ak +al +ak +ak +ak +ap "} (31,1,1) = {" -f -c -Z -E -l -l -l -l -l -l -l -l -k -k -m -k -k -k -k -k -p +af +au +aU +aY +al +al +al +al +al +al +al +al +ak +ak +aM +ak +ak +ak +ak +ak +ap "} (32,1,1) = {" -O -u -E -E -l -l -l -l -E -E -l -l -l -k -k -k -k -k -m -k -p +aj +rk +aY +aY +al +al +al +al +aY +aY +al +al +al +ak +ak +ak +ak +ak +aM +ak +ap "} (33,1,1) = {" -f -a -h -H -H -H -M -E -E -t -I -l -k -k -k -k -k -k -k -k -p +af +Pn +ar +aF +aF +aF +aL +aY +aY +aq +aS +al +ak +ak +ak +ak +ak +ak +ak +ak +ap "} diff --git a/maps/map_files/LV624/centralcaves/10.qc.dmm b/maps/map_files/LV624/centralcaves/10.qc.dmm index 5f63ae797e02..6f8dddb4cc20 100644 --- a/maps/map_files/LV624/centralcaves/10.qc.dmm +++ b/maps/map_files/LV624/centralcaves/10.qc.dmm @@ -1,34 +1,51 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aD" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"bV" = ( +"aa" = ( /obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 + dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"dd" = ( +"ab" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"ac" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"ad" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /obj/effect/decal/grass_overlay/grass1{ - dir = 9 + dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"gU" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, +"af" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"hJ" = ( -/obj/effect/decal/grass_overlay/grass1, +"ai" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"aj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"ak" = ( /turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) +"al" = ( +/turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_central_caves) -"hP" = ( +"an" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"ap" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 11; + pixel_x = -10; pixel_y = -2; light_on = 1; light_range = 1; @@ -36,142 +53,189 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"hW" = ( +"aq" = ( /obj/structure/fence, /turf/open/floor{ dir = 9; icon_state = "warning" }, /area/lv624/ground/barrens/containers) -"iS" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ - pixel_x = 8 +"ar" = ( +/obj/structure/fence, +/turf/open/floor{ + dir = 1; + icon_state = "warning" }, -/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/containers) +"as" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 6 + }, +/turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"kc" = ( -/obj/structure/flora/bush/ausbushes/pointybush, -/turf/open/auto_turf/strata_grass/layer1, +"at" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"ks" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 +"au" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/turf/closed/wall/strata_ice/jungle, +/area/lv624/ground/caves/south_central_caves) +"av" = ( +/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/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"lp" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"lq" = ( -/turf/closed/wall/rock/brown, -/area/lv624/ground/barrens/west_barrens) -"mN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"ax" = ( +/obj/effect/landmark/objective_landmark/close, /turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) -"oB" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, -/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"oJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"pd" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, +"ay" = ( +/turf/closed/wall/rock/brown, +/area/lv624/ground/barrens/west_barrens) +"az" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"pC" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) -"pR" = ( +"aA" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8; pixel_y = 13 }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"qK" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"aB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) +"aC" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"ry" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, +"aE" = ( +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"aF" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 4; + light_on = 1; + light_range = 1; + light_system = 1 + }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"sL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"aG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"sO" = ( -/turf/closed/wall/strata_ice/jungle, +"aH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"vC" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +"aI" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 - }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"vR" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, +"aJ" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"wk" = ( -/turf/closed/wall/rock/brown, -/area/lv624/ground/caves/south_central_caves) -"wL" = ( +"aK" = ( /obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 + dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"yv" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, +"aL" = ( +/turf/closed/wall/strata_ice/jungle, +/area/lv624/ground/caves/south_central_caves) +"aM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"yD" = ( +"aN" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) -"yO" = ( +/area/lv624/ground/caves/south_central_caves) +"aQ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) -"zh" = ( +/area/lv624/ground/caves/south_central_caves) +"aR" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/membrane, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"aS" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 6 + dir = 4 }, /turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) +"aT" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 11; + pixel_y = -2; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"An" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +"aV" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 + }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"AL" = ( -/obj/effect/landmark/objective_landmark/close, +"aW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"DG" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 +"aY" = ( +/turf/open/gm/dirt, +/area/lv624/ground/barrens/west_barrens) +"aZ" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"ER" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"GE" = ( +"bA" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 4; light_on = 1; @@ -180,886 +244,922 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) -"GR" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 +"cd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/decal/grass_overlay/grass1{ + dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"Is" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +"ck" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"Jf" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, +/area/lv624/ground/caves/south_central_caves) +"eC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"JB" = ( +"gC" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) +"jR" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"JX" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"JZ" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/ground/barrens/containers) -"KX" = ( -/turf/open/gm/dirt, -/area/lv624/ground/barrens/west_barrens) -"Od" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"kc" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 1 + dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"Oe" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"Pd" = ( +"lR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/decal/grass_overlay/grass1{ - dir = 1 - }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"PB" = ( -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"Rx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"nC" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 8 + }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"Tu" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"nJ" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"Uu" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 +"ox" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"UB" = ( +"qk" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"qm" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/north_east_barrens) +"sB" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"Vd" = ( +"tb" = ( /obj/effect/landmark/hunter_primary, /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"VY" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"Xj" = ( +"tK" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/decal/grass_overlay/grass1{ - dir = 10 + dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"XV" = ( +"ym" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"ZM" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, +"za" = ( +/obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"ZU" = ( +"AW" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"CS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 1 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"Gt" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"KA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"KK" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"Lb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/closed/wall/rock/brown, +/area/lv624/ground/caves/south_central_caves) +"Mu" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) +"NR" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"Vf" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) +"WN" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"ZL" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"ZO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) (1,1,1) = {" -PB -qK -dd -DG -Vd -ER -ER -wL -Xj -qK -XV -sL -XV -XV -wk -wk -wk -wk -wk -wk -wk +af +Gt +kc +nJ +tb +aJ +aJ +aa +ox +Gt +aC +ZO +aC +aC +al +al +al +al +al +al +al "} (2,1,1) = {" -PB -qK -JB -Rx -ER -ks -ER -ER -hJ -qK -XV -XV -XV -XV -XV -wk -wk -wk -wk -lq -KX +af +Gt +jR +eC +aJ +ZL +aJ +eC +aE +Gt +aC +aC +aC +aC +aC +al +al +al +al +ay +aY "} (3,1,1) = {" -PB -qK -JB -ER -ER -sO -sO -wk -hJ -qK -XV -XV -XV -XV -XV -XV -wk -wk -wk -KX -KX +af +Gt +jR +aJ +aJ +aL +aL +Lb +lR +qk +aC +aC +aC +aC +aC +aC +al +al +al +aY +aY "} (4,1,1) = {" -PB -aD -wk -wk -sO -sO -wk -wk -wk -wk -wk -XV -XV -XV -XV -XV -wk -wk -wk -KX -KX +af +ym +al +al +aL +aL +al +al +al +al +al +aC +aC +aC +aC +aC +al +al +al +aY +aY "} (5,1,1) = {" -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -XV -XV -XV -XV -XV -XV -wk -wk -lq -KX +al +al +al +al +al +al +al +al +al +al +al +aC +aC +aC +aC +aC +aC +al +al +ay +aY "} (6,1,1) = {" -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -XV -XV -XV -XV -XV -wk -lq -KX +al +al +al +al +al +al +al +al +al +al +al +al +al +aC +aC +aC +aC +aC +al +ay +aY "} (7,1,1) = {" -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -Tu -yv -qK -qK -wk -wk -lq +al +al +al +al +al +al +al +al +al +al +al +al +al +al +aV +aW +an +an +al +al +ay "} (8,1,1) = {" -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -ER -wL -Xj -XV -AL -wk -wk +al +al +al +al +al +al +al +al +al +al +al +al +al +al +aI +at +aG +Gt +ax +al +al "} (9,1,1) = {" -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -ER -kc -ER -hJ -XV -XV -wk -wk +al +al +al +al +al +al +al +al +al +al +al +al +al +aJ +ab +aJ +aE +aC +aC +al +al "} (10,1,1) = {" -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -sO -ER -ER -ER -hJ -XV -XV -wk -wk +al +al +al +al +al +al +al +al +al +al +al +al +aL +aR +aJ +aJ +aE +aC +aC +al +al "} (11,1,1) = {" -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -sO -sO -ks -ER -bV -zh -XV -XV -wk -wk +al +al +al +al +al +al +al +al +al +al +al +aL +au +aM +aJ +aK +as +aC +aC +al +al "} (12,1,1) = {" -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -sO -sO -sO -ER -ER -hJ -sL -XV -XV -wk -wk +al +al +al +al +al +al +al +al +al +al +aL +au +au +aJ +aJ +aE +aC +aC +aC +al +al "} (13,1,1) = {" -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -sO -ER -ER -Rx -ER -GR -Xj -XV -XV -wk -wk +al +al +al +al +al +al +al +al +al +al +aL +aR +aJ +aJ +aJ +aZ +ad +aC +aC +al +al "} (14,1,1) = {" -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -sO -ER -ER -ER -ER -hJ -XV -XV -wk -wk +al +al +al +al +al +al +al +al +al +al +al +aL +aJ +aJ +aJ +aJ +aE +aC +aC +al +al "} (15,1,1) = {" -wk -wk -wk -wk -wk -wk -XV -XV -wk -wk -wk -pd -iS -ER -ER -ER -hJ -XV -XV -wk -wk +al +al +al +al +al +al +aC +aC +al +al +al +NR +nC +aJ +aJ +aJ +aE +aC +aC +al +al "} (16,1,1) = {" -wk -wk -wk -wk -wk -XV -XV -XV -XV -wk -wk -wk -sO -sO -ER -hP -hJ -XV -wk -wk -wk +al +al +al +al +al +aC +aC +aC +aC +al +al +al +aL +aL +aJ +aT +aE +aC +al +al +al "} (17,1,1) = {" -wk -wk -wk -XV -XV -XV -XV -XV -XV -XV -wk -wk -wk -sO -ER -ER -hJ -XV -wk -wk -wk +al +al +al +aC +aC +aC +aC +aC +aC +aC +al +al +al +aL +aJ +eC +aE +aC +al +al +al "} (18,1,1) = {" -wk -wk -wk -XV -XV -sL -XV -XV -XV -sL -XV -XV -wk -sO -ER -Jf -hJ -XV -wk -wk -wk +al +al +al +aC +aC +ZO +aC +aC +aC +ZO +aC +aC +al +aL +aJ +ai +aE +aN +al +al +al "} (19,1,1) = {" -wk -wk -XV -XV -XV -XV -XV -XV -XV -XV -XV -XV -Od -ER -ER -ER -wL -Xj -XV -wk -wk +al +al +aC +aC +aC +aC +aC +aC +aC +aC +aC +aC +cd +aJ +aJ +aJ +aa +aH +aC +al +al "} (20,1,1) = {" -wk -XV -XV -XV -XV -XV -wk -wk -XV -XV -XV -XV -Od -ER -ER -VY -Rx -hJ -XV -wk -wk +al +aC +aC +aC +aC +aC +al +al +aC +aC +aC +aC +cd +aJ +aJ +ap +aJ +aQ +aN +al +al "} (21,1,1) = {" -PB -XV -XV -XV -XV -XV -wk -wk -XV -XV -XV -sL -Pd -ER -ER -ER -ER -hJ -XV -wk -wk +af +aC +aC +aC +aC +aC +al +al +aC +aC +aC +ZO +tK +aJ +aJ +aJ +eC +aE +aN +al +al "} (22,1,1) = {" -PB -XV -sL -XV -XV -wk -wk -wk -wk -XV -XV -XV -Od -ER -Rx -ER -JX -hJ -XV -wk -wk +af +aC +ZO +aC +aC +al +al +al +al +aC +aC +aC +cd +aJ +aJ +aJ +az +aE +aN +al +al "} (23,1,1) = {" -PB -PB -XV -XV -wk -wk -wk -wk -wk -wk -XV -XV -Od -ER -ry -ER -bV -zh -XV -wk -wk +af +af +aC +aC +al +al +al +al +al +al +aC +aC +cd +aJ +ac +aJ +aK +as +aN +al +al "} (24,1,1) = {" -PB -PB -XV -XV -wk -wk -wk -wk -wk -wk -wk -wk -wk -pR -ER -ER -hJ -XV -wk -wk -wk +af +af +aC +aC +al +al +al +al +al +al +al +al +al +aA +aJ +aJ +aE +aC +al +al +al "} (25,1,1) = {" -PB -PB -XV -wk -wk -wk -wk -wk -wk -wk -sO -sO -ER -ER -ER -Rx -hJ -XV -wk -wk -wk +af +af +aC +al +al +al +al +al +al +al +aL +aL +aJ +aJ +aJ +aJ +aE +aC +al +al +al "} (26,1,1) = {" -PB -PB -XV -wk -wk -wk -wk -wk -wk -wk -sO -ER -ER -ER -Uu -ER -hJ -wk -wk -wk -wk +af +af +aC +al +al +al +al +al +al +al +aL +aJ +aJ +aJ +aF +eC +aE +al +al +al +al "} (27,1,1) = {" -PB -PB -wk -wk -wk -wk -wk -wk -wk -wk -sO -sO -ER -ER -ER -ER -hJ -wk -wk -wk -hW +af +af +al +al +al +al +al +al +al +al +aL +aL +aJ +aJ +aJ +aJ +aE +al +al +al +aq "} (28,1,1) = {" -PB -oJ -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -ER -ER -ER -wk -wk -wk -wk -JZ +af +KA +al +al +al +al +al +al +al +al +al +al +al +aJ +aJ +aJ +al +al +al +al +ar "} (29,1,1) = {" -PB -UB -wk -wk -wk -wk -wk -wk -wk -wk -wk -sO -sO -An -An -vC -wk -wk -wk -wk -JZ +af +sB +al +al +al +al +al +al +al +al +al +aL +aL +aj +aj +av +al +al +al +al +ar "} (30,1,1) = {" -PB -UB -oB -wk -wk -wk -wk -wk -wk -wk -wk -wk -wk -ZM -ZM -ZM -wk -wk -yD -yD -JZ +af +sB +KK +al +al +al +al +al +al +al +al +al +al +aS +aS +aS +al +al +ak +ak +ar "} (31,1,1) = {" -PB -gU -Oe -sO -wk -wk -wk -wk -wk -wk -wk -wk -yD -yD -yD -yD -yD -yD -yD -yD -JZ +af +WN +Mu +aL +al +al +al +al +al +al +al +al +ak +ak +ak +ak +ak +ak +ak +ak +ar "} (32,1,1) = {" -UB -lp -sO -sO -wk -wk -wk -wk -sO -sO -wk -wk -wk -yD -yD -yD -yD -yD -mN -yD -JZ +CS +Vf +aL +aL +al +al +al +al +aL +aL +al +al +al +ak +ak +ak +ak +ak +aB +ak +ar "} (33,1,1) = {" -PB -ZU -Is -pC -pC -pC -vR -sO -sO -GE -yO -wk -yD -yD -yD -yD -yD -yD -yD -yD -JZ +af +AW +gC +qm +qm +qm +ck +aL +aL +bA +za +al +ak +ak +ak +ak +ak +ak +ak +ak +ar "} diff --git a/maps/map_files/LV624/maintemple/1.intact.dmm b/maps/map_files/LV624/maintemple/1.intact.dmm index 8f7c741d80c6..bf64bd75f0c9 100644 --- a/maps/map_files/LV624/maintemple/1.intact.dmm +++ b/maps/map_files/LV624/maintemple/1.intact.dmm @@ -68,6 +68,15 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"bx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "bP" = ( /obj/structure/bed/chair/comfy/black, /turf/open/floor/corsat{ @@ -153,10 +162,6 @@ icon_state = "grass1" }, /area/lv624/ground/barrens/south_eastern_barrens) -"dK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "dL" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -473,33 +478,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"iN" = ( -/obj/item/weapon/sword{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "iW" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -692,6 +670,33 @@ icon_state = "multi_tiles" }, /area/lv624/ground/caves/sand_temple) +"nU" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata{ + color = "#5e5d5d"; + icon_state = "multi_tiles" + }, +/area/lv624/ground/caves/sand_temple) "od" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 @@ -701,6 +706,33 @@ "oi" = ( /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/caves/sand_temple) +"ox" = ( +/obj/item/weapon/sword{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata{ + color = "#5e5d5d"; + icon_state = "multi_tiles" + }, +/area/lv624/ground/caves/sand_temple) "oR" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -821,6 +853,33 @@ icon_state = "squareswood" }, /area/lv624/ground/caves/sand_temple) +"sw" = ( +/obj/item/weapon/sword{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata{ + color = "#5e5d5d"; + icon_state = "multi_tiles" + }, +/area/lv624/ground/caves/sand_temple) "sM" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/floor/sandstone/runed, @@ -877,33 +936,6 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"uy" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "uE" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) @@ -1063,15 +1095,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"zG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "zO" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -1131,33 +1154,6 @@ /obj/structure/bed/chair/comfy/black, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple/powered) -"BI" = ( -/obj/item/weapon/sword{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "BY" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1201,39 +1197,16 @@ icon_state = "squareswood" }, /area/lv624/ground/caves/sand_temple) +"DF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "DG" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/barrens/south_eastern_barrens) -"DH" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "DX" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -1245,24 +1218,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"Eq" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/weapon/sword/machete{ - desc = "This machete seems not standard issue, indeed it seems to be an ancient military design. Smells like the jungle."; - name = "\improper Dutch's Machete" - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "EJ" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1464,6 +1419,24 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"KZ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/weapon/sword/machete{ + desc = "This machete seems not standard issue, indeed it seems to be an ancient military design. Smells like the jungle."; + name = "\improper Dutch's Machete" + }, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "Lg" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1824,6 +1797,33 @@ "Vu" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) +"VH" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata{ + color = "#5e5d5d"; + icon_state = "multi_tiles" + }, +/area/lv624/ground/caves/sand_temple) "Wl" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 @@ -2326,14 +2326,14 @@ gL wS oi qf -dK +DF Ai GT Ai Ai Ai Ai -dK +DF ZX ZX ZX @@ -2455,7 +2455,7 @@ Ps mf Ai Ai -dK +DF Ai Ai GT @@ -2611,13 +2611,13 @@ GT OC OC zZ -DH +nU vN mv mv mv zZ -iN +ox vN OC GO @@ -2857,19 +2857,19 @@ zO (23,1,1) = {" oR eb -zG +bx eb GT OC OC zZ -uy +VH vN mv mv mv zZ -BI +sw vN OC mB @@ -3000,7 +3000,7 @@ OC OC qf Ai -dK +DF Ai Ai GT @@ -3212,7 +3212,7 @@ Dd Ai Ai Ai -dK +DF Ai ZX ZX @@ -3334,7 +3334,7 @@ Rx mv mv mv -Eq +KZ OC GT Ai diff --git a/maps/map_files/LV624/maintemple/2.flooded.dmm b/maps/map_files/LV624/maintemple/2.flooded.dmm index 8643676807fc..440a72066725 100644 --- a/maps/map_files/LV624/maintemple/2.flooded.dmm +++ b/maps/map_files/LV624/maintemple/2.flooded.dmm @@ -135,10 +135,6 @@ icon_state = "grass1" }, /area/lv624/ground/barrens/south_eastern_barrens) -"dK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "dL" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -259,10 +255,6 @@ "hi" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) -"hu" = ( -/obj/item/weapon/sword, -/turf/open/gm/coast/beachcorner2/north_west, -/area/lv624/ground/caves/sand_temple) "hA" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/caves/sand_temple) @@ -433,10 +425,6 @@ icon_state = "squareswood" }, /area/lv624/ground/caves/sand_temple) -"mI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) "mN" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, @@ -483,6 +471,30 @@ }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) +"nX" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1 + }, +/turf/open/floor/strata{ + color = "#5e5d5d"; + icon_state = "multi_tiles" + }, +/area/lv624/ground/caves/sand_temple) "od" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 @@ -636,6 +648,10 @@ icon_state = "multi_tiles" }, /area/lv624/ground/caves/sand_temple) +"tm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "tn" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -678,30 +694,6 @@ icon_state = "squareswood" }, /area/lv624/ground/caves/sand_temple) -"uy" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "uE" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) @@ -1011,27 +1003,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"BI" = ( -/obj/item/weapon/sword{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "Ci" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 @@ -1079,16 +1050,7 @@ }, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) -"Dw" = ( -/turf/closed/wall/strata_ice/jungle, -/area/lv624/ground/barrens/south_eastern_barrens) -"DG" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/west, -/area/lv624/ground/barrens/south_eastern_barrens) -"DH" = ( +"Dt" = ( /obj/structure/showcase{ color = "#95948B"; desc = "A grey statue dawned in ancient armor, it stares into your soul."; @@ -1098,13 +1060,13 @@ }, /obj/item/weapon/sword{ layer = 3.1; - pixel_x = -6; + pixel_x = 6; pixel_y = 7 }, -/obj/item/clothing/shoes/yautja_flavor{ +/obj/item/clothing/suit/armor/yautja_flavor{ anchored = 1 }, -/obj/item/clothing/mask/yautja_flavor/map_random{ +/obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, /turf/open/floor/strata{ @@ -1112,6 +1074,15 @@ icon_state = "multi_tiles" }, /area/lv624/ground/caves/sand_temple) +"Dw" = ( +/turf/closed/wall/strata_ice/jungle, +/area/lv624/ground/barrens/south_eastern_barrens) +"DG" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/west, +/area/lv624/ground/barrens/south_eastern_barrens) "DZ" = ( /obj/effect/landmark/lv624/fog_blocker, /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -1140,6 +1111,10 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/caves/sand_temple) +"Ez" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "EB" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -1576,6 +1551,27 @@ icon_state = "multi_tiles" }, /area/lv624/ground/caves/sand_temple) +"Ok" = ( +/obj/item/weapon/sword{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata{ + color = "#5e5d5d"; + icon_state = "multi_tiles" + }, +/area/lv624/ground/caves/sand_temple) "OC" = ( /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) @@ -1598,6 +1594,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"Pl" = ( +/obj/item/weapon/sword, +/turf/open/gm/coast/beachcorner2/north_west, +/area/lv624/ground/caves/sand_temple) "Ps" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -2309,7 +2309,7 @@ ci vY Ai Wz -dK +Ez ZX ZX ZX @@ -2587,7 +2587,7 @@ ai dA dA Dl -DH +nX vN mv mv @@ -2634,7 +2634,7 @@ rA mv mv wU -hu +Pl ci vY eY @@ -2691,7 +2691,7 @@ mv ic mr uE -mI +tm uE uE SK @@ -2839,13 +2839,13 @@ GT xO xO zZ -uy +Dt qf Ai ax ci ky -BI +Ok wR dA mB diff --git a/maps/map_files/LV624/standalone/clfship.dmm b/maps/map_files/LV624/standalone/clfship.dmm index 10a6618c681d..ac8e4f1ec239 100644 --- a/maps/map_files/LV624/standalone/clfship.dmm +++ b/maps/map_files/LV624/standalone/clfship.dmm @@ -31,17 +31,6 @@ icon_state = "damaged3" }, /area/lv624/lazarus/crashed_ship) -"aO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) -"aY" = ( -/obj/structure/tunnel{ - id = "hole3" - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "bc" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/almayer{ @@ -127,16 +116,6 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship) -"eD" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/spawner/random/toolbox, -/obj/item/toy/deck/uno{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/lv624/lazarus/crashed_ship) "eG" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/gm/dirt, @@ -298,21 +277,6 @@ /obj/item/weapon/gun/smg/fp9000, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"hZ" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/item/weapon/gun/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/clothing/accessory/storage/webbing, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/lv624/lazarus/crashed_ship) "id" = ( /turf/open/floor/plating{ dir = 5; @@ -347,6 +311,10 @@ icon_state = "bluecorner" }, /area/lv624/lazarus/crashed_ship) +"jt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) "jx" = ( /obj/item/stack/rods, /turf/open/floor/plating{ @@ -431,19 +399,6 @@ icon_state = "platingdmg1" }, /area/lv624/lazarus/crashed_ship) -"kO" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/toy/plush/farwa, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/crashed_ship) "kY" = ( /obj/structure/machinery/door/airlock/almayer/generic, /turf/open/floor{ @@ -491,6 +446,13 @@ "lr" = ( /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) +"lv" = ( +/obj/item/stack/rods, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "platingdmg1" + }, +/area/lv624/lazarus/crashed_ship) "lC" = ( /obj/item/ammo_magazine/sniper/svd, /turf/open/floor/plating, @@ -680,12 +642,19 @@ icon_state = "green" }, /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/structure/blocker/forcefield/multitile_vehicles, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) +"sI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/transmitter/clf_net/rotary{ + phone_category = "CR-116"; + phone_color = "yellow"; + phone_id = "Engineering" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/lv624/lazarus/crashed_ship) "sT" = ( /obj/structure/barricade/metal/wired{ dir = 1 @@ -908,6 +877,12 @@ icon_state = "damaged3" }, /area/lv624/lazarus/crashed_ship) +"yL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/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) "yT" = ( /obj/structure/barricade/metal/wired{ icon_state = "metal_2" @@ -963,13 +938,6 @@ icon_state = "whitebluefull" }, /area/lv624/lazarus/crashed_ship) -"zJ" = ( -/obj/item/stack/rods, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) "Aa" = ( /obj/effect/vehicle_spawner/van/fixed{ color = "#4a9eed"; @@ -1068,6 +1036,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) +"Cs" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/storage/bag/trash, +/obj/item/tool/screwdriver, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor{ + icon_state = "platingdmg1" + }, +/area/lv624/lazarus/crashed_ship) "Ct" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 8; @@ -1133,15 +1111,6 @@ icon_state = "green" }, /area/lv624/lazarus/crashed_ship) -"DO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/lv624/lazarus/crashed_ship) "DS" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/firstaid/regular{ @@ -1257,6 +1226,16 @@ icon_state = "emerald" }, /area/lv624/lazarus/crashed_ship) +"GO" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/spawner/random/toolbox, +/obj/item/toy/deck/uno{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) "GQ" = ( /obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/plating, @@ -1271,6 +1250,26 @@ icon_state = "platingdmg1" }, /area/lv624/lazarus/crashed_ship) +"GX" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) +"GY" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/clothing/accessory/storage/webbing, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/lv624/lazarus/crashed_ship) "Hg" = ( /obj/structure/cargo_container/arious/rightmid, /turf/open/floor{ @@ -1581,19 +1580,6 @@ /obj/structure/machinery/floodlight, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"OZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/structure/transmitter/clf_net/rotary{ - phone_category = "CR-116"; - phone_color = "yellow"; - phone_id = "Engineering" - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/lv624/lazarus/crashed_ship) "Pu" = ( /obj/effect/landmark/corpsespawner/clf, /turf/open/floor{ @@ -1774,6 +1760,19 @@ icon_state = "platingdmg1" }, /area/lv624/lazarus/crashed_ship) +"TJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/lv624/lazarus/crashed_ship) "TK" = ( /obj/item/stack/rods, /obj/structure/machinery/defenses/sentry/premade/dumb{ @@ -1818,16 +1817,6 @@ icon_state = "emeraldcorner" }, /area/lv624/lazarus/crashed_ship) -"Up" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/oxygen/red, -/obj/item/storage/bag/trash, -/obj/item/tool/screwdriver, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) "Uv" = ( /obj/item/ammo_magazine/smg/fp9000, /turf/open/floor/plating{ @@ -1965,6 +1954,15 @@ icon_state = "warnplate" }, /area/lv624/lazarus/crashed_ship) +"Xa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/lv624/lazarus/crashed_ship) "Xm" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" @@ -2485,7 +2483,7 @@ xh wV lr gQ -OZ +sI Xq Qj lr @@ -2534,7 +2532,7 @@ lr DY HR Xq -DO +Xa Ud lr ch @@ -2571,7 +2569,7 @@ te UV Ro Sy -Up +Cs ok dN Bc @@ -2954,7 +2952,7 @@ wx LG ln Bg -eD +GO uX Xq Mz @@ -3187,7 +3185,7 @@ vo lr RS Xq -kO +TJ Dv sH IG @@ -3199,7 +3197,7 @@ jr Xq ou dN -zJ +lv Qf Hg dN @@ -3377,7 +3375,7 @@ Ab Ab Ab Ns -hZ +GY IP Xq Nw @@ -4067,7 +4065,7 @@ Yj Yj "} (43,1,1) = {" -sO +yL Ab Ab Hj @@ -4114,7 +4112,7 @@ Yj Yj "} (44,1,1) = {" -sO +yL Ab Ab Ab @@ -4161,14 +4159,14 @@ Yj Yj "} (45,1,1) = {" -sO +yL Ab Ab Ab Ab Ab Hj -aO +GX Ab Ab Ab @@ -4208,14 +4206,14 @@ Yj Yj "} (46,1,1) = {" -sO -aY +yL +jt Ab Ab Ab Ab Ab -aO +GX Ab Ab Ab diff --git a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm index 770d6a93473e..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/lv624/xeno_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/lv624/xeno_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 76d29d2d01ba..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/lv624/xeno_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 aeddb1aa1021..63f3225e3df5 100644 --- a/maps/map_files/New_Varadero/New_Varadero.dmm +++ b/maps/map_files/New_Varadero/New_Varadero.dmm @@ -77,6 +77,11 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) +"acI" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) "acO" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/beakers, @@ -107,6 +112,12 @@ icon_state = "multi_tiles" }, /area/varadero/interior/electrical) +"adS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior/caves/east) "aer" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -291,11 +302,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"akn" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/up, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/vessel) "akO" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/shiva{ @@ -740,6 +746,10 @@ icon_state = "blue" }, /area/varadero/interior/administration) +"azQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/east) "aAg" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -1128,6 +1138,12 @@ icon_state = "asteroidfloor" }, /area/varadero/exterior/lz1_near) +"aHH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior/maintenance/security) "aHM" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 @@ -1292,16 +1308,10 @@ "aMC" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"aMN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +"aNw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/research) "aOg" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) @@ -1355,6 +1365,10 @@ icon_state = "snow_mat" }, /area/varadero/interior/security) +"aQz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) "aQG" = ( /turf/open/floor/shiva{ dir = 9; @@ -1886,6 +1900,10 @@ "bgE" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) +"bhy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/research) "bhF" = ( /obj/structure/sign/safety/water{ pixel_x = 15 @@ -2036,12 +2054,6 @@ icon_state = "purplefull" }, /area/varadero/interior/research) -"bmI" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) "bmV" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" @@ -2174,6 +2186,11 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"bsc" = ( +/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) "bsf" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) @@ -2289,12 +2306,6 @@ icon_state = "purplefull" }, /area/varadero/interior/research) -"bxx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "bye" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -2474,12 +2485,6 @@ default_name = "shallow ocean" }, /area/varadero/exterior/farocean) -"bCi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/research) "bCA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -2592,6 +2597,10 @@ icon_state = "asteroidplating" }, /area/varadero/interior/maintenance/north) +"bGw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/central) "bGy" = ( /turf/open/floor/shiva{ dir = 4; @@ -3841,6 +3850,11 @@ icon_state = "red" }, /area/varadero/interior/security) +"cvO" = ( +/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) "cvW" = ( /obj/structure/closet/secure_closet/freezer/kitchen, /obj/structure/prop/invuln/lattice_prop{ @@ -4481,6 +4495,11 @@ icon_state = "asteroidplating" }, /area/varadero/exterior/lz1_near) +"cQx" = ( +/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) "cRn" = ( /obj/item/prop/alien/hugger, /turf/open/shuttle{ @@ -4792,10 +4811,6 @@ /obj/item/ammo_magazine/revolver/cmb, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"dda" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/central) "ddc" = ( /obj/item/stack/cable_coil/cut{ pixel_x = 1; @@ -4831,10 +4846,12 @@ icon_state = "floor3" }, /area/varadero/interior/morgue) -"deg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating, -/area/varadero/interior/research) +"dem" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior_protected/maintenance/south) "deq" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -4925,12 +4942,6 @@ icon_state = "floor3" }, /area/varadero/interior/records) -"dhQ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist, -/obj/item/weapon/sword/katana, -/turf/open/floor/carpet, -/area/varadero/interior/chapel) "dhV" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/gm/river{ @@ -5216,12 +5227,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /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, -/turf/open/floor/plating, -/area/varadero/interior/research) "dpz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Security Brig"; @@ -5498,10 +5503,6 @@ /obj/item/tool/wirecutters, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"dDG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) "dEo" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -5586,6 +5587,10 @@ icon_state = "multi_tiles" }, /area/varadero/interior_protected/vessel) +"dHX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/hall_SE) "dHY" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -5624,6 +5629,16 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"dIp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior_protected/maintenance/south) "dID" = ( /obj/structure/closet/wardrobe/engineering_yellow, /turf/open/floor/shiva{ @@ -5652,6 +5667,12 @@ icon_state = "red" }, /area/varadero/interior/hall_N) +"dKm" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/varadero/interior/bunks) "dKy" = ( /obj/structure/closet/crate/freezer/cooler/oj, /obj/item/reagent_container/food/drinks/cans/beer, @@ -6011,6 +6032,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"dXU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) "dYd" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -6455,12 +6480,6 @@ icon_state = "desert2" }, /area/varadero/exterior/monsoon) -"emt" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) "emC" = ( /obj/structure/surface/rack, /obj/item/tool/surgery/scalpel/pict_system, @@ -6716,6 +6735,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"etJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/plating, +/area/varadero/interior/research) "etV" = ( /obj/item/stack/sheet/metal, /turf/open/gm/dirt, @@ -6828,6 +6851,10 @@ "eyt" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/caves/east) +"eyA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) "eyL" = ( /obj/structure/surface/table, /turf/open/floor/interior/plastic, @@ -7156,10 +7183,6 @@ icon_state = "red" }, /area/varadero/interior/security) -"eHZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/gm/grass/grass1/weedable, -/area/varadero/interior_protected/caves/central) "eIr" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/floor/strata{ @@ -7356,6 +7379,9 @@ /obj/item/circuitboard/airlock, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) +"eOK" = ( +/turf/open/floor/plating, +/area/varadero/interior_protected/caves/central) "eOZ" = ( /obj/structure/bed/chair{ dir = 1 @@ -7387,6 +7413,10 @@ icon_state = "green" }, /area/varadero/interior/hall_N) +"ePL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/varadero/interior_protected/caves) "eQa" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -7586,6 +7616,12 @@ icon_state = "asteroidplating" }, /area/varadero/exterior/lz1_near) +"eWc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior_protected/caves/central) "eWp" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -7820,10 +7856,19 @@ icon_state = "freezerfloor" }, /area/varadero/interior/cargo) +"fcl" = ( +/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) "fcp" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"fcu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) "fcF" = ( /obj/effect/landmark/crap_item, /turf/open/auto_turf/sand_white/layer1, @@ -7935,6 +7980,10 @@ icon_state = "floor3" }, /area/varadero/interior/medical) +"ffp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/varadero/interior/caves/east) "ffx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -8114,6 +8163,11 @@ }, /turf/open/floor/plating, /area/varadero/interior/cargo) +"fjN" = ( +/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) "fjU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8570,6 +8624,10 @@ icon_state = "yellow" }, /area/varadero/interior/electrical) +"fCM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/central) "fDB" = ( /obj/structure/machinery/light{ dir = 4 @@ -8741,10 +8799,6 @@ default_name = "shallow ocean" }, /area/varadero/exterior/pontoon_beach) -"fHg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/research) "fHk" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, @@ -8852,12 +8906,6 @@ icon_state = "snow_mat" }, /area/varadero/interior/security) -"fLu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "fLY" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pontoon_beach) @@ -9059,6 +9107,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) +"fRR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior_protected/caves/swcaves) "fSa" = ( /obj/structure/window_frame/colony, /turf/open/gm/dirt, @@ -9253,6 +9307,10 @@ icon_state = "asteroidfloor" }, /area/varadero/exterior/lz1_near) +"fXV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) "fXX" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/glass{ @@ -9264,12 +9322,10 @@ icon_state = "floor3" }, /area/varadero/interior/cargo) -"fYs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +"fXZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/central) "fYA" = ( /turf/open/floor/shiva{ dir = 8; @@ -9464,11 +9520,6 @@ "geo" = ( /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, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security) "geK" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -9790,11 +9841,6 @@ icon_state = "multi_tiles" }, /area/varadero/interior/electrical) -"glp" = ( -/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" = ( /obj/effect/landmark/good_item, /turf/open/shuttle{ @@ -10267,10 +10313,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"gCh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/grass/grass1/weedable, -/area/varadero/interior_protected/caves/central) "gCi" = ( /obj/structure/machinery/light{ dir = 1 @@ -10328,6 +10370,12 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"gEt" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) "gEy" = ( /obj/structure/machinery/light, /obj/item/tool/wirecutters/clippers, @@ -10416,10 +10464,6 @@ icon_state = "greenfull" }, /area/varadero/interior/hall_SE) -"gHJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves) "gHT" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, @@ -10592,6 +10636,11 @@ icon_state = "asteroidplating" }, /area/varadero/interior/maintenance) +"gPE" = ( +/turf/open/floor/shiva{ + icon_state = "multi_tiles" + }, +/area/varadero/interior_protected/caves/central) "gPG" = ( /turf/open/gm/dirt{ icon_state = "desert2" @@ -10832,6 +10881,12 @@ "gYh" = ( /turf/closed/wall/wood, /area/varadero/interior/beach_bar) +"gYz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior/research) "gZq" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/shiva{ @@ -11629,10 +11684,6 @@ default_name = "shallow ocean" }, /area/varadero/exterior/pontoon_beach) -"hBA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/central) "hBX" = ( /turf/open/floor/shiva{ dir = 10; @@ -11755,10 +11806,6 @@ /obj/structure/window_frame/wood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"hGl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) "hGz" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/shiva{ @@ -12583,6 +12630,11 @@ default_name = "shallow ocean" }, /area/varadero/exterior/monsoon) +"ihM" = ( +/obj/item/stack/sheet/wood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/research) "ihX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -12710,6 +12762,10 @@ icon_state = "asteroidfloor" }, /area/varadero/exterior/lz1_near) +"inq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/swcaves) "inN" = ( /obj/structure/barricade/handrail/wire{ dir = 8 @@ -13014,17 +13070,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/bunks) -"iwT" = ( -/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, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) "ixd" = ( /obj/structure/machinery/computer/communications{ dir = 4 @@ -13092,12 +13137,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"izi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) "izl" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -13216,10 +13255,6 @@ /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"iDn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) "iDE" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -13254,6 +13289,11 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"iEi" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/up, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/vessel) "iFb" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves/central) @@ -13309,6 +13349,12 @@ icon_state = "blue" }, /area/varadero/interior/technical_storage) +"iFL" = ( +/obj/effect/landmark/monkey_spawn, +/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) "iFQ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, @@ -13550,10 +13596,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"iOv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves) "iOQ" = ( /obj/structure/bed/chair/office/dark, /obj/structure/disposalpipe/segment, @@ -13936,13 +13978,6 @@ icon_state = "blue" }, /area/varadero/interior/maintenance) -"jab" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, -/area/varadero/interior/research) "jai" = ( /obj/structure/filingcabinet/security, /obj/effect/landmark/objective_landmark/far, @@ -13951,6 +13986,12 @@ icon_state = "red" }, /area/varadero/interior/security) +"jak" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior_protected/caves) "jaF" = ( /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) @@ -13970,6 +14011,10 @@ icon_state = "blue" }, /area/varadero/interior/administration) +"jbl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/grass/grass1/weedable, +/area/varadero/interior_protected/caves/central) "jbR" = ( /obj/item/device/flashlight/lamp/tripod{ pixel_x = 7; @@ -15142,6 +15187,15 @@ icon_state = "multi_tiles" }, /area/varadero/interior/hall_SE) +"jOL" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/item/toy/plush/farwa, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "snow_mat" + }, +/area/varadero/interior/security) "jOR" = ( /obj/structure/closet/secure_closet/security_empty, /turf/open/floor/shiva{ @@ -15273,6 +15327,11 @@ icon_state = "asteroidplating" }, /area/varadero/interior/comms1) +"jSr" = ( +/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) "jSN" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/surface/table/woodentable{ @@ -15305,12 +15364,6 @@ "jTR" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/monsoon) -"jTY" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) "jUt" = ( /obj/item/tool/weldingtool/experimental, /turf/open/floor/plating/icefloor{ @@ -15515,9 +15568,6 @@ icon_state = "multi_tiles" }, /area/varadero/interior/electrical) -"kce" = ( -/turf/open/floor/plating, -/area/varadero/interior_protected/caves/central) "kcn" = ( /obj/item/stack/sandbags_empty/full, /turf/open/auto_turf/sand_white/layer1, @@ -15943,6 +15993,13 @@ icon_state = "asteroidplating" }, /area/varadero/interior/maintenance/security) +"kqK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior_protected/maintenance/south) "kqN" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/dirt, @@ -16119,6 +16176,33 @@ icon_state = "asteroidplating" }, /area/varadero/interior/comms2) +"kxW" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/item/bedsheet/hos{ + layer = 3.1 + }, +/turf/open/floor/wood, +/area/varadero/interior/bunks) "kyh" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -16435,6 +16519,12 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) +"kGA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior_protected/maintenance/south) "kGB" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -16725,6 +16815,10 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) +"kQB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/central) "kRp" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/item/device/flashlight/lamp/tripod, @@ -16807,6 +16901,10 @@ icon_state = "multi_tiles" }, /area/varadero/interior/comms3) +"kSO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/gm/grass/grass1/weedable, +/area/varadero/interior_protected/caves/central) "kTo" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/shiva{ @@ -16851,6 +16949,10 @@ icon_state = "white" }, /area/varadero/interior/security) +"kUb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/north_research) "kUj" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/random/toolbox, @@ -17491,6 +17593,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) +"lqH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/shuttle{ + icon_state = "floor6" + }, +/area/varadero/interior_protected/vessel) "lqM" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -17697,9 +17805,10 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) -"lxe" = ( +"lwE" = ( /obj/item/stack/sheet/wood, -/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/weed_node, /turf/open/floor/plating, /area/varadero/interior/research) "lxi" = ( @@ -17838,6 +17947,12 @@ dir = 1 }, /area/varadero/interior/research) +"lCr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior/caves/east) "lCK" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -18103,6 +18218,11 @@ icon_state = "asteroidwarning" }, /area/varadero/exterior/lz1_console) +"lIL" = ( +/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) "lIO" = ( /obj/structure/prop/ice_colony/tiger_rug{ icon_state = "White"; @@ -18242,15 +18362,6 @@ icon_state = "asteroidplating" }, /area/varadero/exterior/eastbeach) -"lNq" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/item/toy/plush/farwa, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) "lNw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/prop/server_equipment/laptop/closed{ @@ -18620,13 +18731,6 @@ /obj/structure/largecrate/random/case, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"lYQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "lZa" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -18832,12 +18936,6 @@ default_name = "deep ocean" }, /area/varadero/exterior/comms4) -"mdL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) "mdM" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -18871,6 +18969,10 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating, /area/varadero/interior/administration) +"mev" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/swcaves) "mey" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -19404,6 +19506,10 @@ default_name = "shallow ocean" }, /area/varadero/exterior/comms4) +"mwv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/grass/grass1/weedable, +/area/varadero/interior_protected/caves/swcaves) "mwD" = ( /obj/item/storage/toolbox/mechanical{ pixel_x = 1; @@ -19694,10 +19800,6 @@ icon_state = "asteroidplating" }, /area/varadero/interior/electrical) -"mED" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/east) "mFY" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/shiva{ @@ -19741,6 +19843,14 @@ icon_state = "asteroidplating" }, /area/varadero/interior/oob) +"mIm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/item/stack/sheet/metal, +/turf/open/floor/strata{ + color = "#5e5d5d"; + icon_state = "multi_tiles" + }, +/area/varadero/interior_protected/vessel) "mIG" = ( /obj/structure/bed, /obj/item/bedsheet/orange, @@ -19841,10 +19951,6 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"mMu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) "mMz" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, @@ -20017,6 +20123,12 @@ default_name = "shallow ocean" }, /area/varadero/exterior/pontoon_beach) +"mRi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior_protected/maintenance/south) "mRq" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -20043,34 +20155,6 @@ icon_state = "multi_tiles" }, /area/varadero/interior/administration) -"mSa" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/central) -"mSc" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/toy/plush/farwa, -/turf/open/floor/wood, -/area/varadero/interior/bunks) "mSf" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva{ @@ -20422,10 +20506,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"ncL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"ncW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, /turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/research) +/area/varadero/interior/caves/east) "ncX" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "\improper Underground Security Checkpoint"; @@ -21141,10 +21225,6 @@ default_name = "deep ocean" }, /area/varadero/exterior/comms4) -"nFK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/swcaves) "nFX" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, @@ -21268,6 +21348,11 @@ default_name = "shallow ocean" }, /area/varadero/exterior/monsoon) +"nLd" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/north_research) "nLw" = ( /obj/structure/machinery/r_n_d/server, /turf/open/floor/shiva{ @@ -21306,6 +21391,10 @@ /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"nMS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves) "nNe" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -21720,6 +21809,14 @@ icon_state = "asteroidplating" }, /area/varadero/interior/hall_NW) +"nYi" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -9 + }, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/varadero/interior_protected/caves/central) "nYx" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -21783,12 +21880,6 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"nZP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) "oam" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -22340,6 +22431,10 @@ "ouy" = ( /turf/closed/wall/r_wall, /area/varadero/interior/caves/east) +"ouD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/grass/grass1/weedable, +/area/varadero/interior_protected/caves/central) "ouP" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/icefloor{ @@ -22823,6 +22918,16 @@ /obj/item/device/flashlight/slime, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) +"oKb" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist, +/obj/item/weapon/sword/katana, +/turf/open/floor/carpet, +/area/varadero/interior/chapel) +"oKg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) "oKi" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/medium, @@ -23177,10 +23282,6 @@ /obj/item/ammo_magazine/rifle, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"oWx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) "oWO" = ( /obj/structure/toilet, /turf/open/floor{ @@ -23211,10 +23312,6 @@ icon_state = "snow_mat" }, /area/varadero/interior/maintenance) -"oXo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/dirt, -/area/varadero/interior_protected/caves/digsite) "oXp" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/shiva{ @@ -23686,11 +23783,6 @@ icon_state = "multi_tiles" }, /area/varadero/interior/cargo) -"plT" = ( -/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" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -24260,10 +24352,6 @@ icon_state = "asteroidplating" }, /area/varadero/interior/comms2) -"pDX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) "pEE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24325,6 +24413,10 @@ icon_state = "multi_tiles" }, /area/varadero/interior/hall_SE) +"pHh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/east) "pIe" = ( /obj/item/stack/sheet/wood, /turf/open/floor/plating/icefloor{ @@ -24408,10 +24500,6 @@ icon_state = "asteroidplating" }, /area/varadero/interior/maintenance/research) -"pJF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/varadero/interior_protected/caves) "pJQ" = ( /obj/item/book/manual/evaguide, /turf/open/floor{ @@ -24476,31 +24564,6 @@ icon_state = "multi_tiles" }, /area/varadero/interior/morgue) -"pMy" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/toy/plush/farwa, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) "pMG" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor{ @@ -24976,6 +25039,11 @@ icon_state = "floor3" }, /area/varadero/interior/electrical) +"pZC" = ( +/obj/item/stack/sheet/wood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/floor/plating, +/area/varadero/interior/research) "pZD" = ( /obj/structure/closet/crate, /turf/open/floor/plating/icefloor{ @@ -25739,10 +25807,6 @@ /obj/structure/machinery/door/airlock/almayer/engineering/autoname, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"qzZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/grass/grass1/weedable, -/area/varadero/interior_protected/caves/swcaves) "qAd" = ( /obj/structure/machinery/door/airlock/strata/autoname{ autoname = 0; @@ -26659,10 +26723,6 @@ /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"qZR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/grass/grass1/weedable, -/area/varadero/interior_protected/caves/central) "qZV" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -26671,6 +26731,9 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"raW" = ( +/turf/closed/wall, +/area/varadero/interior_protected/caves/central) "rbd" = ( /obj/item/stack/sheet/wood/small_stack, /turf/open/floor/plating/icefloor{ @@ -26949,10 +27012,6 @@ icon_state = "asteroidfloor" }, /area/varadero/exterior/lz1_near) -"rkC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) "rkH" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -10; @@ -27082,12 +27141,6 @@ dir = 1 }, /area/varadero/interior/cargo) -"ron" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/swcaves) "roy" = ( /obj/structure/closet/hydrant{ pixel_x = -32 @@ -27532,6 +27585,10 @@ icon_state = "asteroidplating" }, /area/varadero/interior/maintenance/north) +"rAt" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/varadero/interior_protected/caves/central) "rAy" = ( /obj/structure/bedsheetbin, /turf/open/floor/shiva{ @@ -27609,14 +27666,6 @@ icon_state = "asteroidplating" }, /area/varadero/interior/maintenance/security) -"rDK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/stack/sheet/metal, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) "rFj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/objective_landmark/far, @@ -27645,6 +27694,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) +"rGc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/north_research) "rGl" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 @@ -27852,10 +27905,6 @@ icon_state = "floor3" }, /area/varadero/interior/hall_SE) -"rMP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/varadero/interior/caves/east) "rNf" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -27865,11 +27914,6 @@ icon_state = "asteroidplating" }, /area/varadero/exterior/comms4) -"rNm" = ( -/obj/item/stack/sheet/wood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/research) "rNo" = ( /obj/structure/machinery/holosign_switch{ id = "otice"; @@ -27897,11 +27941,6 @@ icon_state = "white" }, /area/varadero/interior/laundry) -"rPB" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) "rPD" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/green, @@ -28179,14 +28218,6 @@ icon_state = "white" }, /area/varadero/interior/toilets) -"rWG" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -9 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior_protected/caves/central) "rWJ" = ( /obj/item/stool, /turf/open/floor/shiva{ @@ -28324,6 +28355,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"sbl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/door, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security) "sbX" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -28399,33 +28434,6 @@ icon_state = "snow_mat" }, /area/varadero/interior/medical) -"seZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/item/bedsheet/hos{ - layer = 3.1 - }, -/turf/open/floor/wood, -/area/varadero/interior/bunks) "sff" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva{ @@ -28584,6 +28592,10 @@ icon_state = "asteroidfloor" }, /area/varadero/interior/maintenance/north) +"sir" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves) "sjD" = ( /obj/structure/machinery/light{ dir = 1 @@ -29205,6 +29217,13 @@ dir = 1 }, /area/varadero/interior/cargo) +"sCK" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/shiva{ + dir = 8; + icon_state = "purple" + }, +/area/varadero/interior/research) "sCV" = ( /obj/structure/machinery/alarm{ dir = 8; @@ -30037,6 +30056,31 @@ /obj/structure/sign/banners/happybirthdaysteve, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"teQ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/toy/plush/farwa, +/obj/structure/machinery/light, +/turf/open/floor/shiva{ + icon_state = "floor3" + }, +/area/varadero/interior/medical) "teT" = ( /obj/structure/largecrate/random/case/small, /turf/open/shuttle/elevator/grating, @@ -30415,10 +30459,6 @@ icon_state = "green" }, /area/varadero/interior/court) -"tpO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/swcaves) "tpV" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = -13; @@ -30521,12 +30561,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"trQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) "tso" = ( /obj/structure/closet/athletic_mixed, /turf/open/floor/shiva{ @@ -30672,10 +30706,6 @@ icon_state = "asteroidplating" }, /area/varadero/interior/maintenance/security) -"tCl" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/varadero/interior_protected/caves/central) "tCA" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -30769,11 +30799,13 @@ default_name = "deep ocean" }, /area/varadero/exterior/comms4) -"tFQ" = ( -/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) +"tFB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + color = "#5e5d5d"; + icon_state = "multi_tiles" + }, +/area/varadero/interior_protected/vessel) "tFX" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/ammo_box/magazine/shotgun/buckshot, @@ -30905,11 +30937,6 @@ icon_state = "purplefull" }, /area/varadero/interior/research) -"tMJ" = ( -/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" = ( /obj/structure/window/reinforced{ dir = 4; @@ -31133,11 +31160,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"tSQ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) "tSR" = ( /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating/icefloor{ @@ -31229,6 +31251,28 @@ icon_state = "asteroidplating" }, /area/varadero/interior/maintenance/research) +"tVV" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/wood, +/area/varadero/interior/bunks) "tVX" = ( /obj/structure/surface/rack, /obj/item/maintenance_jack, @@ -31236,10 +31280,6 @@ icon_state = "asteroidplating" }, /area/varadero/interior_protected/maintenance/south) -"tWA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security) "tWT" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/west, @@ -31421,6 +31461,10 @@ icon_state = "asteroidplating" }, /area/varadero/interior/electrical) +"ubN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/swcaves) "ubT" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -31578,10 +31622,6 @@ icon_state = "redfull" }, /area/varadero/interior/hall_SE) -"uhV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/varadero/interior_protected/caves/swcaves) "uiq" = ( /obj/structure/surface/table, /turf/open/floor/shiva{ @@ -31948,12 +31988,6 @@ icon_state = "multi_tiles" }, /area/varadero/interior_protected/vessel) -"uvr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "uvw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -32097,6 +32131,12 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"uBl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating/icefloor{ + icon_state = "asteroidplating" + }, +/area/varadero/interior_protected/caves) "uBV" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -32277,9 +32317,6 @@ icon_state = "floor3" }, /area/varadero/interior/security) -"uIR" = ( -/turf/closed/wall, -/area/varadero/interior_protected/caves/central) "uIW" = ( /turf/open/gm/coast/north, /area/varadero/exterior/lz2_near) @@ -32802,6 +32839,11 @@ icon_state = "blue" }, /area/varadero/interior/administration) +"vbf" = ( +/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) "vbr" = ( /obj/structure/prop/souto_land/pole, /obj/structure/prop/souto_land/pole{ @@ -32865,12 +32907,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"vct" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves/swcaves) "vcz" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, @@ -33034,12 +33070,6 @@ default_name = "deep ocean" }, /area/varadero/exterior/farocean) -"vhI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves/central) "vhJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard{ @@ -34667,6 +34697,10 @@ icon_state = "doubleside" }, /area/varadero/interior/chapel) +"wcN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/varadero/interior_protected/caves/swcaves) "wdb" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ dir = 4; @@ -34696,6 +34730,10 @@ icon_state = "snow_mat" }, /area/varadero/interior/medical) +"wdk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/varadero/interior_protected/caves/digsite) "wdx" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair/office/light{ @@ -35085,12 +35123,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"wnE" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/east) "wnK" = ( /turf/open/floor/shiva{ icon_state = "wredfull" @@ -35187,12 +35219,6 @@ icon_state = "red" }, /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, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/research) "wpM" = ( /obj/structure/bedsheetbin{ pixel_y = 4 @@ -35349,12 +35375,6 @@ icon_state = "multi_tiles" }, /area/varadero/interior/comms3) -"wvI" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/hall_SE) "wvK" = ( /obj/structure/closet/crate/freezer, /obj/effect/landmark/objective_landmark/close, @@ -35439,10 +35459,6 @@ icon_state = "multi_tiles" }, /area/varadero/interior/research) -"wBc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/central) "wBp" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/river/ocean{ @@ -35894,12 +35910,6 @@ icon_state = "multi_tiles" }, /area/varadero/interior/medical) -"wQh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) "wQi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ dir = 1; @@ -35965,11 +35975,6 @@ default_name = "shallow ocean" }, /area/varadero/exterior/pool) -"wSM" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/caves/central) "wSX" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -36038,11 +36043,6 @@ "wVf" = ( /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, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/east) "wVA" = ( /obj/structure/filingcabinet{ pixel_x = -8; @@ -36382,11 +36382,6 @@ }, /turf/open/floor/plating, /area/varadero/interior/research) -"xhA" = ( -/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) "xiV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37070,11 +37065,6 @@ icon_state = "asteroidplating" }, /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, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) "xFb" = ( /turf/open/gm/river/ocean{ name = "deep ocean"; @@ -39114,7 +39104,7 @@ xCn xCn xCn xCn -tSQ +nLd xCn xCn xCn @@ -39130,7 +39120,7 @@ oPQ xCn cBI xCn -emt +kUb ljt pGs pGs @@ -39831,18 +39821,18 @@ xCn oPQ xCn xCn -hGl -tMJ -wpG +rGc +fcl +iFL vYp -tMJ -ncL +fcl +aNw yks yks -ncL -tMJ +aNw +fcl vYp -tMJ +fcl yks yks fay @@ -39910,7 +39900,7 @@ jQa jQa jQa jQa -nFK +ubN jQa jQa jQa @@ -40013,7 +40003,7 @@ xCn xCn srg xCn -hGl +rGc efw kXQ efw @@ -40246,11 +40236,11 @@ pGs jQa jQa jQa -tpO -tpO +mev +mev jQa jQa -nFK +ubN jQa jQa jQa @@ -40276,9 +40266,9 @@ jcr ppl jQa jQa -nFK +ubN jQa -nFK +ubN jQa jQa jQa @@ -40428,8 +40418,8 @@ jQa jQa jQa jQa -tpO -tpO +mev +mev jQa geo jQa @@ -40450,7 +40440,7 @@ jQa jQa jQa jQa -uhV +wcN jQa jQa jQa @@ -40640,9 +40630,9 @@ jQa jQa jQa jQa -nFK +ubN geo -nFK +ubN jQa jQa jQa @@ -40727,8 +40717,8 @@ klT klT klT vYp -ncL -tMJ +aNw +fcl yks vYp yks @@ -41166,7 +41156,7 @@ pGs jQa jQa jQa -nFK +ubN jQa jQa jQa @@ -41186,9 +41176,9 @@ jQa jQa jQa geo -uhV +wcN jQa -nFK +ubN jQa geo pGs @@ -41459,8 +41449,8 @@ yks yks yks aoE -tMJ -ncL +fcl +aNw yks yks yks @@ -41550,9 +41540,9 @@ jQa jQa jQa jQa -nFK +ubN jQa -nFK +ubN jQa jQa jQa @@ -41720,7 +41710,7 @@ jQa pGs jQa jQa -nFK +ubN jQa jQa jQa @@ -42262,8 +42252,8 @@ jQa jQa jQa jQa -tpO -tpO +mev +mev jQa jQa jQa @@ -42442,10 +42432,10 @@ pGs pGs pGs jQa -nFK +ubN jQa -tpO -tpO +mev +mev jQa jQa jQa @@ -42457,7 +42447,7 @@ pGs ppl jQa jQa -nFK +ubN jQa ppl jQa @@ -42644,7 +42634,7 @@ jQa jcr ppl jQa -nFK +ubN jQa jQa jQa @@ -42760,7 +42750,7 @@ rQV rQV nuQ lKS -jab +sCK cjU nLw fay @@ -43730,7 +43720,7 @@ jQa jQa jQa jQa -nFK +ubN jQa jQa jQa @@ -43900,7 +43890,7 @@ pGs jQa jQa jQa -ron +inq jQa jQa jQa @@ -44037,12 +44027,12 @@ xCn xCn dcM oPQ -deg +etJ sDM iCy iCy dlv -lxe +pZC tDo vYW vYW @@ -44085,7 +44075,7 @@ jQa jQa jQa jQa -nFK +ubN jQa jQa jQa @@ -44219,12 +44209,12 @@ oVt yfT oPQ oPQ -doW +lwE sDM pnn mpn dlv -doW +lwE tDo uQa vYW @@ -44401,12 +44391,12 @@ xCn oPQ oPQ oPQ -deg +etJ sDM wAx iCy dlv -rNm +ihM tDo uQa xqy @@ -44415,8 +44405,8 @@ vYW uQa uQa uQa -mdL -mdL +jak +jak uQa uQa alL @@ -44583,12 +44573,12 @@ xCn xCn qYg xCn -bCi +gYz jwy jvF iCy dlv -fHg +bhy oAE vYW vYW @@ -44597,8 +44587,8 @@ vYW vYW uQa uQa -mdL -mdL +jak +jak uQa uQa alL @@ -45000,7 +44990,7 @@ pGs jQa jQa jQa -nFK +ubN jQa jQa geo @@ -45700,9 +45690,9 @@ ebr ebr sQN vYW -gHJ +sir vYW -gHJ +sir vYW vYW vYW @@ -45910,7 +45900,7 @@ jQa jQa jQa jQa -nFK +ubN jQa jQa jQa @@ -46064,9 +46054,9 @@ ebr neq vYW vYW -pJF +ePL neq -trQ +uBl vYW vYW vYW @@ -46086,7 +46076,7 @@ jQa jQa jQa jQa -vct +fRR rgz jQa jQa @@ -46610,9 +46600,9 @@ hto vYW vYW vYW -gHJ +sir vYW -gHJ +sir vYW vYW hto @@ -46623,8 +46613,8 @@ ggX vYW vYW vYW -mdL -iOv +jak +nMS vYW jQa jQa @@ -46805,8 +46795,8 @@ vYW vYW vYW vYW -mdL -mdL +jak +jak uQa jQa jQa @@ -46823,7 +46813,7 @@ pGs jQa jQa jQa -nFK +ubN fjg jQa pGs @@ -46974,9 +46964,9 @@ vYW vYW vYW vYW -gHJ +sir vYW -pJF +ePL vYW vYW vYW @@ -47639,7 +47629,7 @@ bLB joN jZE mfa -dhQ +oKb krM uEE xWU @@ -49842,7 +49832,7 @@ wQd sWp dBB maN -pMy +teQ qcN oHo qqA @@ -50259,7 +50249,7 @@ iFb xxk cto etv -iDn +eyA meS xSl aOg @@ -50441,7 +50431,7 @@ iFb swV xxk etv -xEG +cQx mCF mCF hoC @@ -50463,7 +50453,7 @@ mCF mCF mCF mCF -qzZ +mwv fjg jQa jQa @@ -50623,8 +50613,8 @@ iFb wNz cto etv -iDn -iDn +eyA +eyA ksX ksX cba @@ -50639,8 +50629,8 @@ ksX ksX ksX ksX -iDn -xEG +eyA +cQx mCF mCF mCF @@ -50822,7 +50812,7 @@ cto xxk cto pOa -iDn +eyA mCF mCF mCF @@ -51000,7 +50990,7 @@ sgl cto xxk cto -fLu +dem cto cto xxk @@ -51912,7 +51902,7 @@ cty cty ksX cto -fLu +dem cto ksX aOg @@ -52087,7 +52077,7 @@ cty hoC hoC mCF -wBc +bGw hoC cty cty @@ -52100,7 +52090,7 @@ ksX hoC mCF aOg -wBc +bGw mCF pGs pGs @@ -52448,8 +52438,8 @@ xxk mCF aOg aOg -dda -gCh +fXZ +jbl hiE mCF aOg @@ -52630,8 +52620,8 @@ ksX mCF aOg xGV -gCh -gCh +jbl +jbl mCF mCF aOg @@ -52639,9 +52629,9 @@ aOg cty cty ksX -bxx -bxx -bxx +mRi +mRi +mRi ksX cty mCF @@ -52822,7 +52812,7 @@ aOg ksX ksX qYd -fLu +dem cto ksX ksX @@ -52993,7 +52983,7 @@ tcX ksX vOo aOg -qZR +ouD aOg aOg aOg @@ -53340,9 +53330,9 @@ etv xxk xxk mCF -uIR -tCl -tCl +raW +rAt +rAt cty hoC mCF @@ -53366,13 +53356,13 @@ ksX ksX ksX loP -lYQ +kqK cto cto wgv -mMu +oKg xxk -iDn +eyA aOg mCF mCF @@ -53514,7 +53504,7 @@ pKs chs chs kGq -wvI +dHX ixr ixr ixr @@ -53522,9 +53512,9 @@ toU cto xxk meS -kce -wSM -wSM +eOK +gPE +gPE cty cty mCF @@ -53544,7 +53534,7 @@ cty cty mCF mCF -iDn +eyA wTE cto cto @@ -53554,7 +53544,7 @@ xxk cto xxk xxk -xEG +cQx cSa mCF mCF @@ -53704,9 +53694,9 @@ etv xxk xxk aOg -kce -wSM -rWG +eOK +gPE +nYi cty aOg aOg @@ -53726,8 +53716,8 @@ cty eoV mCF mCF -iDn -fLu +eyA +dem cto cto kDJ @@ -53736,7 +53726,7 @@ ckG cto cto cto -iDn +eyA xGV aOg mCF @@ -53885,9 +53875,9 @@ ixr toU xxk xxk -kce +eOK mCF -wSM +gPE cty cty aOg @@ -53908,7 +53898,7 @@ mCF mCF mCF mCF -xEG +cQx xxk cto cto @@ -53916,7 +53906,7 @@ cto cto wgv cto -fLu +dem cto ksX aBK @@ -54068,14 +54058,14 @@ mMZ xxk xxk mCF -kce +eOK cty cty cty aOg aOg -gCh -dda +jbl +fXZ mCF owM xxk @@ -54094,7 +54084,7 @@ ksX ksX ksX ksX -aMN +dIp xxk cto cto @@ -54104,7 +54094,7 @@ ksX aOg mCF mCF -wBc +bGw aOg mCF hoC @@ -54256,8 +54246,8 @@ aOg aOg aOg xGV -gCh -dda +jbl +fXZ mCF owM cto @@ -54589,7 +54579,7 @@ tcq jyw xya ydx -mSc +tVV wpX qQt jNT @@ -54643,7 +54633,7 @@ ksX ksX qYd cto -fLu +dem ksX ksX mCF @@ -54823,9 +54813,9 @@ aOg aOg cty cqZ -bxx -bxx -bxx +mRi +mRi +mRi ksX mCF mCF @@ -54958,7 +54948,7 @@ yhy sJq iwo tMY -jTY +dKm xxo uLP xNR @@ -54998,7 +54988,7 @@ aOg phA aOg aOg -wBc +bGw mCF mCF aOg @@ -55011,7 +55001,7 @@ cto ksX mCF mCF -wBc +bGw hoC cty cty @@ -55372,7 +55362,7 @@ cqZ cto cto xxk -xEG +cQx jdm mCF mCF @@ -55554,7 +55544,7 @@ ksX cto cto cto -iDn +eyA mCF mCF mCF @@ -55681,7 +55671,7 @@ pbt qvQ bLy ydx -seZ +kxW pbd mnm kWj @@ -55913,8 +55903,8 @@ aOg aOg aOg aOg -wBc -glp +bGw +lIL xxk cto cto @@ -56096,7 +56086,7 @@ aOg aOg aOg mCF -iDn +eyA xxk cto cto @@ -56464,7 +56454,7 @@ cqZ cto cto cto -xEG +cQx mCF aOg aOg @@ -56646,7 +56636,7 @@ cqZ cto cto cto -iDn +eyA aOg aOg xGV @@ -56828,7 +56818,7 @@ cqZ cto cto cto -iDn +eyA aOg aOg aOg @@ -57552,7 +57542,7 @@ cty cty mCF mCF -glp +lIL xxk cto cto @@ -57734,7 +57724,7 @@ cty cty mCF mCF -iDn +eyA cto cto cto @@ -57916,7 +57906,7 @@ cty cty cty mCF -iDn +eyA cto cto qEG @@ -58473,8 +58463,8 @@ xxk xxk xxk ksX -iDn -iDn +eyA +eyA mCF mCF mCF @@ -58656,7 +58646,7 @@ cto cto cto xxk -xEG +cQx mCF mCF mCF @@ -58838,7 +58828,7 @@ xxk cto cto xxk -iDn +eyA mCF mCF mCF @@ -59015,7 +59005,7 @@ gLo xxk cto cto -fLu +dem cto cto cto @@ -59191,14 +59181,14 @@ ksX ksX ksX ksX -iDn -xEG +eyA +cQx ksX ksX ksX ksX -iDn -iDn +eyA +eyA xxk xxk cto @@ -59380,7 +59370,7 @@ cty cty hoC mCF -iDn +eyA xxk xxk ghs @@ -59749,8 +59739,8 @@ xxk cto cto ksX -xEG -iDn +cQx +eyA ksX mCF mCF @@ -60108,7 +60098,7 @@ mCF aOg aOg mCF -iDn +eyA xxk sgl cto @@ -60278,7 +60268,7 @@ uXS hbi cto xxk -vhI +eWc mCF mCF aOg @@ -60290,11 +60280,11 @@ mCF lVQ xGV mCF -iDn +eyA xxk qAS -fYs -dDG +kGA +aQz wws poC cba @@ -60459,8 +60449,8 @@ oAm uXS hbi cto -mMu -vhI +oKg +eWc mCF aOg aOg @@ -60472,7 +60462,7 @@ mCF mCF mCF mCF -xEG +cQx xxk cto cto @@ -60642,7 +60632,7 @@ uXS hbi cto cto -vhI +eWc mCF aOg mCF @@ -60773,7 +60763,7 @@ kbQ kbQ kbQ ofC -uvr +aHH xJZ viK xJZ @@ -60799,7 +60789,7 @@ lxy qhZ bUg vpV -lNq +jOL obS ryD wXs @@ -60837,11 +60827,11 @@ cty mCF mCF ksX -iDn -iDn +eyA +eyA ksX ksX -xEG +cQx ksX ksX aOg @@ -60955,7 +60945,7 @@ tVj tVj tVj tVj -uvr +aHH xJZ viK xJZ @@ -61137,7 +61127,7 @@ kbQ qIF tTU kbQ -uvr +aHH xJZ viK gDh @@ -61693,7 +61683,7 @@ eyt jqw kbQ kbQ -rMP +ffp kbQ qIF kbQ @@ -61734,7 +61724,7 @@ uXS hbi cto mxB -eHZ +kSO aOg mCF mCF @@ -61916,7 +61906,7 @@ uXS hbi cto xxk -eHZ +kSO aOg mCF mCF @@ -62062,7 +62052,7 @@ qIF kbQ kbQ kbQ -wQh +adS tVj tVj eyt @@ -62096,9 +62086,9 @@ lVc mUP fnj baa -mMu -xhA -eHZ +oKg +vbf +kSO aOg aOg mCF @@ -62122,7 +62112,7 @@ cty cty aOg mCF -mSa +kQB mCF pGs pGs @@ -62280,7 +62270,7 @@ tuZ sgl wNz xxk -eHZ +kSO aOg aOg mCF @@ -62457,12 +62447,12 @@ vlw ryD vXx xJZ -fLu +dem iaM pyz cto xxk -hBA +fCM mCF mCF mCF @@ -62605,7 +62595,7 @@ kbQ kbQ kbQ kbQ -mED +azQ kbQ sgk tVj @@ -62627,13 +62617,13 @@ xJZ ouy ouy ouy -wVp -iwT +bsc +ncW ouy -nZP -nZP -nZP -nZP +lCr +lCr +lCr +lCr ouy ouy ouy @@ -62641,8 +62631,8 @@ iFb owM owM owM -hBA -hBA +fCM +fCM cty cty mCF @@ -62813,7 +62803,7 @@ kbQ kbQ kbQ kbQ -mED +azQ kbQ qIF qIF @@ -62961,7 +62951,7 @@ wqb xJZ viK xJZ -tFQ +cvO iyv tTU jqw @@ -62990,7 +62980,7 @@ wXs xJZ ouy eyt -wnE +pHh kbQ kbQ kbQ @@ -63143,16 +63133,16 @@ xxs xJZ viK xJZ -tWA -tWA +sbl +sbl tLu tLu wqb wqb -tWA -gey -uvr -tWA +sbl +fjN +aHH +sbl wqb wqb wqb @@ -63881,9 +63871,9 @@ wqb wqb bPk tLu -tWA -gey -tWA +sbl +fjN +sbl wqb wqb bPk @@ -63895,9 +63885,9 @@ tLu bPk bPk wqb -iwT -wVp -iwT +ncW +bsc +ncW ouy kbQ kbQ @@ -63928,8 +63918,8 @@ mCF mCF mCF mCF -dda -dda +fXZ +fXZ mCF mCF mCF @@ -64042,9 +64032,9 @@ slA gfG oET oET -iwT -iwT -iwT +ncW +ncW +ncW lFE tCA ouy @@ -64110,8 +64100,8 @@ mCF mCF mCF mCF -dda -dda +fXZ +fXZ mCF mCF mCF @@ -64662,7 +64652,7 @@ mCF mCF mCF mCF -wBc +bGw mCF mCF bUZ @@ -65017,18 +65007,18 @@ lVQ mCF mCF mCF -wBc +bGw mCF aOg aOg lVQ lDF lDF -rkC -rkC -rPB -plT -rkC +fcu +fcu +acI +jSr +fcu pGs pGs pGs @@ -65186,7 +65176,7 @@ pGs pGs lVQ xGV -qZR +ouD mCF mCF mCF @@ -65208,7 +65198,7 @@ lDF lDF bsf bsf -pDX +dXU bsf bsf pGs @@ -65378,12 +65368,12 @@ lDF lDF lDF lDF -rkC -plT -rkC -rkC -plT -rkC +fcu +jSr +fcu +fcu +jSr +fcu lDF lDF lDF @@ -65549,11 +65539,11 @@ pGs pGs pGs pGs -rkC -plT -rkC -rkC -rkC +fcu +jSr +fcu +fcu +fcu lDF lDF lDF @@ -65745,7 +65735,7 @@ lDF bsf bsf bsf -pDX +dXU bsf bsf bsf @@ -65914,7 +65904,7 @@ pGs pGs pGs bsf -pDX +dXU bsf bsf bsf @@ -65932,11 +65922,11 @@ bsf bsf bsf bsf -pDX +dXU bsf bsf bsf -pDX +dXU bsf bsf bsf @@ -66285,7 +66275,7 @@ bsf gRU bsf bsf -pDX +dXU bsf bsf bsf @@ -66486,7 +66476,7 @@ bsf bsf bsf bsf -pDX +dXU bsf pGs pGs @@ -66643,7 +66633,7 @@ bsf kkv bsf bsf -pDX +dXU bsf bsf bsf @@ -67011,7 +67001,7 @@ kkv bsf puq bsf -pDX +dXU bsf avD avD @@ -67028,7 +67018,7 @@ uvd avD avD bsf -pDX +dXU bsf bsf bsf @@ -67183,9 +67173,9 @@ hre hre bsf bsf -oWx -oWx -pDX +fXV +fXV +dXU bsf bsf gRU @@ -67365,8 +67355,8 @@ bsf bsf bsf bsf -oXo -oWx +wdk +fXV bsf bsf bsf @@ -67556,7 +67546,7 @@ bsf bsf bsf bsf -pDX +dXU bsf bsf avD @@ -68461,7 +68451,7 @@ pGs pGs pGs bsf -pDX +dXU bsf ulv mol @@ -68839,8 +68829,8 @@ snS cRn brT czG -izi -izi +lqH +lqH snS brT kjI @@ -70294,10 +70284,10 @@ snS snS snS snS -izi +lqH kjI cTb -izi +lqH snS snS snS @@ -70650,11 +70640,11 @@ bsf brT uvd uvd -iwV +tFB uvd smx rco -izi +lqH kjI kjI kjI @@ -70665,11 +70655,11 @@ kjI kjI kjI kjI -izi +lqH pTc nzb uvd -iwV +tFB uvd uvd ulv @@ -70840,10 +70830,10 @@ kjI snS kjI snS -izi +lqH kjI kjI -izi +lqH snS kjI snS @@ -71933,8 +71923,8 @@ brT gsu snS snS -izi -izi +lqH +lqH snS snS pjm @@ -72469,22 +72459,22 @@ hXq hXq qbX uvd -iwV +tFB uvd ulv bsf jeT lbX -izi +lqH rco -izi +lqH dTe kjI kjI kjI -izi +lqH qAd -izi +lqH xuX tfC bsf @@ -72672,7 +72662,7 @@ rYi bsf brT uvd -rDK +mIm ulv bsf bsf @@ -73206,10 +73196,10 @@ avD gSE asf kjI -izi +lqH snS snS -izi +lqH kjI jUY bTN @@ -73570,10 +73560,10 @@ ulv uvd uvd kjI -izi +lqH snS snS -izi +lqH kjI kEK avD @@ -73928,7 +73918,7 @@ vxi bsf bsf bsf -pDX +dXU bsf lVf iyk @@ -73943,7 +73933,7 @@ fcF ulv bsf bsf -bmI +gEt bsf bsf bsf @@ -74845,8 +74835,8 @@ yfV bsf hte sOw -akn -iwV +iEi +tFB ulv hte bsf @@ -75384,7 +75374,7 @@ bsf qCT qCT qCT -pDX +dXU bsf bsf ncv @@ -75396,7 +75386,7 @@ bsf bsf bsf bsf -pDX +dXU bsf bsf kkv diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm index 19a7717a7e67..5079b0cc4ffc 100644 --- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm +++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm @@ -77,10 +77,6 @@ "aar" = ( /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, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/outpost/gen/bball/nest) "aat" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -242,14 +238,6 @@ }, /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/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "aaS" = ( /obj/structure/bedsheetbin, /obj/structure/machinery/light/small, @@ -565,12 +553,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"abS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) "abT" = ( /obj/structure/surface/rack, /obj/item/storage/pill_bottle/bicaridine, @@ -580,13 +562,6 @@ icon_state = "multi_tiles" }, /area/strata/ug/interior/jungle/deep/structures/res) -"abU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "abV" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/type71, @@ -751,12 +726,6 @@ icon_state = "blue1" }, /area/strata/ug/interior/jungle/deep/structures/res) -"acp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "acq" = ( /obj/structure/machinery/shower{ dir = 8 @@ -960,11 +929,6 @@ }, /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/decal/cleanable/blood, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/outpost/gen/bball/nest) "acR" = ( /obj/effect/decal/remains/xeno, /turf/open/floor/strata{ @@ -1035,13 +999,6 @@ icon_state = "floor2" }, /area/strata/ug/interior/jungle/deep/structures/res) -"adc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "add" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata{ @@ -1351,14 +1308,6 @@ /obj/item/stack/rods, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"adX" = ( -/obj/structure/barricade/handrail/strata, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "adY" = ( /obj/structure/bed/chair{ dir = 8 @@ -1659,10 +1608,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) -"aeW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/strata/ug/interior/jungle/deep/structures/res) "aeX" = ( /obj/structure/filingcabinet{ layer = 2.9 @@ -1709,13 +1654,6 @@ icon_state = "white_cyan2" }, /area/strata/ug/interior/jungle/deep/structures/res) -"afd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "afe" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -1898,26 +1836,6 @@ icon_state = "blue1" }, /area/strata/ug/interior/jungle/deep/structures/res) -"afB" = ( -/obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"afC" = ( -/obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "afD" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 @@ -1934,15 +1852,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/dorms/hive) -"afF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "afG" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -1971,14 +1880,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/maintenance) -"afJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ag/interior/dorms/maintenance) "afK" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -2264,16 +2165,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"agB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "agC" = ( /obj/effect/decal/remains/xeno, /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -2296,16 +2187,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/dorms/hive) -"agE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "agF" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -2315,15 +2196,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/dorms/hive) -"agG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "agH" = ( /obj/structure/barricade/snow{ dir = 4 @@ -2404,10 +2276,6 @@ /obj/effect/decal/cleanable/blood, /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, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/strata/ug/interior/jungle/deep/minehead) "agU" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -2471,12 +2339,6 @@ icon_state = "plate" }, /area/strata/ug/interior/jungle/deep/structures/res) -"ahi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ahj" = ( /obj/item/stack/catwalk, /obj/structure/disposalpipe/segment{ @@ -2855,27 +2717,11 @@ }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"air" = ( -/obj/item/stool, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ais" = ( /turf/closed/shuttle/ert{ icon_state = "upp9" }, /area/strata/ug/interior/jungle/deep/structures/res) -"ait" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "aiu" = ( /obj/structure/window/reinforced/tinted{ dir = 8 @@ -2944,17 +2790,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/dorms/hive) -"aiC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "aiD" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -3096,10 +2931,6 @@ /obj/structure/flora/grass/tallgrass/ice, /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, -/turf/closed/wall/strata_ice/jungle, -/area/strata/ug/interior) "ajb" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; @@ -3341,16 +3172,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) -"ajM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "ajN" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball) @@ -3361,19 +3182,6 @@ icon_state = "purp2" }, /area/strata/ug/interior/jungle/deep/structures/engi) -"ajP" = ( -/obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "ajQ" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/strata{ @@ -4290,11 +4098,6 @@ icon_state = "darkyellowfull2" }, /area/strata/ag/exterior/research_decks) -"amA" = ( -/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) "amF" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata, @@ -5313,16 +5116,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/dorms) -"aqa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) "aqb" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" @@ -5334,16 +5127,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/dorms) -"aqc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) "aqd" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -5907,10 +5690,6 @@ }, /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, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/minehead) "arN" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -6445,16 +6224,6 @@ icon_state = "multi_tiles" }, /area/strata/ug/interior/jungle/deep/structures/res) -"ati" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "atj" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/asphalt/cement{ @@ -6742,12 +6511,6 @@ icon_state = "red1" }, /area/strata/ug/interior/jungle/deep/structures/res) -"aue" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "auf" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/asphalt/cement{ @@ -8078,10 +7841,6 @@ /obj/structure/flora/bush/ausbushes/grassybush, /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, -/turf/open/gm/dirt, -/area/strata/ug/interior/jungle/deep/south_res) "aya" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/structures/res) @@ -9423,12 +9182,6 @@ }, /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, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "aCy" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -10463,12 +10216,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/outpost/canteen) -"aFC" = ( -/obj/structure/tunnel{ - id = "hole3" - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/north_outpost) "aFD" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ag/interior/outpost/maint/canteen_e_1) @@ -12233,10 +11980,6 @@ icon_state = "red1" }, /area/strata/ag/interior/dorms/south) -"aLu" = ( -/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" = ( /obj/item/reagent_container/food/drinks/bottle/sake{ pixel_x = 9; @@ -15438,10 +15181,6 @@ "aVQ" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/hotsprings) -"aVR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/strata/ug/interior/jungle/deep/hotsprings) "aVS" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/hotsprings) @@ -16509,12 +16248,6 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/disposals) -"bad" = ( -/obj/structure/tunnel{ - id = "hole4" - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/north_lz_caves) "bae" = ( /obj/structure/prop/almayer/computers/mapping_computer, /turf/open/floor/strata{ @@ -17051,10 +16784,6 @@ }, /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, -/turf/open/gm/dirt, -/area/strata/ug/interior/jungle/deep/east_carp) "bbW" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -18475,13 +18204,6 @@ icon_state = "multi_tiles" }, /area/strata/ug/interior/outpost/jung/dorms/admin4) -"bgX" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/obj/structure/tunnel{ - id = "hole2" - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/exterior/jungle/deep/carplake_center) "bha" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer1, @@ -18787,6 +18509,12 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/crash) +"bie" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/strata/ug/interior/jungle/deep/structures/engi) "bif" = ( /obj/structure/platform/strata, /turf/open/auto_turf/snow/brown_base/layer2, @@ -19921,6 +19649,10 @@ /obj/structure/bed/chair, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) +"bmx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/minehead) "bmy" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/brown_base/layer0, @@ -21171,13 +20903,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/disposals) -"brg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "brh" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer2, @@ -21978,12 +21703,6 @@ /obj/structure/bed/chair, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) -"bui" = ( -/obj/structure/tunnel{ - id = "hole1" - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/tcomms/tcomms_deck) "bul" = ( /obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/brown_base/layer1, @@ -22594,10 +22313,6 @@ icon_state = "cement1" }, /area/strata/ug/interior/jungle/platform/east/scrub) -"bwH" = ( -/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" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -23291,17 +23006,6 @@ icon_state = "orange_cover" }, /area/strata/ag/interior/outpost/engi/drome) -"bzH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball) "bzM" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -24602,6 +24306,14 @@ icon_state = "red1" }, /area/strata/ag/interior/outpost/gen/bball) +"bJv" = ( +/obj/structure/barricade/handrail/strata, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "bJx" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 @@ -25936,6 +25648,15 @@ icon_state = "red1" }, /area/strata/ag/interior/outpost/security) +"bVp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "bVr" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" @@ -26411,12 +26132,6 @@ icon_state = "white_cyan2" }, /area/strata/ag/interior/outpost/engi/drome) -"bZh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "bZj" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost/reinforced, @@ -26878,10 +26593,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"ccK" = ( -/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" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -27178,10 +26889,6 @@ "ceQ" = ( /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, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/south_res) "ceV" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 @@ -27421,10 +27128,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{ @@ -27543,10 +27246,6 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"chj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/strata/ug/interior/jungle/deep/north_carp) "chp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/utensil/pfork, @@ -28582,16 +28281,6 @@ icon_state = "red1" }, /area/strata/ag/interior/dorms/flight_control) -"coc" = ( -/obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "cof" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -28927,12 +28616,6 @@ icon_state = "white_cyan2" }, /area/strata/ag/interior/dorms) -"cry" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "crz" = ( /obj/structure/bed/nest, /turf/open/floor/strata{ @@ -29680,6 +29363,10 @@ /obj/item/stack/sheet/metal/medium_stack, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"cCq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/closed/wall/strata_ice/jungle, +/area/strata/ug/interior) "cCE" = ( /obj/structure/cargo_container/wy/left{ health = 5000; @@ -29953,6 +29640,13 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"dcb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/gen/bball/nest) "dcc" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -30256,6 +29950,11 @@ icon_state = "white_cyan2" }, /area/strata/ag/interior/outpost/gen/bball) +"dEu" = ( +/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) "dEy" = ( /obj/structure/closet/secure_closet/medical3{ req_access = null @@ -30325,6 +30024,13 @@ icon_state = "floor2" }, /area/strata/ug/interior/jungle/deep/structures/engi) +"dJE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ug/interior/jungle/deep/structures/engi) "dJV" = ( /obj/structure/curtain/medical, /turf/open/floor/strata{ @@ -30506,6 +30212,10 @@ "eaO" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"ecy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) "eek" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/decal/cleanable/blood, @@ -30657,6 +30367,30 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"epq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/gen/bball) +"eqi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "eqO" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -30707,10 +30441,6 @@ icon_state = "darkyellowfull2" }, /area/strata/ag/exterior/research_decks) -"euZ" = ( -/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" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, @@ -31071,10 +30801,6 @@ icon_state = "red1" }, /area/strata/ag/interior/landingzone_checkpoint) -"eVI" = ( -/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" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata{ @@ -31118,6 +30844,13 @@ icon_state = "darkyellowfull2" }, /area/strata/ag/interior/outpost/engi) +"ffr" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/strata/ug/interior/jungle/deep/east_carp) "fhl" = ( /obj/structure/fence, /turf/open/asphalt/cement{ @@ -31142,6 +30875,10 @@ icon_state = "cement4" }, /area/strata/ag/exterior/tcomms/tcomms_deck) +"fiS" = ( +/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) "fjZ" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -31193,6 +30930,13 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/med) +"fmX" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) "fno" = ( /turf/open/floor/strata{ dir = 6; @@ -31465,16 +31209,16 @@ icon_state = "floor3" }, /area/strata/ag/interior/dorms) +"fHN" = ( +/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) "fHW" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 }, /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, -/turf/open/gm/dirt, -/area/strata/ug/interior/jungle/deep/tearlake) "fIG" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -31527,6 +31271,16 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"fMx" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "fMP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -31690,6 +31444,10 @@ "gcj" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/tearlake) +"gdj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/plating, +/area/strata/ug/interior/jungle/deep/structures/res) "gdZ" = ( /obj/structure/machinery/smartfridge, /obj/structure/machinery/door/window/eastright{ @@ -31837,13 +31595,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) @@ -31918,6 +31669,11 @@ icon_state = "orange_cover" }, /area/strata/ag/interior/outpost/engi/drome) +"gpS" = ( +/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) "gqa" = ( /obj/structure/machinery/space_heater, /obj/structure/platform/strata/metal{ @@ -32011,6 +31767,16 @@ icon_state = "plate" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"guO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "guV" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -32033,6 +31799,11 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) +"gyp" = ( +/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) "gzd" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/south_engi) @@ -32146,6 +31917,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"gMT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/strata/ug/interior/jungle/deep/tearlake) "gOo" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, @@ -32279,6 +32054,17 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) +"gVi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "gVJ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32359,6 +32145,10 @@ icon_state = "floor3" }, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"hbR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/gm/dirt, +/area/strata/ug/interior/jungle/deep/east_carp) "hcg" = ( /obj/item/tool/pen/blue, /turf/open/floor/strata{ @@ -32436,6 +32226,12 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) +"hio" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + icon_state = "fake_wood" + }, +/area/strata/ug/interior/jungle/deep/structures/engi) "hir" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, @@ -32603,6 +32399,10 @@ icon_state = "cement3" }, /area/strata/ag/exterior/landingzone_2) +"hzz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/north_outpost) "hCp" = ( /obj/item/reagent_container/food/drinks/cans/beer, /turf/open/floor/strata{ @@ -32877,6 +32677,16 @@ "idW" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"ifm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms) "ifU" = ( /obj/structure/machinery/camera/autoname{ dir = 1 @@ -32959,6 +32769,10 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) +"ioZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/strata/ug/interior/jungle/deep/tearlake) "ipd" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -33049,15 +32863,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/tcomms) -"iuf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "iuh" = ( /obj/structure/sink{ dir = 8; @@ -33212,9 +33017,21 @@ icon_state = "upp8" }, /area/strata/ag/exterior/marsh/crash) +"iES" = ( +/obj/item/fuelCell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "iEU" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med1) +"iFq" = ( +/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) "iGN" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/strata{ @@ -33367,10 +33184,6 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"iRk" = ( -/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" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/stack/rods, @@ -33383,6 +33196,16 @@ /obj/structure/prop/dam/crane/cargo, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"iUB" = ( +/obj/item/fuelCell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "iUJ" = ( /obj/structure/bed/chair{ dir = 8 @@ -33547,12 +33370,6 @@ icon_state = "cement2" }, /area/strata/ag/exterior/landingzone_2) -"jiQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "jjw" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata{ @@ -33758,6 +33575,10 @@ icon_state = "orange_cover" }, /area/strata/ag/interior/outpost/engi/drome) +"jCs" = ( +/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) "jCE" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/strata_grass/layer0, @@ -34027,13 +33848,6 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /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/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "kbS" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 @@ -34120,6 +33934,10 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) +"kgz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/north_lz_caves) "kgC" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 @@ -34290,15 +34108,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"kxN" = ( -/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) @@ -34703,10 +34512,6 @@ icon_state = "red1" }, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"liK" = ( -/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" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/closet/bodybag/tarp, @@ -34800,6 +34605,10 @@ icon_state = "white_cyan2" }, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"lqs" = ( +/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) "lqD" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -34824,6 +34633,10 @@ /obj/effect/spawner/random/tool, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"ltv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/strata/ug/interior/jungle/deep/north_carp) "ltZ" = ( /obj/structure/bed/roller, /obj/structure/sink{ @@ -34898,11 +34711,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) -"lzt" = ( -/obj/item/stack/rods, -/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" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/light/small{ @@ -34922,6 +34730,11 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"lCi" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/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) "lDz" = ( /obj/structure/cryofeed, /obj/structure/platform/strata/metal, @@ -34966,10 +34779,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/landingzone_checkpoint) -"lHO" = ( -/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" = ( /obj/structure/machinery/power/apc{ dir = 4; @@ -35019,6 +34828,12 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/mountain) +"lMi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + icon_state = "red1" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "lMB" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -35068,6 +34883,13 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"lPa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + dir = 8; + icon_state = "white_cyan2" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "lPk" = ( /obj/effect/landmark/objective_landmark/medium, /obj/structure/closet/secure_closet/security/soro, @@ -35075,6 +34897,11 @@ icon_state = "red1" }, /area/strata/ag/interior/landingzone_checkpoint) +"lPw" = ( +/obj/item/stack/rods, +/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) "lPF" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" @@ -35089,13 +34916,6 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/landingzone_checkpoint) -"lRa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "lRT" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -35186,19 +35006,6 @@ "lZf" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/river) -"mam" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/item/ammo_magazine/revolver/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "maP" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 @@ -35312,6 +35119,10 @@ icon_state = "floor3" }, /area/strata/ag/interior/dorms/flight_control) +"mhb" = ( +/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) "mhc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood, @@ -35338,10 +35149,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"; @@ -35488,6 +35295,10 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) +"mrw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/strata/ug/interior/jungle/deep/hotsprings) "mrz" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/landmark/crap_item, @@ -35590,6 +35401,10 @@ /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) +"myy" = ( +/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) "mzp" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -35658,6 +35473,12 @@ icon_state = "cement4" }, /area/strata/ag/exterior/tcomms/tcomms_deck) +"mGb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "mGA" = ( /turf/open/floor/strata{ dir = 8; @@ -35836,6 +35657,10 @@ icon_state = "multi_tiles" }, /area/strata/ug/interior/jungle/deep/structures/engi) +"mSg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/strata/ug/interior/jungle/deep/east_carp) "mSK" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/disposalpipe/segment, @@ -35843,11 +35668,25 @@ icon_state = "test_floor5" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"mTZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + icon_state = "purp2" + }, +/area/strata/ug/interior/jungle/deep/structures/engi) "mUD" = ( /turf/closed/shuttle/ert{ icon_state = "upp9" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"mUL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/gen/bball/nest) "mUU" = ( /turf/closed/shuttle/ert{ icon_state = "upp_rightengine" @@ -35945,10 +35784,6 @@ icon_state = "cyan1" }, /area/strata/ag/interior/outpost/med) -"nfK" = ( -/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" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, @@ -36088,16 +35923,31 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"nuD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/strata/ug/interior/jungle/deep/tearlake) "nxh" = ( /obj/structure/surface/rack, /obj/item/paper_bin, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"nxn" = ( +/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) "nxF" = ( /turf/closed/shuttle/ert{ icon_state = "upp_leftengine" }, /area/strata/ag/exterior/marsh/crash) +"nyu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/outpost/gen/bball/nest) "nyB" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -36152,6 +36002,15 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"nDJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata{ + icon_state = "purp2" + }, +/area/strata/ug/interior/jungle/deep/structures/engi) "nEU" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light/small{ @@ -36244,10 +36103,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) -"nQE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/tearlake) "nRN" = ( /obj/structure/cargo_container/arious/rightmid{ health = 5000; @@ -36299,13 +36154,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"nUM" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) "nUX" = ( /obj/structure/barricade/handrail/strata, /turf/open/floor/prison{ @@ -36332,6 +36180,11 @@ /obj/structure/bed/roller, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"nZk" = ( +/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) "nZR" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/research_decks) @@ -36367,11 +36220,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/exterior/marsh/crash) -"odi" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/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" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony, /turf/open/floor/strata{ @@ -36483,10 +36331,6 @@ icon_state = "floor3" }, /area/strata/ug/interior/outpost/jung/dorms/med1) -"onq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) "onr" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) @@ -36535,11 +36379,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi/drome) -"orW" = ( -/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) "otl" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -36602,10 +36441,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/outpost/engi/drome) -"oDw" = ( -/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" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -36613,6 +36448,13 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"oEG" = ( +/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" + }, +/area/strata/ag/interior/dorms/hive) "oFG" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement{ @@ -36730,6 +36572,19 @@ icon_state = "floor3" }, /area/strata/ag/exterior/research_decks) +"oOQ" = ( +/obj/item/fuelCell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "oOX" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -36777,6 +36632,10 @@ icon_state = "floor3" }, /area/strata/ag/exterior/research_decks) +"oRw" = ( +/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) "oSN" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -36897,17 +36756,6 @@ /obj/structure/cryofeed, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"pdv" = ( -/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, -/turf/open/gm/dirt, -/area/strata/ug/interior/jungle/deep/east_carp) "pfz" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/south_engi) @@ -37030,6 +36878,12 @@ icon_state = "floor3" }, /area/strata/ug/interior/outpost/jung/dorms/med2) +"poV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + icon_state = "fake_wood" + }, +/area/strata/ug/interior/jungle/deep/minehead) "ppe" = ( /turf/open/asphalt/cement{ icon_state = "cement1" @@ -37064,11 +36918,6 @@ }, /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/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ug/interior/jungle/deep/structures/engi) "pqH" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -37398,10 +37247,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"pLA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/strata/ug/interior/jungle/deep/south_engi) "pLE" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/strata{ @@ -37409,13 +37254,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) -"pMU" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/obj/structure/tunnel{ - id = "hole1" - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/platform/east/scrub) "pNL" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -37455,14 +37293,16 @@ icon_state = "white_cyan3" }, /area/strata/ag/interior/outpost/med) -"pPi" = ( -/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" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) +"pPx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + icon_state = "fake_wood" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "pQH" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost, @@ -37595,10 +37435,6 @@ icon_state = "cement3" }, /area/strata/ag/exterior/landingzone_2) -"qcB" = ( -/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" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -37709,6 +37545,10 @@ icon_state = "cement15" }, /area/strata/ag/exterior/marsh) +"qle" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/tcomms/tcomms_deck) "qlq" = ( /turf/open/floor/strata{ dir = 4; @@ -37877,10 +37717,6 @@ icon_state = "floor2" }, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"qBd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/dirt, -/area/strata/ug/interior/jungle/deep/tearlake) "qBg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, @@ -37921,13 +37757,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 +37834,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, @@ -38039,6 +37862,15 @@ icon_state = "purp2" }, /area/strata/ug/interior/jungle/deep/structures/engi) +"qPc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "qPl" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -38133,6 +37965,10 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"qUS" = ( +/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) "qUW" = ( /turf/open/floor/strata{ dir = 4; @@ -38216,6 +38052,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) +"rbW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/strata/ug/interior/jungle/deep/south_engi) "rdm" = ( /obj/structure/largecrate/random, /turf/open/floor/strata, @@ -38230,6 +38070,10 @@ icon_state = "floor3" }, /area/strata/ag/exterior/research_decks) +"rdY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/tearlake) "reb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -38382,11 +38226,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) -"rok" = ( -/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) "roI" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -38430,6 +38269,18 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) +"rsE" = ( +/obj/item/fuelCell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "rtW" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/nearlz1) @@ -38548,6 +38399,11 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) +"rHN" = ( +/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) "rHX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -38656,10 +38512,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"rRl" = ( -/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" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -38767,10 +38619,6 @@ icon_state = "purp2" }, /area/strata/ug/interior/jungle/deep/structures/engi) -"seb" = ( -/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" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -38781,6 +38629,21 @@ icon_state = "floor3" }, /area/strata/ag/interior/outpost/engi/drome) +"sfF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/strata/ag/interior/dorms/maintenance) +"sfV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "sgq" = ( /obj/structure/bed{ icon_state = "abed" @@ -38943,6 +38806,11 @@ icon_state = "orange_cover" }, /area/strata/ag/exterior/vanyard) +"ssX" = ( +/obj/item/stack/rods, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) "stf" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/east_carp) @@ -38976,17 +38844,19 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"sxT" = ( -/obj/item/stack/rods, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) "sya" = ( /obj/structure/bed/roller, /turf/open/floor/strata{ icon_state = "purp2" }, /area/strata/ug/interior/jungle/deep/structures/engi) +"syQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "syU" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, @@ -39095,6 +38965,10 @@ "sHP" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"sHQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/hotsprings) "sJd" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, @@ -39463,6 +39337,11 @@ "toV" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/deep/tearlake) +"tqo" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/exterior/jungle/deep/carplake_center) "tqG" = ( /turf/open/floor/strata, /area/strata/ag/exterior/paths/north_outpost) @@ -39522,10 +39401,6 @@ "ttQ" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/restricted) -"tuj" = ( -/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" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -39630,6 +39505,10 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) +"tGe" = ( +/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) "tGZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced/tinted{ @@ -39640,6 +39519,16 @@ icon_state = "multi_tiles" }, /area/strata/ug/interior/jungle/deep/structures/engi) +"tHh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "tHv" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/snow/brown_base/layer2, @@ -39781,6 +39670,12 @@ icon_state = "floor3" }, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"tPA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "tPN" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/west_engi) @@ -39860,6 +39755,11 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"tTO" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/tunnel, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/platform/east/scrub) "tTP" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata{ @@ -39884,6 +39784,13 @@ icon_state = "darkyellowfull2" }, /area/strata/ag/exterior/research_decks) +"tUV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "tUW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -40042,6 +39949,11 @@ "ueU" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/med) +"ufr" = ( +/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) "ufG" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) @@ -40174,6 +40086,16 @@ icon_state = "red1" }, /area/strata/ag/interior/outpost/gen/bball) +"upX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms) "uqB" = ( /turf/open/floor/strata{ dir = 4; @@ -40236,6 +40158,12 @@ icon_state = "floor2" }, /area/strata/ag/interior/restricted/devroom) +"uua" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "uul" = ( /obj/structure/largecrate/guns/russian, /turf/open/asphalt/cement, @@ -40243,6 +40171,15 @@ "uux" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/res) +"uuN" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/strata{ + dir = 10; + icon_state = "multi_tiles" + }, +/area/strata/ug/interior/jungle/deep/structures/res) "uvw" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) @@ -40317,6 +40254,10 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"uzK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/strata/ug/interior/jungle/deep/east_engi) "uBz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -40497,6 +40438,10 @@ }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/nearlz2) +"uTu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) "uTv" = ( /obj/structure/machinery/power/apc{ dir = 1; @@ -40756,6 +40701,10 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/dorms/south) +"vnB" = ( +/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) "vnC" = ( /obj/structure/curtain/open/medical, /turf/open/floor/strata{ @@ -41192,6 +41141,16 @@ icon_state = "white_cyan2" }, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"vUk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata{ + icon_state = "multi_tiles" + }, +/area/strata/ag/interior/dorms/hive) "vUp" = ( /turf/open/asphalt/cement{ icon_state = "cement2" @@ -41299,11 +41258,10 @@ /obj/item/weapon/gun/revolver/cmb, /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, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/outpost/gen/bball/nest) +"wgE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/gm/dirt, +/area/strata/ug/interior/jungle/deep/south_res) "wgI" = ( /obj/item/tank/anesthetic, /turf/open/floor/strata, @@ -41317,6 +41275,10 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) +"wim" = ( +/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) "wio" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -41464,6 +41426,10 @@ icon_state = "multi_tiles" }, /area/strata/ag/exterior/research_decks) +"wzO" = ( +/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) "wzZ" = ( /obj/structure/barricade/handrail/strata, /turf/open/floor/strata{ @@ -41593,10 +41559,6 @@ }, /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, -/turf/open/gm/dirt, -/area/strata/ug/interior/jungle/deep/east_engi) "wPp" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -41621,6 +41583,17 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) +"wRf" = ( +/obj/item/stool, +/obj/effect/landmark/structure_spawner/setup/distress/xeno/weed_node, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/strata/ug/interior/jungle/deep/structures/res) +"wTU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/east_carp) "wUa" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, @@ -41744,6 +41717,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"xfS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno/wall, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/tearlake) "xgR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -41760,10 +41737,6 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"xio" = ( -/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" = ( /turf/open/asphalt/cement{ icon_state = "cement1" @@ -41971,13 +41944,6 @@ icon_state = "red1" }, /area/strata/ag/interior/outpost/gen/bball) -"xzL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "xzR" = ( /turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) @@ -42061,10 +42027,6 @@ /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"xFC" = ( -/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" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced, @@ -42220,6 +42182,10 @@ icon_state = "multi_tiles" }, /area/strata/ug/interior/jungle/deep/structures/engi) +"xNQ" = ( +/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) "xOa" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata{ @@ -42372,13 +42338,6 @@ icon_state = "floor3" }, /area/strata/ag/interior/tcomms) -"yah" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "ybN" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata{ @@ -42386,12 +42345,6 @@ icon_state = "multi_tiles" }, /area/strata/ag/interior/research_decks/security) -"yca" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "yde" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -42424,6 +42377,10 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"ydY" = ( +/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) "yee" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 @@ -46438,7 +46395,7 @@ aac aac aac crA -cry +tPA acN aks akV @@ -47214,7 +47171,7 @@ aac crA cnO crz -agB +guO ahs cmB aiB @@ -47412,9 +47369,9 @@ aiE agC coZ ahR -aiC +gVi ajk -ajM +vUk coZ akW bSJ @@ -47797,7 +47754,7 @@ aac aac aac crA -afB +rsE cEu agD aiE @@ -47992,14 +47949,14 @@ aac aac aac crA -afC +iES aiE -agE +tHh aiE cnO -coc +iUB ajl -ajP +oOQ cnO ddp alG @@ -48007,7 +47964,7 @@ amr anm bUL ctC -aqa +upX ctC arX atr @@ -48579,10 +48536,10 @@ crA cnO afD bIL -agG +bVp bIL bKZ -kaP +oEG bIL bIL bIL @@ -48967,7 +48924,7 @@ cnO aes aiE cnO -afF +qPc ddp aiE aht @@ -48982,7 +48939,7 @@ bWy ann aoo aHa -aqc +ifm ctB ctl ctB @@ -49159,13 +49116,13 @@ aac aac crA bDv -brg +syQ bIL akW cZa akW bIL -mam +eqi cnO wGx wGx @@ -49411,7 +49368,7 @@ aXP aYd aac aac -bad +kgz aYd aXP aXP @@ -49747,7 +49704,7 @@ crA crA crA crA -afF +qPc ddp wGx wGx @@ -50527,7 +50484,7 @@ bAu bwg hGO bHt -afJ +sfF xdE agL xSJ @@ -55882,7 +55839,7 @@ aac aac aac aac -bui +qle btq btq btv @@ -60485,7 +60442,7 @@ ayr ayr aCu aAb -aFC +hzz ayw aAR awJ @@ -62595,17 +62552,17 @@ aam cdo cdo aOD -acQ +rHN aam cjq baH bld bmt -yah +dcb csk cjq cjq -yah +dcb aby cjq bmt @@ -62783,16 +62740,16 @@ aal aHz bgn aan -aas +oRw bgn cfH -aLu +ecy pIa ced cdo aam -seb -xzL +iFq +nyu cdo rKG rKG @@ -62986,8 +62943,8 @@ pIa ced ced cdo -nfK -xzL +lqs +nyu cdo ced ced @@ -63195,7 +63152,7 @@ cpV fln cpV cpV -bzH +epq cdA cdA bDU @@ -63367,7 +63324,7 @@ aac aac aac aao -aLu +ecy aan pIa pIa @@ -63384,7 +63341,7 @@ cdo rKG rKG rKG -yah +dcb cjq bFg abL @@ -63572,7 +63529,7 @@ aam abr aam pIa -aaR +mUL aJn cjq cjq @@ -63769,8 +63726,8 @@ acW aHz cdo aJn -onq -onq +uTu +uTu cdo rKG rKG @@ -63964,8 +63921,8 @@ adm aHz cdo aam -aas -lzt +oRw +lPw cdo acU ced @@ -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 @@ -64357,7 +64314,7 @@ adW aam aam aam -aLu +ecy aar aar ced @@ -64535,14 +64492,14 @@ aac aac rKG glG -yah +dcb cjq cdo cjq cjq aKw -aLu -gjP +ecy +cjq cjq cjq gGX @@ -65335,8 +65292,8 @@ cdo aWc cfH cdo -sxT -eVI +ssX +fiS baM bmq act @@ -65530,7 +65487,7 @@ aam aar aam cdo -onq +uTu aar csk dWm @@ -65713,7 +65670,7 @@ aar aar aam aam -aas +oRw cdo cfH cdo @@ -66296,7 +66253,7 @@ aac aac rKG aXZ -yah +dcb cjq cpV aaz @@ -66691,12 +66648,12 @@ aKw aam aQB cjq -aas +oRw aam aam cdo -nUM -wgB +fmX +dEu cdo aam cdo @@ -66890,8 +66847,8 @@ adK cjq aam cdo -seb -onq +iFq +uTu aam cdo aam @@ -67284,8 +67241,8 @@ cdo ahn cdo aHz -seb -wgB +iFq +dEu csG abM bwR @@ -67470,7 +67427,7 @@ pIa pIa pIa aam -aas +oRw aam aam aam @@ -67479,8 +67436,8 @@ aam ahn aam aHz -seb -odi +iFq +lCi baH csk dWm @@ -67669,7 +67626,7 @@ pIa pIa pIa cdo -aas +oRw aam cdo aam @@ -68061,7 +68018,7 @@ aac pIa pIa pIa -aas +oRw aam cdo aam @@ -68452,7 +68409,7 @@ aac aac pIa aam -aas +oRw cdo pIa aac @@ -69036,7 +68993,7 @@ pIa pIa pIa aam -aLu +ecy aam aam aac @@ -69421,7 +69378,7 @@ aac aac pIa aam -aLu +ecy cdo aam aam @@ -69514,7 +69471,7 @@ bvz gUj snV srk -pMU +tTO wZZ htD wZZ @@ -70006,7 +69963,7 @@ pIa bft aam aam -aas +oRw aaq cdo bls @@ -70204,7 +70161,7 @@ adn aHz aHz aHz -aLu +ecy pIa pIa ced @@ -70393,7 +70350,7 @@ aac aac pIa abj -aas +oRw aHz aag aHz @@ -70786,7 +70743,7 @@ pIa cdo aan aar -aas +oRw aam cdo pIa @@ -71177,7 +71134,7 @@ pIa pIa afk aaP -amA +ufr bKN aUp aUp @@ -73271,7 +73228,7 @@ jLb jLb eMz eMz -euZ +nxn jLb jLb aad @@ -73860,7 +73817,7 @@ eMz eMz eMz eMz -tuj +rdY jLb aad aad @@ -74441,7 +74398,7 @@ dKj dKj dKj jLb -euZ +nxn eMz jLb jLb @@ -74643,7 +74600,7 @@ jLb eMz jLb eMz -euZ +nxn jLb aad aad @@ -75027,13 +74984,13 @@ dKj dKj jLb jLb -nQE -nQE +xfS +xfS jLb -tuj +rdY jLb -nQE -nQE +xfS +xfS jLb jLb aad @@ -75221,14 +75178,14 @@ dKj dKj dKj jLb -tuj -nQE -nQE +rdY +xfS +xfS jLb jLb eMz -nQE -nQE +xfS +xfS jLb jLb aad @@ -75614,14 +75571,14 @@ jLb jLb eMz jLb -nQE -pdv +xfS +nuD jLb jLb jLb -pdv -pdv -euZ +nuD +nuD +nxn jLb eMz eMz @@ -75809,13 +75766,13 @@ jLb jLb eMz jLb -nQE -nQE +xfS +xfS jLb jLb eMz -pdv -pdv +nuD +nuD eMz eMz eMz @@ -76001,12 +75958,12 @@ dKj jLb jLb jLb -tuj +rdY eMz jLb jLb jLb -tuj +rdY eMz eMz eMz @@ -76210,12 +76167,12 @@ dKj jLb eMz eMz -euZ +nxn eMz eMz eMz eMz -euZ +nxn cOc jLb aad @@ -76581,7 +76538,7 @@ dKj dKj dKj jLb -tuj +rdY pHR pHR pHR @@ -76867,7 +76824,7 @@ nqX pPk pPk pPk -rok +nZk rPA atd atY @@ -76981,7 +76938,7 @@ jLb jLb jLb eMz -euZ +nxn jLb jLb dKj @@ -76990,13 +76947,13 @@ dKj dKj dKj jLb -euZ +nxn eMz eMz eMz eMz eMz -euZ +nxn eMz eMz aad @@ -77052,7 +77009,7 @@ bDn aex bon aic -agT +ydY bon vVK vVK @@ -77164,7 +77121,7 @@ dKj dKj dKj jLb -tuj +rdY jLb pHR ahK @@ -77254,7 +77211,7 @@ vVK vVK bHj bHj -agT +ydY bon bon bon @@ -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 @@ -77628,7 +77585,7 @@ aac aac bDm bDn -abS +poV bDm bHj bDm @@ -77645,7 +77602,7 @@ vVK vVK vVK vVK -arM +bmx vVK vVK vVK @@ -77747,7 +77704,7 @@ jLb jLb eMz eMz -tuj +rdY jLb jLb jLb @@ -77763,8 +77720,8 @@ eMz jLb jLb jLb -euZ -miy +nxn +jLb dKj dKj dKj @@ -77773,7 +77730,7 @@ dKj dKj dKj jLb -euZ +nxn jLb jLb eMz @@ -77837,7 +77794,7 @@ vVK bon aqS bon -agT +ydY vVK vVK vVK @@ -77954,7 +77911,7 @@ lvF jLb jLb jLb -tuj +rdY jLb jLb jLb @@ -78017,13 +77974,13 @@ bNW bNW bNW bDm -abS +poV bDn bDm bHj bDm bDn -abS +poV bDm bHj vVK @@ -78151,8 +78108,8 @@ jLb jLb jLb eMz -nQE -nQE +xfS +xfS jLb eMz sKX @@ -78222,7 +78179,7 @@ bDn bDm vVK vVK -agT +ydY bon bon bon @@ -78336,7 +78293,7 @@ dKj dKj jLb jLb -fIF +ioZ pHR pHR pHR @@ -78346,8 +78303,8 @@ jLb jLb jLb eMz -nQE -nQE +xfS +xfS eMz jLb jLb @@ -78414,7 +78371,7 @@ bDm bDm bDn aex -agT +ydY bon bon vVK @@ -78428,7 +78385,7 @@ bon bon bon vVK -arM +bmx vVK aoT vVK @@ -78537,14 +78494,14 @@ jLb jLb jLb jLb -nQE -nQE +xfS +xfS jLb jLb jLb jLb eMz -tuj +rdY jLb eMz eMz @@ -78599,12 +78556,12 @@ bnd abB bDn acj -abS +poV abD abC bDn bDn -abS +poV bqY afl bDn @@ -78621,7 +78578,7 @@ vVK vVK vVK bon -agT +ydY bon bon vVK @@ -78732,8 +78689,8 @@ dKj jLb soi jLb -nQE -nQE +xfS +xfS jLb eMz jLb @@ -78742,7 +78699,7 @@ eMz eMz jLb jLb -euZ +nxn eMz eMz eMz @@ -78846,7 +78803,7 @@ cpg cpg cpg cpg -bgX +tqo piY piY cwD @@ -78941,12 +78898,12 @@ eMz eMz eMz eMz -euZ +nxn eMz eMz eMz eMz -euZ +nxn eMz eMz aad @@ -78987,7 +78944,7 @@ aad aad bnd abD -abS +poV bDn loN acR @@ -79000,7 +78957,7 @@ bDm bHj bDm bon -agT +ydY bon vVK bDm @@ -79187,7 +79144,7 @@ abC iGR bnd bDm -abS +poV bDn bDm bHj @@ -79301,7 +79258,7 @@ jLb dKj jLb jLb -euZ +nxn dKj dKj dKj @@ -79317,7 +79274,7 @@ dKj dKj jLb jLb -tuj +rdY eMz jLb jLb @@ -79517,13 +79474,13 @@ jLb aad aad jLb -tuj +rdY jLb eMz eMz eMz eMz -euZ +nxn eMz eMz eMz @@ -79597,7 +79554,7 @@ bHj bHj vVK bon -agT +ydY vVK vVK bHj @@ -79900,8 +79857,8 @@ dKj dKj jLb jLb -qBd -pdv +gMT +nuD jLb jLb aad @@ -79968,7 +79925,7 @@ bDn bDn adt bDn -abS +poV bDm bHj bHj @@ -79978,7 +79935,7 @@ agU vVK vhG bon -agT +ydY vVK bDm bHj @@ -79986,7 +79943,7 @@ bHj bHj bHj vVK -agT +ydY bon vVK bDm @@ -80060,7 +80017,7 @@ sRR vit vit oIU -xio +fHN uvw uvw vit @@ -80079,7 +80036,7 @@ dUl jLb jLb jLb -tuj +rdY jLb gjK jLb @@ -80096,7 +80053,7 @@ jLb jLb eMz eMz -euZ +nxn jLb aad aad @@ -80105,7 +80062,7 @@ jLb jLb jLb jLb -orW +gyp eMz eMz eMz @@ -80188,7 +80145,7 @@ bHj bHj bHj vVK -arM +bmx vVK vVK cdp @@ -80203,7 +80160,7 @@ ceQ ceQ ceQ ceQ -lHO +vnB aSC cor cor @@ -80354,7 +80311,7 @@ aad aad bDm bxl -abS +poV bEy bDm bDn @@ -80452,7 +80409,7 @@ vsy vsy vsy vsy -iRk +mhb uvw uvw uvw @@ -80471,7 +80428,7 @@ dKj dKj jLb jLb -tuj +rdY jLb jLb dKj @@ -80484,7 +80441,7 @@ icG jLb jLb eMz -euZ +nxn eMz jLb icG @@ -80552,7 +80509,7 @@ bDm bDn bDm bDm -abS +poV bDn bDm bHj @@ -80569,10 +80526,10 @@ bHj bHj bHj bDm -arM +bmx vVK bon -agT +ydY bon vVK vVK @@ -80644,7 +80601,7 @@ gih gih gih gih -pqG +gpS gih vsy vit @@ -80772,7 +80729,7 @@ bon vVK aoT vVK -arM +bmx vVK cay bHj @@ -80784,7 +80741,7 @@ ceQ cbb jUA jUA -lHO +vnB cei cei cei @@ -80870,7 +80827,7 @@ dKj dKj dKj jLb -tuj +rdY jLb eMz eMz @@ -80943,7 +80900,7 @@ bDn bDn bDm bDn -abS +poV bDn aex afn @@ -81144,7 +81101,7 @@ aeN afo bon bon -agT +ydY bon vVK bHj @@ -81155,7 +81112,7 @@ bHj vVK vVK bon -agT +ydY vVK vVK vVK @@ -81172,7 +81129,7 @@ bHj ceQ jUA jUA -lHO +vnB cei cei jUA @@ -81233,7 +81190,7 @@ khT gih vsy vit -iRk +mhb vit uvw uvw @@ -81330,7 +81287,7 @@ aad bDm bEy bDn -abS +poV bDn bDn bDn @@ -81457,7 +81414,7 @@ dKj jLb jLb eMz -euZ +nxn pHR jLb jLb @@ -81543,7 +81500,7 @@ bHj bHj vVK bon -agT +ydY vVK aoT vVK @@ -81817,7 +81774,7 @@ vsy khT gih vsy -jiQ +mTZ vsy vsy vsy @@ -82017,7 +81974,7 @@ qXN qXN qXN fre -jiQ +mTZ dqo wFG wFG @@ -82038,7 +81995,7 @@ wFG jLb jLb jLb -tuj +rdY eMz eMz jLb @@ -82119,14 +82076,14 @@ bHj vVK bBN vVK -arM +bmx bon vVK vVK vVK vVK vVK -arM +bmx bon amX vVK @@ -82214,7 +82171,7 @@ ipd hfq vsy wFG -oDw +tGe wFG ekJ ekJ @@ -82226,7 +82183,7 @@ ekJ yjG wFG wFG -oDw +tGe wFG wFG wFG @@ -82337,7 +82294,7 @@ pNT ceQ ceQ jUA -lHO +vnB aSF jUA jUA @@ -82404,7 +82361,7 @@ lVJ ixD ixD ixD -aCw +bie ocE hfq vsy @@ -82425,7 +82382,7 @@ wFG wFG wFG wFG -oDw +tGe wFG jLb jLb @@ -82506,7 +82463,7 @@ aad bHj bHj vVK -arM +bmx vVK vVK bon @@ -82584,7 +82541,7 @@ vsy gih khT iCt -lRa +dJE khR lZd gih @@ -82729,7 +82686,7 @@ jUA jUA jUA jUA -chj +ltv cei ceQ ceQ @@ -82898,11 +82855,11 @@ aez vVK bon bon -agT +ydY bon bon bon -agT +ydY bon bon bon @@ -83003,7 +82960,7 @@ ekJ ekJ ekJ wFG -oDw +tGe dqo dqo wFG @@ -83115,7 +83072,7 @@ chg aua jUA jUA -lHO +vnB jUA aDz cei @@ -83125,7 +83082,7 @@ cei ceQ jUA jUA -lHO +vnB cei cei cei @@ -83175,7 +83132,7 @@ khT khT khT khT -iuf +nDJ lZd gih vsy @@ -83202,7 +83159,7 @@ dqo wFG wFG wFG -oDw +tGe wFG dqo dqo @@ -83322,7 +83279,7 @@ jUA jUA jUA cei -chj +ltv aDz jUA jUA @@ -83362,7 +83319,7 @@ aZO aZO vsy gih -aCw +bie ixD ixD ixD @@ -83372,11 +83329,11 @@ uLJ qFY iGN gih -lRa +dJE iGN khT vsy -pqG +gpS lZd vyK puV @@ -83510,12 +83467,12 @@ jUA cei cei jUA -lHO +vnB cei -chj +ltv cei cei -chj +ltv jUA jUA cei @@ -83675,7 +83632,7 @@ aad adQ vVK vVK -arM +bmx bon bon bon @@ -83701,7 +83658,7 @@ cgE cgE cgE chO -ceS +myy cdx cdx chN @@ -83723,8 +83680,8 @@ ceQ ceQ ceQ daq -qcB -qcB +wTU +wTU daq sKg sKg @@ -83754,7 +83711,7 @@ vsy gih ixD eNL -aCw +bie ixD khT khT @@ -83768,7 +83725,7 @@ khT khT khT tLI -yca +hio jeF sXl gih @@ -83899,7 +83856,7 @@ chN chN cdx cdx -ceS +myy chN cdx chN @@ -83918,8 +83875,8 @@ ceQ ceQ ceQ daq -qcB -qcB +wTU +wTU daq sKg sKg @@ -83966,7 +83923,7 @@ eUW kmt xUo sXl -pqG +gpS vsy khT khT @@ -83976,11 +83933,11 @@ ekJ ekJ wFG wFG -xFC +jCs wFG wFG wFG -oDw +tGe dqo dqo dqo @@ -84067,7 +84024,7 @@ bHj vVK vVK bon -agT +ydY bon bon adz @@ -84127,8 +84084,8 @@ sKg aZO daq aZO -kxN -kxN +hbR +hbR beG pSw pSw @@ -84152,7 +84109,7 @@ ixD ixD lZd lZd -aCw +bie ntu ydz xuq @@ -84164,7 +84121,7 @@ sXl gih vsy pmT -aCw +bie eDc khT ekJ @@ -84322,15 +84279,15 @@ aZO daq daq aZO -kxN -kxN +hbR +hbR aZO aZO aZO aZO aZO -kxN -kxN +hbR +hbR aZO aZO aZO @@ -84344,7 +84301,7 @@ ixD ixD ixD ixD -aCw +bie lZd xMr ixD @@ -84373,7 +84330,7 @@ wFG wFG dqo wFG -xFC +jCs dqo aad aad @@ -84485,14 +84442,14 @@ ccD chN cdx cdx -ceS +myy chN cgE cgE ceQ aNH jUA -chj +ltv jUA ceQ ceQ @@ -84525,7 +84482,7 @@ daq daq daq daq -kxN +hbR aZO lhH aZO @@ -84533,7 +84490,7 @@ daq vsy duq gih -pqG +gpS gih gih gih @@ -84545,7 +84502,7 @@ lZd ixD ixD ixD -pqG +gpS sGJ gih gih @@ -84759,7 +84716,7 @@ wFG wFG wFG wFG -oDw +tGe wFG dqo dqo @@ -84879,7 +84836,7 @@ chN cgE cgE cgE -lHO +vnB cei cei cei @@ -84892,15 +84849,15 @@ ceQ ceQ daq daq -qcB -qcB +wTU +wTU +daq +daq +daq daq daq daq daq -cgq -cgq -cgq daq daq daq @@ -84947,7 +84904,7 @@ ekJ wFG wFG wFG -oDw +tGe wFG dqo dqo @@ -85068,7 +85025,7 @@ uux aly vEp chN -ceS +myy cdx chN cgE @@ -85087,16 +85044,16 @@ ceQ daq daq daq -qcB -kxN +wTU +hbR aZO daq -bwH +qUS daq daq daq daq -bwH +qUS daq daq daq @@ -85254,7 +85211,7 @@ aoV bAr bUo uux -ati +fMx bAr uux qWQ @@ -85271,7 +85228,7 @@ cgE cgE jUA cei -chj +ltv cei jUA jUA @@ -85281,7 +85238,7 @@ ceQ ceQ daq daq -bwH +qUS aZO aZO daq @@ -85318,7 +85275,7 @@ mLn mLn vsy gih -aCw +bie lZd ixD ixD @@ -85326,11 +85283,11 @@ eEO pzt ixD gih -jiQ +mTZ dqo dqo dqo -xFC +jCs dqo dqo wFG @@ -85341,7 +85298,7 @@ dqo wFG wFG wFG -pLA +rbW wGn wGn iSe @@ -85477,8 +85434,8 @@ ceQ daq aZO aZO -kxN -qcB +hbR +wTU daq daq daq @@ -85530,7 +85487,7 @@ wFG hcO wFG yjG -oDw +tGe dqo dqo wFG @@ -85635,20 +85592,20 @@ acV bAr bAr bAr -acp +uua bAr aeR akL aod bUo -acp +uua bAr uux uux uux uux bUo -abU +sfV adz axX vEp @@ -85657,7 +85614,7 @@ chO cdx cdx chN -ceS +myy chN jUA jUA @@ -85672,7 +85629,7 @@ ceQ daq oeO bhd -qcB +wTU daq daq daq @@ -85714,7 +85671,7 @@ ixD ixD ixD ixD -aCw +bie gih vsy wFG @@ -85728,7 +85685,7 @@ diZ wFG wFG wFG -oDw +tGe wFG iSe gBr @@ -85812,14 +85769,14 @@ aad aad uux bUo -abU +sfV bUo bXa bAr bAr bUo bUo -abU +sfV aeS bMR bUo @@ -85846,7 +85803,7 @@ abX adT uux aBf -ccK +wim chN chN cdx @@ -85898,7 +85855,7 @@ sKg tgC tgC vuJ -pPi +xNQ tgC tgC vsy @@ -86035,7 +85992,7 @@ bAr bAr bXa abX -aue +pPx aiV awv mcD @@ -86054,23 +86011,23 @@ aFj jUA jUA cei -chj +ltv jUA jUA jUA daq daq aZO -bbU +mSg daq sKg sKg sKg sKg daq -bwH +qUS daq -bwH +qUS daq sKg sKg @@ -86206,7 +86163,7 @@ aYz aYz aYz acV -abU +sfV bDq aCP aBy @@ -86224,7 +86181,7 @@ asp aCP aDa abX -abU +sfV bAr bAr aqU @@ -86254,7 +86211,7 @@ cei cei cei aZO -bbU +mSg aZO aZO daq @@ -86433,7 +86390,7 @@ uux aBf vEp chN -axZ +wgE chN chN cgE @@ -86471,10 +86428,10 @@ dNM lgv daq daq -qcB -kxN +wTU +hbR aZO -bbU +mSg aZO daq daq @@ -86485,7 +86442,7 @@ mLn tgC tNK tgC -rRl +wzO tgC tgC vuJ @@ -86613,7 +86570,7 @@ akh bRl bRl aEN -qOm +abX ady bAr bAr @@ -86666,12 +86623,12 @@ sKg daq daq aZO -kxN -pex +hbR +ffr aZO aZO -kxN -kxN +hbR +hbR daq daq sKg @@ -86683,7 +86640,7 @@ tgC tgC tgC tgC -pPi +xNQ tgC tNK mLn @@ -86703,14 +86660,14 @@ wFG ekJ ekJ fst -oDw +tGe lTW fKT fKT xUg wGn wGn -pLA +rbW guV wFG aad @@ -86789,13 +86746,13 @@ aYz abI abX bUo -acp +uua bAr ady bDq auz bRl -aeW +gdj bRl aeY agp @@ -86806,9 +86763,9 @@ aim ajb ajF akh -aeW +gdj aEC -qOm +abX ady bAr bAr @@ -86820,7 +86777,7 @@ uux awy vEp vEp -ccK +wim vEp cdx cdx @@ -86850,7 +86807,7 @@ sKg daq bDP daq -bwH +qUS daq daq daq @@ -86860,13 +86817,13 @@ sKg sKg daq daq -bbU +mSg aZO daq daq daq -kxN -kxN +hbR +hbR aZO daq daq @@ -87003,7 +86960,7 @@ aki akO bRl aDR -qOm +abX ady bAr bAr @@ -87035,7 +86992,7 @@ cnu cnu cnu cnu -liK +sHQ cnu sKg sKg @@ -87054,7 +87011,7 @@ sKg sKg daq daq -kxN +hbR aZO daq daq @@ -87062,7 +87019,7 @@ sKg daq daq aZO -bbU +mSg aZO daq tgC @@ -87101,7 +87058,7 @@ fKT xUg wGn wGn -oDw +tGe wFG aad aad @@ -87192,7 +87149,7 @@ agr ags ahI aio -ahi +mGb ajG bRj akO @@ -87201,7 +87158,7 @@ aEN abX ady byl -acp +uua aoY uux aeS @@ -87214,7 +87171,7 @@ chN chN cdx cdx -axZ +wgE chN chN chN @@ -87227,7 +87184,7 @@ chN chN cnu cnu -liK +sHQ cnu cnu cnu @@ -87249,7 +87206,7 @@ daq daq daq aZO -kxN +hbR daq daq sKg @@ -87384,7 +87341,7 @@ bRl aeY afx afY -ahi +mGb bMP ahh ahh @@ -87403,7 +87360,7 @@ aeS aeS tgr eOz -axZ +wgE chN chO chN @@ -87420,7 +87377,7 @@ aBe ccD chN chN -liK +sHQ cnu cnu cnu @@ -87439,9 +87396,9 @@ sKg daq aZO aZO -bbU -kxN -kxN +mSg +hbR +hbR aZO lhH aZO @@ -87463,7 +87420,7 @@ tgC tgC tgC vuJ -rRl +wzO tgC mLn tgC @@ -87484,7 +87441,7 @@ ekJ ekJ wFG wFG -pLA +rbW lTW fKT fKT @@ -87572,7 +87529,7 @@ bAr acF ada adz -adX +bJv aBy bRl bBO @@ -87601,7 +87558,7 @@ awB aya vEp vEp -ccK +wim chN chN chN @@ -87635,8 +87592,8 @@ daq daq daq aZO -kxN -kxN +hbR +hbR aZO aZO daq @@ -87651,7 +87608,7 @@ daq tgC kyr tgC -rRl +wzO egh tgC tgC @@ -87763,7 +87720,7 @@ aad aad aYz aZZ -acp +uua aYz acE aYz @@ -87777,7 +87734,7 @@ bKK ahk ahh ahm -ahi +mGb bMP akj bMR @@ -87800,9 +87757,9 @@ vEp chN chN chN -ceS +myy cdx -axZ +wgE chN chN cgE @@ -87831,7 +87788,7 @@ daq daq daq aZO -bbU +mSg aZO daq daq @@ -87981,7 +87938,7 @@ bMR ane ady bAr -acp +uua aqZ uux acE @@ -88011,7 +87968,7 @@ cnu cnu aVQ aVQ -aVR +mrw cnu cnu cnu @@ -88038,16 +87995,16 @@ mLn mLn mLn qoD -rRl +wzO kyr tgC tgC vuJ vuJ -pPi +xNQ vuJ vuJ -rRl +wzO tgC tgC tgC @@ -88157,7 +88114,7 @@ aZZ bXa bAr bBQ -adX +bJv asp bRl aeZ @@ -88350,7 +88307,7 @@ aYz aYz aYz aYz -adc +tUV bBQ bDq azU @@ -88400,7 +88357,7 @@ cpW cpW aVQ aVQ -aVR +mrw aVQ aVQ aVQ @@ -88461,7 +88418,7 @@ tgC tgC wFG wFG -oDw +tGe wFG wFG wFG @@ -88541,13 +88498,13 @@ aad aad aad aad -aja +cCq aYz aYA acG bAr bBQ -adX +bJv auz bRl bRl @@ -88558,7 +88515,7 @@ ahl ahN aiq ags -ahi +mGb bRj bRl akO @@ -88571,14 +88528,14 @@ ara uux abX abX -bZh +lMi abX abX uux aBf vEp chN -ceS +myy cdx aGU chN @@ -88600,7 +88557,7 @@ aVQ aVQ aVQ aVQ -aVR +mrw cnu bAa cpW @@ -88740,7 +88697,7 @@ aad aYz aYA acH -acp +uua bBQ bDq asp @@ -88751,7 +88708,7 @@ aeY agq ahm ahm -air +wRf ais agv akk @@ -88768,10 +88725,10 @@ uux uux uux ajE -abU +sfV adz awx -ccK +wim chN cdx cdx @@ -88787,7 +88744,7 @@ cgE cgE cpW cnu -aVR +mrw aVQ aVQ aVQ @@ -88831,7 +88788,7 @@ tgC tgC vuJ vuJ -pPi +xNQ vuJ tgC tgC @@ -88847,7 +88804,7 @@ mLn tgC egh tgC -rRl +wzO tgC tgC vuJ @@ -89012,7 +88969,7 @@ cpW cpW tgC tgC -wNq +uzK tgC tgC tgC @@ -89135,7 +89092,7 @@ bBQ bDq aCP bRl -aeW +gdj bRl aeZ agv @@ -89153,7 +89110,7 @@ ady aoY uux bAr -acp +uua bAr bAr uux @@ -89187,7 +89144,7 @@ aVQ aVT aXu aVQ -aVR +mrw aVQ cnu cnu @@ -89242,7 +89199,7 @@ vuJ vuJ vuJ tgC -rRl +wzO wFG aad aad @@ -89340,11 +89297,11 @@ bOh bRl bRl bRl -aeW +gdj bRl aEC abX -abU +sfV bAr uux arb @@ -89413,7 +89370,7 @@ mLn mLn mLn tgC -rRl +wzO tgC tgC vuJ @@ -89421,13 +89378,13 @@ vuJ vuJ vuJ tgC -rRl +wzO tgC tgC tgC tgC tgC -rRl +wzO tgC tgC vuJ @@ -89566,7 +89523,7 @@ cgE cgE chN cnu -aVR +mrw aVQ aVQ aVQ @@ -89589,7 +89546,7 @@ aVQ aVQ aVQ aVQ -aVR +mrw aYy cnu cnu @@ -89717,7 +89674,7 @@ bEE bbn bAr bUo -bZh +lMi aep aep afa @@ -89779,7 +89736,7 @@ aVQ aVQ aVQ aVQ -aVR +mrw aVQ aVQ aVQ @@ -89808,7 +89765,7 @@ tgC tgC tgC vuJ -pPi +xNQ vuJ vuJ vuJ @@ -89822,10 +89779,10 @@ vuJ tgC vuJ vuJ -rRl +wzO tgC tgC -rRl +wzO aad aad aad @@ -89914,20 +89871,20 @@ adf bAr bUo bUo -abU +sfV afb aeS aeS aeS aeS bAr -ait +uuN aeS aeS akn aeS bUo -abU +sfV bUo bAr bAr @@ -89984,7 +89941,7 @@ aVQ aVQ aVQ aVQ -aVR +mrw aVQ aVQ kyr @@ -90172,7 +90129,7 @@ aVQ aVQ aVQ aVQ -aVR +mrw aVQ aVQ aVQ @@ -90183,7 +90140,7 @@ aVQ aVQ aVQ kyr -wNq +uzK tgC tgC tgC @@ -90349,7 +90306,7 @@ bAa cnu cnu cnu -aVR +mrw aVQ aVT aXu @@ -90359,7 +90316,7 @@ aXu aVQ aVQ aVQ -aVR +mrw aVQ aVQ caY @@ -90390,7 +90347,7 @@ tgC tgC tgC tgC -pPi +xNQ tgC tgC tgC @@ -90400,11 +90357,11 @@ tgC tgC tgC tgC -rRl +wzO tgC tgC tgC -rRl +wzO tgC tgC aad @@ -90502,7 +90459,7 @@ bEE bEE afc bEE -afd +lPa agy bEE bEE @@ -90532,7 +90489,7 @@ aad chN chN cdx -axZ +wgE cdx aMz chN @@ -90551,7 +90508,7 @@ aVQ aVQ aVQ aVQ -aVR +mrw aVQ aVQ aVQ @@ -90581,7 +90538,7 @@ tgC vuJ tgC tgC -rRl +wzO vuJ tgC vuJ @@ -90695,12 +90652,12 @@ uux aea bEE aeF -afd +lPa bEE bEE bEE bEE -afd +lPa bEE ajd ajI @@ -90741,7 +90698,7 @@ cpW cpW cpW aVQ -aVR +mrw aVQ aVQ aVQ @@ -90758,11 +90715,11 @@ cnu cnu cnu cnu -liK +sHQ cnu aVQ aVQ -aVR +mrw aVQ cnu cnu @@ -90771,7 +90728,7 @@ aad tgC tgC tgC -pPi +xNQ vuJ vuJ vuJ @@ -90785,7 +90742,7 @@ tgC tgC tgC tgC -rRl +wzO tgC tgC tgC @@ -90949,7 +90906,7 @@ cnu cnu cnu cnu -liK +sHQ cnu cnu cnu @@ -91134,12 +91091,12 @@ cpW aYy aVQ aVQ -aVR +mrw aVQ aVQ aVQ cnu -liK +sHQ cnu cnu cnu @@ -91316,9 +91273,9 @@ aJM chN cdx cdx -axZ +wgE cdx -ceS +myy chN cnu cnu @@ -91516,7 +91473,7 @@ chN chN chN cnu -liK +sHQ cnu cnu cnu @@ -91715,13 +91672,13 @@ cnu cnu cnu cnu -liK +sHQ cnu cnu cnu cnu cnu -liK +sHQ cnu aad aad