diff --git a/code/game/objects/structures/platforms.dm b/code/game/objects/structures/platforms.dm index 5510d319ee1e..d69d5a5a07c1 100644 --- a/code/game/objects/structures/platforms.dm +++ b/code/game/objects/structures/platforms.dm @@ -11,36 +11,18 @@ density = TRUE throwpass = TRUE //You can throw objects over this, despite its density. layer = OBJ_LAYER - breakable = FALSE + breakable = TRUE flags_atom = ON_BORDER unacidable = TRUE climb_delay = CLIMB_DELAY_SHORT projectile_coverage = PROJECTILE_COVERAGE_NONE - -/obj/structure/platform/stair_cut - icon_state = "platform_stair"//icon will be honked in all dirs except (1), that's because the behavior breaks if it ain't (1) - dir = 1 -/obj/structure/platform/stair_cut/alt - icon_state = "platform_stair_alt" - dir = 1 - + var/stat = 0 + var/creaking_sound + var/breaking_sound + var/shove_time /obj/structure/platform/Initialize() . = ..() - var/image/I = image(icon, src, "platform_overlay", LADDER_LAYER, dir)//ladder layer puts us just above weeds. - switch(dir) - if(SOUTH) - layer = ABOVE_MOB_LAYER+0.1 - I.pixel_y = -16 - if(NORTH) - I.pixel_y = 16 - if(EAST) - I.pixel_x = 16 - layer = ABOVE_MOB_LAYER+0.1 - if(WEST) - I.pixel_x = -16 - layer = ABOVE_MOB_LAYER+0.1 - overlays += I /obj/structure/platform/initialize_pass_flags(datum/pass_flags_container/PF) ..() @@ -59,9 +41,39 @@ return ..() -/obj/structure/platform/ex_act() +/obj/structure/platform/ex_act(severity) + if(explo_proof) + return + switch(severity) + if(EXPLOSION_THRESHOLD_VLOW to EXPLOSION_THRESHOLD_LOW) + if(prob(15)) + broken() + return + if(EXPLOSION_THRESHOLD_LOW to EXPLOSION_THRESHOLD_HIGH) + if(prob(30)) + broken() + return + if(EXPLOSION_THRESHOLD_HIGH to INFINITY) + broken() + return return +/obj/structure/platform/get_examine_text(mob/user) + . = ..() + + if(stat & BROKEN) + . += SPAN_WARNING("It looks destroyed.") + +/obj/structure/platform/update_icon() + if(stat & BROKEN) + icon_state = "[initial(icon_state)]_broken" + +/obj/structure/platform/proc/broken() + stat |= BROKEN + density = FALSE + layer = ABOVE_BLOOD_LAYER //lets hope it will appear under everything except weeds and blood. + update_icon() + /obj/structure/platform/attackby(obj/item/W, mob/user) . = ..() if(user.pulling) @@ -79,6 +91,48 @@ SPAN_WARNING("You finish dragging \the [user.pulling] onto \the [src].")) user.pulling.forceMove(move_to_turf) +/obj/structure/platform/attack_alien(mob/living/carbon/xenomorph/user) + if(user.action_busy) + return XENO_NO_DELAY_ACTION + if(user.a_intent != INTENT_DISARM) + return XENO_NO_DELAY_ACTION + + if(stat & BROKEN) + to_chat(user, SPAN_WARNING("Its already destroyed!")) + return XENO_NO_DELAY_ACTION + + if(stat & explo_proof) + to_chat(user, SPAN_WARNING("Its too strong for us!")) + return XENO_NO_DELAY_ACTION + + user.visible_message(SPAN_WARNING("[user] begins to lean against [src]."), \ + SPAN_WARNING("You start to stomp and pressure [src]."), null, 5, CHAT_TYPE_XENO_COMBAT) + playsound(loc, creaking_sound, 30, 1) + + var/shove_time + switch(user.mob_size) + if(MOB_SIZE_XENO_VERY_SMALL) + shove_time = 30 SECONDS + if(MOB_SIZE_XENO_SMALL) + shove_time = 9 SECONDS + if(MOB_SIZE_XENO) + shove_time = 7 SECONDS + if(MOB_SIZE_BIG) + shove_time = 4 SECONDS + if(MOB_SIZE_IMMOBILE) + shove_time = 2 SECONDS + + xeno_attack_delay(user) //Adds delay here and returns nothing because otherwise it'd cause lag *after* finishing the shove. + + if(!do_after(user, shove_time, INTERRUPT_ALL, BUSY_ICON_HOSTILE, numticks = shove_time * 0.1)) + return + user.animation_attack_on(src) + user.visible_message(SPAN_DANGER("[user] collapses [src] down!"), \ + SPAN_DANGER("You collapse [src] down!"), null, 5, CHAT_TYPE_XENO_COMBAT) + playsound(loc, breaking_sound, 25, 1) + broken() + return XENO_NO_DELAY_ACTION + /obj/structure/platform_decoration name = "platform" desc = "A square metal surface resting on four legs." @@ -94,15 +148,6 @@ /obj/structure/platform_decoration/Initialize() . = ..() - switch(dir) - if (NORTH) - layer = ABOVE_MOB_LAYER+0.2 - if (SOUTH) - layer = ABOVE_MOB_LAYER+0.2 - if (SOUTHEAST) - layer = ABOVE_MOB_LAYER+0.2 - if (SOUTHWEST) - layer = ABOVE_MOB_LAYER+0.2 /obj/structure/platform_decoration/initialize_pass_flags(datum/pass_flags_container/PF) ..() @@ -114,96 +159,360 @@ //Map variants// -//Strata purple ice// -/obj/structure/platform_decoration/strata - name = "ice rock corner" - desc = "A solid chunk of desolate rocks and ice." - icon_state = "strata_platform_deco" +// +//Parent used to attach sounds depending on material they are made from.// +// -/obj/structure/platform/strata - name = "ice rock edge" - desc = "A solid chunk of desolate rocks and ice. Looks like you could climb it with some difficulty." - icon_state = "strata_platform" +/obj/structure/platform/metal + icon_state = "platform" + creaking_sound = 'sound/effects/metal_creaking.ogg' + breaking_sound = 'sound/effects/metalhit.ogg' -//Strata wall metal platforms -/obj/structure/platform_decoration/strata/metal - name = "raised metal corner" - desc = "A raised level of metal, often used to elevate areas above others. This is the corner." - icon_state = "strata_metalplatform_deco" +/obj/structure/platform/stone + icon_state = "kutjevo_rock" + creaking_sound = 'sound/effects/rock_creaking.ogg' + breaking_sound = 'sound/effects/meteorimpact.ogg' -/obj/structure/platform/strata/metal - name = "raised metal edge" - desc = "A raised level of metal, often used to elevate areas above others. You could probably climb it." - icon_state = "strata_metalplatform" +//------------------------------// +// Metal Stairs Platforms // +//------------------------------// + +/obj/structure/platform/metal/stair_cut + icon_state = "platform_stair" //icon will be honked in all dirs except (1 = NORTH), that's because the behavior breaks if it ain't (1), don't use (2) its made as mapping tool visual indicator. + dir = NORTH + +/obj/structure/platform/metal/stair_cut/platform_left + icon_state = "platform_stair" + +/obj/structure/platform/metal/stair_cut/platform_right + icon_state = "platform_stair_alt" + +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left + icon_state = "kutjevo_platform_sm_stair" + +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right + icon_state = "kutjevo_platform_sm_stair_alt" + +/obj/structure/platform/metal/stair_cut/strata_left + icon_state = "strata_metalplatform_stair" -//Kutjevo metal platforms +/obj/structure/platform/metal/stair_cut/strata_right + icon_state = "strata_metalplatform_stair_alt" -/obj/structure/platform/kutjevo +/obj/structure/platform/metal/stair_cut/shiva_left + icon_state = "shiva_stair" + +/obj/structure/platform/metal/stair_cut/shiva_right + icon_state = "shiva_stair_alt" + +//------------------------------// +// Stone Stairs Platforms // +//------------------------------// + +/obj/structure/platform/stone/stair_cut + icon_state = "kutjevo_rock_stair" //icon will be honked in all dirs except (1 = NORTH), that's because the behavior breaks if it ain't (1), don't use (2) its made as mapping tool visual indicator. + dir = NORTH + +/obj/structure/platform/stone/stair_cut/shiva_left + icon_state = "strata_platform_stair" + +/obj/structure/platform/stone/stair_cut/shiva_right + icon_state = "strata_platform_stair_alt" + +/obj/structure/platform/stone/stair_cut/kutjevo_left + icon_state = "kutjevo_rock_stair" + +/obj/structure/platform/stone/stair_cut/kutjevo_right + icon_state = "kutjevo_rock_stair_alt" + +/obj/structure/platform/stone/stair_cut/stone_left + icon_state = "stone_stair" + +/obj/structure/platform/stone/stair_cut/stone_right + icon_state = "stone_stair_alt" + +/obj/structure/platform/stone/stair_cut/sandstone_left + icon_state = "sandstone_stair" + color = "#c6a480" + +/obj/structure/platform/stone/stair_cut/sandstone_right + icon_state = "sandstone_stair_alt" + color = "#c6a480" + +/obj/structure/platform/stone/stair_cut/runed_sandstone_left + icon_state = "stone_stair" + color = "#b29082" + +/obj/structure/platform/stone/stair_cut/runed_sandstone_right + icon_state = "stone_stair_alt" + color = "#b29082" + +//------------------------------------// +// Metal based Platforms // +//------------------------------------// + +/obj/structure/platform/metal/almayer/north //I didn't have good name so... they will be called almayer for now as replacement for "platform". + dir = NORTH +/obj/structure/platform/metal/almayer/east + dir = EAST +/obj/structure/platform/metal/almayer/west + dir = WEST + + +/obj/structure/platform/metal/kutjevo icon_state = "kutjevo_platform" name = "raised metal edge" desc = "A raised level of metal, often used to elevate areas above others, or construct bridges. You could probably climb it." -/obj/structure/platform_decoration/kutjevo - name = "raised metal corner" - desc = "The corner of what appears to be raised piece of metal, often used to imply the illusion of elevation in non-Euclidean 2d spaces. But you don't know that, you're just a spaceman with a rifle." - icon_state = "kutjevo_platform_deco" +/obj/structure/platform/metal/kutjevo/north + dir = NORTH +/obj/structure/platform/metal/kutjevo/east + dir = EAST +/obj/structure/platform/metal/kutjevo/west + dir = WEST -/obj/structure/platform/kutjevo/smooth +/obj/structure/platform/metal/kutjevo_smooth icon_state = "kutjevo_platform_sm" name = "raised metal edge" desc = "A raised level of metal, often used to elevate areas above others, or construct bridges. You could probably climb it." -/obj/structure/platform/kutjevo/smooth/stair_plate +/obj/structure/platform/metal/kutjevo_smooth/north + dir = NORTH +/obj/structure/platform/metal/kutjevo_smooth/east + dir = EAST +/obj/structure/platform/metal/kutjevo_smooth/west + dir = WEST + + +/obj/structure/platform/metal/kutjevo_smooth/stair_plate icon_state = "kutjevo_stair_plate" -/obj/structure/platform_decoration/kutjevo/smooth - name = "raised metal corner" - desc = "The corner of what appears to be raised piece of metal, often used to imply the illusion of elevation in non-Euclidean 2d spaces. But you don't know that, you're just a spaceman with a rifle." - icon_state = "kutjevo_platform_sm_deco" -/obj/structure/platform/kutjevo/rock - icon_state = "kutjevo_rock" +/obj/structure/platform/metal/shiva + icon_state = "shiva" + name = "raised rubber cord platform" + desc = "Reliable steel and a polymer rubber substitute. Doesn't crack under cold weather." + +/obj/structure/platform/metal/shiva/north + dir = NORTH +/obj/structure/platform/metal/shiva/east + dir = EAST +/obj/structure/platform/metal/shiva/west + dir = WEST + + +/obj/structure/platform/metal/strata + name = "raised metal edge" + desc = "A raised level of metal, often used to elevate areas above others. You could probably climb it." + icon_state = "strata_metalplatform" + +/obj/structure/platform/metal/strata/north + dir = NORTH +/obj/structure/platform/metal/strata/east + dir = EAST +/obj/structure/platform/metal/strata/west + dir = WEST + +//------------------------------------// +// Rock based Platforms // +//------------------------------------// + +/obj/structure/platform/stone/kutjevo name = "raised rock edges" desc = "A collection of stones and rocks that provide ample grappling and vaulting opportunity. Indicates a change in elevation. You could probably climb it." -/obj/structure/platform_decoration/kutjevo/rock - name = "raised rock corner" - desc = "A collection of stones and rocks that cap the edge of some conveniently 1-meter-long lengths of perfectly climbable chest high walls." - icon_state = "kutjevo_rock_deco" +/obj/structure/platform/stone/kutjevo/north + dir = NORTH +/obj/structure/platform/stone/kutjevo/east + dir = EAST +/obj/structure/platform/stone/kutjevo/west + dir = WEST + + +/obj/structure/platform/stone/strata + name = "ice rock edge" + desc = "A solid chunk of desolate rocks and ice. Looks like you could climb it with some difficulty." + icon_state = "strata_platform" + +/obj/structure/platform/stone/strata/north + dir = NORTH +/obj/structure/platform/stone/strata/east + dir = EAST +/obj/structure/platform/stone/strata/west + dir = WEST -/obj/structure/platform/mineral +/obj/structure/platform/stone/mineral icon_state = "stone" -/obj/structure/platform_decoration/mineral - icon_state = "stone_deco" -/obj/structure/platform/mineral/sandstone +/obj/structure/platform/stone/mineral/north + dir = NORTH +/obj/structure/platform/stone/mineral/east + dir = EAST +/obj/structure/platform/stone/mineral/west + dir = WEST + + +/obj/structure/platform/stone/sandstone name = "sandstone platform" desc = "A platform supporting elevated ground, made of sandstone. Has what seem to be ancient hieroglyphs on its side." + icon_state = "sandstone" color = "#c6a480" -/obj/structure/platform/mineral/sandstone/runed +/obj/structure/platform/stone/sandstone/north + dir = NORTH +/obj/structure/platform/stone/sandstone/east + dir = EAST +/obj/structure/platform/stone/sandstone/west + dir = WEST + + +/obj/structure/platform/stone/runed_sandstone name = "sandstone temple platform" + icon_state = "stone" color = "#b29082" +/obj/structure/platform/stone/runed_sandstone/north + dir = NORTH +/obj/structure/platform/stone/runed_sandstone/east + dir = EAST +/obj/structure/platform/stone/runed_sandstone/west + dir = WEST + +//------------------------------------// +// Metal based Platforms "decoration" // +//------------------------------------// + +/obj/structure/platform_decoration/metal/almayer/north + dir = NORTH +/obj/structure/platform_decoration/metal/almayer/east + dir = EAST +/obj/structure/platform_decoration/metal/almayer/west + dir = WEST +/obj/structure/platform_decoration/metal/almayer/northeast + dir = NORTHEAST +/obj/structure/platform_decoration/metal/almayer/northwest + dir = NORTHWEST +/obj/structure/platform_decoration/metal/almayer/southeast + dir = SOUTHEAST +/obj/structure/platform_decoration/metal/almayer/southwest + dir = SOUTHWEST + + +/obj/structure/platform_decoration/metal/kutjevo + name = "raised metal corner" + desc = "The corner of what appears to be raised piece of metal, often used to imply the illusion of elevation in non-Euclidean 2d spaces. But you don't know that, you're just a spaceman with a rifle." + icon_state = "kutjevo_platform_deco" +/obj/structure/platform_decoration/metal/kutjevo/north + dir = NORTH +/obj/structure/platform_decoration/metal/kutjevo/east + dir = EAST +/obj/structure/platform_decoration/metal/kutjevo/west + dir = WEST -/obj/structure/platform_decoration/mineral/sandstone - name = "sandstone platform corner" - desc = "A platform corner supporting elevated ground, made of sandstone. Has what seem to be ancient hieroglyphs on its side." - color = "#c6a480" -/obj/structure/platform/shiva/catwalk - icon_state = "shiva" - name = "raised rubber cord platform" - desc = "Reliable steel and a polymer rubber substitute. Doesn't crack under cold weather." +/obj/structure/platform_decoration/metal/kutjevo_smooth + name = "raised metal corner" + desc = "The corner of what appears to be raised piece of metal, often used to imply the illusion of elevation in non-Euclidean 2d spaces. But you don't know that, you're just a spaceman with a rifle." + icon_state = "kutjevo_platform_sm_deco" + +/obj/structure/platform_decoration/metal/kutjevo_smooth/north + dir = NORTH +/obj/structure/platform_decoration/metal/kutjevo_smooth/east + dir = EAST +/obj/structure/platform_decoration/metal/kutjevo_smooth/west + dir = WEST + -/obj/structure/platform_decoration/shiva/catwalk +/obj/structure/platform_decoration/metal/shiva icon_state = "shiva_deco" name = "raised rubber cord platform" desc = "Reliable steel and a polymer rubber substitute. Doesn't crack under cold weather." -/obj/structure/platform_decoration/mineral/sandstone/runed +/obj/structure/platform_decoration/metal/shiva/north + dir = NORTH +/obj/structure/platform_decoration/metal/shiva/east + dir = EAST +/obj/structure/platform_decoration/metal/shiva/west + dir = WEST + + +/obj/structure/platform_decoration/metal/strata + name = "raised metal corner" + desc = "A raised level of metal, often used to elevate areas above others. This is the corner." + icon_state = "strata_metalplatform_deco" + +/obj/structure/platform_decoration/metal/strata/north + dir = NORTH +/obj/structure/platform_decoration/metal/strata/east + dir = EAST +/obj/structure/platform_decoration/metal/strata/west + dir = WEST + +//------------------------------------// +// Rock based Platforms "decoration" // +//------------------------------------// + +/obj/structure/platform_decoration/stone/kutjevo + name = "raised rock corner" + desc = "A collection of stones and rocks that cap the edge of some conveniently 1-meter-long lengths of perfectly climbable chest high walls." + icon_state = "kutjevo_rock_deco" + +/obj/structure/platform_decoration/stone/kutjevo/north + dir = NORTH +/obj/structure/platform_decoration/stone/kutjevo/east + dir = EAST +/obj/structure/platform_decoration/stone/kutjevo/west + dir = WEST + + +/obj/structure/platform_decoration/stone/strata + name = "ice rock corner" + desc = "A solid chunk of desolate rocks and ice." + icon_state = "strata_platform_deco" + +/obj/structure/platform_decoration/stone/strata/north + dir = NORTH +/obj/structure/platform_decoration/stone/strata/east + dir = EAST +/obj/structure/platform_decoration/stone/strata/west + dir = WEST + + +/obj/structure/platform_decoration/stone/mineral + icon_state = "stone_deco" + +/obj/structure/platform_decoration/stone/mineral/north + dir = NORTH +/obj/structure/platform_decoration/stone/mineral/east + dir = EAST +/obj/structure/platform_decoration/stone/mineral/west + dir = WEST + + +/obj/structure/platform_decoration/stone/sandstone + name = "sandstone platform corner" + desc = "A platform corner supporting elevated ground, made of sandstone. Has what seem to be ancient hieroglyphs on its side." + icon_state = "sandstone_deco" + color = "#c6a480" + +/obj/structure/platform_decoration/stone/sandstone/north + dir = NORTH +/obj/structure/platform_decoration/stone/sandstone/east + dir = EAST +/obj/structure/platform_decoration/stone/sandstone/west + dir = WEST + +/obj/structure/platform_decoration/stone/runed_sandstone name = "sandstone temple platform corner" + icon_state = "stone_deco" color = "#b29082" + +/obj/structure/platform_decoration/stone/runed_sandstone/north + dir = NORTH +/obj/structure/platform_decoration/stone/runed_sandstone/east + dir = EAST +/obj/structure/platform_decoration/stone/runed_sandstone/west + dir = WEST diff --git a/icons/obj/structures/props/platforms.dmi b/icons/obj/structures/props/platforms.dmi index c0fbf42633a7..aef604ac4d44 100644 Binary files a/icons/obj/structures/props/platforms.dmi and b/icons/obj/structures/props/platforms.dmi differ diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index 688069433aea..06a9bd986cd8 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -561,11 +561,6 @@ /obj/structure/window_frame/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"act" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering/reactor) "acu" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -684,22 +679,6 @@ "acZ" = ( /turf/open/floor/greengrid, /area/bigredv2/outside/telecomm) -"ada" = ( -/mob/living/simple_animal/hostile/retaliate/clown{ - desc = "Always returning. Always watching."; - health = 10000; - move_to_delay = 2; - name = "Gonzo the Magnificent"; - rapid = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/space) "adb" = ( /obj/structure/surface/table, /obj/item/tool/hand_labeler, @@ -1468,6 +1447,9 @@ "agl" = ( /turf/open/floor/white, /area/bigredv2/caves/lambda/xenobiology) +"agm" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/marshal_office) "agn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -2087,16 +2069,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) -"ajn" = ( -/obj/structure/platform/shiva{ - dir = 1 - }, -/obj/structure/platform/shiva, -/obj/structure/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) "ajp" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -2923,6 +2895,14 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) +"ane" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light/small/built{ + dir = 8 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "anf" = ( /obj/structure/bed/chair{ dir = 4 @@ -8441,6 +8421,10 @@ /obj/item/tool/pen, /turf/open/floor/white, /area/bigredv2/outside/admin_building) +"aNA" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) "aNB" = ( /obj/structure/machinery/computer/cameras, /obj/structure/surface/table, @@ -10186,12 +10170,6 @@ /obj/item/storage/box/snappops, /turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) -"aVc" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars/mars_dirt_9, -/area/space) "aVd" = ( /obj/structure/surface/table, /obj/item/toy/dice, @@ -10353,16 +10331,6 @@ }, /turf/open/floor/yellowfull, /area/bigredv2/outside/general_store) -"aVQ" = ( -/obj/structure/platform_decoration/kutjevo/rock, -/turf/open/mars, -/area/space) -"aVR" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars/mars_dirt_12, -/area/space) "aVS" = ( /obj/structure/machinery/camera/autoname{ dir = 1; @@ -10831,18 +10799,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/darkredcorners2/west, /area/bigredv2/outside/admin_building) -"aYi" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/platform_decoration, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) -"aYk" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) "aYl" = ( /obj/item/cell/hyper/empty, /turf/open/floor/darkred2/east, @@ -12261,6 +12217,10 @@ }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) +"beD" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/river, +/area/bigredv2/outside/engineering/reactor) "beG" = ( /obj/structure/barricade/wooden, /turf/open/floor/asteroidwarning/southeast, @@ -13388,9 +13348,6 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"blk" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/marshal_office) "bll" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, @@ -15083,6 +15040,12 @@ "buj" = ( /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves/mining) +"buk" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/flora/grass/desert/lightgrass_11, +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) "bun" = ( /turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/s) @@ -15169,6 +15132,13 @@ }, /turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) +"bvF" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor, +/area/bigredv2/outside/lz2_south_cas) "bvH" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_dirt_4, @@ -17453,6 +17423,9 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) +"bLE" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering/reactor) "bLG" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, /obj/effect/decal/cleanable/blood/xeno, @@ -17465,12 +17438,6 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/w) -"bLY" = ( -/obj/structure/machinery/power/reactor/colony{ - name = "Reactor Turbine" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering/reactor) "bMa" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/pistol/mod88, @@ -17505,19 +17472,18 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/medical) -"bOj" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering/reactor) "bOR" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, /obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/shell, /turf/open/floor/whiteblue/southeast, /area/bigredv2/outside/medical) +"bPe" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/gm/river, +/area/bigredv2/outside/engineering/reactor) "bPl" = ( /obj/structure/surface/table, /obj/structure/pipes/vents/pump, @@ -17716,13 +17682,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"bZm" = ( -/obj/item/storage/toolbox{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) "bZp" = ( /obj/structure/bed/chair{ dir = 4 @@ -17745,12 +17704,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/research) -"bZW" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering/reactor) "caD" = ( /obj/effect/landmark/crap_item, /turf/open/floor/asteroidwarning/north, @@ -17770,9 +17723,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"ccX" = ( -/turf/open/mars_cave/mars_cave_3, -/area/bigredv2/outside/lz1_telecomm_cas) "cdA" = ( /turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz2_west_cas) @@ -17866,6 +17816,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_lambda) +"chw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering/reactor) "chx" = ( /obj/structure/surface/table, /obj/item/trash/kepler{ @@ -17900,6 +17854,10 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"cjS" = ( +/obj/effect/sentry_landmark/lz_1/top_right, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) "ckr" = ( /obj/item/device/defibrillator{ pixel_x = -9; @@ -17911,6 +17869,15 @@ }, /turf/open/floor/white, /area/bigredv2/outside/medical) +"ckC" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.05; + pixel_y = 9 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering/reactor) "cla" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -17952,24 +17919,6 @@ }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"cnk" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/space) "cns" = ( /obj/effect/landmark/nightmare{ insert_tag = "se-checkpoint" @@ -17981,12 +17930,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/eta) -"cnG" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) "cnQ" = ( /obj/item/paper, /turf/open/floor, @@ -18071,10 +18014,6 @@ "csE" = ( /turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz1_telecomm_cas) -"ctq" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) "ctw" = ( /obj/item/tool/warning_cone, /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, @@ -18181,12 +18120,17 @@ /obj/item/stack/sheet/wood, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_north) -"cAx" = ( -/obj/structure/machinery/light{ - dir = 4 +"cAM" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering/reactor) +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) "cAN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, @@ -18196,12 +18140,31 @@ /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/mars, /area/bigredv2/outside/n) +"cBj" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/flora/jungle/planttop1{ + pixel_y = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) "cBq" = ( /obj/structure/machinery/camera/autoname{ dir = 1 }, /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) +"cCq" = ( +/mob/living/simple_animal/hostile/retaliate/clown{ + desc = "Always returning. Always watching."; + health = 10000; + move_to_delay = 2; + name = "Gonzo the Magnificent"; + rapid = 1 + }, +/obj/structure/platform_decoration/stone/kutjevo/west, +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/mars_cave/mars_cave_2, +/area/space) "cCr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_3, @@ -18274,10 +18237,6 @@ }, /turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) -"cGs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering/reactor) "cGR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -18436,6 +18395,13 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) +"cNb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering/reactor) "cNH" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/delivery, @@ -18467,6 +18433,11 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) +"cOH" = ( +/obj/structure/platform/metal/almayer/west, +/obj/item/disk, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "cOJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -18617,10 +18588,6 @@ }, /turf/open/mars, /area/bigredv2/outside/filtration_plant) -"cXf" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering/reactor) "cXG" = ( /obj/structure/machinery/light{ dir = 8 @@ -18723,9 +18690,6 @@ /obj/structure/machinery/deployable/barrier, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"dfD" = ( -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering/reactor) "dgi" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/trash/crushed_cup{ @@ -18802,11 +18766,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/whitegreen/southeast, /area/bigredv2/outside/medical) -"diW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering/reactor) "djV" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/freezerfloor, @@ -18822,10 +18781,6 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/bigredv2/outside/nw) -"dkY" = ( -/obj/structure/platform, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) "dme" = ( /turf/open/mars/mars_dirt_5, /area/bigredv2/outside/nw) @@ -18932,16 +18887,6 @@ /obj/item/ammo_magazine/pistol/m1911, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"dsl" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering/reactor) "dsm" = ( /obj/item/stack/sheet/metal, /turf/open/floor/dark, @@ -19068,6 +19013,10 @@ "dyv" = ( /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) +"dyA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering/reactor) "dyH" = ( /obj/structure/machinery/computer/area_atmos{ dir = 1 @@ -19087,13 +19036,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/se) -"dzg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light_construct{ - dir = 8 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering/reactor) "dzD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -19124,12 +19066,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"dBm" = ( -/obj/structure/platform{ - dir = 8 +"dBx" = ( +/obj/structure/platform/stone/kutjevo/west{ + pixel_x = -3 }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "dBE" = ( /obj/item/trash/cigbutt/cigarbutt{ pixel_x = 2; @@ -19331,14 +19273,9 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_lambda) -"dLJ" = ( -/obj/structure/platform/kutjevo/rock, -/obj/item/trash/used_stasis_bag{ - pixel_y = 8; - pixel_x = 9 - }, -/turf/open/mars_cave/mars_cave_9, -/area/bigredv2/outside/nw) +"dLd" = ( +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering/reactor) "dLS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/flora/pottedplant{ @@ -19438,10 +19375,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_sw) -"dQE" = ( -/obj/effect/sentry_landmark/lz_1/top_right, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) "dQF" = ( /obj/effect/spawner/random/tool, /turf/open/mars_cave/mars_dirt_5, @@ -19520,6 +19453,10 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) +"dUN" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) "dVj" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ @@ -19576,6 +19513,13 @@ /obj/structure/bed, /turf/open/floor/whitegreen/east, /area/bigredv2/outside/marshal_office) +"dYb" = ( +/obj/structure/platform/stone/kutjevo/west{ + pixel_x = -3 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "dYv" = ( /turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/virology) @@ -19631,6 +19575,12 @@ "eak" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/bigredv2/outside/c) +"eaC" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/gm/river, +/area/bigredv2/outside/engineering/reactor) "eaW" = ( /obj/structure/disposalpipe/segment, /obj/item/frame/rack, @@ -19806,6 +19756,10 @@ }, /turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) +"ehN" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) "eiK" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/mars, @@ -20011,13 +19965,6 @@ /obj/structure/window, /turf/open/floor/wood, /area/bigredv2/outside/library) -"etg" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/nw) "etw" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/bigredv2/outside/e) @@ -20067,13 +20014,6 @@ "evt" = ( /turf/open/asphalt/cement/cement9, /area/bigredv2/caves_lambda) -"evA" = ( -/obj/structure/platform_decoration/shiva{ - dir = 8 - }, -/obj/structure/platform_decoration/shiva, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) "evQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -20101,6 +20041,10 @@ "exc" = ( /turf/open/floor/asteroidwarning/east, /area/bigred/ground/garage_workshop) +"eyR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering/reactor) "ezz" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/hotdog{ @@ -20137,12 +20081,10 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/library) -"eCM" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) +"eCF" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "eDQ" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/medium, @@ -20185,6 +20127,11 @@ }, /turf/open/floor/red/north, /area/bigredv2/outside/marshal_office) +"eFX" = ( +/obj/structure/platform/stone/kutjevo/east, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/nw) "eGa" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/mars_cave/mars_cave_17, @@ -20220,18 +20167,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor, /area/bigredv2/outside/dorms) -"eGH" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering/reactor) "eGM" = ( /turf/open/floor/darkyellowcorners2, /area/bigredv2/outside/engineering) @@ -20250,6 +20185,11 @@ }, /turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) +"eIN" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering/reactor) "eJf" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/mars, @@ -20480,16 +20420,17 @@ /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/mars/mars_dirt_14, /area/bigredv2/outside/c) +"eTm" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) "eTK" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/item/ammo_casing/bullet, /obj/item/ammo_casing/bullet, /turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"eTU" = ( -/obj/structure/platform, -/turf/open/gm/river, -/area/bigredv2/outside/engineering/reactor) "eUs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, @@ -20624,13 +20565,6 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/nw) -"eZp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering/reactor) "eZw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -20654,23 +20588,29 @@ }, /turf/closed/wall/solaris, /area/bigredv2/outside/bar) -"fcn" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) "fcG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"fcO" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "fdr" = ( /turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_sw) "fdy" = ( /turf/open/floor, /area/bigredv2/caves/eta/living) +"fdP" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) "feN" = ( /turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/space_port_lz2) @@ -20760,6 +20700,10 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/bar) +"fiQ" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) "fjz" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/objective{ @@ -20771,6 +20715,11 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/mars/mars_dirt_6, /area/bigredv2/outside/w) +"fjN" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) "fjP" = ( /turf/open/floor/delivery, /area/bigredv2/caves) @@ -20852,6 +20801,10 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/white, /area/bigredv2/outside/medical) +"frs" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river, +/area/bigredv2/outside/engineering/reactor) "fsy" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/mars_cave/mars_cave_13, @@ -21055,14 +21008,6 @@ "fBo" = ( /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"fBJ" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8; - layer = 2.9; - pixel_x = -3 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) "fCb" = ( /turf/open/floor, /area/bigredv2/outside/filtration_cave_cas) @@ -21083,6 +21028,12 @@ "fEb" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/se) +"fEv" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engine Reactor" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering/reactor) "fEE" = ( /turf/open/mars_cave/mars_cave_15, /area/bigredv2/outside/ne) @@ -21217,6 +21168,9 @@ "fNT" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/bigredv2/outside/s) +"fOc" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/outside/lz1_telecomm_cas) "fOf" = ( /obj/item/trash/eat{ pixel_x = 2; @@ -21367,6 +21321,13 @@ }, /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) +"fUp" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + name = "\improper Engine Reactor" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering/reactor) "fVt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table, @@ -21382,10 +21343,6 @@ /obj/structure/girder, /turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"fVE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_sw) "fVX" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/asphalt/cement_sunbleached, @@ -21517,15 +21474,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"gan" = ( -/obj/structure/platform_decoration/shiva{ - dir = 1 - }, -/obj/structure/platform_decoration/shiva{ - dir = 4 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) "gat" = ( /obj/structure/machinery/shower{ dir = 8 @@ -21633,6 +21581,10 @@ "gio" = ( /turf/open/mars_cave, /area/bigredv2/outside/filtration_cave_cas) +"giB" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave, +/area/bigredv2/outside/lz2_south_cas) "giC" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/body, @@ -21770,6 +21722,12 @@ "gpB" = ( /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves_research) +"gpE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "gpR" = ( /turf/open/gm/river, /area/bigredv2/outside/c) @@ -21832,13 +21790,14 @@ /obj/structure/fence, /turf/open/asphalt/cement, /area/bigredv2/outside/filtration_cave_cas) -"gsW" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 8 +"gtk" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.05; + pixel_y = 9 }, -/turf/open/mars_cave/mars_dirt_4, -/area/space) +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering/reactor) "gts" = ( /obj/structure/machinery/light{ dir = 1 @@ -21857,6 +21816,10 @@ "gtX" = ( /turf/open/mars_cave, /area/bigredv2/caves_se) +"guu" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering/reactor) "guM" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_research) @@ -21870,6 +21833,14 @@ }, /turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) +"gvs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "gvC" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access{ layer = 3.5 @@ -21887,11 +21858,6 @@ }, /turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) -"gvN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering/reactor) "gvU" = ( /obj/item/shard, /turf/open/floor/whitegreen/east, @@ -22006,6 +21972,12 @@ }, /turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) +"gAg" = ( +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/mars, +/area/space) "gAE" = ( /obj/structure/sink{ dir = 1; @@ -22063,6 +22035,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/red, /area/bigredv2/outside/lambda_cave_cas) +"gFR" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering/reactor) "gGf" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, @@ -22205,6 +22181,10 @@ /obj/effect/spawner/random/bomb_supply, /turf/open/floor, /area/bigredv2/outside/cargo) +"gML" = ( +/obj/structure/machinery/power/turbine, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering/reactor) "gNv" = ( /obj/structure/machinery/light{ dir = 1 @@ -22245,6 +22225,13 @@ "gPc" = ( /turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/telecomm/n_cave) +"gPh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engine Reactor" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering/reactor) "gPE" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/flashlight/lantern, @@ -22316,17 +22303,6 @@ /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/c) -"gVj" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/caves/mining) "gVl" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -22376,15 +22352,6 @@ }, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"gXg" = ( -/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/reactor) "gXp" = ( /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_lambda) @@ -22437,6 +22404,10 @@ "haV" = ( /turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/e) +"hbg" = ( +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) "hby" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/nw) @@ -22607,13 +22578,10 @@ }, /turf/open/floor, /area/bigredv2/outside/general_offices) -"hkS" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_14, -/area/bigredv2/outside/nw) +"hkR" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering/reactor) "hkY" = ( /obj/structure/machinery/light{ dir = 4 @@ -22651,15 +22619,10 @@ }, /turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves_research) -"hos" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8; - layer = 2.9; - pixel_x = -3 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) +"hot" = ( +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/mars/mars_dirt_12, +/area/space) "hoI" = ( /obj/structure/bed/roller, /obj/structure/closet/bodybag, @@ -22749,6 +22712,12 @@ "htb" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/c) +"hub" = ( +/obj/structure/platform/stone/kutjevo/west, +/obj/structure/platform/stone/kutjevo, +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/mars/mars_dirt_12, +/area/space) "hvd" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; @@ -22956,12 +22925,6 @@ /obj/item/shard/shrapnel, /turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"hFv" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) "hFP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo, @@ -23036,10 +22999,6 @@ /obj/effect/decal/cleanable/generic, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/w) -"hJw" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering/reactor) "hJH" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/floor/podhatchfloor, @@ -23077,9 +23036,9 @@ }, /turf/open/floor/red/southwest, /area/bigredv2/outside/lambda_cave_cas) -"hLt" = ( -/obj/effect/sentry_landmark/lz_1/bottom_right, -/turf/open/floor/plating, +"hLq" = ( +/obj/effect/sentry_landmark/lz_1/bottom_left, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "hLS" = ( /obj/structure/sign/poster/safety, @@ -23213,12 +23172,6 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/white, /area/bigredv2/outside/virology) -"hZc" = ( -/obj/structure/platform/shiva{ - dir = 4 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) "hZl" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 3; @@ -23413,10 +23366,6 @@ }, /turf/open/floor/whitegreen/north, /area/bigredv2/outside/marshal_office) -"ifl" = ( -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/space_port_lz2) "ifo" = ( /obj/effect/decal/strata_decals/grime/grime4, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, @@ -23462,6 +23411,11 @@ "ihW" = ( /turf/open/mars_cave/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/reactor) "iih" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/floor4, @@ -23502,6 +23456,11 @@ /obj/item/frame/rack, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) +"ilG" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "ilH" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/hydroponics, @@ -23598,18 +23557,6 @@ "ioS" = ( /turf/open/floor/dark, /area/bigredv2/caves/eta/living) -"ioT" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering/reactor) "ipf" = ( /obj/item/device/flashlight/lantern{ pixel_x = -6 @@ -23902,10 +23849,23 @@ }, /turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/nw) +"iFa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/bananapeel, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering/reactor) "iFr" = ( /obj/effect/decal/cleanable/generic, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/nw) +"iFT" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "iGp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached, @@ -23983,6 +23943,9 @@ /obj/effect/landmark/static_comms/net_one, /turf/open/floor/bcircuit, /area/bigredv2/outside/telecomm/warehouse) +"iNR" = ( +/turf/open/gm/river, +/area/bigredv2/outside/engineering/reactor) "iOR" = ( /obj/effect/landmark/crap_item, /turf/open/floor/asteroidfloor/north, @@ -24059,18 +24022,10 @@ "iUe" = ( /turf/open/floor/darkred2/southeast, /area/bigredv2/caves/eta/research) -"iVd" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/mars, -/area/space) +"iUW" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) "iVi" = ( /obj/structure/fence, /turf/open/mars, @@ -24112,21 +24067,15 @@ }, /turf/open/floor, /area/bigredv2/outside/hydroponics) +"iWP" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) "iXo" = ( /obj/structure/bed, /obj/item/bedsheet/medical, /turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"iXs" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) "iXx" = ( /turf/open/mars_cave, /area/bigredv2/outside/n) @@ -24141,12 +24090,6 @@ }, /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"iXO" = ( -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering/reactor) "iXV" = ( /obj/item/stack/sheet/metal{ pixel_x = 2; @@ -24155,10 +24098,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/general_offices) -"iYt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering/reactor) "iYN" = ( /obj/structure/closet/secure_closet, /obj/effect/landmark/objective_landmark/close, @@ -24348,10 +24287,6 @@ /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"jli" = ( -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) "jlr" = ( /obj/structure/bed, /obj/effect/landmark/corpsespawner/colonist, @@ -24492,13 +24427,11 @@ "juF" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/bigredv2/outside/se) -"jwj" = ( -/obj/structure/platform/shiva{ - dir = 8 - }, -/obj/item/disk, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) +"jwa" = ( +/obj/structure/platform_decoration/stone/kutjevo, +/obj/effect/decal/cleanable/generic, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/nw) "jwU" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor, @@ -24517,6 +24450,16 @@ /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/c) +"jxA" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering/reactor) +"jxS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering/reactor) "jxV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning/northeast, @@ -24538,18 +24481,6 @@ /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/c) -"jzq" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/engineering/reactor) -"jzv" = ( -/obj/structure/closet/radiation, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering/reactor) "jzD" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/darkish, @@ -24567,6 +24498,10 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) +"jAo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_sw) "jAJ" = ( /turf/open/floor/podhatchfloor, /area/bigredv2/outside/engineering) @@ -24604,6 +24539,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) +"jBC" = ( +/obj/effect/timed_event/scrapeaway{ + time = 40 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/lz2_west_cas) "jCg" = ( /obj/effect/spawner/random/attachment, /obj/structure/machinery/light{ @@ -24650,6 +24591,10 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) +"jFi" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/gm/river, +/area/bigredv2/outside/engineering/reactor) "jFq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/wooden{ @@ -24668,6 +24613,9 @@ /obj/item/storage/box/gloves, /turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) +"jFG" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering/reactor) "jGd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, @@ -24720,12 +24668,6 @@ "jIQ" = ( /turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/lz1_north_cas) -"jIV" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_17, -/area/bigredv2/outside/nw) "jJB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars, @@ -24762,10 +24704,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"jKg" = ( -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) "jKh" = ( /obj/structure/flora/grass/desert/lightgrass_5, /obj/effect/decal/cleanable/blood, @@ -24785,16 +24723,12 @@ }, /turf/open/floor/red/north, /area/bigredv2/outside/lambda_cave_cas) -"jKI" = ( -/obj/structure/platform_decoration/shiva{ - dir = 8 - }, -/obj/structure/platform_decoration/shiva, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) +"jLa" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/gm/river, +/area/bigredv2/outside/engineering/reactor) "jLj" = ( /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/mars, @@ -24812,10 +24746,6 @@ /obj/effect/decal/cleanable/ash, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"jMC" = ( -/obj/effect/sentry_landmark/lz_1/top_left, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) "jNf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/corpsespawner/security, @@ -24871,6 +24801,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet13_5/west, /area/bigredv2/outside/bar) +"jPK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "jPQ" = ( /turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/ne) @@ -25069,17 +25005,17 @@ }, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"jXw" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave/mars_cave_13, -/area/bigredv2/outside/nw) "jXA" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor, /area/bigredv2/outside/office_complex) +"jXJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering/reactor) "jXP" = ( /obj/item/stack/cable_coil/cut, /turf/open/mars_cave/mars_cave_16, @@ -25252,6 +25188,14 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/nw) +"keO" = ( +/obj/effect/sentry_landmark/lz_1/bottom_right, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"keU" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "kfg" = ( /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..."; @@ -25315,12 +25259,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) -"khP" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) "khR" = ( /obj/structure/machinery/floodlight, /turf/open/mars_cave/mars_dirt_6, @@ -25409,6 +25347,15 @@ /obj/structure/bed, /turf/open/floor/white, /area/bigredv2/outside/marshal_office) +"kkJ" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/platform_decoration/metal/almayer/east, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/stack/cable_coil/random, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "kle" = ( /obj/item/prop{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -25488,10 +25435,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellowcorners2, /area/bigredv2/outside/engineering) -"knf" = ( -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) "knL" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/suit/armor/riot{ @@ -25571,10 +25514,6 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/general_offices) -"ksu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering/reactor) "ksO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -25626,6 +25565,14 @@ "kvp" = ( /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_sw) +"kvs" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.05; + pixel_y = 9 + }, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering/reactor) "kvB" = ( /obj/item/device/flashlight, /turf/open/floor/plating/platingdmg3/west, @@ -25675,10 +25622,6 @@ }, /turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) -"kyU" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/engineering/reactor) "kzF" = ( /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/ne) @@ -25689,14 +25632,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/bigredv2/outside/library) -"kAs" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) "kAD" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/cardboard{ @@ -25710,11 +25645,11 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/plating, /area/bigredv2/outside/bar) -"kAI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/bananapeel, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering/reactor) +"kAM" = ( +/obj/structure/platform/stone/kutjevo, +/obj/structure/platform/stone/kutjevo/west, +/turf/open/mars_cave/mars_dirt_4, +/area/space) "kBn" = ( /turf/closed/wall/solaris, /area/bigredv2/caves) @@ -25814,6 +25749,12 @@ /obj/item/prop/alien/hugger, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) +"kID" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "kIF" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 @@ -25829,11 +25770,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor, /area/bigredv2/outside/office_complex) -"kKw" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/eta) "kKx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/ash, @@ -25867,6 +25803,12 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating/platingdmg1, /area/bigredv2/outside/medical) +"kMk" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer, +/obj/item/stack/cable_coil, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "kMs" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "Righty tighty, lefty loosey!"; @@ -25920,13 +25862,6 @@ /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) -"kNg" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) "kNs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26031,6 +25966,11 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"kSB" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "kSH" = ( /obj/structure/ore_box, /turf/open/mars_cave/mars_cave_19, @@ -26038,6 +25978,11 @@ "kSL" = ( /turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) +"kSZ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) "kTs" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor, @@ -26128,6 +26073,10 @@ "lbh" = ( /turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/n) +"lbw" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river, +/area/bigredv2/outside/engineering/reactor) "lbZ" = ( /obj/item/frame/rack, /obj/effect/decal/cleanable/dirt, @@ -26264,6 +26213,11 @@ }, /turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) +"ljE" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) "ljS" = ( /obj/item/stack/rods{ pixel_x = 9; @@ -26352,21 +26306,10 @@ /obj/structure/surface/table, /turf/open/floor/dark, /area/bigredv2/outside/engineering) -"lqp" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) "lqC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/bigredv2/caves_lambda) -"lqQ" = ( -/obj/effect/sentry_landmark/lz_1/bottom_right, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) "lrf" = ( /obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/plating/platebotc, @@ -26377,10 +26320,6 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/admin_building) -"lrt" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave, -/area/bigredv2/outside/lz2_west_cas) "lrH" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, @@ -26435,9 +26374,6 @@ /obj/item/tool/crowbar/red, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"luV" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering/reactor) "lvh" = ( /obj/item/weapon/gun/rifle/m4ra, /obj/effect/landmark/corpsespawner/ua_riot, @@ -26471,14 +26407,14 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"lwR" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4; - layer = 2.9; - pixel_x = 4 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) +"lwt" = ( +/obj/structure/platform/stone/kutjevo/west, +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform_decoration/stone/kutjevo/west, +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/mars_cave/mars_cave_2, +/area/space) "lwT" = ( /obj/structure/machinery/light{ dir = 8 @@ -26494,6 +26430,12 @@ /obj/item/reagent_container/food/drinks/bottle/cognac, /turf/open/floor/wood, /area/bigredv2/outside/bar) +"lxN" = ( +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/mars_cave/mars_dirt_4, +/area/space) "lxQ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/paper/bigred/union, @@ -26579,6 +26521,10 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"lBL" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/gm/river, +/area/bigredv2/outside/engineering/reactor) "lBQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26589,6 +26535,12 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/c) +"lCt" = ( +/obj/structure/machinery/power/reactor/colony{ + name = "Reactor Turbine" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering/reactor) "lCR" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/flask/vacuumflask{ @@ -26724,10 +26676,6 @@ "lIS" = ( /turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/ne) -"lJY" = ( -/obj/effect/decal/cleanable/dirt/greenglow, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering/reactor) "lKw" = ( /obj/item/paper/bigred/walls, /obj/structure/machinery/light/small{ @@ -26735,6 +26683,14 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"lKH" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light/small/built{ + dir = 4 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "lKL" = ( /obj/effect/decal/strata_decals/grime/grime4, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, @@ -26806,6 +26762,10 @@ /obj/effect/decal/strata_decals/grime/grime3, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/nw) +"lOV" = ( +/obj/effect/sentry_landmark/lz_1/bottom_right, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) "lOY" = ( /obj/effect/landmark/nightmare{ insert_tag = "etatunnel_open" @@ -26822,23 +26782,6 @@ }, /turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"lPp" = ( -/turf/open/mars_cave/mars_cave_23, -/area/bigredv2/outside/lz2_south_cas) -"lPL" = ( -/obj/structure/platform/shiva{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) -"lPQ" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/eta) "lQb" = ( /obj/item/trash/cigbutt{ pixel_x = 1; @@ -27078,12 +27021,6 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/bigredv2/outside/nw) -"mcY" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engine Reactor" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering/reactor) "mda" = ( /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves_lambda) @@ -27148,6 +27085,9 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/bigredv2/outside/bar) +"mge" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering/reactor) "mgr" = ( /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..."; @@ -27291,13 +27231,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/bigredv2/outside/library) +"mon" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) "moE" = ( /turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves_research) -"mpU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering/reactor) +"moH" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/open/mars/mars_dirt_9, +/area/space) "mqf" = ( /obj/structure/bed/chair{ dir = 8; @@ -27306,6 +27250,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"mqh" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/panelscorched, +/area/bigredv2/outside/engineering/reactor) +"mqu" = ( +/obj/item/tool/extinguisher, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering/reactor) "mqK" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/bigredv2/outside/space_port_lz2) @@ -27320,6 +27273,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) +"mrc" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/space_port_lz2) "mrF" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/mars, @@ -27350,6 +27307,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning/north, /area/bigred/ground/garage_workshop) +"mtj" = ( +/obj/structure/platform/stone/kutjevo/east, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/nw) "mts" = ( /obj/item/ore, /turf/open/mars_cave/mars_cave_2, @@ -27409,10 +27371,6 @@ }, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"mxi" = ( -/obj/effect/sentry_landmark/lz_1/bottom_left, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) "mxC" = ( /obj/effect/decal/strata_decals/grime/grime1, /obj/effect/decal/cleanable/generic, @@ -27494,15 +27452,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/e) -"mzC" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8; - layer = 2.9; - pixel_x = -3 - }, -/obj/structure/platform/kutjevo/rock, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) "mzV" = ( /turf/open/mars, /area/bigredv2/outside/filtration_plant) @@ -27648,10 +27597,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/asphalt/cement/cement15, /area/bigredv2/caves_lambda) -"mHQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering/reactor) "mIc" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/floor/podhatchfloor, @@ -27678,12 +27623,6 @@ }, /turf/open/floor, /area/bigredv2/outside/general_offices) -"mIX" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering/reactor) "mIZ" = ( /obj/structure/barricade/handrail{ dir = 8 @@ -27691,6 +27630,12 @@ /obj/item/tank/air, /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) +"mJx" = ( +/obj/structure/platform/stone/kutjevo/east{ + pixel_x = 4 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "mKi" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -27785,9 +27730,6 @@ }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"mPH" = ( -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/outside/engineering/reactor) "mPK" = ( /obj/effect/decal/cleanable/liquid_fuel, /obj/effect/decal/cleanable/dirt, @@ -27845,14 +27787,6 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) -"mRo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) "mRz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -27892,6 +27826,13 @@ }, /turf/open/floor/plating/platebotc, /area/bigredv2/outside/space_port) +"mSC" = ( +/obj/structure/platform/metal/almayer/east, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "mSS" = ( /turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/engineering) @@ -28016,17 +27957,11 @@ "mZC" = ( /turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_virology) -"nap" = ( -/obj/structure/machinery/iv_drip, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip, +"mZY" = ( /obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/whitegreen, -/area/bigredv2/outside/medical) -"naV" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering/reactor) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) "nbi" = ( /obj/effect/landmark/hunter_secondary, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -28083,9 +28018,6 @@ }, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"neE" = ( -/turf/open/gm/river, -/area/bigredv2/outside/engineering/reactor) "nfP" = ( /obj/effect/decal/cleanable/generic, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, @@ -28138,13 +28070,6 @@ "njf" = ( /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/lz2_south_cas) -"njJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engine Reactor" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering/reactor) "nkm" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor, @@ -28224,14 +28149,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"nlW" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo/rock, -/turf/open/mars, -/area/space) "nmb" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomit_4" @@ -28332,9 +28249,6 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"nql" = ( -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering/reactor) "nqr" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -28413,14 +28327,16 @@ }, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) +"nuz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering/reactor) "nuQ" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/bigredv2/outside/library) -"nvf" = ( -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering/reactor) "nvn" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ density = 0; @@ -28448,6 +28364,17 @@ }, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) +"nxl" = ( +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"nxG" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering/reactor) +"nxK" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) "nyZ" = ( /obj/item/tool/minihoe{ pixel_x = -4; @@ -28489,6 +28416,10 @@ }, /turf/open/mars, /area/bigredv2/outside/nw) +"nAJ" = ( +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) "nBb" = ( /obj/item/ammo_magazine/pistol/b92fs, /obj/item/weapon/gun/pistol/b92fs{ @@ -28543,6 +28474,11 @@ "nEl" = ( /turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/lz2_south_cas) +"nEt" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) "nEv" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -28618,6 +28554,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/filtration_cave_cas) +"nGN" = ( +/obj/effect/timed_event/scrapeaway{ + time = 40 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves_sw) "nHQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -28696,12 +28638,6 @@ }, /turf/open/floor/asteroidwarning/northeast, /area/bigred/ground/garage_workshop) -"nME" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) "nMG" = ( /turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) @@ -28761,13 +28697,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"nPH" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/mars_cave/mars_cave_19, -/area/bigredv2/outside/nw) "nQl" = ( /obj/item/ore{ pixel_x = -1; @@ -28807,12 +28736,6 @@ "nRT" = ( /turf/open/floor/dark, /area/bigredv2/outside/chapel) -"nRZ" = ( -/obj/structure/machinery/light_construct{ - dir = 4 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering/reactor) "nSp" = ( /obj/structure/machinery/power/apc/power/north{ name = "Control Center APC" @@ -28960,12 +28883,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/telecomm/n_cave) -"nZD" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) "nZK" = ( /obj/item/ore/diamond, /obj/item/stack/sheet/mineral/diamond{ @@ -29007,12 +28924,6 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"ocV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering/reactor) "odw" = ( /obj/structure/bed, /turf/open/floor/plating, @@ -29058,11 +28969,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/se) -"ofU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor/darkyellow2/southwest, -/area/bigredv2/outside/engineering/reactor) "ofX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -29242,14 +29148,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/asphalt/cement, /area/bigredv2/caves_lambda) -"ooi" = ( -/obj/structure/platform_decoration/shiva{ - dir = 8 - }, -/obj/structure/platform_decoration/shiva, -/obj/item/stack/cable_coil, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) "oox" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; @@ -29391,6 +29289,10 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"ouh" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering/reactor) "ouo" = ( /turf/open/floor/whitegreencorner/north, /area/bigredv2/outside/medical) @@ -29449,25 +29351,6 @@ /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/mars, /area/bigredv2/caves_north) -"owp" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering/reactor) -"owG" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering/reactor) "owR" = ( /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) @@ -29494,10 +29377,6 @@ "oye" = ( /turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/filtration_cave_cas) -"oyp" = ( -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/space_port_lz2) "oyM" = ( /obj/item/prop/colony/usedbandage{ dir = 5; @@ -29567,10 +29446,6 @@ "oAf" = ( /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_virology) -"oBo" = ( -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/bigredv2/outside/space_port_lz2) "oBy" = ( /turf/open/asphalt/cement/cement12, /area/bigredv2/caves_lambda) @@ -29585,6 +29460,10 @@ /obj/item/shard, /turf/open/floor/dark, /area/bigredv2/outside/general_offices) +"oCA" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) "oCK" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/e) @@ -29637,10 +29516,6 @@ /obj/item/device/flashlight/lantern, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/ne) -"oFI" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/panelscorched, -/area/bigredv2/outside/engineering/reactor) "oFQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, @@ -29651,6 +29526,9 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/dark, /area/bigredv2/outside/general_offices) +"oHc" = ( +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering/reactor) "oHu" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/metal{ @@ -29922,13 +29800,6 @@ }, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"oUY" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) "oVg" = ( /obj/structure/surface/table/woodentable, /obj/item/ashtray/glass, @@ -29948,9 +29819,6 @@ }, /turf/open/mars, /area/bigredv2/outside/nw) -"oVZ" = ( -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/engineering/reactor) "oWc" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -29967,6 +29835,11 @@ }, /turf/open/floor/darkblue2/north, /area/bigredv2/outside/admin_building) +"oWp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering/reactor) "oWC" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -29977,6 +29850,11 @@ }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"oWE" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) "oXj" = ( /obj/structure/surface/table, /turf/open/floor/dark, @@ -30211,10 +30089,6 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/c) -"pjy" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave, -/area/bigredv2/outside/lz2_south_cas) "pjD" = ( /obj/item/weapon/gun/smg/fp9000, /turf/open/floor/wood, @@ -30316,6 +30190,15 @@ /obj/structure/sign/safety/hazard, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) +"ppu" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.05; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering/reactor) "ppZ" = ( /obj/structure/barricade/handrail/medical{ dir = 4 @@ -30332,6 +30215,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/whitegreencorner/north, /area/bigredv2/outside/medical) +"pqL" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river, +/area/bigredv2/outside/engineering/reactor) "pri" = ( /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..."; @@ -30352,6 +30239,11 @@ }, /turf/open/asphalt/cement/cement4, /area/bigredv2/outside/lambda_cave_cas) +"prN" = ( +/obj/structure/platform/stone/kutjevo, +/obj/structure/platform/stone/kutjevo/east, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/nw) "prU" = ( /obj/structure/machinery/light{ dir = 4 @@ -30467,12 +30359,6 @@ /obj/structure/ore_box, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"pxq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering/reactor) "pxv" = ( /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..."; @@ -30484,12 +30370,6 @@ }, /turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) -"pxH" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) "pxP" = ( /obj/structure/bed/chair{ dir = 4 @@ -30497,11 +30377,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/lambda_cave_cas) -"pxT" = ( -/obj/item/tool/extinguisher, -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering/reactor) "pxV" = ( /turf/open/asphalt/cement/cement1, /area/bigredv2/caves_lambda) @@ -30751,6 +30626,12 @@ /obj/effect/decal/cleanable/generic, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/bigredv2/outside/s) +"pOg" = ( +/obj/structure/machinery/compressor{ + dir = 1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering/reactor) "pOt" = ( /obj/structure/machinery/optable, /turf/open/floor/whiteblue/east, @@ -30837,20 +30718,14 @@ /obj/item/restraint/handcuffs, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"pTA" = ( -/obj/structure/platform_decoration/shiva{ - dir = 1 - }, -/obj/structure/platform_decoration/shiva{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) "pTH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) +"pTY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering/reactor) "pUi" = ( /obj/item/weapon/broken_bottle, /turf/open/floor/plating, @@ -30862,12 +30737,22 @@ }, /turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) +"pVi" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering/reactor) "pVp" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"pVv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/compressor{ + dir = 1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering/reactor) "pVP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, @@ -30920,6 +30805,10 @@ /obj/item/weapon/gun/rifle/m41a/training, /turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) +"pXM" = ( +/obj/effect/sentry_landmark/lz_1/top_right, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) "pXY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -31167,12 +31056,6 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor, /area/bigred/ground/garage_workshop) -"qlU" = ( -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering/reactor) "qlW" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool{ @@ -31274,12 +31157,6 @@ }, /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) -"qpE" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering/reactor) "qpP" = ( /obj/effect/landmark/corpsespawner/security, /obj/effect/decal/cleanable/blood{ @@ -31321,10 +31198,6 @@ }, /turf/open/floor/whitegreen/southwest, /area/bigredv2/outside/medical) -"qrw" = ( -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/space_port_lz2) "qrZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/fire, @@ -31355,6 +31228,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bigredv2/outside/library) +"qtv" = ( +/obj/structure/platform/stone/kutjevo, +/obj/structure/platform/stone/kutjevo/west, +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/mars_cave/mars_cave_2, +/area/space) "qty" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -31372,6 +31251,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/bigredv2/outside/bar) +"qtZ" = ( +/obj/effect/sentry_landmark/lz_1/top_left, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) "qus" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/delivery, @@ -31406,10 +31289,6 @@ }, /turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"qvi" = ( -/obj/effect/sentry_landmark/lz_1/top_right, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) "qvA" = ( /obj/effect/landmark/xeno_spawn, /turf/open/mars_cave/mars_cave_2, @@ -31643,6 +31522,10 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"qGD" = ( +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/space_port_lz2) "qGT" = ( /obj/item/stack/sheet/metal{ pixel_x = 4; @@ -31693,6 +31576,10 @@ /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/dark, /area/bigredv2/outside/general_offices) +"qJK" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) "qJM" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, @@ -31925,13 +31812,6 @@ /obj/item/shard, /turf/open/floor/plating, /area/bigredv2/outside/general_offices) -"qVd" = ( -/obj/item/reagent_container/food/snacks/sausage, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/space) "qVi" = ( /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, @@ -31971,6 +31851,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/whitegreen, /area/bigredv2/outside/medical) +"qYf" = ( +/obj/structure/platform/stone/kutjevo/west{ + pixel_x = -3 + }, +/obj/structure/platform/stone/kutjevo, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "qYB" = ( /obj/structure/sink{ dir = 8; @@ -32167,18 +32054,6 @@ }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"rfe" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/mars_cave/mars_cave_2, -/area/space) "rfL" = ( /obj/item/shard, /turf/open/floor/whitegreencorner, @@ -32309,10 +32184,6 @@ }, /turf/open/asphalt/cement, /area/bigredv2/outside/lambda_cave_cas) -"rnR" = ( -/obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) "rnV" = ( /obj/item/stack/sheet/glass, /turf/open/floor/dark, @@ -32549,14 +32420,6 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"rAg" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/engineering/reactor) "rAs" = ( /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_east) @@ -32626,7 +32489,7 @@ /obj/structure/barricade/deployable, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"rFs" = ( +"rGz" = ( /obj/structure/machinery/light/double, /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_sw) @@ -32634,11 +32497,6 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/red/north, /area/bigredv2/outside/lambda_cave_cas) -"rGJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/engineering/reactor) "rGP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_7, @@ -32904,18 +32762,6 @@ /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/bigredv2/outside/nw) -"rQQ" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering/reactor) -"rRF" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering/reactor) "rSf" = ( /obj/item/trash/cigbutt{ pixel_x = -10; @@ -32974,6 +32820,12 @@ /obj/structure/fence, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) +"rTP" = ( +/obj/structure/platform/stone/kutjevo/west, +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/mars_cave/mars_cave_2, +/area/space) "rUn" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -33037,11 +32889,6 @@ /obj/structure/fence, /turf/open/floor/asteroidwarning, /area/bigredv2/outside/n) -"rVV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering/reactor) "rVY" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" @@ -33109,10 +32956,6 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/virology) -"rXN" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz1_telecomm_cas) "rXY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -33178,6 +33021,10 @@ }, /turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) +"saX" = ( +/obj/structure/machinery/power/turbine, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering/reactor) "sbc" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -33197,16 +33044,12 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) -"sbz" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars/mars_dirt_12, -/area/space) +"sbt" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/gm/river, +/area/bigredv2/outside/engineering/reactor) "sbA" = ( /obj/item/frame/rack, /obj/effect/spawner/random/toolbox, @@ -33240,12 +33083,6 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/bar) -"scK" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) "scP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -33468,6 +33305,12 @@ /obj/item/tank/air, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) +"snv" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering/reactor) "snT" = ( /obj/item/stack/rods{ pixel_y = 13; @@ -33710,6 +33553,9 @@ }, /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) +"syJ" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/outside/lz2_south_cas) "syK" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -33742,6 +33588,14 @@ }, /turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) +"sAw" = ( +/obj/structure/platform/stone/kutjevo/east, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/nw) +"sAG" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) "sAS" = ( /obj/item/toy/prize/fireripley{ pixel_y = 19 @@ -33817,6 +33671,10 @@ "sDC" = ( /turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves_sw) +"sDO" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering/reactor) "sDZ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/head/welding, @@ -33856,9 +33714,6 @@ "sFv" = ( /turf/open/floor/asteroidwarning/north, /area/bigredv2/caves_north) -"sFL" = ( -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/engineering/reactor) "sFW" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/mars_cave/mars_cave_17, @@ -33951,6 +33806,10 @@ /obj/structure/machinery/suit_storage_unit/carbon_unit, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) +"sLU" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) "sMg" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" @@ -33973,6 +33832,10 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/s) +"sNP" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering/reactor) "sNQ" = ( /turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_lambda) @@ -34060,10 +33923,6 @@ }, /turf/open/floor/white, /area/bigredv2/outside/medical) -"sSP" = ( -/obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port_lz2) "sSU" = ( /turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/lz2_south_cas) @@ -34116,9 +33975,6 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sXA" = ( -/turf/closed/wall/mineral/uranium, -/area/bigredv2/outside/engineering/reactor) "sYL" = ( /turf/open/mars_cave/mars_cave_8, /area/bigredv2/outside/lambda_cave_cas) @@ -34207,6 +34063,10 @@ /obj/item/ammo_casing/bullet, /turf/open/floor/dark, /area/bigredv2/outside/general_offices) +"tcP" = ( +/obj/effect/decal/cleanable/dirt/greenglow, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering/reactor) "tcV" = ( /obj/effect/decal/cleanable/generic, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, @@ -34608,6 +34468,14 @@ }, /turf/open/floor/loadingarea/west, /area/bigredv2/outside/cargo) +"tuG" = ( +/obj/structure/platform/stone/kutjevo, +/obj/item/trash/used_stasis_bag{ + pixel_y = 8; + pixel_x = 9 + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/nw) "tuN" = ( /obj/structure/machinery/light/small, /turf/open/mars_cave, @@ -34615,6 +34483,12 @@ "tvh" = ( /turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/lz2_south_cas) +"tvH" = ( +/obj/structure/machinery/compressor{ + dir = 1 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering/reactor) "twt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -34755,10 +34629,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/virology) -"tCP" = ( -/obj/structure/machinery/power/turbine, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering/reactor) "tCQ" = ( /turf/open/gm/river/red, /area/bigredv2/outside/c) @@ -34805,9 +34675,6 @@ /obj/structure/machinery/deployable/barrier, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"tET" = ( -/turf/open/floor/darkyellow2/southeast, -/area/bigredv2/outside/engineering/reactor) "tFt" = ( /obj/structure/surface/table, /obj/structure/machinery/light, @@ -34986,19 +34853,6 @@ /obj/effect/spawner/random/technology_scanner, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) -"tMq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/engineering/reactor) -"tMv" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/obj/structure/flora/grass/desert/lightgrass_11, -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/space_port_lz2) "tMA" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -35142,12 +34996,6 @@ }, /turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) -"tSI" = ( -/obj/structure/platform/shiva{ - dir = 8 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) "tSY" = ( /obj/structure/surface/table, /turf/open/floor/whitegreencorner, @@ -35176,6 +35024,13 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) +"tUB" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "tUL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/hefa_cult_decals/d32, @@ -35226,9 +35081,6 @@ }, /turf/open/mars, /area/bigredv2/outside/c) -"tWC" = ( -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering/reactor) "tWS" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo, /turf/open/mars_cave/mars_cave_13, @@ -35348,6 +35200,11 @@ }, /turf/open/floor/whitegreen/southwest, /area/bigredv2/outside/medical) +"ueL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/framed/solaris, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering/reactor) "ueM" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -35395,6 +35252,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/bigredv2/outside/space_port_lz2) +"ugT" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/space_port_lz2) "ugW" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/platingdmg3/west, @@ -35674,6 +35535,10 @@ "uyk" = ( /turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_west_cas) +"uyS" = ( +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) "uzb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood, @@ -35786,10 +35651,6 @@ }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"uEd" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/lz2_south_cas) "uEi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, @@ -35887,6 +35748,12 @@ /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor, /area/bigredv2/outside/dorms) +"uJj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering/reactor) "uJu" = ( /obj/item/robot_parts/robot_component/diagnosis_unit{ pixel_y = 15 @@ -35965,16 +35832,6 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"uPK" = ( -/obj/structure/platform/shiva{ - dir = 1 - }, -/obj/structure/platform/shiva, -/obj/structure/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) "uQZ" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/mars, @@ -36118,6 +35975,9 @@ }, /turf/open/floor/white, /area/bigredv2/outside/medical) +"uZy" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering/reactor) "uZG" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt{ @@ -36179,6 +36039,12 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/eta) +"vct" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_sw) "vcy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ @@ -36270,13 +36136,6 @@ /obj/structure/fence, /turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/n) -"vgZ" = ( -/obj/structure/platform/shiva, -/obj/structure/platform/shiva{ - dir = 1 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) "vhF" = ( /obj/item/device/flashlight/lantern, /turf/open/mars_cave/mars_cave_13, @@ -36309,15 +36168,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) -"vjN" = ( -/obj/structure/bed/bedroll{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) "vjR" = ( /obj/effect/decal/cleanable/dirt, /obj/item/explosive/grenade/custom/large{ @@ -36471,17 +36321,15 @@ /obj/structure/machinery/camera/autoname, /turf/open/floor/wood, /area/bigredv2/outside/library) +"voG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering/reactor) "vpu" = ( /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"vpx" = ( -/obj/structure/platform, -/obj/structure/flora/jungle/planttop1{ - pixel_y = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) "vpY" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ id = "eta"; @@ -36547,6 +36395,14 @@ }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) +"vsS" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) "vsX" = ( /obj/item/trash/semki{ layer = 2; @@ -36599,12 +36455,6 @@ }, /turf/open/floor, /area/bigredv2/outside/office_complex) -"vvv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) "vvx" = ( /obj/structure/surface/table, /obj/item/bodybag{ @@ -36771,6 +36621,10 @@ "vCU" = ( /turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/lz2_south_cas) +"vDq" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) "vDw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/drip, @@ -36780,6 +36634,13 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/bigredv2/outside/nw) +"vDJ" = ( +/obj/item/storage/toolbox{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) "vDK" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood, @@ -36860,10 +36721,6 @@ /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/nw) -"vGT" = ( -/obj/structure/machinery/power/turbine, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering/reactor) "vHw" = ( /turf/closed/wall/wood, /area/bigredv2/caves/mining) @@ -36891,6 +36748,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/bigredv2/outside/s) +"vKl" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.05; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering/reactor) "vKv" = ( /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port_lz2) @@ -36940,6 +36805,10 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/bigredv2/outside/s) +"vNm" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz1_telecomm_cas) "vND" = ( /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/mars, @@ -37009,6 +36878,12 @@ /obj/structure/machinery/power/apc/power/east, /turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/research) +"vQt" = ( +/obj/structure/platform/stone/kutjevo, +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/platform_decoration/stone/kutjevo, +/turf/open/mars, +/area/space) "vQF" = ( /obj/structure/machinery/power/apc/power/north, /turf/open/floor/darkyellowcorners2/north, @@ -37123,6 +36998,10 @@ "vXJ" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_lambda) +"vYf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering/reactor) "vYp" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/decal/cleanable/blood, @@ -37152,12 +37031,6 @@ /obj/item/device/flashlight, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"waO" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering/reactor) "waX" = ( /obj/item/stack/cable_coil/cut, /turf/open/mars_cave/mars_cave_2, @@ -37207,10 +37080,6 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"wcX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/east, -/area/bigredv2/outside/engineering/reactor) "wdd" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -37223,18 +37092,6 @@ }, /turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) -"wdM" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/mars_cave/mars_dirt_4, -/area/space) "wdV" = ( /obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, @@ -37324,6 +37181,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/general_offices) +"whp" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.05; + pixel_y = 9 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering/reactor) "whw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable, @@ -37334,6 +37199,10 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) +"whG" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave, +/area/bigredv2/outside/lz2_west_cas) "whL" = ( /obj/structure/barricade/deployable, /turf/open/floor/asteroidwarning/west, @@ -37373,12 +37242,6 @@ }, /turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"wjW" = ( -/obj/structure/platform/shiva{ - dir = 1 - }, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) "wko" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -37389,12 +37252,6 @@ /obj/structure/flora/grass/desert/lightgrass_5, /turf/open/mars, /area/bigredv2/outside/se) -"wkV" = ( -/obj/effect/timed_event/scrapeaway{ - time = 40 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves_sw) "wlr" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating, @@ -37417,12 +37274,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement4, /area/bigredv2/caves_lambda) -"wmA" = ( -/obj/effect/timed_event/scrapeaway{ - time = 40 - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/lz2_west_cas) "wmN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning, @@ -37438,6 +37289,15 @@ "wni" = ( /turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) +"wnl" = ( +/obj/structure/bed/bedroll{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) "wnZ" = ( /obj/structure/window_frame/solaris, /turf/open/floor/plating, @@ -37449,10 +37309,6 @@ "wog" = ( /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) -"woI" = ( -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/asphalt/cement_sunbleached, -/area/bigredv2/outside/w) "woK" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -37468,6 +37324,10 @@ "wpf" = ( /turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves_north) +"wpn" = ( +/obj/structure/closet/radiation, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering/reactor) "wpv" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -37632,6 +37492,10 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"wwT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering/reactor) "wxo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning, @@ -37943,9 +37807,6 @@ /obj/item/ammo_magazine/pistol/m1911, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"wOY" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/engineering/reactor) "wPk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37995,11 +37856,19 @@ }, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) +"wRD" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) "wRH" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/flashlight, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"wRP" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/engineering/reactor) "wSj" = ( /obj/structure/sign/safety/life_support, /obj/structure/sign/safety/maint{ @@ -38007,15 +37876,6 @@ }, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) -"wSH" = ( -/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/reactor) "wUc" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" @@ -38235,19 +38095,6 @@ }, /turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) -"xfN" = ( -/obj/structure/platform_decoration/shiva{ - dir = 1 - }, -/obj/structure/platform_decoration/shiva{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/cable_coil/random, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/caves/lambda/research) "xfW" = ( /turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/living) @@ -38346,10 +38193,6 @@ }, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"xlz" = ( -/obj/structure/machinery/light, -/turf/open/floor/dark, -/area/bigredv2/outside/engineering/reactor) "xlD" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/pistachios{ @@ -38375,16 +38218,6 @@ "xmy" = ( /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_telecomm_cas) -"xmT" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_2, -/area/space) "xnf" = ( /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..."; @@ -38463,6 +38296,10 @@ }, /turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) +"xqk" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) "xqy" = ( /obj/effect/spawner/random/tool{ pixel_x = -11; @@ -38624,13 +38461,6 @@ /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/mars, /area/bigredv2/outside/se) -"xxG" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - name = "\improper Engine Reactor" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/engineering/reactor) "xxN" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ @@ -38669,6 +38499,10 @@ }, /turf/open/floor/dark, /area/bigredv2/caves/eta/living) +"xzC" = ( +/obj/structure/platform_decoration/stone/kutjevo, +/turf/open/mars, +/area/space) "xAh" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -38689,12 +38523,6 @@ /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/mars/mars_dirt_9, /area/bigredv2/outside/nw) -"xBn" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) "xBo" = ( /obj/structure/barricade/metal{ dir = 1 @@ -38716,6 +38544,15 @@ "xBS" = ( /turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/lz1_north_cas) +"xBY" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"xCk" = ( +/obj/item/reagent_container/food/snacks/sausage, +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/mars_cave/mars_dirt_4, +/area/space) "xCX" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/dark, @@ -38918,11 +38755,6 @@ /obj/structure/machinery/light, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xMz" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) "xMT" = ( /obj/structure/closet, /obj/item/explosive/grenade/high_explosive/frag, @@ -38972,6 +38804,10 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/c) +"xQa" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "xQb" = ( /obj/structure/pipes/vents/pump/on, /obj/effect/decal/cleanable/dirt, @@ -39003,6 +38839,9 @@ /obj/structure/prop/dam/crane, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"xSu" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering/reactor) "xTk" = ( /obj/limb/arm/l_arm, /obj/effect/decal/cleanable/blood/drip, @@ -39161,10 +39000,6 @@ "xZL" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/outside/lambda_cave_cas) -"xZS" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering/reactor) "yar" = ( /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) @@ -39322,12 +39157,6 @@ /obj/structure/flora/grass/desert/lightgrass_12, /turf/open/mars, /area/bigredv2/outside/w) -"yiY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/caves_sw) "yjU" = ( /obj/item/weapon/broken_bottle, /turf/open/floor/plating/platingdmg3/west, @@ -39349,6 +39178,9 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/bigredv2/outside/s) +"ykR" = ( +/turf/closed/wall/mineral/uranium, +/area/bigredv2/outside/engineering/reactor) "ykW" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -3; @@ -39374,14 +39206,6 @@ /obj/item/ammo_magazine/rifle/nsg23/extended, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"ylp" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor/darkyellow2/northwest, -/area/bigredv2/outside/engineering/reactor) "ylx" = ( /obj/item/clothing/suit/storage/CMB{ pixel_x = -6; @@ -40057,8 +39881,8 @@ aaa aab aao aao -rfe -xmT +rTP +qtv aao aao aao @@ -40273,10 +40097,10 @@ aaa aaa aab aao -cnk -ada +lwt +cCq qjO -gsW +kAM aao aao aao @@ -40491,10 +40315,10 @@ aaa aab aao aao -wdM -qVd -aVR -sbz +lxN +xCk +hot +hub aao aao aao @@ -40709,9 +40533,9 @@ aab aao aao aao -aVc -aVQ -nlW +moH +xzC +vQt aao aao aao @@ -40926,8 +40750,8 @@ aab aao aao aao -iVd -nlW +gAg +vQt aao aao aao @@ -42141,10 +41965,10 @@ cYJ vMj vMj cYJ -wmA -wkV -wkV -wkV +jBC +nGN +nGN +nGN wog wog wog @@ -42292,7 +42116,7 @@ xmy xmy gda gda -ccX +fOc xmy xmy lrH @@ -42354,13 +42178,13 @@ cYJ cYJ ski eEy -lrt +whG cYJ ovB cYJ -wmA -wkV -wkV +jBC +nGN +nGN wog wog wog @@ -42513,7 +42337,7 @@ rCA pQM pQM eOd -rXN +vNm aao aao aao @@ -42574,11 +42398,11 @@ cYJ cYJ uyk cYJ -wmA -wmA -wkV +jBC +jBC +nGN wog -fVE +jAo wog wog wog @@ -42791,9 +42615,9 @@ cYJ cYJ uyk cYJ -wmA -wkV -wkV +jBC +nGN +nGN wog wog wog @@ -42891,7 +42715,7 @@ aaf aaf aar aaf -jMC +qtZ aaf aaf aaf @@ -43007,10 +42831,10 @@ aao aao aao bQb -wmA -wmA -wkV -wkV +jBC +jBC +nGN +nGN wog wog wog @@ -43226,7 +43050,7 @@ aao aao aao aao -wkV +nGN wog wog wog @@ -43321,7 +43145,7 @@ aaf aaf aaf aaf -jMC +qtZ aaf aaf aaf @@ -43556,7 +43380,7 @@ acJ aaf aaf aaf -mxi +hLq aaf aaf aaf @@ -43752,7 +43576,7 @@ aao aao aae aag -jMC +qtZ aaf aaf aaf @@ -43776,7 +43600,7 @@ aaf aaf aaf aaf -mxi +hLq aaf aaf aae @@ -44292,7 +44116,7 @@ cVY cVY cVY cVY -rnR +ehN cVY ayf ayf @@ -44428,7 +44252,7 @@ aah aei aaf aaf -mxi +hLq acJ aae aao @@ -44505,7 +44329,7 @@ nbu cVY cVY cVY -rnR +ehN hpg mMf cVY @@ -44739,12 +44563,12 @@ tVp fFO cVY cVY -oyp +qGD tVp fFO cVY cVY -jli +hbg ayf ayf aao @@ -44891,7 +44715,7 @@ aao vGR iKU jYp -dLJ +tuG aeI aeI jHK @@ -45105,10 +44929,10 @@ aeI aeI aao aao -jIV -jXw -etg -hkS +sAw +mtj +eFX +prN aeI aeI aeI @@ -45153,7 +44977,7 @@ cVY cVY hpg tVp -sSP +oCA eWd eWd eWd @@ -45830,7 +45654,7 @@ bie bsc eWd dAX -knf +nAJ tVp ayf aao @@ -46381,7 +46205,7 @@ aah aej aaf aaf -lqQ +lOV acJ aae aao @@ -46573,7 +46397,7 @@ aao aao aae aaf -dQE +cjS aap aav aaG @@ -47246,7 +47070,7 @@ jmQ lrf mSz dbO -hLt +keO rIx iuI hyO @@ -47605,7 +47429,7 @@ hzP fnO xkR tWS -gVj +cAM iJF omG pJX @@ -47677,7 +47501,7 @@ dbO skZ skZ dbO -hLt +keO aah aah aah @@ -47750,7 +47574,7 @@ aSB mQY jzO jzO -woI +uyS vDS woe tVp @@ -47878,7 +47702,7 @@ aae aae wHg aah -qvi +pXM aaU abc aah @@ -48100,7 +47924,7 @@ aah aah aah aah -qvi +pXM abD aah aah @@ -48628,7 +48452,7 @@ tVp bgX sbm eWd -ifl +nxl kOv qNH mDt @@ -48644,13 +48468,13 @@ qcQ tVp tVp tVp -oBo +mrc mVp mqK tVp qcQ tVp -jKg +iWP tVp aao aao @@ -48895,7 +48719,7 @@ kvp wog wog wog -yiY +vct bvV rUn dSg @@ -49055,7 +48879,7 @@ jzO jzO woP tVp -tMv +buk tVp tVp tVp @@ -49112,7 +48936,7 @@ fus kgx wog wog -rFs +rGz uHQ tBf qjA @@ -49515,7 +49339,7 @@ eKY tCn mic mic -qrw +ugT tCn tCn tCn @@ -49529,7 +49353,7 @@ bGL qCK keg xIP -kNg +bvF keg bvS bvS @@ -50933,8 +50757,8 @@ aao aao aao aao -blk -blk +agm +agm aao aao aao @@ -51149,9 +50973,9 @@ aao aao aao aao -blk -blk -blk +agm +agm +agm aao aao aao @@ -51366,8 +51190,8 @@ aao aao aao aao -blk -blk +agm +agm aao aao aao @@ -51583,9 +51407,9 @@ aao aao aao aao -blk -blk -blk +agm +agm +agm aao aao aao @@ -51800,9 +51624,9 @@ aao aao aao aao -blk -blk -blk +agm +agm +agm aao aao aao @@ -52017,8 +51841,8 @@ aao aao aao aao -blk -blk +agm +agm aao aao aao @@ -52234,8 +52058,8 @@ aao aao aao aao -blk -blk +agm +agm aao aao aao @@ -52569,7 +52393,7 @@ aao aao aao kgx -lPp +syJ kgx kgx kgx @@ -52785,9 +52609,9 @@ kgx kgx kgx kgx -uEd +sAG kgx -lPp +syJ kgx kgx kgx @@ -53214,15 +53038,15 @@ nLw aao aao aao -pjy -pjy -pjy -pjy -pjy -pjy -pjy -pjy -pjy +giB +giB +giB +giB +giB +giB +giB +giB +giB aao aao aao @@ -53337,7 +53161,7 @@ mPR nJt siK hEr -nPH +jwa wNe rcR alD @@ -53426,23 +53250,23 @@ ayZ axX axX axX -luV -luV -luV -luV -luV -luV -luV -luV -mpU -luV -luV -luV -luV -luV -luV -luV -luV +uZy +uZy +uZy +uZy +uZy +uZy +uZy +uZy +wwT +uZy +uZy +uZy +uZy +uZy +uZy +uZy +uZy aao aao aao @@ -53643,23 +53467,23 @@ kVT ayZ bsP ayZ -pxT -ksu -dzg -nvf -naV -iXO -tCP -tMq -tCP -act -ksu -nvf -xZS -nvf -nql -luV -luV +mqu +eyR +jXJ +nxG +sDO +pOg +saX +pVv +saX +eIN +eyR +nxG +hkR +nxG +dLd +uZy +uZy aao aao wog @@ -53860,23 +53684,23 @@ tTI nIi bte nIi -tWC -wcX -wcX -wcX -iYt -tWC -wcX -wcX -iYt -tWC -tWC -oVZ -xxG -wOY -sFL -jzv -luV +bLE +vYf +vYf +vYf +chw +bLE +vYf +vYf +chw +bLE +bLE +jFG +fUp +wRP +xSu +wpn +uZy aao wog wog @@ -54077,23 +53901,23 @@ gfX axX axX axX -rVV -rVV -rVV -oFI -mcY -rVV -rVV -xZS -mcY -rGJ -rGJ -xZS -luV -mcY -xZS -luV -luV +iig +iig +iig +mqh +fEv +iig +iig +hkR +fEv +ueL +ueL +hkR +uZy +fEv +hkR +uZy +uZy aao wog wog @@ -54294,22 +54118,22 @@ uDA bsP bsP axX -ioT -qpE -qpE -bOj -gXg -ioT -qpE -owp -wSH -owG -qpE -owp -xZS -oVZ -sFL -luV +sbt +pqL +pqL +jLa +ckC +sbt +pqL +jLa +ppu +sbt +pqL +jLa +hkR +jFG +xSu +uZy aao aao wog @@ -54511,22 +54335,22 @@ mSS mij kVT dhN -mIX -neE -sXA -eTU -gXg -mIX -neE -eTU -wSH -mIX -sXA -eTU -xZS -dfD -sFL -luV +frs +iNR +ykR +beD +ckC +frs +iNR +beD +ppu +frs +ykR +beD +hkR +mge +xSu +uZy aao wog qgY @@ -54652,7 +54476,7 @@ alu gNv awO kNs -nap +tUB amj ayl ayL @@ -54728,22 +54552,22 @@ slG dWd sCt dhN -mIX -neE -neE -eTU -gXg -mIX -neE -eTU -wSH -mIX -neE -eTU -xZS -dfD -sFL -luV +frs +iNR +iNR +beD +ckC +frs +iNR +beD +ppu +frs +iNR +beD +hkR +mge +xSu +uZy aao wog wog @@ -54945,22 +54769,22 @@ gwg cla gdx dhN -eGH -pxq -sXA -eTU -gXg -mIX -neE -eTU -wSH -mIX -sXA -eTU -xZS -dfD -sFL -luV +bPe +jFi +ykR +beD +ckC +frs +iNR +beD +ppu +frs +ykR +beD +hkR +mge +xSu +uZy uVn wog wog @@ -55163,21 +54987,21 @@ uaS axX axX axX -mIX -neE -eTU -gXg -eGH -waO -dsl -wSH -mIX -neE -eTU -xZS -dfD -sFL -luV +frs +iNR +beD +ckC +bPe +lbw +eaC +ppu +frs +iNR +beD +hkR +mge +xSu +uZy dQw wog qgY @@ -55380,21 +55204,21 @@ cla btr jTk dhN -mIX -sXA -eTU -jzq -bLY -bLY -bLY -kyU -mIX -sXA -eTU -rGJ -mHQ -sFL -lJY +frs +ykR +beD +vKl +lCt +lCt +lCt +jxA +frs +ykR +beD +ueL +pTY +xSu +tcP dQw wog wog @@ -55597,21 +55421,21 @@ bqN btt uGs gmm -mIX -neE -eTU -ylp -nvf -cAx -nvf -ofU -mIX -neE -eTU -rGJ -mHQ -cGs -lJY +frs +iNR +beD +gtk +nxG +jxS +nxG +oWp +frs +iNR +beD +ueL +pTY +dyA +tcP rvS wog wog @@ -55814,21 +55638,21 @@ tTI nVq qUF dhN -mIX -sXA -eTU -rQQ -xlz -luV -eZp -gvN -mIX -sXA -eTU -xZS -dfD -cGs -luV +frs +ykR +beD +whp +guu +uZy +cNb +nuz +frs +ykR +beD +hkR +mge +dyA +uZy rvS wog wog @@ -56031,21 +55855,21 @@ tTI btt nmU dhN -mIX -neE -eTU -rAg -tWC -ocV -wcX -diW -mIX -neE -eTU -xZS -dfD -sFL -luV +frs +iNR +beD +kvs +bLE +uJj +vYf +voG +frs +iNR +beD +hkR +mge +xSu +uZy rvS wog wog @@ -56248,21 +56072,21 @@ nVq btu gHV dhN -mIX -sXA -eTU -jzq -bLY -bLY -bLY -kyU -mIX -sXA -eTU -xZS -mHQ -sFL -luV +frs +ykR +beD +vKl +lCt +lCt +lCt +jxA +frs +ykR +beD +hkR +pTY +xSu +uZy rvS wog jXX @@ -56465,21 +56289,21 @@ tzJ axX axX axX -mIX -neE -eTU -gXg -ioT -qpE -owp -wSH -mIX -neE -eTU -xZS -mHQ -sFL -luV +frs +iNR +beD +ckC +sbt +pqL +jLa +ppu +frs +iNR +beD +hkR +pTY +xSu +uZy aao aao aao @@ -56681,22 +56505,22 @@ btr tTI kVT dhN -ioT -bZW -sXA -eTU -gXg -mIX -neE -eTU -wSH -mIX -sXA -eTU -rVV -mHQ -sFL -luV +sbt +lBL +ykR +beD +ckC +frs +iNR +beD +ppu +frs +ykR +beD +iig +pTY +xSu +uZy aao aao aao @@ -56898,22 +56722,22 @@ nVq tTI sCt dhN -mIX -neE -neE -eTU -gXg -mIX -neE -eTU -wSH -mIX -neE -eTU -xZS -dfD -sFL -luV +frs +iNR +iNR +beD +ckC +frs +iNR +beD +ppu +frs +iNR +beD +hkR +mge +xSu +uZy aao aao aao @@ -57115,22 +56939,22 @@ iQC nVq vWm dhN -mIX -neE -sXA -eTU -gXg -mIX -neE -eTU -wSH -mIX -sXA -eTU -xZS -dfD -sFL -luV +frs +iNR +ykR +beD +ckC +frs +iNR +beD +ppu +frs +ykR +beD +hkR +mge +xSu +uZy aao aao aao @@ -57332,22 +57156,22 @@ eGM btu dyH axX -eGH -waO -waO -dsl -gXg -eGH -waO -dsl -wSH -eGH -waO -dsl -xZS -mPH -sFL -luV +bPe +lbw +lbw +eaC +ckC +bPe +lbw +eaC +ppu +bPe +lbw +eaC +hkR +pVi +xSu +uZy aao aao aao @@ -57549,23 +57373,23 @@ wFL axX axX axX -xZS -xZS -xZS -xZS -mcY -xZS -cXf -rGJ -njJ -cXf -xZS -xZS -luV -mcY -xZS -luV -luV +hkR +hkR +hkR +hkR +fEv +hkR +sNP +ueL +gPh +sNP +hkR +hkR +uZy +fEv +hkR +uZy +uZy aao aao aao @@ -57722,9 +57546,9 @@ bMa aof mEH aOM -aYi -xBn -nZD +fjN +aNA +sLU aPS aOM aOM @@ -57766,23 +57590,23 @@ tTI nIi gZc nIi -nvf -ksu -ksu -ksu -iYt -ksu -ksu -rRF -iYt -nvf -nvf -mPH -xxG -wOY -sFL -jzv -luV +nxG +eyR +eyR +eyR +chw +eyR +eyR +ouh +chw +nxG +nxG +pVi +fUp +wRP +xSu +wpn +uZy aao aao aao @@ -57939,9 +57763,9 @@ aof aof mEH aOM -vpx +cBj aFd -khP +fiQ aZW aOK bbk @@ -57983,23 +57807,23 @@ pMi ayZ bsP ayZ -tWC -kAI -nRZ -tWC -hJw -qlU -vGT -qlU -vGT -hJw -tWC -tWC -xZS -tWC -tET -luV -luV +bLE +iFa +snv +bLE +gFR +tvH +gML +tvH +gML +gFR +bLE +bLE +hkR +bLE +oHc +uZy +uZy aao aao aao @@ -58086,10 +57910,10 @@ dQR fsy aaB pRP -xMz -hFv -hFv -kAs +eTm +qJK +qJK +fdP oMf aWy acP @@ -58156,9 +57980,9 @@ aRd bcJ aSW aOM -aYk -dBm -pxH +wRD +mon +vDq aZX aof aof @@ -58200,22 +58024,22 @@ sDZ axX axX axX -luV -luV -luV -luV -luV -luV -luV -luV -luV -luV -luV -luV -luV -luV -luV -luV +uZy +uZy +uZy +uZy +uZy +uZy +uZy +uZy +uZy +uZy +uZy +uZy +uZy +uZy +uZy +uZy aao aao aao @@ -58303,10 +58127,10 @@ kfx fsT aaB oMf -dkY +iUW qDZ hJH -lqp +kSZ iRf aWy acP @@ -58325,8 +58149,8 @@ afT ikq rEe aer -bZm -mRo +vDJ +gvs pMc aer aoi @@ -58520,10 +58344,10 @@ kfx aqL nZB oMf -dkY +iUW qDZ qDZ -cnG +nxK iRf aWy acP @@ -58543,7 +58367,7 @@ lYc akm fyC lAV -fcn +fcO ahj acp aer @@ -58737,10 +58561,10 @@ kfx aqL nZB pRP -iXs -scK -scK -oUY +vsS +dUN +dUN +ljE oMf wmN acP @@ -59299,7 +59123,7 @@ vpY wIE bvH ihW -kKw +nEt kdr kdr kdr @@ -59377,10 +59201,10 @@ aao aao aao aao -lwR -lwR -lwR -lwR +mJx +mJx +mJx +mJx aao aao aao @@ -59598,7 +59422,7 @@ aao aao aao uut -eCM +xQa ylx aao aao @@ -59730,7 +59554,7 @@ jwV vpY xnm vpY -ctq +xqk bvQ eAU tUe @@ -59815,7 +59639,7 @@ aao aao cUN fkD -eCM +xQa rvB aao tjX @@ -60028,11 +59852,11 @@ aao aao aao aao -fBJ -mzC +dBx +qYf rSE lSA -eCM +xQa rvB aao xqW @@ -60247,8 +60071,8 @@ aao aao aao aao -fBJ -hos +dBx +dYb btZ tHH aao @@ -62334,7 +62158,7 @@ bjw vpY jBq vpY -lPQ +mZY vcd bvQ kdr @@ -67013,7 +66837,7 @@ opn oEz poL kGK -vjN +wnl ako vjW atE @@ -70267,7 +70091,7 @@ akL pwa cIC qYH -nME +jPK bZH apU qFq @@ -70483,7 +70307,7 @@ aao akL pqj apn -vvv +gpE tcI oGr fik @@ -80710,11 +80534,11 @@ aIQ wko anI aMr -wjW +xBY ePk -ajn +ane aMr -wjW +xBY xKb anI aao @@ -80926,13 +80750,13 @@ anI aIR aJL anI -tSI -gan -tSI -xfN -jwj -pTA -tSI +eCF +ilG +eCF +kkJ +cOH +kID +eCF anI aao aao @@ -81143,13 +80967,13 @@ anI aIL aJM anI -hZc -jKI -hZc -evA -lPL -ooi -hZc +keU +iFT +keU +oWE +mSC +kMk +keU anI aao aao @@ -81361,11 +81185,11 @@ aIK wko anI aMr -vgZ +kSB aMr -uPK +lKH ePk -wjW +xBY uUV anI aao diff --git a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm index 8eefcb16466a..b86d7b383073 100644 --- a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm +++ b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm @@ -128,9 +128,7 @@ /turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) "eg" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/almayer/west, /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) @@ -159,7 +157,7 @@ /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) "he" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /obj/structure/flora/jungle/planttop1{ pixel_y = 10 }, @@ -198,9 +196,7 @@ /turf/open/floor/darkredcorners2/west, /area/bigredv2/outside/admin_building) "jm" = ( -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) "jq" = ( @@ -249,7 +245,7 @@ /area/bigredv2/outside/admin_building) "mi" = ( /obj/effect/spawner/random/toolbox, -/obj/structure/platform_decoration, +/obj/structure/platform_decoration/metal/almayer, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) "mr" = ( @@ -310,9 +306,7 @@ /area/bigredv2/outside/admin_building) "tz" = ( /obj/effect/landmark/survivor_spawner, -/obj/structure/platform_decoration{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/almayer/north, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) "uH" = ( @@ -328,9 +322,7 @@ /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) "xe" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) "xQ" = ( @@ -356,9 +348,7 @@ /turf/open/floor, /area/bigredv2/outside/admin_building) "AF" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) "Br" = ( @@ -394,9 +384,7 @@ /turf/open/floor/wood, /area/bigredv2/outside/admin_building) "ER" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) "Gc" = ( diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm index 59f0a59d6ca5..d5531341ec7c 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -1508,7 +1508,7 @@ /area/corsat/gamma/sigmaremote/teleporter) "agd" = ( /obj/structure/window/reinforced, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) "age" = ( @@ -2860,14 +2860,6 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"als" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/tan/north, -/area/corsat/gamma/residential/west) "alt" = ( /turf/open/floor/corsat/redcorner, /area/corsat/gamma/residential) @@ -2941,9 +2933,7 @@ /turf/open/floor/corsat/brown/northwest, /area/corsat/gamma/cargo) "alG" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, @@ -2963,10 +2953,7 @@ /turf/open/floor/plating, /area/corsat/gamma/rnr/bar) "alL" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/east, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, @@ -3068,9 +3055,7 @@ /turf/open/floor/corsat/yellow/east, /area/corsat/gamma/residential/maint) "amd" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/corsat/white/west, /area/corsat/sigma/dorms) "ame" = ( @@ -3082,10 +3067,7 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/east) "amf" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/white/east, /area/corsat/sigma/dorms) "amg" = ( @@ -3359,10 +3341,7 @@ /turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) "and" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/corsat/white/north, /area/corsat/sigma/dorms) @@ -3378,10 +3357,7 @@ /turf/closed/wall/biodome, /area/corsat/gamma/cargo/disposal) "anh" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/corsat/white/north, /area/corsat/sigma/dorms) "ani" = ( @@ -3403,18 +3379,14 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) "anl" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/east{ + density = 0 }, /turf/open/floor/corsat/whitecorner/north, /area/corsat/sigma/dorms) "anm" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/west{ + density = 0 }, /turf/open/floor/corsat/whitecorner/east, /area/corsat/sigma/dorms) @@ -3422,10 +3394,7 @@ /turf/closed/wall/biodome, /area/corsat/gamma/cargo/lobby) "ano" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/corsat/white/northeast, /area/corsat/sigma/dorms) @@ -3625,9 +3594,7 @@ /turf/closed/wall/biodome, /area/corsat/omega/complex) "aod" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/corsat/white/west, /area/corsat/gamma/hallwaysouth) "aoe" = ( @@ -4409,10 +4376,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) "arv" = ( @@ -5787,10 +5751,9 @@ /turf/open/floor/corsat/red/east, /area/corsat/gamma/hangar/checkpoint) "axc" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/vending/coffee{ + layer = 3 }, /turf/open/floor/corsat/white/northwest, /area/corsat/gamma/hallwaysouth) @@ -8293,10 +8256,7 @@ "aGd" = ( /obj/structure/surface/table, /obj/item/folder/yellow, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/platform/metal/almayer/east, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -8312,10 +8272,8 @@ /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/control) "aGg" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) @@ -9423,13 +9381,8 @@ /turf/open/floor/plating, /area/corsat/theta/airlock/control) "aKb" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "aKc" = ( @@ -10599,10 +10552,8 @@ /area/corsat/inaccessible) "aOR" = ( /obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/north{ + density = 0 }, /turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) @@ -10611,10 +10562,8 @@ icon_state = "processor"; name = "Processor Unit" }, -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/east{ + density = 0 }, /turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) @@ -12711,10 +12660,7 @@ /area/corsat/omega/cargo) "aWj" = ( /obj/structure/surface/table/woodentable, -/obj/structure/platform{ - dir = 4; - layer = 2.8 - }, +/obj/structure/platform/metal/almayer/east, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) @@ -12732,10 +12678,7 @@ "aWl" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/crap_item, -/obj/structure/platform{ - dir = 8; - layer = 2.8 - }, +/obj/structure/platform/metal/almayer/west, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) @@ -13550,9 +13493,7 @@ /area/corsat/omega/hangar/office) "aZh" = ( /obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aZi" = ( @@ -13582,10 +13523,8 @@ /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) "aZn" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/west{ + density = 0 }, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) @@ -13618,10 +13557,7 @@ /turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome/scrapyard) "aZt" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, /obj/structure/bed/chair/office/light, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) @@ -13633,10 +13569,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, /obj/structure/bed/chair/office/light, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) @@ -13719,10 +13652,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, /obj/structure/bed/chair/office/light, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) @@ -13730,10 +13660,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, /obj/structure/bed/chair/office/light, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) @@ -13755,10 +13682,8 @@ /area/corsat/omega/offices) "aZK" = ( /obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/east{ + density = 0 }, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) @@ -13770,10 +13695,7 @@ /area/corsat/sigma/south/complex) "aZM" = ( /obj/structure/stairs, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "aZN" = ( @@ -13801,10 +13723,8 @@ /turf/open/floor/corsat/squares, /area/corsat/sigma/southeast/datamaint) "aZT" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/east{ + density = 0 }, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) @@ -13848,10 +13768,7 @@ /turf/open/floor/corsat/red/east, /area/corsat/omega/control) "bab" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "bac" = ( @@ -13919,10 +13836,7 @@ /area/corsat/omega/hangar/security) "bak" = ( /obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "bal" = ( @@ -22148,9 +22062,7 @@ /turf/open/floor/corsat/plate, /area/corsat/gamma/rnr) "bHl" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/corsat/white/north, /area/corsat/gamma/residential/east) "bHy" = ( @@ -24439,20 +24351,14 @@ /area/corsat/sigma/hangar) "bSZ" = ( /obj/structure/bed/chair, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) "bTb" = ( /obj/structure/bed/chair{ dir = 1 }, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) "bTh" = ( @@ -26666,10 +26572,8 @@ /turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) "cJU" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/east{ + density = 0 }, /turf/open/floor/corsat/whitecorner/north, /area/corsat/sigma/south) @@ -26942,10 +26846,7 @@ /area/corsat/sigma/southeast/datalab) "dbn" = ( /obj/structure/surface/table, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/platform/metal/almayer/east, /obj/item/paper, /obj/item/tool/pen/blue, /turf/open/floor/corsat/tan/north, @@ -27321,27 +27222,14 @@ /turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/core) "duC" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/corsat/white/northwest, /area/corsat/sigma/south) "duW" = ( /obj/structure/machinery/blackbox_recorder, /turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) -"duY" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/corsat/white/west, -/area/corsat/gamma/hallwaysouth) "dvn" = ( /turf/open/floor/corsat/whitecorner, /area/corsat/gamma/hallwaysouth) @@ -27350,7 +27238,7 @@ dir = 1 }, /obj/structure/window/reinforced, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) "dvx" = ( @@ -28319,14 +28207,8 @@ /turf/open/floor/corsat/purplewhite/west, /area/corsat/omega/complex) "erP" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/corsat/white/northwest, /area/corsat/gamma/residential/east) @@ -28673,9 +28555,8 @@ /turf/open/floor/almayer/research/containment/corner/north, /area/corsat/sigma/south/complex) "eNI" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer{ + density = 0 }, /turf/open/floor/corsat/whitecorner, /area/corsat/sigma/south) @@ -30597,10 +30478,7 @@ /turf/open/floor/corsat/purple, /area/corsat/omega/complex) "gNt" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) "gOk" = ( @@ -30648,13 +30526,6 @@ }, /turf/open/floor/corsat/darkgreencorner/east, /area/corsat/gamma/foyer) -"gPo" = ( -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/gamma/hallwaysouth) "gPC" = ( /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/corsat/darkgreen, @@ -30814,10 +30685,7 @@ /area/corsat/sigma/south/robotics) "gWS" = ( /obj/structure/surface/table, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/platform/metal/almayer/east, /obj/structure/machinery/computer3/laptop/secure_data, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) @@ -30879,9 +30747,7 @@ /turf/open/floor/corsat/tcomms/southwest, /area/corsat/gamma/sigmaremote) "gZc" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) "gZj" = ( @@ -30891,13 +30757,6 @@ /obj/item/tool/pen/blue, /turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/southeast/dataoffice) -"gZs" = ( -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat/white/east, -/area/corsat/sigma/south) "gZw" = ( /obj/effect/landmark/corpsespawner/chef, /obj/effect/decal/cleanable/blood/splatter, @@ -30998,9 +30857,7 @@ /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/cargo) "hei" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /obj/item/storage/toolbox/electrical, /turf/open/floor/corsat/retrosquareslight, /area/corsat/theta/biodome/complex) @@ -31030,10 +30887,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/obj/structure/platform{ - dir = 8; - layer = 2.8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) "hgB" = ( @@ -31237,10 +31091,7 @@ "hsJ" = ( /obj/structure/surface/table, /obj/item/paper, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/platform/metal/almayer/east, /obj/item/tool/pen/blue, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) @@ -31378,10 +31229,8 @@ /turf/open/floor/corsat/redcorner, /area/corsat/omega/security) "hwV" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/east{ + density = 0 }, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) @@ -31935,14 +31784,8 @@ /turf/open/floor/corsat/officesquares, /area/corsat/sigma/hangar/office) "hTr" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/white/northeast, /area/corsat/gamma/hallwaysouth) "hTI" = ( @@ -32770,9 +32613,8 @@ /turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/toxins) "iPn" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer{ + density = 0 }, /turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) @@ -32835,10 +32677,8 @@ /turf/open/floor/plating, /area/corsat/sigma/hangar/arrivals) "iTt" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/north{ + density = 0 }, /turf/open/floor/corsat/whitecorner/west, /area/corsat/gamma/hallwaysouth) @@ -32914,10 +32754,7 @@ /turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/engineering/core) "iZu" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/corsat/white/north, /area/corsat/gamma/hallwaysouth) @@ -32944,9 +32781,8 @@ /turf/open/floor/corsat/whitetan/north, /area/corsat/sigma/dorms) "jai" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer{ + density = 0 }, /turf/open/floor/corsat/whitecorner, /area/corsat/gamma/hallwaysouth) @@ -33058,9 +32894,7 @@ /turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/complex) "jhz" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/complex) "jhL" = ( @@ -33463,10 +33297,8 @@ /turf/open/floor/corsat/whitetan/southwest, /area/corsat/sigma/dorms) "jGd" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/north{ + density = 0 }, /turf/open/floor/corsat/white/west, /area/corsat/gamma/hallwaysouth) @@ -33562,10 +33394,7 @@ /area/corsat/gamma/biodome) "jLT" = ( /obj/structure/bed/chair, -/obj/structure/platform{ - dir = 8; - layer = 2.8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) "jLU" = ( @@ -33788,9 +33617,7 @@ /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "kbS" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /obj/structure/machinery/mech_bay_recharge_port{ pixel_x = 8 }, @@ -34061,9 +33888,7 @@ /turf/open/floor/corsat/whitetan/northeast, /area/corsat/gamma/residential/west) "krn" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/shuttle/escapepod/floor1, /area/corsat/theta/biodome/complex) "krK" = ( @@ -34404,10 +34229,8 @@ /turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) "kMZ" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/east{ + density = 0 }, /turf/open/floor/corsat/whitecorner/north, /area/corsat/gamma/residential/east) @@ -34722,10 +34545,8 @@ /obj/structure/sign/safety/laser{ pixel_x = 32 }, -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/east{ + density = 0 }, /turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) @@ -34785,10 +34606,8 @@ /turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/datalab) "lgt" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/east{ + density = 0 }, /turf/open/floor/corsat/whitecorner/north, /area/corsat/gamma/hallwaysouth) @@ -34908,9 +34727,7 @@ /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) "llM" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/corsat/white/north, /area/corsat/sigma/south) "lmx" = ( @@ -35165,10 +34982,9 @@ /turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) "lBx" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/vending/snack{ + layer = 3 }, /turf/open/floor/corsat/white/north, /area/corsat/gamma/hallwaysouth) @@ -35347,12 +35163,8 @@ /turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) "lIY" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/corsat/white/north, /area/corsat/sigma/south) "lJj" = ( @@ -35417,10 +35229,7 @@ /turf/open/floor/corsat/plate, /area/corsat/theta/airlock/east) "lOM" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) "lON" = ( @@ -35595,7 +35404,7 @@ /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) "lVW" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/gm/river/desert/shallow/pool, /area/corsat/gamma/residential/showers) "lWf" = ( @@ -35655,9 +35464,7 @@ /area/corsat/omega/complex) "lYt" = ( /obj/structure/sign/safety/high_voltage, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /obj/item/stack/sheet/metal{ pixel_x = 1 }, @@ -35862,10 +35669,8 @@ /area/corsat/sigma/checkpoint) "mhq" = ( /obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/west{ + density = 0 }, /turf/open/floor/corsat/whitecorner/east, /area/corsat/sigma/south) @@ -36116,9 +35921,8 @@ /turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) "mxa" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer{ + density = 0 }, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) @@ -36462,10 +36266,8 @@ /turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/sigmaremote) "mQU" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/west{ + density = 0 }, /turf/open/floor/corsat/whitecorner/east, /area/corsat/gamma/residential/east) @@ -36632,14 +36434,8 @@ /turf/open/floor/corsat/marked, /area/corsat/sigma/south/complex) "mZf" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/corsat/white/northeast, /area/corsat/gamma/residential/east) @@ -37068,10 +36864,7 @@ /turf/open/floor/corsat/yellowcorner/west, /area/corsat/omega/control) "nvA" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/east, /obj/structure/stairs, /turf/open/floor/corsat/white/northeast, /area/corsat/gamma/residential/east) @@ -37186,14 +36979,8 @@ /turf/open/floor/corsat/squareswood/north, /area/corsat/gamma/biodome/complex) "nBi" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/white/northeast, /area/corsat/sigma/south) "nBk" = ( @@ -37956,9 +37743,7 @@ /turf/open/auto_turf/snow/layer1, /area/corsat/gamma/biodome) "ost" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) "osY" = ( @@ -38507,10 +38292,7 @@ /turf/open/floor/corsat/whitetan/southwest, /area/corsat/gamma/residential/west) "oYP" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) "oYY" = ( @@ -38932,10 +38714,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/obj/structure/platform{ - dir = 8; - layer = 2.8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) "pya" = ( @@ -39211,11 +38990,8 @@ /turf/open/mars_cave/mars_cave_6, /area/corsat/sigma/biodome) "pRX" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/white/southeast, /area/corsat/sigma/south) "pSb" = ( @@ -39871,10 +39647,7 @@ "qww" = ( /obj/structure/surface/table, /obj/item/folder, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "qwM" = ( @@ -40287,10 +40060,8 @@ /area/corsat/gamma/sigmaremote) "qTd" = ( /obj/structure/reagent_dispensers/water_cooler, -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/west{ + density = 0 }, /turf/open/floor/corsat/whitecorner/east, /area/corsat/gamma/hallwaysouth) @@ -40319,9 +40090,7 @@ /turf/open/floor/corsat/yellow, /area/corsat/gamma/engineering/atmos) "qVd" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/shuttle/escapepod/floor5, /area/corsat/theta/biodome/complex) "qVe" = ( @@ -40348,10 +40117,8 @@ /turf/open/floor/corsat/plate, /area/corsat/omega/biodome) "qVF" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/north{ + density = 0 }, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) @@ -40785,10 +40552,8 @@ /turf/open/gm/dirt, /area/corsat/theta/biodome) "rws" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/north{ + density = 0 }, /turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) @@ -41149,11 +40914,8 @@ /turf/open/floor/corsat/red/southeast, /area/corsat/omega/hangar/security) "rRm" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/obj/structure/platform, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, /turf/open/floor/corsat/white/southwest, /area/corsat/gamma/hallwaysouth) "rRR" = ( @@ -41193,10 +40955,7 @@ /area/corsat/sigma/hangar/monorail) "rTf" = ( /obj/structure/surface/table, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) "rTj" = ( @@ -41669,9 +41428,8 @@ /turf/open/floor/corsat/darkgreen/north, /area/corsat/sigma/hangar) "snP" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer{ + density = 0 }, /turf/open/floor/corsat/white/east, /area/corsat/gamma/hallwaysouth) @@ -42136,9 +41894,7 @@ /area/corsat/omega/hangar/security) "sOq" = ( /obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/corsat/white/north, /area/corsat/sigma/south) "sOt" = ( @@ -42178,10 +41934,7 @@ /turf/open/floor/corsat/officesquares, /area/corsat/omega/offices) "sQI" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/west, /obj/structure/stairs, /turf/open/floor/corsat/white/northwest, /area/corsat/gamma/residential/east) @@ -42534,10 +42287,7 @@ /turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/control) "tlP" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/white/east, /area/corsat/sigma/south) "tlX" = ( @@ -43712,14 +43462,8 @@ /turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/monorail) "uzS" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/corsat/white/northwest, /area/corsat/gamma/hallwaysouth) "uzW" = ( @@ -44144,10 +43888,7 @@ layer = 2; name = "coolant feed" }, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) "uUW" = ( @@ -44938,9 +44679,7 @@ /turf/open/floor/corsat/bluegrey/northeast, /area/corsat/omega/offices) "vMA" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/corsat/white/north, /area/corsat/gamma/residential) "vMI" = ( @@ -45116,10 +44855,8 @@ /turf/open/floor/corsat/white, /area/corsat/gamma/residential/researcher) "vXy" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/west{ + density = 0 }, /turf/open/floor/corsat/whitecorner/east, /area/corsat/sigma/south) @@ -45725,10 +45462,8 @@ /turf/open/floor/corsat/yellow/east, /area/corsat/sigma/airlock/control) "wDw" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/east{ + density = 0 }, /turf/open/floor/corsat/whitecorner/north, /area/corsat/gamma/residential) @@ -45939,9 +45674,7 @@ /turf/open/floor/corsat/marked, /area/corsat/omega/cargo) "wMg" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /obj/item/stack/sheet/metal{ pixel_x = 3 }, @@ -46154,10 +45887,8 @@ /turf/open/floor/corsat/whitecorner, /area/corsat/gamma/residential/east) "wZC" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/west{ + density = 0 }, /turf/open/floor/corsat/whitecorner/east, /area/corsat/gamma/residential) @@ -46172,18 +45903,15 @@ /turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) "xaQ" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/vending/coffee{ + layer = 3 }, /turf/open/floor/corsat/white/northeast, /area/corsat/gamma/hallwaysouth) "xbu" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/west{ + density = 0 }, /turf/open/floor/corsat/whitecorner/east, /area/corsat/gamma/hallwaysouth) @@ -46308,10 +46036,7 @@ /area/corsat/gamma/medbay/morgue) "xld" = ( /obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/white/east, /area/corsat/sigma/south) "xlg" = ( @@ -46872,11 +46597,8 @@ /turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hangar/arrivals) "xRb" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/white/southeast, /area/corsat/gamma/hallwaysouth) "xRq" = ( @@ -47020,17 +46742,12 @@ /turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/south/robotics) "ybv" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/corsat/white/east, /area/corsat/gamma/hallwaysouth) "ybJ" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/obj/structure/platform_decoration/metal/almayer/west{ + density = 0 }, /turf/open/floor/corsat/plate, /area/corsat/sigma/north) @@ -52917,7 +52634,7 @@ gvl adJ pPp ulb -als +aZM aZn aZM aZn @@ -67934,7 +67651,7 @@ anw anw anw jGd -duY +aod xFf xFf xFf @@ -67948,7 +67665,7 @@ uzS xFf xFf xFf -duY +aod anw aqs aqs @@ -68184,11 +67901,11 @@ aqH aqH aqH iTt -duY -duY -duY -duY -duY +aod +aod +aod +aod +aod lgt aqH aqH @@ -76999,7 +76716,7 @@ anw anw anw snP -gPo +ybv lgx lgx lgx @@ -98133,11 +97850,11 @@ lIq ahu ahu eNI -gZs -gZs -gZs +tlP +tlP +tlP xld -gZs +tlP vXy ahu ahu @@ -98372,8 +98089,8 @@ okE arJ arJ arJ -gZs -gZs +tlP +tlP dCP dCP dCP diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index 5187cd33c981..038bd0dd01c3 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -10,16 +10,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) -"aac" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/landmark/nightmare{ - insert_tag = "green-east-bridge" - }, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) "aad" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall, @@ -235,13 +225,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_medical) -"aaZ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) "aba" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt/desert_transition_edge1/east, @@ -274,15 +257,6 @@ /obj/item/trash/cigbutt/bcigbutt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"abg" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) "abh" = ( /obj/item/trash/USCMtray, /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, @@ -368,19 +342,6 @@ name = "reinforced metal wall" }, /area/desert_dam/exterior/river/riverside_east) -"abB" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/valley/valley_labs) -"abC" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_central_north) "abD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -395,13 +356,6 @@ /obj/item/trash/boonie, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_central_north) -"abG" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_central_north) "abH" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/queen_spawn, @@ -438,12 +392,6 @@ /obj/structure/surface/rack, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"abP" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/valley/valley_labs) "abQ" = ( /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, @@ -486,15 +434,6 @@ /obj/structure/largecrate/random, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"abY" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/closed/wall/r_wall/bunker/floodgate, -/area/desert_dam/exterior/valley/valley_labs) "abZ" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, @@ -531,13 +470,6 @@ "ach" = ( /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/valley/valley_labs) -"aci" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/trash/chips, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) "acj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 @@ -553,13 +485,6 @@ /obj/item/trash/eat, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"aco" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/largecrate/random, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) "acp" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_4" @@ -586,12 +511,6 @@ icon_state = "pwall" }, /area/desert_dam/exterior/rock) -"acv" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/wall/r_wall/bunker/floodgate, -/area/desert_dam/exterior/valley/valley_labs) "acw" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) @@ -718,12 +637,6 @@ /obj/structure/largecrate/random/secure, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"acX" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/valley/valley_labs) "acY" = ( /turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/east_caves) @@ -866,101 +779,36 @@ /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/southeast, -/area/desert_dam/exterior/valley/valley_labs) "adF" = ( /turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/dam_interior/north_tunnel) -"adG" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_east) -"adH" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) "adI" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"adJ" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/river/riverside_east) "adK" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, /turf/open/floor/plating/warnplate/north, /area/desert_dam/exterior/valley/valley_crashsite) -"adL" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) -"adM" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/desert_dam/exterior/river/riverside_east) -"adN" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert, -/area/desert_dam/exterior/river/riverside_east) "adO" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_labs) -"adP" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_east) -"adQ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_east) "adR" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_east) -"adS" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_east) "adU" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river/riverside_east) -"adV" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/valley/valley_labs) -"adW" = ( -/obj/structure/platform, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/valley/valley_labs) "adX" = ( /obj/effect/blocker/toxic_water, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_east) -"adY" = ( -/obj/structure/platform, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/valley/valley_labs) "adZ" = ( /obj/structure/flora/bush/desert/cactus/multiple{ icon_state = "cacti_10" @@ -1026,13 +874,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_labs) -"ael" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_east) "aem" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -1130,35 +971,6 @@ /obj/effect/blocker/toxic_water, /turf/open/desert/desert_shore/shore_edge1/west, /area/desert_dam/exterior/river/riverside_east) -"aeG" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"aeH" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"aeI" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_east) -"aeJ" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_east) -"aeK" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_east) "aeL" = ( /obj/structure/machinery/light{ dir = 1 @@ -1169,11 +981,6 @@ /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_labs) -"aeN" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_east) "aeO" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/tile, @@ -1336,14 +1143,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/control_room) -"aft" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) "afu" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/rock, @@ -1374,21 +1173,9 @@ "afB" = ( /turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"afC" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/rock, -/area/desert_dam/interior/dam_interior/south_tunnel) "afD" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/western_dam_cave) -"afE" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/rock, -/area/desert_dam/interior/dam_interior/south_tunnel) "afF" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/tile, @@ -1408,16 +1195,6 @@ "afK" = ( /turf/open/floor/plating/warnplate/west, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"afL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) "afM" = ( /turf/open/floor/filtrationside/east, /area/desert_dam/exterior/valley/valley_mining) @@ -1541,13 +1318,6 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"agl" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) "agm" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/rock, @@ -1584,16 +1354,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_northwest) -"ags" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) "agt" = ( /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/valley/valley_labs) @@ -1650,10 +1410,6 @@ "agD" = ( /turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_crashsite) -"agE" = ( -/obj/structure/platform, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/valley/valley_labs) "agF" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -1675,14 +1431,6 @@ "agI" = ( /turf/open/floor/plating/warnplate/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"agJ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) "agK" = ( /turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_crashsite) @@ -1853,12 +1601,6 @@ "aho" = ( /turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/dam_interior/western_dam_cave) -"ahp" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition/west, -/area/desert_dam/interior/dam_interior/west_tunnel) "ahq" = ( /obj/structure/desertdam/decals/road_stop, /turf/open/asphalt, @@ -1885,14 +1627,6 @@ "ahu" = ( /turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_northwest) -"ahv" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) "ahw" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/barricade/wooden{ @@ -2134,12 +1868,6 @@ "ait" = ( /turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_northwest) -"aiu" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) "aiv" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 9 @@ -2155,13 +1883,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) -"aix" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) "aiy" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 @@ -2172,44 +1893,13 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"aiA" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) "aiB" = ( /obj/structure/machinery/light, /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"aiC" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) -"aiD" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_central_north) "aiE" = ( /turf/open/floor/prison/darkpurple2/southeast, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"aiF" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_central_north) "aiG" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -2447,21 +2137,6 @@ }, /turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"ajx" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"ajy" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "ajz" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_workshop) @@ -2533,15 +2208,6 @@ "ajM" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_labs) -"ajN" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "ajO" = ( /turf/open/floor/prison/whitepurple/west, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) @@ -2722,12 +2388,6 @@ }, /turf/open/floor/dark2, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"akx" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "aky" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_northwest) @@ -2739,18 +2399,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"akB" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"akC" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "akD" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -2813,39 +2461,10 @@ "akQ" = ( /turf/open/floor/prison/darkpurple2/northwest, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"akR" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"akS" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) -"akT" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) "akU" = ( /obj/structure/prop/dam/truck/cargo, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"akV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "akW" = ( /turf/open/jungle/impenetrable, /area/desert_dam/interior/lab_northeast/east_lab_containment) @@ -2910,12 +2529,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"alj" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "alk" = ( /turf/open/mars/mars_dirt_12, /area/desert_dam/interior/lab_northeast/east_lab_containment) @@ -2939,16 +2552,6 @@ "alp" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_northwest) -"alr" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) "als" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean2, @@ -3051,16 +2654,6 @@ /obj/structure/window/framed/chigusa, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alQ" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/north_valley_dam) "alR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Excavation" @@ -3122,53 +2715,15 @@ /obj/item/alienjar, /turf/open/floor/prison/darkpurple2/east, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"amd" = ( -/obj/structure/platform, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "ame" = ( /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_northwest) -"amf" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"amg" = ( -/obj/structure/platform, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) "amh" = ( /turf/open/floor/coagulation/icon6_8_2, /area/desert_dam/exterior/valley/valley_mining) "ami" = ( /turf/open/floor/coagulation/icon7_8_2, /area/desert_dam/exterior/valley/valley_mining) -"amj" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"amk" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"aml" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "amm" = ( /obj/structure/machinery/light{ dir = 4 @@ -3220,20 +2775,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"amu" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) -"amv" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) "amw" = ( /turf/closed/wall/r_wall/bunker/floodgate, /area/desert_dam/exterior/river/riverside_central_north) @@ -3323,26 +2864,10 @@ "amP" = ( /turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_northwest) -"amQ" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_8" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_valley) "amR" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"amS" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) "amT" = ( /turf/open/floor/coagulation/icon0_5, /area/desert_dam/exterior/valley/valley_mining) @@ -3386,12 +2911,6 @@ "anc" = ( /turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/interior/dam_interior/west_tunnel) -"and" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) "ane" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 8 @@ -4097,15 +3616,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"aqm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) "aqn" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, @@ -4146,13 +3656,6 @@ /obj/structure/filingcabinet, /turf/open/floor/prison/darkred2/north, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqw" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_medical) "aqx" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ @@ -4185,13 +3688,6 @@ /obj/structure/closet/secure_closet/security, /turf/open/floor/prison/darkred2/northeast, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqE" = ( -/obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) "aqF" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -4322,12 +3818,6 @@ }, /turf/open/floor/prison/whitepurple/northeast, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ard" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) "are" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -4580,13 +4070,6 @@ /obj/structure/fence, /turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_telecoms) -"asl" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/valley/valley_labs) "asm" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/guestpass, @@ -4645,10 +4128,6 @@ "asx" = ( /turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"asy" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) "asz" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -4750,13 +4229,6 @@ /obj/structure/machinery/computer/atmos_alert, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/floodgate_control) -"asT" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) "asW" = ( /turf/open/floor/darkyellowcorners2/east, /area/desert_dam/building/substation/northeast) @@ -4770,16 +4242,6 @@ }, /turf/open/floor/darkyellow2/northeast, /area/desert_dam/building/substation/northeast) -"asZ" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) "ata" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/eastleft{ @@ -4805,15 +4267,6 @@ }, /turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/east_caves) -"ate" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) "atf" = ( /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, @@ -4944,24 +4397,6 @@ }, /turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) -"atB" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"atC" = ( -/obj/structure/filtration/machine_96x96/distribution, -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/valley/valley_mining) "atD" = ( /obj/effect/decal/sand_overlay/sand2/corner2, /obj/structure/machinery/sentry_holder/colony{ @@ -5058,19 +4493,6 @@ "atV" = ( /turf/open/floor/vault2/northeast, /area/desert_dam/building/substation/northeast) -"atW" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"atX" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) "atY" = ( /obj/structure/surface/table, /obj/item/paper_bin, @@ -5172,15 +4594,6 @@ /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/west_tunnel) -"auv" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_medical) "auw" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/prison/darkpurple2/northeast, @@ -5291,15 +4704,6 @@ hull = 1 }, /area/shuttle/trijent_shuttle/engi) -"auX" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_medical) "auY" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -5530,13 +4934,6 @@ }, /turf/open/desert/rock/deep/transition/east, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"avT" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) "avU" = ( /turf/open/floor/darkyellow2, /area/desert_dam/building/substation/northeast) @@ -5612,20 +5009,6 @@ "awl" = ( /turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/dam_interior/workshop) -"awm" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"awn" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_mining) "awo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, @@ -5730,10 +5113,6 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/prison/darkpurple2, /area/desert_dam/interior/lab_northeast/east_lab_RND) -"awK" = ( -/obj/structure/platform, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/valley/valley_labs) "awL" = ( /obj/effect/decal/sand_overlay/sand2, /turf/open/floor/plating, @@ -5837,12 +5216,6 @@ }, /turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_labs) "axj" = ( /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/valley/valley_crashsite) @@ -5853,14 +5226,6 @@ "axl" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axm" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/valley/valley_labs) -"axn" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/valley/valley_labs) "axo" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" @@ -5977,10 +5342,6 @@ }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axJ" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/valley/valley_labs) "axK" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -5996,10 +5357,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axO" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_corner/east, -/area/desert_dam/exterior/valley/valley_labs) "axP" = ( /turf/open/desert/rock/deep/transition/west, /area/desert_dam/exterior/valley/valley_wilderness) @@ -6252,10 +5609,6 @@ "ayZ" = ( /turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"aza" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_labs) "azb" = ( /turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/dam_interior/western_dam_cave) @@ -6396,15 +5749,6 @@ }, /turf/open/floor/prison/green/east, /area/desert_dam/interior/dam_interior/atmos_storage) -"azK" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "azM" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 4 @@ -6428,10 +5772,6 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"azQ" = ( -/obj/structure/platform, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/valley/valley_labs) "azR" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 4 @@ -6445,12 +5785,6 @@ "azT" = ( /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"azU" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "azV" = ( /obj/structure/flora/bush/desert, /turf/open/desert/dirt, @@ -6521,12 +5855,6 @@ "aAl" = ( /turf/open/desert/excavation/component8/southeast, /area/desert_dam/exterior/valley/valley_crashsite) -"aAm" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "aAn" = ( /obj/effect/decal/sand_overlay/sand2/corner2, /turf/open/asphalt/cement, @@ -6598,12 +5926,6 @@ }, /turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) -"aAB" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/valley/valley_labs) "aAC" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -6619,21 +5941,6 @@ }, /turf/open/asphalt/cement/cement15, /area/desert_dam/exterior/valley/valley_wilderness) -"aAE" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"aAF" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/excavation/component8/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) "aAG" = ( /turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/interior/caves/central_caves) @@ -6921,22 +6228,12 @@ "aBL" = ( /turf/closed/wall/mineral/sandstone/runed, /area/desert_dam/interior/caves/temple) -"aBO" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/interior/caves/temple) "aBQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aBR" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/desert/desert_shore/shore_corner1/west, -/area/desert_dam/interior/caves/temple) "aBS" = ( /turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) @@ -6984,12 +6281,6 @@ "aCc" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/interior/dam_interior/south_tunnel) -"aCd" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_corner1/north, -/area/desert_dam/exterior/valley/valley_labs) "aCe" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -7489,13 +6780,6 @@ /obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_crashsite) -"aDZ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "aEa" = ( /turf/closed/wall, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) @@ -7519,10 +6803,6 @@ }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"aEf" = ( -/obj/structure/platform, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "aEg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7532,33 +6812,16 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"aEh" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "aEi" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"aEj" = ( -/obj/structure/platform_decoration, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "aEk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/central_tunnel) -"aEl" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "aEm" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 @@ -7608,24 +6871,6 @@ }, /turf/open/floor/prison/sterile_white/west, /area/desert_dam/exterior/valley/valley_medical) -"aEv" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEw" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "aEx" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/tile, @@ -7729,16 +6974,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) -"aEN" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) "aEO" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal5" @@ -8506,13 +7741,6 @@ /obj/item/tool/shovel, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) -"aHK" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "aHL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8520,13 +7748,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"aHM" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "aHN" = ( /obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, @@ -8583,12 +7804,6 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHZ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "aIa" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -8628,22 +7843,9 @@ }, /turf/open/floor/whitegreen/east, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIh" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) "aIi" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aIj" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) "aIk" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/desert/dirt, @@ -8703,28 +7905,10 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) -"aIB" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_crashsite) "aIC" = ( /obj/effect/landmark/monkey_spawn, /turf/open/desert/excavation/component1/northeast, /area/desert_dam/exterior/valley/valley_crashsite) -"aID" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_crashsite) "aIE" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 @@ -8772,52 +7956,22 @@ "aIO" = ( /turf/open/floor/whitegreencorner/west, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIP" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) "aIQ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) -"aIR" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) "aIS" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) -"aIT" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) "aIU" = ( /turf/open/desert/excavation/component2, /area/desert_dam/exterior/valley/valley_crashsite) "aIV" = ( /turf/open/desert/excavation/component2/north, /area/desert_dam/exterior/valley/valley_crashsite) -"aIW" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_crashsite) "aIX" = ( /turf/open/desert/excavation/component2/east, /area/desert_dam/exterior/valley/valley_crashsite) @@ -8917,16 +8071,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) -"aJz" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) "aJA" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_4" @@ -8974,18 +8118,6 @@ }, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) -"aJN" = ( -/obj/structure/platform, -/turf/open/desert/excavation/component5/southeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJO" = ( -/obj/structure/platform, -/turf/open/desert/excavation/component5/southwest, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJP" = ( -/obj/structure/platform, -/turf/open/desert/excavation/component5/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) "aJQ" = ( /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/interior/caves/central_caves) @@ -9033,15 +8165,6 @@ }, /turf/open/desert/excavation/component6/east, /area/desert_dam/exterior/valley/valley_crashsite) -"aKb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/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/freezerfloor, @@ -9093,15 +8216,6 @@ /obj/structure/stairs, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_telecoms) -"aKo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) "aKp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; @@ -9109,15 +8223,6 @@ }, /turf/open/floor/white, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aKq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) "aKs" = ( /turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/dam_interior/workshop) @@ -9128,14 +8233,6 @@ }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) -"aKu" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) "aKv" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, @@ -9173,23 +8270,6 @@ /obj/structure/flora/grass/desert/heavygrass_5, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aKE" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKF" = ( -/obj/structure/platform, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKG" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) "aKH" = ( /obj/structure/flora/grass/desert/lightgrass_12, /turf/open/desert/dirt, @@ -9200,19 +8280,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"aKJ" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKK" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) "aKM" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/desert/excavation/component7/southwest, @@ -9230,31 +8297,6 @@ }, /turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) -"aKQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKR" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKS" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) "aKT" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/sand_overlay/sand1{ @@ -9312,12 +8354,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_central_north) -"aLe" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) "aLg" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -9370,84 +8406,12 @@ /obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_labs) -"aLw" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLx" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) "aLy" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_two) -"aLz" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/desert_transition_edge1/northeast, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLA" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLB" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLC" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLD" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLE" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLF" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLG" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/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/southwest, @@ -9596,21 +8560,6 @@ }, /turf/open/gm/river/desert/deep/toxic, /area/desert_dam/building/water_treatment_two) -"aMm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"aMn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) "aMo" = ( /obj/structure/cargo_container/trijent/left/alt, /turf/open/floor/plating, @@ -10347,11 +9296,6 @@ "aPu" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/exterior/valley/valley_telecoms) -"aPv" = ( -/obj/structure/platform_decoration, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) "aPw" = ( /obj/structure/cargo_container/trijent/right/alt, /turf/open/asphalt/tile, @@ -10601,12 +9545,6 @@ }, /turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/southern_hallway) -"aQn" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_labs) "aQo" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/filtration/machine_96x96{ @@ -10791,15 +9729,6 @@ /obj/structure/filtration/machine_96x96/filtration, /turf/open/floor/coagulation/icon4_8, /area/desert_dam/building/water_treatment_two/purification) -"aRi" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_wilderness) "aRj" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 @@ -10900,13 +9829,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"aRH" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_wilderness) "aRI" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/floor/coagulation/icon8_8, @@ -11172,12 +10094,6 @@ "aSM" = ( /turf/open/floor/coagulation/icon0_4, /area/desert_dam/building/water_treatment_two/purification) -"aSN" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition/west, -/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, @@ -11368,13 +10284,6 @@ "aTH" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_telecoms) -"aTI" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "aTJ" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, @@ -11737,6 +10646,10 @@ }, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop_foyer) +"aVv" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) "aVw" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/interrogation) @@ -11882,12 +10795,6 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/security/office) -"aWd" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/dam_interior/south_tunnel) "aWe" = ( /obj/structure/disposalpipe/segment, /turf/open/asphalt, @@ -11955,16 +10862,6 @@ }, /turf/open/floor/carpet7_3/west, /area/desert_dam/building/administration/office) -"aWs" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/valley/south_valley_dam) "aWt" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -12308,15 +11205,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_central_north) -"aXT" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) "aXU" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_wilderness) @@ -12466,13 +11354,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"aYy" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) "aYz" = ( /turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_wilderness) @@ -12623,13 +11504,6 @@ "aZc" = ( /turf/open/floor/prison/bluecorner/west, /area/desert_dam/building/administration/hallway) -"aZd" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_labs) "aZe" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge/northeast, @@ -12841,13 +11715,6 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/dark2, /area/desert_dam/building/administration/archives) -"bab" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_central_north) "bac" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_corner2, @@ -13021,12 +11888,6 @@ /obj/item/tool/pen/blue, /turf/open/floor/dark2, /area/desert_dam/building/administration/archives) -"baI" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_northwest) "baL" = ( /obj/structure/machinery/light{ dir = 1 @@ -13072,6 +11933,11 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark2, /area/desert_dam/building/administration/archives) +"baU" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "baV" = ( /obj/structure/surface/table, /obj/item/paper, @@ -13174,6 +12040,10 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/holding) +"bbp" = ( +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "bbq" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal2" @@ -13337,30 +12207,6 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_northwest) -"bbZ" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"bca" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) "bcb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13409,20 +12255,6 @@ }, /turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/meetingrooom) -"bcs" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) -"bct" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_northwest) "bcu" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, @@ -13478,15 +12310,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/bright_clean2, /area/desert_dam/building/administration/meetingrooom) -"bcF" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) "bcH" = ( /turf/open/desert/rock/deep/transition/southeast, /area/desert_dam/interior/dam_interior/south_tunnel) @@ -13542,15 +12365,6 @@ /obj/structure/surface/table, /turf/open/floor/prison/darkyellow2/northeast, /area/desert_dam/interior/dam_interior/engine_east_wing) -"bcX" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) "bcY" = ( /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_central_north) @@ -13620,12 +12434,6 @@ /obj/item/paper_bin, /turf/open/floor/wood, /area/desert_dam/building/administration/meetingrooom) -"bdq" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) "bdt" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, @@ -13814,13 +12622,6 @@ /obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"bek" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_central_north) "bel" = ( /turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/interior/caves/central_caves) @@ -13995,28 +12796,9 @@ /obj/structure/flora/grass/desert/heavygrass_6, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"beW" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_northwest) -"beX" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_northwest) "beY" = ( /turf/open/floor/carpet5_1/west, /area/desert_dam/building/administration/overseer_office) -"beZ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) "bfa" = ( /turf/open/floor/carpet9_4/west, /area/desert_dam/building/administration/overseer_office) @@ -14150,20 +12932,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) -"bfB" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_northwest) -"bfC" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_northwest) "bfD" = ( /obj/structure/filtration/machine_64x128{ icon_state = "filtration_1" @@ -14182,49 +12950,6 @@ /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"bfJ" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_northwest) -"bfK" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_northwest) -"bfL" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_northwest) -"bfM" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_northwest) -"bfN" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"bfO" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_northwest) -"bfP" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_central_north) "bfR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; @@ -14249,15 +12974,6 @@ }, /turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bfV" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) "bfX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -14292,30 +13008,6 @@ /obj/structure/prop/dam/boulder/boulder2, /turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/landing_pad_one) -"bgf" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_northwest) -"bgg" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_northwest) -"bgh" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_northwest) -"bgi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/north_valley_dam) "bgj" = ( /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/north_valley_dam) @@ -14465,10 +13157,6 @@ "bgR" = ( /turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/north_valley_dam) -"bgU" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) "bgV" = ( /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/prison, @@ -14492,11 +13180,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/equipment) -"bhc" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) "bhe" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -14606,12 +13289,11 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) -"bhC" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, -/area/desert_dam/exterior/valley/valley_northwest) +"bhB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) "bhD" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -14640,12 +13322,6 @@ "bhL" = ( /turf/open/floor/plating/warnplate/southwest, /area/desert_dam/building/substation/northwest) -"bhM" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/rock/deep/transition/north, -/area/desert_dam/interior/dam_interior/south_tunnel) "bhN" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/prison/southwest, @@ -14705,15 +13381,6 @@ "bib" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/north_valley_dam) -"bic" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/bar_valley_dam) "bif" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -14728,13 +13395,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_two/lobby) -"bii" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) "bij" = ( /turf/open/asphalt/cement/cement4, /area/desert_dam/exterior/valley/valley_wilderness) @@ -14790,13 +13450,6 @@ "bit" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/north_valley_dam) -"biu" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/bar_valley_dam) "biw" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, @@ -15013,14 +13666,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/north_valley_dam) -"bjs" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) "bju" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/north_valley_dam) @@ -15080,19 +13725,6 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/security/detective) -"bjK" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform_decoration, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) -"bjL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) "bjM" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/north_valley_dam) @@ -15153,12 +13785,6 @@ "bkb" = ( /turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_mining) -"bkc" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) "bkf" = ( /turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/north_valley_dam) @@ -15358,13 +13984,6 @@ /obj/structure/machinery/light, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_two/lobby) -"blg" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_central_north) "blh" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" @@ -15751,12 +14370,6 @@ "bmG" = ( /turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/tech_storage) -"bmH" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/prison/yellowcorner/east, -/area/desert_dam/building/hydroponics/hydroponics) "bmI" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/prison/blue/northeast, @@ -15828,6 +14441,10 @@ /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) +"bmZ" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) "bnb" = ( /obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/interior/wood, @@ -16510,21 +15127,6 @@ "bqd" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_telecoms) -"bqe" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bqf" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/north_tunnel) "bqg" = ( /turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/western_dam_cave) @@ -16652,38 +15254,6 @@ "bqL" = ( /turf/open/floor/prison/blue/east, /area/desert_dam/interior/dam_interior/tech_storage) -"bqM" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bqN" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqO" = ( -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqP" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqQ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqU" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "bqV" = ( /turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/engine_west_wing) @@ -16867,12 +15437,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison/blue/southeast, /area/desert_dam/interior/dam_interior/tech_storage) -"brO" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "brP" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -16954,18 +15518,6 @@ "bsh" = ( /turf/open/floor/prison/redcorner/west, /area/desert_dam/building/security/northern_hallway) -"bsi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bsj" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel) "bsk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood, @@ -17122,6 +15674,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/security/southern_hallway) +"bsY" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "btc" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, @@ -17131,6 +15687,14 @@ /obj/item/clothing/suit/armor/vest/security, /turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/staffroom) +"btg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/item/stack/rods, +/obj/item/stack/cable_coil, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) "bth" = ( /obj/effect/decal/sand_overlay/sand2, /turf/open/floor/prison/southwest, @@ -17154,6 +15718,13 @@ "btm" = ( /turf/open/floor/prison/darkbrowncorners3/east, /area/desert_dam/interior/dam_interior/hanger) +"bto" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) "btp" = ( /turf/open/floor/prison/darkbrowncorners2/east, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) @@ -17604,15 +16175,6 @@ /obj/structure/surface/rack, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) -"bvr" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/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, @@ -17751,10 +16313,6 @@ "bwc" = ( /turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bwd" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "bwe" = ( /turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/north_tunnel) @@ -18027,15 +16585,6 @@ "bxr" = ( /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bxs" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "bxt" = ( /turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/northeastern_tunnel) @@ -18108,72 +16657,10 @@ }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) -"bxS" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_east) -"bxT" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_east) -"bxU" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_east) -"bxV" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_east) -"bxW" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_east) -"bxX" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bxY" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "bxZ" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bya" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "byb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -18347,13 +16834,6 @@ }, /turf/open/floor/plating, /area/desert_dam/building/substation/northwest) -"byY" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_wilderness) "byZ" = ( /turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_wilderness) @@ -18456,12 +16936,6 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzz" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "bzA" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, @@ -18469,12 +16943,6 @@ "bzB" = ( /turf/open/asphalt, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzC" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "bzD" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Tool Storage" @@ -18611,12 +17079,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) -"bAk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/prison/kitchen/southwest, -/area/desert_dam/building/cafeteria/cafeteria) "bAm" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, @@ -18815,33 +17277,12 @@ "bBm" = ( /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bBo" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "bBp" = ( /turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/northwestern_tunnel) "bBq" = ( /turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/north_tunnel) -"bBr" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bBs" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) "bBt" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/structure/pipes/standard/simple/hidden/green, @@ -18872,6 +17313,13 @@ /obj/structure/bed/stool, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) +"bBB" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "bBD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement14, @@ -18911,15 +17359,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/north_tunnel) -"bBQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "bBR" = ( /turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/mining/workshop_foyer) @@ -18949,30 +17388,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bCh" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bCi" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bCj" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bCk" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) "bCm" = ( /obj/structure/machinery/power/apc/no_power/north, /obj/effect/decal/sand_overlay/sand2{ @@ -19116,39 +17531,9 @@ }, /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/north_tunnel) -"bCW" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bCX" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement14, -/area/desert_dam/interior/dam_interior/north_tunnel) "bCY" = ( /turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bCZ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDa" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "bDb" = ( /turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/northeastern_tunnel) @@ -19286,12 +17671,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bDK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/north_tunnel) "bDL" = ( /turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/southern_hallway) @@ -19372,26 +17751,6 @@ }, /turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) -"bEg" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bEh" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bEi" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/north_tunnel) "bEj" = ( /obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 @@ -19415,33 +17774,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bEp" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bEq" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bEr" = ( -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bEu" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bEv" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "bEw" = ( /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northeastern_tunnel) @@ -19753,11 +18085,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bFA" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) "bFB" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 @@ -19796,31 +18123,6 @@ "bFK" = ( /turf/open/floor/prison/darkbrown3/north, /area/desert_dam/interior/dam_interior/hangar_storage) -"bFL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bFM" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement9, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bFN" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bFO" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/desert_dam/interior/dam_interior/north_tunnel) "bFP" = ( /obj/structure/machinery/light, /turf/open/floor/prison/sterile_white, @@ -19935,10 +18237,6 @@ }, /turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/mining/workshop_foyer) -"bGu" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) "bGv" = ( /obj/structure/surface/table, /obj/item/explosive/grenade/flashbang, @@ -20304,15 +18602,6 @@ }, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) -"bHR" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "bHS" = ( /obj/structure/desertdam/decals/road_stop{ dir = 8; @@ -20400,11 +18689,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_main) -"bIp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) "bIq" = ( /turf/open/floor/prison/darkyellowcorners2/north, /area/desert_dam/interior/dam_interior/smes_backup) @@ -20488,11 +18772,6 @@ "bIK" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/east_caves) -"bIL" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "bIR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -20553,32 +18832,14 @@ "bJf" = ( /turf/open/floor/prison/darkbrown3, /area/desert_dam/interior/dam_interior/hangar_storage) -"bJg" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "bJh" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/north_tunnel) -"bJi" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/north_tunnel) "bJj" = ( /turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/north_tunnel) -"bJk" = ( -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement/cement4, -/area/desert_dam/interior/dam_interior/central_tunnel) "bJl" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/light{ @@ -20696,11 +18957,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkred2/southeast, /area/desert_dam/building/security/southern_hallway) -"bJN" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) "bJO" = ( /turf/open/floor/prison/darkredcorners2/southwest, /area/desert_dam/building/security/staffroom) @@ -20826,12 +19082,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/workshop) -"bKv" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) "bKw" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/technology_scanner, @@ -21104,14 +19354,6 @@ "bLE" = ( /turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/interior/dam_interior/smes_backup) -"bLF" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) "bLJ" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, @@ -21294,27 +19536,6 @@ /obj/structure/surface/table, /turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/warden) -"bMt" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bMu" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_central_north) -"bMv" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_north) "bMw" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, @@ -21511,30 +19732,6 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/south_valley_dam) -"bNr" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bNs" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bNt" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_central_north) "bNu" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -21649,14 +19846,6 @@ /obj/structure/machinery/autolathe, /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) -"bOb" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "bOc" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -21668,23 +19857,6 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_telecoms) -"bOh" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bOi" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bOj" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "bOk" = ( /turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) @@ -21738,23 +19910,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) -"bOv" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"bOw" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) -"bOx" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) "bOz" = ( /obj/structure/stairs{ dir = 4 @@ -21832,12 +19987,6 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/office) -"bOT" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) "bOU" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, @@ -21854,22 +20003,6 @@ "bOY" = ( /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) -"bOZ" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bPa" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) "bPb" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -21903,28 +20036,6 @@ }, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"bPi" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bPj" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bPk" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_north) "bPl" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/asphalt/tile, @@ -22099,15 +20210,6 @@ }, /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) -"bQa" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) "bQb" = ( /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/central_tunnel) @@ -23200,11 +21302,6 @@ "bUM" = ( /turf/open/floor/prison/darkredcorners2/north, /area/desert_dam/building/security/warden) -"bUN" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) "bUQ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony, /turf/open/floor/prison/southwest, @@ -23356,34 +21453,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"bVw" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"bVx" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_central_south) "bVy" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_south) -"bVz" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) "bVA" = ( /turf/open/floor/darkyellowcorners2/north, /area/desert_dam/building/security/prison) @@ -23451,27 +21524,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/workshop) -"bVS" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bVT" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) "bVU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -23484,27 +21536,6 @@ }, /turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/central_tunnel) -"bVW" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVX" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) "bVY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -23576,28 +21607,10 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/south_valley_dam) -"bWm" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"bWn" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) "bWo" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/north_valley_dam) -"bWq" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) "bWs" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 @@ -23616,31 +21629,10 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/warden) -"bWu" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) -"bWv" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) "bWw" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_central_north) -"bWx" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) "bWA" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -23735,33 +21727,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrown3/east, /area/desert_dam/interior/dam_interior/hangar_storage) -"bWT" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bWU" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) "bWV" = ( /turf/open/floor/delivery, /area/desert_dam/interior/dam_interior/west_tunnel) -"bWW" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bWX" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) "bWY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -23785,20 +21753,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) -"bXf" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"bXg" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_central_north) "bXh" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_corner2/north, @@ -23807,21 +21761,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_central_north) -"bXj" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_north) -"bXk" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) "bXl" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_edge/northwest, @@ -23834,52 +21773,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) -"bXo" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"bXp" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"bXq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"bXr" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bXs" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) -"bXt" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) -"bXu" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"bXv" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) "bXw" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Armoury" @@ -23893,21 +21786,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bXz" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_central_north) -"bXA" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_north) "bXB" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_mining) @@ -24028,20 +21906,6 @@ /obj/structure/machinery/light, /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) -"bXY" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"bXZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_south) "bYa" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, @@ -24069,16 +21933,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bYf" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) "bYg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -24106,13 +21960,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bYj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) "bYl" = ( /turf/open/floor/darkyellowcorners2, /area/desert_dam/building/security/prison) @@ -24243,26 +22090,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/white, /area/desert_dam/interior/dam_interior/break_room) -"bYI" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"bYJ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) "bYK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -24447,30 +22274,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_central_south) -"bZr" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_central_south) -"bZs" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"bZt" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) "bZu" = ( /obj/structure/bed, /turf/open/floor/prison/darkred2/east, @@ -24760,11 +22563,6 @@ /obj/item/trash/syndi_cakes, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/disposals) -"caz" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitegreen/north, -/area/desert_dam/building/medical/virology_isolation) "caB" = ( /turf/open/asphalt/cement/cement3, /area/desert_dam/interior/dam_interior/west_tunnel) @@ -24792,29 +22590,17 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_south) +"caJ" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) "caK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) -"caL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) -"caM" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) "caO" = ( /obj/structure/surface/rack, /obj/item/explosive/plastic, @@ -24997,56 +22783,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/control_room) -"cbt" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_central_south) -"cbu" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_central_south) -"cbv" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"cbw" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"cbx" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"cby" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) -"cbz" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_central_north) "cbA" = ( /obj/structure/window/framed/prison/cell, /turf/open/floor/plating, @@ -25198,55 +22934,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/grimy, /area/desert_dam/building/bar/bar) -"ccd" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"cce" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_central_south) -"ccf" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) -"ccg" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"cch" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"cci" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"ccj" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_north) "cck" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -25364,12 +23051,6 @@ "ccK" = ( /turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/caves/central_caves) -"ccL" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_central_south) "ccM" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/tile, @@ -25380,27 +23061,6 @@ }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"ccO" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"ccP" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"ccQ" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) -"ccR" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_east) "ccY" = ( /turf/open/floor/prison/darkredcorners2/north, /area/desert_dam/building/security/deathrow) @@ -25430,10 +23090,6 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/prison/darkred2/north, /area/desert_dam/building/security/deathrow) -"cde" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) "cdf" = ( /obj/structure/surface/table, /obj/structure/machinery/faxmachine, @@ -25525,24 +23181,6 @@ }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"cdy" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_medical) -"cdz" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_medical) "cdA" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/tile, @@ -25608,23 +23246,6 @@ "cdN" = ( /turf/open/floor/freezerfloor, /area/desert_dam/building/security/prison) -"cdO" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cdP" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/west_tunnel) "cdQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25634,43 +23255,6 @@ }, /turf/open/asphalt/cement/cement4, /area/desert_dam/interior/dam_interior/workshop) -"cdR" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cdS" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cdT" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cdU" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cdV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) "cdX" = ( /turf/open/desert/rock/deep/transition/southeast, /area/desert_dam/interior/caves/central_caves) @@ -25717,13 +23301,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) -"ceh" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) "cei" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_corner2/east, @@ -25781,24 +23358,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_edge/covered/west, /area/desert_dam/exterior/river/riverside_central_south) -"cew" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) -"cex" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) "cey" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 @@ -25989,20 +23548,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_central_south) -"cfo" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) -"cfp" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) "cfq" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -26076,23 +23621,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"cfC" = ( -/obj/structure/platform, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cfD" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river_mouth/southern) -"cfE" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/rock/edge1/east, -/area/desert_dam/exterior/valley/valley_telecoms) "cfG" = ( /turf/open/desert/rock/edge1/east, /area/desert_dam/exterior/valley/valley_cargo) @@ -26139,41 +23667,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) -"cfX" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"cfY" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"cfZ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_central_south) -"cga" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"cgb" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_telecoms) "cgc" = ( /turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_medical) @@ -26204,27 +23697,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/floor/neutral, /area/desert_dam/interior/dam_interior/engine_room) -"cgj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) -"cgk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) "cgm" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/building/substation/west) @@ -26246,20 +23718,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river_mouth/southern) -"cgr" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river_mouth/southern) -"cgs" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river_mouth/southern) "cgt" = ( /obj/structure/machinery/power/smes/batteryrack/substation, /turf/open/floor/plating, @@ -26406,13 +23864,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/caves/east_caves) -"chm" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) "chn" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_edge/west, @@ -26456,16 +23907,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"chv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"chw" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) "chx" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -26478,43 +23919,6 @@ }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"chz" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"chA" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"chB" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"chC" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) "chD" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -26553,41 +23957,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"chS" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"chT" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_south) "chU" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_south) -"chV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"chW" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_south) "chX" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_corner/east, @@ -26608,33 +23981,6 @@ "cic" = ( /turf/open/floor/plating/warnplate/east, /area/desert_dam/building/substation/west) -"cid" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_medical) -"cie" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"cif" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"cig" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) "cih" = ( /turf/open/floor/prison, /area/desert_dam/building/substation/west) @@ -26656,33 +24002,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/bar/bar) -"cim" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cin" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cio" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cip" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement15, -/area/desert_dam/interior/dam_interior/west_tunnel) "cir" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 6 @@ -26722,29 +24041,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/substation/west) -"ciD" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"ciE" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"ciF" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) "ciG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -26853,28 +24149,6 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) -"cjk" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_south) -"cjl" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"cjm" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_south) "cjn" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/whitepurplecorner/east, @@ -27075,13 +24349,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/smes_backup) -"ckn" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_south) "cko" = ( /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) @@ -27131,12 +24398,6 @@ }, /turf/open/floor/whiteyellowfull/east, /area/desert_dam/building/security/prison) -"ckx" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) "cky" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, @@ -27289,64 +24550,13 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) -"cld" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"cle" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"clf" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"clg" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_central_south) "clh" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_central_south) -"cli" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_central_south) "clj" = ( /turf/open/floor/plating, /area/desert_dam/building/warehouse/breakroom) -"clk" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"cll" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) "clm" = ( /obj/effect/blocker/toxic_water, /turf/open/desert/desert_shore/shore_corner2/west, @@ -27355,26 +24565,6 @@ /obj/effect/blocker/toxic_water, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river_mouth/southern) -"clo" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"clp" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "upper_2" - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) "clq" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Lab Maintenance" @@ -27411,13 +24601,6 @@ /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/bar_valley_dam) -"clD" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_south) "clE" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_edge/southwest, @@ -27511,13 +24694,6 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/central_tunnel) -"clV" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) "clW" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/tile, @@ -27557,22 +24733,6 @@ }, /turf/open/floor/prison/darkbrown3/west, /area/desert_dam/interior/dam_interior/hanger) -"cmg" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"cmh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) "cmi" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -27600,13 +24760,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/bar/bar) -"cmr" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_south) "cms" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/sterile_white/west, @@ -27700,16 +24853,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) -"cmQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) "cmR" = ( /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_civilian) @@ -27803,6 +24946,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/smes_backup) +"cnt" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_east) "cnu" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin, @@ -27846,13 +24994,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) -"cnB" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_south) "cnC" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_corner2, @@ -28037,12 +25178,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river_mouth/southern) -"cos" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_telecoms) "cou" = ( /turf/open/floor/prison/darkyellowcorners2, /area/desert_dam/building/warehouse/breakroom) @@ -28194,11 +25329,6 @@ /obj/structure/largecrate, /turf/open/floor/prison/darkbrowncorners2/north, /area/desert_dam/building/warehouse/warehouse) -"cpd" = ( -/obj/structure/platform_decoration, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river_mouth/southern) "cpf" = ( /turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/warehouse/warehouse) @@ -28250,13 +25380,6 @@ /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/north_valley_dam) -"cpv" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_south) "cpw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28361,20 +25484,6 @@ /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"cpU" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_central_south) -"cpV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_central_south) "cpW" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 @@ -28538,10 +25647,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"cqG" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_telecoms) "cqH" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; @@ -28582,13 +25687,6 @@ "cqU" = ( /turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_civilian) -"cra" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) "crb" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, @@ -28645,13 +25743,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison/darkyellow2/east, /area/desert_dam/building/substation/west) -"crm" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) "crn" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -28830,13 +25921,6 @@ "csf" = ( /turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/valley_civilian) -"csg" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) "csh" = ( /turf/open/floor/darkyellow2/southwest, /area/desert_dam/building/security/prison) @@ -29097,6 +26181,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/northeastern_tunnel) +"ctk" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) "ctl" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -29138,15 +26227,6 @@ "ctw" = ( /turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/substation/west) -"ctz" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) "ctA" = ( /obj/item/device/flashlight, /turf/open/floor/prison/darkyellow2/west, @@ -29162,12 +26242,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement12, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctE" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) "ctF" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -29366,33 +26440,12 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt/cement/cement15, /area/desert_dam/interior/dam_interior/central_tunnel) -"cuu" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cuv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/desert_dam/interior/dam_interior/central_tunnel) "cuw" = ( /turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_civilian) "cux" = ( /turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_civilian) -"cuy" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_telecoms) "cuz" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -29474,33 +26527,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) -"cuR" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/obj/item/clothing/head/soft/ferret, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_central_south) -"cuS" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_south) -"cuT" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) "cuU" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -29651,13 +26677,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/darkyellow2, /area/desert_dam/building/substation/west) -"cvD" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) "cvE" = ( /obj/structure/surface/table, /obj/item/device/encryptionkey, @@ -29763,6 +26782,13 @@ }, /turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/surgury_observation) +"cwa" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) "cwb" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, @@ -30083,42 +27109,6 @@ }, /turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/building/substation/west) -"cxq" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_cargo) -"cxr" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_cargo) -"cxt" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cxu" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) -"cxv" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_telecoms) "cxw" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" @@ -30216,31 +27206,10 @@ "cxN" = ( /turf/open/floor/prison/darkyellow2/east, /area/desert_dam/building/substation/west) -"cxP" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cxQ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) "cxR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, /turf/open/floor/prison/greencorner, /area/desert_dam/building/substation/west) -"cxS" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/valley/valley_cargo) "cxT" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/desert/dirt, @@ -30251,14 +27220,6 @@ "cxV" = ( /turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_cargo) -"cxW" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_south) "cxY" = ( /obj/structure/window/reinforced, /obj/structure/surface/table/reinforced, @@ -30445,11 +27406,6 @@ /obj/structure/flora/grass/desert/heavygrass_5, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"cyR" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_south) "cyS" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -30553,12 +27509,6 @@ /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"czw" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_corner1/east, -/area/desert_dam/exterior/valley/valley_cargo) "czx" = ( /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/desert/dirt, @@ -30574,11 +27524,6 @@ "czA" = ( /turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/landing_pad_two) -"czB" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_south) "czC" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -30686,16 +27631,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_central_south) -"czT" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) "czU" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 @@ -30714,24 +27649,12 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_south) -"czY" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_edge1/southwest, -/area/desert_dam/exterior/valley/valley_cargo) "czZ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/valley/valley_cargo) -"cAa" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) "cAb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -30753,63 +27676,14 @@ /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"cAe" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_south) "cAf" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_south) -"cAg" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"cAh" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"cAi" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_south) -"cAj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/east, -/area/desert_dam/exterior/river/riverside_south) -"cAk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river/riverside_south) "cAl" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) -"cAm" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) "cAn" = ( /obj/structure/surface/table, /obj/item/bodybag/cryobag, @@ -30963,24 +27837,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cAQ" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_cargo) -"cAR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_cargo) "cAT" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -31006,29 +27862,9 @@ /obj/structure/flora/bush/desert/cactus, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"cAX" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_south) -"cAY" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_south) "cAZ" = ( /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_south) -"cBa" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) "cBb" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/valley/valley_medical) @@ -31272,13 +28108,6 @@ /obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/bar_valley_dam) -"cCb" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_south) "cCc" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/medical/garage) @@ -31439,13 +28268,6 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_telecoms) -"cCO" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) "cCP" = ( /turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/CE_office) @@ -31471,13 +28293,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/central_tunnel) -"cCU" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, -/area/desert_dam/exterior/valley/valley_cargo) "cCW" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tech_supply, @@ -31499,13 +28314,6 @@ /obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"cDd" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) "cDe" = ( /obj/structure/machinery/light{ dir = 1 @@ -31672,27 +28480,6 @@ "cDN" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cDP" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"cDQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river/riverside_east) -"cDR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_east) "cDT" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/kpack, @@ -31950,26 +28737,12 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/landing_pad_two) -"cFd" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_telecoms) "cFe" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/landing_pad_two) -"cFf" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) "cFg" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal1" @@ -32445,13 +29218,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_cargo) -"cGI" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_cargo) "cGJ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -32502,13 +29268,6 @@ /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/landing_pad_two) -"cGT" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_south) "cGU" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal3" @@ -32614,24 +29373,6 @@ /obj/structure/cargo_container/hd/mid, /turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/warehouse) -"cHu" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, -/area/desert_dam/exterior/valley/valley_cargo) -"cHv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/valley/valley_cargo) "cHx" = ( /turf/open/floor/plating/warnplate/north, /area/desert_dam/building/medical/garage) @@ -33491,20 +30232,6 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_two) -"cLh" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_south) -"cLi" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) "cLj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -33560,6 +30287,10 @@ /obj/structure/prop/dam/boulder/boulder2, /turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_cargo) +"cLy" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) "cLG" = ( /turf/open/asphalt, /area/desert_dam/building/warehouse/warehouse) @@ -33782,20 +30513,6 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_cargo) -"cMN" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) -"cMO" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_medical) "cMP" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/medical/virology_isolation) @@ -34000,21 +30717,6 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"cNC" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_medical) -"cND" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_medical) "cNE" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, @@ -34157,12 +30859,6 @@ "cOk" = ( /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) -"cOl" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_medical) "cOm" = ( /turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/virology_isolation) @@ -34841,6 +31537,10 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cRf" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) "cRg" = ( /turf/open/floor/prison/darkyellow2/west, /area/desert_dam/building/substation/southwest) @@ -35579,19 +32279,6 @@ /obj/structure/bed/chair/office/light, /turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cUI" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"cUJ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_south) "cUK" = ( /obj/structure/flora/bush/desert/cactus/multiple{ icon_state = "cacti_7" @@ -35776,13 +32463,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cVX" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_south) "cWa" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -35877,27 +32557,6 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_hydro) -"cWC" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_south) -"cWD" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"cWE" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"cWF" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) "cWH" = ( /obj/structure/fence, /turf/open/desert/dirt/desert_transition_edge1/north, @@ -35966,24 +32625,6 @@ }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) -"cXn" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) -"cXo" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_hydro) "cXp" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/desert_shore1/north, @@ -36015,9 +32656,22 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/hydroponics/hydroponics_storage) +"cXA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "cXD" = ( /turf/open/floor/prison/darkbrown2, /area/desert_dam/building/warehouse/warehouse) +"cXH" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "cXI" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrowncorners2/west, @@ -36042,13 +32696,6 @@ /obj/structure/machinery/light, /turf/open/floor/prison/darkbrown2, /area/desert_dam/building/warehouse/warehouse) -"cYe" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) "cYf" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_edge1/east, @@ -36267,13 +32914,6 @@ /obj/structure/largecrate/random, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"cZd" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) "cZe" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/asphalt/tile, @@ -37101,6 +33741,10 @@ /obj/structure/plasticflaps, /turf/open/floor/plating, /area/desert_dam/building/warehouse/warehouse) +"ddN" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) "ddO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; @@ -37451,6 +34095,11 @@ /obj/structure/closet/crate/hydroponics/prespawned, /turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/hydroponics/hydroponics_loading) +"dfl" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) "dfm" = ( /turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cafeteria) @@ -37822,22 +34471,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/central_tunnel) -"dgW" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"dgX" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_civilian) "dgY" = ( /turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) @@ -37880,10 +34513,19 @@ }, /turf/open/asphalt, /area/desert_dam/building/cafeteria/loading) +"dhl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "dhs" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_one/hallway) +"dhz" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) "dhA" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, @@ -37933,6 +34575,11 @@ }, /turf/open/floor/plating/asteroidfloor/north, /area/desert_dam/exterior/valley/valley_crashsite) +"dij" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) "dil" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, @@ -37985,13 +34632,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_east) -"diM" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) "diN" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -38071,21 +34711,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_south) -"djy" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_south) -"djz" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/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 @@ -38131,24 +34756,6 @@ }, /turf/open/floor/dark2, /area/desert_dam/building/hydroponics/hydroponics_loading) -"dkb" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, -/area/desert_dam/exterior/valley/valley_hydro) -"dkc" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_hydro) "dkd" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Restroom" @@ -38251,11 +34858,6 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/building/substation/southwest) -"dkK" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_south) "dkL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Breakroom" @@ -38370,17 +34972,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"dlP" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement/cement1, -/area/desert_dam/interior/dam_interior/central_tunnel) "dlQ" = ( /obj/structure/machinery/light{ dir = 8 @@ -38420,6 +35011,13 @@ }, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) +"dmj" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) "dmz" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/desertdam/decals/road_edge{ @@ -38475,16 +35073,6 @@ }, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) -"dnp" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/largecrate/supply, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) "dny" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Break Room" @@ -38500,28 +35088,9 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"dnC" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_south) -"dnD" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_south) "dnP" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) -"dnV" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) "dod" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) @@ -38549,6 +35118,10 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_civilian) +"doD" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) "doE" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) @@ -38562,20 +35135,17 @@ name = "reinforced metal wall" }, /area/desert_dam/building/water_treatment_one/purification) -"doN" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_south) -"doO" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) "doQ" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_civilian) +"doV" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) "dpc" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -38624,20 +35194,6 @@ "dpC" = ( /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/purification) -"dpD" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"dpE" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_south) "dpF" = ( /obj/structure/machinery/vending/dinnerware, /obj/effect/decal/cleanable/dirt, @@ -38693,6 +35249,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) +"dpO" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) "dqd" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) @@ -38739,6 +35300,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) +"dqw" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/west_tunnel) +"dqH" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_valley) "dqJ" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/barricade/wooden{ @@ -38775,6 +35344,13 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/water_treatment_one/lobby) +"drb" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "drc" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -38798,6 +35374,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) +"drx" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) "drL" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -38891,20 +35472,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_central_south) -"dsi" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_central_south) -"dsk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_central_south) "dsA" = ( /turf/open/floor/prison/red/west, /area/desert_dam/building/water_treatment_one/lobby) @@ -38936,22 +35503,9 @@ "dsT" = ( /turf/open/floor/filtrationside/north, /area/desert_dam/exterior/valley/valley_hydro) -"dsU" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) "dsV" = ( /turf/open/floor/filtrationside/northeast, /area/desert_dam/exterior/valley/valley_hydro) -"dsW" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_central_south) "dto" = ( /obj/structure/surface/table, /turf/open/floor/prison, @@ -39002,13 +35556,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/valley/valley_civilian) -"dtG" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/valley/valley_civilian) "dtH" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_edge1/north, @@ -39022,14 +35569,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement1, /area/desert_dam/interior/dam_interior/central_tunnel) -"dtX" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) -"dtY" = ( -/obj/structure/platform, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/river/riverside_south) +"dub" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) "duc" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -39093,25 +35636,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"duy" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_east) -"duz" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/valley/valley_civilian) -"duA" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river/riverside_south) "duB" = ( /obj/structure/fence, /turf/open/desert/dirt/desert_transition_edge1/northwest, @@ -39180,13 +35704,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"dvi" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) "dvj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, @@ -39207,18 +35724,6 @@ /obj/structure/machinery/computer/area_atmos, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) -"dvx" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_south) -"dvy" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_south) "dvz" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_corner2/east, @@ -39229,13 +35734,6 @@ }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) -"dvB" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/west, -/area/desert_dam/exterior/river/riverside_south) "dvD" = ( /obj/structure/bed, /obj/structure/machinery/light{ @@ -39549,6 +36047,10 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/blue/north, /area/desert_dam/building/dorms/pool) +"dyK" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/telecomm/lz1_valley) "dyS" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/chips, @@ -39801,13 +36303,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/filtration_a) -"dAB" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river/riverside_east) "dAD" = ( /turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_northwing) @@ -40076,6 +36571,11 @@ "dCt" = ( /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) +"dCv" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/valley/valley_civilian) "dCw" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c10, @@ -40175,13 +36675,6 @@ "dCT" = ( /turf/open/floor/coagulation/icon7_8_2, /area/desert_dam/exterior/valley/valley_hydro) -"dCU" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/desert_dam/exterior/river/riverside_east) "dCV" = ( /obj/structure/machinery/light{ dir = 4 @@ -40256,13 +36749,6 @@ "dDH" = ( /turf/open/floor/coagulation/icon8_7_2, /area/desert_dam/exterior/valley/valley_hydro) -"dDI" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_south) "dDJ" = ( /turf/open/floor/prison/green/west, /area/desert_dam/building/dorms/hallway_westwing) @@ -40300,51 +36786,12 @@ "dEe" = ( /turf/open/floor/coagulation/icon8_3, /area/desert_dam/exterior/valley/valley_hydro) -"dEj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river/riverside_east) -"dEk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/desert_dam/exterior/river/riverside_east) -"dEl" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) -"dEm" = ( -/obj/structure/platform{ - dir = 1 - }, +"dEq" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/north, -/area/desert_dam/exterior/river/riverside_east) -"dEn" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"dEo" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) +/area/desert_dam/exterior/river/riverside_central_south) "dEr" = ( /obj/structure/closet/cabinet, /turf/open/floor/wood, @@ -40374,54 +36821,14 @@ /obj/structure/machinery/colony_floodlight, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) -"dEU" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) "dEV" = ( /obj/structure/filtration/collector_pipes, /turf/open/floor/filtrationside/west, /area/desert_dam/exterior/valley/valley_hydro) -"dEW" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"dEX" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) "dEY" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) -"dEZ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/desert_dam/exterior/river_mouth/southern) -"dFc" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_south) -"dFd" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_south) "dFe" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/floor/filtrationside/east, @@ -40492,36 +36899,6 @@ "dFN" = ( /turf/open/floor/coagulation/icon8_4, /area/desert_dam/exterior/valley/valley_hydro) -"dFP" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dFQ" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2" - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dFR" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"dFS" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_south) "dFU" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -40573,26 +36950,6 @@ }, /turf/open/floor/filtrationside/west, /area/desert_dam/exterior/valley/valley_hydro) -"dGu" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_east) -"dGv" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dGw" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) "dGx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -40606,28 +36963,6 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_medical) -"dGz" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/desert_dam/exterior/river/riverside_east) -"dGA" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"dGB" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river/riverside_south) "dGC" = ( /turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_westwing) @@ -40652,15 +36987,6 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"dGN" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_telecoms) "dGQ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -40690,38 +37016,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) -"dHc" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dHd" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river_mouth/southern) -"dHe" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river_mouth/southern) -"dHf" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner/west, -/area/desert_dam/exterior/river/riverside_south) -"dHg" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) "dHh" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Lab Maintenance" @@ -40800,28 +37094,6 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/floor/coagulation/icon8_3, /area/desert_dam/exterior/valley/valley_hydro) -"dHy" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/desert_shore/shore_corner2/north, -/area/desert_dam/exterior/river_mouth/southern) -"dHA" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"dHB" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_south) "dHD" = ( /turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_westwing) @@ -40990,39 +37262,10 @@ /obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_hydro) -"dIC" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, -/area/desert_dam/exterior/valley/valley_hydro) -"dID" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/valley_hydro) -"dIG" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/desert_dam/exterior/river_mouth/southern) "dIH" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river_mouth/southern) -"dII" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river_mouth/southern) "dIJ" = ( /turf/open/floor/prison/blue/west, /area/desert_dam/building/dorms/pool) @@ -41090,13 +37333,6 @@ /obj/structure/closet/lasertag/red, /turf/open/floor/prison/blue/north, /area/desert_dam/building/dorms/pool) -"dJd" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/valley_hydro) "dJe" = ( /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river_mouth/southern) @@ -41104,13 +37340,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river_mouth/southern) -"dJg" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river_mouth/southern) "dJh" = ( /obj/structure/machinery/light, /turf/open/floor/wood, @@ -41131,13 +37360,6 @@ /obj/structure/surface/rack, /turf/open/floor/prison/blue/east, /area/desert_dam/building/dorms/pool) -"dJA" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/desert_dam/exterior/river_mouth/southern) "dJB" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge/northeast, @@ -41150,13 +37372,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow_edge/southeast, /area/desert_dam/exterior/river_mouth/southern) -"dJE" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/desert_dam/exterior/river_mouth/southern) "dJG" = ( /turf/open/floor/prison/whitegreenfull, /area/desert_dam/building/dorms/pool) @@ -41198,13 +37413,6 @@ /obj/structure/lz_sign/dam_sign/damaged, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"dJS" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/desert_dam/exterior/river_mouth/southern) "dJT" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow, @@ -41354,13 +37562,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) -"dKB" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river_mouth/southern) "dKE" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, @@ -41385,13 +37586,6 @@ /obj/effect/blocker/toxic_water, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river_mouth/southern) -"dKK" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river_mouth/southern) "dKL" = ( /obj/effect/blocker/toxic_water, /turf/open/desert/desert_shore/desert_shore1/west, @@ -41514,20 +37708,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) -"dLh" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/desert_dam/exterior/river/riverside_east) -"dLi" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_east) "dLj" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge/northwest, @@ -41536,13 +37716,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_east) -"dLl" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) "dLn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -41550,13 +37723,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) -"dLp" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/north, -/area/desert_dam/exterior/river/riverside_east) "dLq" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/desert_shore1, @@ -41599,62 +37765,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) -"dLF" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) -"dLH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/bedroll, -/obj/effect/decal/cleanable/blood, -/obj/item/prop/colony/usedbandage{ - dir = 5; - pixel_x = 10; - pixel_y = 18 - }, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"dLI" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_central_south) -"dLJ" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_central_south) -"dLK" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"dLL" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_central_south) -"dLM" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_central_south) -"dLN" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) "dLO" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/desert_shore1, @@ -41667,63 +37777,12 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_corner2/east, /area/desert_dam/exterior/river/riverside_east) -"dLR" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) "dLS" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"dLT" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) -"dLU" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_east) -"dLV" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) -"dLW" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_east) -"dLX" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_east) -"dLY" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2/east, -/area/desert_dam/exterior/river/riverside_east) -"dLZ" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1/west, -/area/desert_dam/exterior/river/riverside_east) -"dMf" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/valley/valley_mining) "dMg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -41741,11 +37800,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) -"dMq" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) "dMw" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/asphalt/tile, @@ -41756,6 +37810,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/whiteyellowcorner/east, /area/desert_dam/interior/dam_interior/break_room) +"dMB" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_north) "dMC" = ( /obj/structure/bed/chair{ dir = 8 @@ -42309,6 +38369,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/north_wing_hallway) +"dPD" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "dPG" = ( /obj/item/trash/sosjerky, /turf/open/floor/prison/sterile_white/west, @@ -44041,6 +40105,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) +"dWU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "dWV" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -44418,6 +40487,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_westwing) +"dZc" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) "dZf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, @@ -44510,6 +40585,13 @@ /obj/structure/surface/table, /turf/open/floor/prison/green/west, /area/desert_dam/building/dorms/hallway_westwing) +"dZW" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) "dZX" = ( /obj/item/stool, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -45371,9 +41453,21 @@ }, /turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) +"efq" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) "eft" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"efQ" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) "efT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45385,6 +41479,10 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) +"egP" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) "ehg" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -45562,6 +41660,10 @@ }, /turf/open/desert/rock/deep/transition/west, /area/desert_dam/interior/caves/temple) +"ekn" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) "ekH" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 @@ -45574,17 +41676,37 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) +"elX" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) "emt" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) +"enz" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_central_south) "eqo" = ( /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) +"eqs" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"erj" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river_mouth/southern) "erB" = ( /obj/item/tool/surgery/surgicaldrill, /obj/item/tool/surgery/circular_saw, @@ -45603,36 +41725,58 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"esX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"ett" = ( -/obj/structure/platform{ - dir = 8 +"etm" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/stairs{ + dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_valley) +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"etP" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_south) "euG" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/south_valley_dam) -"ewg" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/prison/darkpurple2/southeast, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"exp" = ( -/obj/structure/machinery/light{ - dir = 8 +"exx" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"exD" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_northwest) +"exX" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"eyd" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"eyl" = ( +/obj/structure/stairs{ + dir = 4 }, -/obj/effect/landmark/corpsespawner/administrator, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/lab_northeast/east_lab_RND) +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"eyr" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"eys" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_south) "eyL" = ( /turf/open/gm/empty, /area/shuttle/trijent_shuttle/engi) @@ -45642,6 +41786,18 @@ }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) +"eBf" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"eBr" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2" + }, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) "eBZ" = ( /obj/item/storage/fancy/vials/random, /obj/structure/surface/table/reinforced, @@ -45664,43 +41820,84 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, /area/desert_dam/building/hydroponics/hydroponics) +"eEW" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"eFT" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) "eHi" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/bar_valley_dam) +"eHB" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"eHI" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"eHT" = ( +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "eJh" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"eKL" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) "eKN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/cell_stripe/west, /area/desert_dam/interior/dam_interior/hanger) +"eLi" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"eNc" = ( +/obj/item/prop/colony/used_flare, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"eNy" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/valley/valley_labs) "eNU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/whitepurple, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"eOU" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ +"eOa" = ( +/obj/structure/stairs{ dir = 1 }, -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/desert_dam/building/dorms/hallway_northwing) +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"eRl" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) "eRn" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"eRH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) "eRL" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -45713,11 +41910,29 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) +"eRY" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"eSW" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) "eTi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/vault2/northeast, /area/desert_dam/building/security/prison) +"eTp" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_east) +"eUt" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "eVk" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -45730,6 +41945,11 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/darkredfull2, /area/desert_dam/building/security/deathrow) +"eVD" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_south) "eVJ" = ( /obj/structure/window/framed/chigusa, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -45741,11 +41961,19 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_hydro) +"eWk" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) "eWn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/green, /area/desert_dam/building/dorms/hallway_northwing) +"eXt" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) "eXM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -45793,28 +42021,35 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"far" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/item/prop/colony/usedbandage{ - dir = 9; - pixel_x = 5; - pixel_y = 15 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +"fat" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) "faE" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"faL" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) "fbK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_crashsite) +"fcj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/item/weapon/baseballbat/metal, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "fcu" = ( /obj/effect/landmark/nightmare{ insert_tag = "uppcrash-supply" @@ -45833,22 +42068,40 @@ }, /turf/open/desert/rock/deep/transition/north, /area/desert_dam/exterior/telecomm/lz1_south) +"fcM" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) "fdk" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"fdt" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) "feU" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_crashsite) -"fgo" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) +"ffu" = ( +/obj/structure/toilet, +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"ffJ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"fgb" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_valley) "fgU" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -45857,22 +42110,26 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"fiW" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ +"fhq" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"fhO" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"fjD" = ( +/obj/structure/barricade/deployable{ dir = 8 }, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/interior/caves/temple) -"fiY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_medical) +"fkt" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) "flj" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, @@ -45887,9 +42144,32 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) +"flz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"fmM" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) "fmP" = ( /turf/open/gm/empty, /area/shuttle/trijent_shuttle/lz1) +"fnk" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"fnA" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/desert/desert_shore/shore_corner1/west, +/area/desert_dam/interior/caves/temple) "foq" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -45906,6 +42186,11 @@ }, /turf/closed/wall/rock/orange, /area/desert_dam/exterior/rock) +"fqa" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_east) "fqj" = ( /turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/landing_pad_one) @@ -45922,11 +42207,20 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/white, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"fsE" = ( -/obj/structure/barricade/deployable{ +"fqN" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"frZ" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/desert/dirt/desert_transition_edge1/southeast, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_medical) "fsK" = ( /obj/effect/decal/sand_overlay/sand1, @@ -45938,6 +42232,25 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_westwing) +"ftp" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"ftJ" = ( +/obj/effect/landmark/static_comms/net_one, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/telecomm/lz1_valley) +"fuK" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/turf/open/floor/prison/blue, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"fwm" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_cargo) "fxs" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal6" @@ -45951,6 +42264,17 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/garage) +"fAk" = ( +/obj/structure/platform/stone/runed_sandstone/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"fBc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ammo_magazine/rifle, +/obj/item/ammo_magazine/rifle, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "fBF" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" @@ -45960,6 +42284,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"fCz" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river_mouth/southern) "fCB" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" @@ -45974,8 +42303,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) -"fEU" = ( -/obj/item/ammo_magazine/smg/mp5, +"fET" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"fEV" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"fFo" = ( +/obj/item/stack/sheet/wood, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) "fFw" = ( @@ -45984,6 +42321,18 @@ }, /turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/temple) +"fFI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) "fHg" = ( /turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/south_valley_dam) @@ -45995,17 +42344,74 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) +"fHD" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) "fHJ" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/medium, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) +"fHN" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) "fHX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) +"fIf" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"fIS" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"fJv" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"fKj" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_wilderness) +"fKZ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river_mouth/southern) +"fMw" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"fNa" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "fNw" = ( /turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/bar_valley_dam) @@ -46018,34 +42424,29 @@ /obj/structure/surface/rack, /turf/open/floor/prison/darkyellow2/north, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"fPz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"fRy" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +"fQw" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_east) +"fQx" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) +"fQF" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_east) "fSc" = ( /obj/structure/flora/grass/desert/lightgrass_12, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_two) -"fSK" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_y = 3 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) +"fSP" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/valley/valley_mining) "fTk" = ( /obj/structure/sink/kitchen, /obj/structure/surface/table/reinforced, @@ -46054,16 +42455,48 @@ }, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) +"fTR" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_y = 3 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"fTV" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_east) +"fTX" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"fUm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "fUO" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) -"fXL" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"fVX" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_north) +"fXN" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) "fYz" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/desert/dirt, @@ -46079,13 +42512,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/tech_storage) -"fZj" = ( -/obj/effect/landmark/static_comms/net_one, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/dirt/rock1, -/area/desert_dam/exterior/telecomm/lz1_valley) "gab" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/chigusa, @@ -46094,10 +42520,30 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/emergency_room) +"gaO" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"gbi" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) "gca" = ( /obj/structure/fence, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"gcl" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"gda" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) "gdW" = ( /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) @@ -46105,6 +42551,17 @@ /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/bar_valley_dam) +"geD" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"gfr" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_east) "ggn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -46112,11 +42569,6 @@ }, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) -"ggz" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m41a/corporate/no_lock, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "ghz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil/streak, @@ -46125,11 +42577,37 @@ }, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) +"gjQ" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"gjR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"gkq" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert, +/area/desert_dam/exterior/river/riverside_east) "gls" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/restroom) +"glw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/lobby) "glx" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -46158,6 +42636,16 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) +"gmS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/green, +/obj/item/ammo_magazine/revolver/cmb, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "gmZ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "warehouse_dam_3"; @@ -46176,6 +42664,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) +"gnM" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) "goq" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 @@ -46194,6 +42687,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/temple) +"gqm" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/landmark/nightmare{ + insert_tag = "purple-south-bridge" + }, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"gqG" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/east, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) "grk" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/desert/dirt/desert_transition_edge1/north, @@ -46210,6 +42719,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"gty" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_cargo) "guK" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 @@ -46217,6 +42730,13 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/central_caves) +"gvI" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) "gxo" = ( /obj/structure/surface/table, /obj/item/clothing/glasses/welding{ @@ -46252,21 +42772,21 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/prison, /area/desert_dam/building/hydroponics/hydroponics_loading) -"gCC" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/item/stack/rods, -/obj/item/stack/cable_coil, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"gCS" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, +"gCF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"gDa" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"gDS" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) "gEj" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -46278,21 +42798,27 @@ /obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) +"gGA" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) "gGC" = ( /turf/closed/wall/mineral/sandstone/runed/decor, /area/desert_dam/interior/caves/temple) -"gIs" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/ammo_magazine/rifle, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) "gIA" = ( /obj/structure/toilet, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) +"gIO" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) "gIS" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -46301,6 +42827,16 @@ }, /turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) +"gJK" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/medicine/medkits, +/obj/item/reagent_container/blood/APlus, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "gKm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, @@ -46322,6 +42858,15 @@ "gLg" = ( /turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/landing_pad_two) +"gLh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "gLl" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -46330,6 +42875,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) +"gMa" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) "gMN" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -46341,12 +42891,34 @@ /obj/item/tool/pen, /turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"gNM" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/interior/caves/temple) +"gNY" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) "gOE" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) +"gPY" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"gQv" = ( +/obj/structure/filtration/machine_96x96/distribution, +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/valley/valley_mining) "gQE" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -46357,6 +42929,15 @@ /obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/plating, /area/desert_dam/exterior/telecomm/lz2_containers) +"gSh" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"gTa" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) "gTD" = ( /obj/item/tool/wrench, /turf/open/asphalt/cement, @@ -46400,12 +42981,21 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"gWW" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_cargo) "gXr" = ( /obj/effect/decal/remains/xeno{ pixel_x = 31 }, /turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_crashsite) +"gXF" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) "gYP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -46418,43 +43008,94 @@ "gYU" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/telecomm/lz2_storage) -"hbG" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +"gZJ" = ( +/obj/structure/disposalpipe/segment, +/obj/item/weapon/gun/rifle/m41a/corporate/no_lock, +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"gZS" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/south_valley_dam) +"hah" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river_mouth/southern) +"haw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 }, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"hcF" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) "hcP" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) +"hdN" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_south) "het" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/objective, /turf/open/floor/prison/red/north, /area/desert_dam/building/water_treatment_one/lobby) +"heP" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) "heR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/freezerfloor, /area/desert_dam/building/cafeteria/cold_room) -"hgz" = ( -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) -"hgY" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"hhj" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 +"hfw" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/south_valley_dam) +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"hfA" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_medical) +"hgS" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/item/trash/chips, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) +"hhi" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"hiv" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) "hiN" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -46478,6 +43119,11 @@ "hjW" = ( /turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/landing_pad_two) +"hkB" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) "hmA" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, @@ -46487,52 +43133,44 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/CE_office) -"hnJ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"hoc" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) "hpw" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/south_valley_dam) -"hpL" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) "hqp" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) +"hqG" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_south) "hqT" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/south_valley_dam) -"hqV" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +"hsS" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) "htc" = ( /turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/landing_pad_two) -"htl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -8 +"hvb" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +/obj/structure/platform_decoration/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"hvt" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) "hvD" = ( /obj/structure/shuttle/diagonal{ icon_state = "swall_f10" @@ -46545,12 +43183,27 @@ "hwc" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/south_valley_dam) +"hwA" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "hxj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_hydro) +"hxs" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"hxA" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) "hyH" = ( /obj/structure/tunnel, /turf/open/desert/dirt, @@ -46595,13 +43248,37 @@ "hBr" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_hydro) +"hBJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) "hCf" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/south_valley_dam) +"hCA" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"hCC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) "hCY" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_two) +"hDQ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) "hDT" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_4" @@ -46615,6 +43292,26 @@ }, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_south) +"hFg" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_east) +"hFm" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"hGx" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_civilian) +"hHr" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) "hIO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -46622,33 +43319,19 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"hJY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/colonist/random, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"hKf" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/engineer, +"hKA" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"hLq" = ( +/obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/water_treatment_two/control_room) +/area/desert_dam/building/hydroponics/hydroponics) "hMc" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_telecoms) -"hNn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ammo_magazine/rifle, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "hOt" = ( /obj/structure/computerframe, /turf/open/shuttle/can_surgery/red, @@ -46673,26 +43356,43 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"hPS" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"hQh" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) "hQM" = ( /turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/caves/temple) -"hQS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) +"hQT" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) "hRU" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) +"hSq" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) "hTf" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -46703,12 +43403,23 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/dark, /area/desert_dam/building/church) +"hTk" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/valley/valley_labs) "hTr" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) +"hUK" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) "hVs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/chigusa, @@ -46717,11 +43428,62 @@ /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_two) +"hWk" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river_mouth/southern) "hWz" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) +"hWI" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"hWJ" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_south) +"hXz" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"hYv" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"hYV" = ( +/obj/structure/barricade/wooden, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"iae" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"iar" = ( +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"iav" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_labs) +"iaC" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"iaV" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) "ibg" = ( /obj/structure/machinery/light{ dir = 4 @@ -46756,6 +43518,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"ida" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) "idg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -46764,17 +43530,28 @@ "idG" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/telecomm/lz2_storage) -"ieR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable{ - dir = 8 +"idI" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"idZ" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) "ieU" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) +"ife" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) "ifh" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/chem_dispenser/soda{ @@ -46784,6 +43561,13 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/grimy, /area/desert_dam/building/bar/bar) +"ifo" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) "ifB" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, @@ -46798,14 +43582,34 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"igm" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) "ign" = ( /turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/landing_pad_one) +"ihy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) "ihT" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/darkyellow2/north, /area/desert_dam/building/warehouse/breakroom) +"iiL" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1"; + pixel_x = 12; + pixel_y = 16 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) "iiQ" = ( /obj/structure/surface/table/reinforced, /obj/item/roller, @@ -46821,35 +43625,39 @@ }, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_room) -"ilg" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +"ijR" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"ikX" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) "ilq" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) -"ino" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ammo_magazine/pistol/mod88, -/obj/item/ammo_magazine/pistol/mod88, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"inV" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +"imo" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"iov" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_containment) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) "ioA" = ( /turf/open/gm/river/desert/shallow, /area/desert_dam/interior/caves/temple) +"ipH" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) "ipQ" = ( /obj/docking_port/stationary/trijent_elevator/empty{ id = "trijent_omega"; @@ -46872,12 +43680,22 @@ }, /turf/open/floor/plating, /area/desert_dam/building/substation/northwest) +"iqL" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_east) "iri" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) +"irP" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) "isz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -46885,15 +43703,51 @@ }, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) +"isK" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) "isZ" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) +"ito" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_crashsite) +"iua" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) "iuk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_crashsite) +"iuu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"iuX" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/storage/box/m94, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "iuY" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, @@ -46906,6 +43760,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) +"ivj" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) "ivr" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" @@ -46939,6 +43799,25 @@ /obj/effect/landmark/good_item, /turf/open/floor/whiteyellow/west, /area/desert_dam/interior/dam_interior/garage) +"ixU" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"ixX" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"iyd" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"iym" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/rock/edge1/east, +/area/desert_dam/exterior/valley/valley_telecoms) "iAf" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -46946,6 +43825,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"iCd" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) "iCw" = ( /turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/garage) @@ -46953,23 +43842,60 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_wilderness) +"iCF" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"iCJ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_south) +"iDW" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) "iHF" = ( /turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/landing_pad_two) +"iHH" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) "iIB" = ( /obj/structure/surface/table/reinforced, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) +"iJi" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) "iJC" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) +"iKj" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) "iKp" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) +"iMe" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/closed/wall/r_wall/bunker/floodgate, +/area/desert_dam/exterior/valley/valley_labs) "iNg" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2; @@ -46985,12 +43911,27 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"iOr" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"iOu" = ( +/obj/item/prop/colony/used_flare, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) "iPJ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_hydro) +"iRq" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) "iRU" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -47004,17 +43945,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) +"iTB" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "iTX" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"iUm" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "iVN" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -47028,17 +43968,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"iWF" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/iv_drip, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) "iXt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, @@ -47063,6 +43992,20 @@ /obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) +"iZZ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"jbb" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) "jbx" = ( /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/bar_valley_dam) @@ -47075,14 +44018,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/bright_clean2/southwest, /area/desert_dam/building/security/staffroom) -"jcx" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "jcK" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached, @@ -47091,34 +44026,110 @@ /obj/structure/machinery/light, /turf/open/shuttle/can_surgery/red, /area/desert_dam/interior/dam_interior/hanger) -"jeo" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +"jei" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison/whitepurple, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) "jfA" = ( /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"jiF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, +"jfJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"jgL" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/south_valley_dam) +"jgX" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_east) +"jhG" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"jiL" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"jiP" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"jiW" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"jjB" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river_mouth/southern) "jlP" = ( /obj/structure/flora/grass/desert/heavygrass_5, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"jlY" = ( +/obj/effect/landmark/corpsespawner/wygoon/lead, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue, +/area/desert_dam/interior/lab_northeast/east_lab_RND) "jmd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"jmo" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"jnb" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"joj" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/valley/valley_labs) "jpa" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_hydro) +"jpu" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"jqn" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"jqC" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_south) "jqU" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -47132,49 +44143,49 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/interior/dam_interior/hangar_storage) +"jrq" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) "jrV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_south) -"jsN" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/obj/effect/landmark/nightmare{ - insert_tag = "purple-south-bridge" - }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) "jtz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop) +"jtD" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"jvf" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/interior/caves/temple) "jvo" = ( /obj/structure/closet/l3closet/virology, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_two/equipment) -"jvZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/south_valley_dam) -"jwt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"jwe" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"jwn" = ( +/obj/structure/stairs{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/smg/mp5, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"jwp" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) "jxq" = ( /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/delivery, @@ -47183,17 +44194,21 @@ /obj/structure/tunnel, /turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_crashsite) +"jyk" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"jzi" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) "jAr" = ( /obj/structure/closet/crate/hydroponics/prespawned, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/vault2/north, /area/desert_dam/building/hydroponics/hydroponics_storage) -"jAN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) "jAS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, @@ -47202,14 +44217,64 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/atmos_storage) +"jBn" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"jBQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) "jCJ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall, /area/desert_dam/building/dorms/hallway_northwing) +"jCO" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"jDn" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) "jFf" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"jFv" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"jFP" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"jGL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"jHm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) "jHR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" @@ -47238,17 +44303,17 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) +"jKR" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) "jLI" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) -"jMs" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/wood, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "jMT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -47265,13 +44330,25 @@ "jOe" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_hydro) -"jPc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +"jOI" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"jPR" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"jQU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"jSu" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) "jSS" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -47283,6 +44360,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) +"jTU" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"jUF" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) "jVa" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -47298,6 +44386,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) +"jWD" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) "jXv" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -47309,6 +44402,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_northwing) +"jZJ" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) "jZZ" = ( /turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/valley_telecoms) @@ -47316,6 +44413,20 @@ /obj/structure/prop/dam/boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"kbL" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"kcc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) "kcH" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/telecomm/lz2_containers) @@ -47323,25 +44434,39 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) -"kem" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" +"key" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/valley/valley_labs) +"keB" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_east) +"kfB" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"kfI" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +/obj/item/weapon/twohanded/spear, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) "kge" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_crashsite) -"kgt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) +"kgJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) "kiy" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -47355,14 +44480,11 @@ "kkm" = ( /turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/valley_hydro) -"kmj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/wygoon, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"kkn" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_central_north) "kmr" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -47370,11 +44492,13 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"kmK" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"kmN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "kmU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, @@ -47384,6 +44508,21 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) +"kou" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"kpd" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river_mouth/southern) +"kpH" = ( +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) "kry" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -47398,15 +44537,44 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/security/detective) +"krS" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "ktJ" = ( /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/interior/caves/temple) -"kzQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) +"kuD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"kuU" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"kuZ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"kvn" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"kyp" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/rock, +/area/desert_dam/interior/dam_interior/south_tunnel) +"kAt" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"kAI" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) "kAJ" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -47420,6 +44588,25 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) +"kBf" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_south) +"kBH" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river_mouth/southern) +"kBL" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"kDw" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river_mouth/southern) "kEq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -47427,6 +44614,13 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_wing) +"kFB" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) "kFW" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 2; @@ -47438,6 +44632,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) +"kHC" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_south) +"kIj" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) "kIl" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) @@ -47451,6 +44655,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"kKj" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) "kLf" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -47467,10 +44676,21 @@ }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) +"kMW" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) "kOC" = ( /obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_room) +"kOK" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "kOR" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -47491,6 +44711,27 @@ /obj/structure/tunnel, /turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/caves/east_caves) +"kQT" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"kRd" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"kRs" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"kRv" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/obj/item/clothing/head/soft/ferret, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_south) "kRX" = ( /obj/structure/surface/table, /obj/item/storage/fancy/vials/random, @@ -47504,6 +44745,10 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/whiteyellow/southeast, /area/desert_dam/interior/dam_interior/break_room) +"kVK" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) "kVU" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/south_valley_dam) @@ -47511,11 +44756,17 @@ /obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"lah" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/mod88, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"lax" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"lbI" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river_mouth/southern) "lcj" = ( /turf/closed/wall/hangar{ name = "Elevator Shaft"; @@ -47523,6 +44774,11 @@ hull = 1 }, /area/shuttle/trijent_shuttle/lz1) +"lcn" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) "lcy" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -47532,20 +44788,25 @@ /obj/item/trash/chunk, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"lcO" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) "lei" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/mining/workshop_foyer) +"lew" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) "leH" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/medicine/medkits, -/obj/item/reagent_container/blood/APlus, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) "leJ" = ( /obj/structure/closet/crate/secure, /obj/effect/landmark/objective_landmark/science, @@ -47565,6 +44826,17 @@ "lfZ" = ( /turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/telecomm/lz1_valley) +"lgd" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"lgE" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) "lib" = ( /obj/structure/surface/table/reinforced, /obj/structure/window/reinforced{ @@ -47583,6 +44855,12 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/north_wing_hallway) +"liO" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) "ljB" = ( /obj/structure/closet/cabinet, /obj/effect/landmark/objective_landmark/close, @@ -47595,15 +44873,16 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) +"ljY" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) "lkZ" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/whiteyellow, /area/desert_dam/interior/dam_interior/break_room) -"llZ" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) "lmq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/vomit, @@ -47629,6 +44908,27 @@ /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"lsa" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"lsV" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"lte" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/north_tunnel) +"ltk" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "ltq" = ( /obj/structure/toilet{ dir = 1 @@ -47646,25 +44946,31 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"lvu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/chef, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison/sterile_white, -/area/desert_dam/building/cafeteria/cafeteria) "lwh" = ( /obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/engi{ pixel_x = -32 }, /turf/open/desert/rock/deep/transition/southwest, /area/desert_dam/interior/dam_interior/west_tunnel) +"lwQ" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"lwY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) "lxq" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) +"lxs" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) "lyw" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_8" @@ -47677,9 +44983,25 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"lyO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "lzs" = ( /turf/open/desert/dirt/rock1, /area/desert_dam/exterior/landing_pad_two) +"lzA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) "lzZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked/southwest, @@ -47692,14 +45014,15 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) -"lBR" = ( -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) "lDT" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"lES" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) "lFc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -47708,6 +45031,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"lFx" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"lHe" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"lHG" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"lHM" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) "lHW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/whiteyellowfull/east, @@ -47730,6 +45074,10 @@ }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) +"lJV" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) "lKW" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -47749,13 +45097,37 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) +"lMA" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"lNc" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_east) "lNu" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"lNJ" = ( +/obj/structure/closet/bodybag, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) "lNN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/jungle/impenetrable, /area/desert_dam/interior/lab_northeast/east_lab_containment) +"lOq" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) "lOM" = ( /obj/effect/decal/sand_overlay/sand2/corner2, /turf/open/asphalt/cement, @@ -47769,18 +45141,20 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_civilian) -"lQM" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_labs) -"lSp" = ( -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) +"lRM" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"lSV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"lTi" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) "lUl" = ( /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet15_15/west, @@ -47806,6 +45180,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) +"lYx" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) "lZP" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -47826,6 +45205,16 @@ }, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/garage) +"mbw" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"mcu" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river_mouth/southern) "mdP" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -47865,6 +45254,19 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) +"mfY" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"mgs" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) "mgw" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal5" @@ -47884,18 +45286,36 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/workshop) -"miV" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/floor/prison/blue, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"mjR" = ( -/obj/structure/desertdam/decals/road_edge{ +"mia" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"miq" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/valley/valley_labs) +"miW" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"mjR" = ( +/obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal6" }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) +"mjX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "mkd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -47906,32 +45326,29 @@ /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"mkN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"mkU" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) "mlK" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/telecomm/lz1_valley) +"mmM" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) "mnc" = ( /turf/open/desert/dirt/dirt2, /area/desert_dam/interior/caves/temple) +"mnr" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/desert/rock, +/area/desert_dam/interior/dam_interior/south_tunnel) +"mnz" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) "mnA" = ( /obj/structure/machinery/floodlight, /obj/structure/machinery/camera/autoname/almayer, @@ -47940,24 +45357,90 @@ "moq" = ( /turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/landing_pad_one) -"mqe" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison/whitegreen/southeast, -/area/desert_dam/building/medical/emergency_room) -"mqi" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) +"mot" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"moD" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"mpg" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) "mqM" = ( /obj/effect/landmark/monkey_spawn, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_wilderness) +"mrf" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"mst" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"msF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"mth" = ( +/obj/structure/showcase{ + color = "#880808"; + desc = "A large red statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "The Titan" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1; + icon_state = "halfarmor7_ebony" + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1; + icon_state = "y-boots4_ebony" + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + icon_state = "pred_mask12_ebony"; + unacidable = 0; + pixel_y = 9 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/desert_dam/interior/caves/temple) +"mty" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"mtU" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) "muj" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_two) +"mus" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"muB" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) "myx" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/whitepurple/north, @@ -47972,39 +45455,25 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"mAZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"mBd" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/obj/effect/landmark/nightmare{ - insert_tag = "purple-center-bridge" - }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) "mBO" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) -"mBP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"mBV" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"mCP" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/item/stack/sheet/wood, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) +/obj/item/prop/colony/used_flare, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "mDd" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -48048,6 +45517,11 @@ /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/telecomm/lz2_storage) +"mIy" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_south) "mKs" = ( /turf/closed/wall/rock/orange, /area/desert_dam/exterior/valley/valley_telecoms) @@ -48063,6 +45537,11 @@ }, /turf/open/floor/prison/red/northeast, /area/desert_dam/building/security/lobby) +"mLI" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) "mMm" = ( /turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/bar_valley_dam) @@ -48079,38 +45558,94 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/darkred2/north, /area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"mOw" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "mOS" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement, /area/desert_dam/exterior/telecomm/lz1_south) +"mQl" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_east) +"mQy" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) "mRU" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) +"mTp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/smg/mp5, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) "mTY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) +"mUy" = ( +/obj/item/ammo_magazine/revolver/cmb, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"mUP" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"mVl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) "mVy" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) -"mVV" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +"mWf" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"mWW" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/obj/structure/barricade/deployable{ - dir = 8 +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"mXg" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"mXL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/asphalt, +/obj/item/weapon/gun/revolver/cmb, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_medical) -"mWt" = ( -/obj/structure/toilet, -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/building/warehouse/breakroom) "mXN" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -48132,6 +45667,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) +"mZJ" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) "naF" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, @@ -48142,6 +45681,16 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"nbm" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"nbP" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_central_north) "ncd" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -48153,6 +45702,10 @@ "ncm" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"ncC" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) "ndF" = ( /turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/landing_pad_one) @@ -48164,6 +45717,32 @@ }, /turf/open/desert/rock, /area/desert_dam/interior/caves/temple) +"ndS" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"ner" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/valley/valley_labs) +"neR" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"nff" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_south) +"nfl" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) "ngk" = ( /obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison/bright_clean2, @@ -48174,18 +45753,18 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"nhi" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, -/area/desert_dam/exterior/valley/valley_crashsite) -"nht" = ( +"ngH" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/prison/whitegreen/east, -/area/desert_dam/building/medical/lobby) +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"nhP" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib3" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "nil" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/south_valley_dam) @@ -48195,15 +45774,33 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_two) +"niQ" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) "nji" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/cell_stripe/east, /area/desert_dam/interior/dam_interior/hanger) +"njy" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) "njF" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) +"nkn" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/landmark/nightmare{ + insert_tag = "purple-center-bridge" + }, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) "nlH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -48228,21 +45825,32 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/restroom) +"nnn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/item/weapon/gun/revolver/cmb, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) "nnv" = ( /turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/landing_pad_one) -"nnL" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood{ - layer = 3 +"nqW" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"nrG" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"nqv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/hatchet, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) "nsf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -48255,13 +45863,34 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/floor_marked, /area/desert_dam/building/security/armory) +"ntP" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) "nue" = ( /turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/south_valley_dam) +"nvh" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"nvn" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_south) "nvr" = ( /obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"nwS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/revolver/cmb, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) "nyN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/prison/bright_clean2, @@ -48270,25 +45899,42 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) +"nzf" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) "nzB" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"nzE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - layer = 3 +"nAj" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) "nAm" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"nAA" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) "nCi" = ( /obj/item/stack/medical/advanced/ointment/predator, /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/temple) +"nDg" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/valley/valley_labs) "nEM" = ( /turf/closed/wall/hangar{ name = "Elevator Shaft"; @@ -48300,11 +45946,39 @@ /obj/structure/closet/coffin/predator, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"nFp" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"nFs" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "nFW" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/white, /area/desert_dam/building/administration/meetingrooom) +"nGj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"nIm" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_south) "nIz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/green/north, @@ -48323,6 +45997,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/cafeteria/loading) +"nOT" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) "nRV" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -48340,6 +46019,12 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/control_room) +"nTj" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) "nTn" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/close, @@ -48352,11 +46037,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"nTW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ammo_casing/bullet, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) +"nVa" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/south_tunnel) +"nVv" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) "nXu" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -48366,6 +46057,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"nXT" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) "nYf" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison, @@ -48379,6 +46076,13 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) +"nYK" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) "nYZ" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/cleanable/dirt, @@ -48396,6 +46100,11 @@ }, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"odk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/lobby) "odr" = ( /obj/structure/surface/table/reinforced, /obj/item/roller, @@ -48403,15 +46112,16 @@ /obj/item/roller, /turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) +"odQ" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_east) "odR" = ( /obj/structure/largecrate/random/case/small, /obj/structure/machinery/light, /turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/garage) -"oey" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/bright_clean2, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "ofB" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -48423,28 +46133,42 @@ "ogc" = ( /turf/open/desert/dirt/rock1, /area/desert_dam/exterior/landing_pad_one) -"ogu" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +"ogs" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"ogH" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) "oit" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_crashsite) -"okj" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3"; - pixel_x = 17 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) +"ojU" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"ojZ" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_south) "olL" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"omu" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) "onm" = ( /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/desert/dirt, @@ -48454,6 +46178,12 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) +"ooq" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) "ooQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock, @@ -48461,10 +46191,36 @@ "ooW" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_labs) +"opD" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"opR" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"opT" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/north_tunnel) +"opX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "opZ" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) +"oqd" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) "oqy" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -48472,12 +46228,11 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"osD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +"org" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) "osV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, @@ -48500,17 +46255,11 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) -"ovE" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/surgery_room_one) -"owy" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) +"ovf" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) "oyf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -48518,13 +46267,15 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"ozh" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) "ozu" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"ozv" = ( -/obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) "ozQ" = ( /obj/structure/machinery/door/unpowered/shuttle, /turf/open/shuttle/can_surgery/red, @@ -48535,12 +46286,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"oAY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) "oBR" = ( /obj/structure/disposalpipe/segment, /turf/open/asphalt, @@ -48565,11 +46310,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/blue, /area/desert_dam/interior/dam_interior/tech_storage) -"oIc" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) "oIE" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -48577,6 +46317,24 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"oIN" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/landmark/nightmare{ + insert_tag = "green-east-bridge" + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"oJd" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/largecrate/supply, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "oJw" = ( /turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_hydro) @@ -48590,27 +46348,22 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/security/detective) -"oKu" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) "oKG" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal5" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"oKX" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) "oMz" = ( /turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/landing_pad_one) -"oNS" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, -/area/desert_dam/exterior/valley/south_valley_dam) "oOj" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -48629,29 +46382,51 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/freezerfloor, /area/desert_dam/interior/dam_interior/break_room) +"oQX" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) "oRZ" = ( /obj/structure/closet/radiation, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_excavation) -"oTg" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_medical) +"oSp" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"oSE" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "oUr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) +"oUB" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"oUK" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) "oUN" = ( /obj/structure/window/framed/chigusa, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_lobby) +"oUU" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_east) "oVs" = ( /obj/structure/surface/table, /turf/open/floor/wood, @@ -48676,16 +46451,38 @@ /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/exterior/telecomm/lz1_valley) +"oZm" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) "pac" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) +"paf" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_central_south) +"pah" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) "pal" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"pay" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) "pba" = ( /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, @@ -48700,15 +46497,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) -"pcu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/darkyellow2/west, -/area/desert_dam/interior/dam_interior/engine_west_wing) +"pcG" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) "pdi" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 1 @@ -48716,18 +46509,24 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/interior/caves/central_caves) -"pdG" = ( -/obj/structure/machinery/optable, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) -"pgb" = ( -/obj/structure/barricade/deployable{ - dir = 8 +"pdn" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = 12 }, -/turf/open/desert/dirt/desert_transition_edge1, -/area/desert_dam/exterior/valley/valley_medical) +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"pdq" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"pfP" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_east) "pif" = ( /obj/docking_port/stationary/trijent_elevator/empty{ id = "trijent_engineering"; @@ -48741,6 +46540,16 @@ "pij" = ( /turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/bar_valley_dam) +"pjm" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"pjK" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) "pke" = ( /obj/structure/prop/dam/wide_boulder/boulder1, /turf/open/desert/dirt, @@ -48749,17 +46558,13 @@ /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz1_xenoflora) -"pmt" = ( -/obj/effect/decal/sand_overlay/sand1{ +"pnL" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/stairs{ dir = 1 }, -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, -/area/desert_dam/exterior/valley/valley_medical) -"pob" = ( -/obj/item/stack/sheet/wood, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) "poi" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, @@ -48783,6 +46588,20 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/whitegreen/west, /area/desert_dam/building/medical/virology_isolation) +"pqU" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/valley/south_valley_dam) +"ptg" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "upper_2" + }, +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) "puM" = ( /obj/structure/machinery/light{ dir = 1 @@ -48803,21 +46622,35 @@ "pvs" = ( /turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/south_valley_dam) -"pvv" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) "pvy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/whitepurple/east, /area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"pvF" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"pvQ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_south) "pwc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/prison/darkyellow2, /area/desert_dam/building/mining/workshop) +"pyr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "pyP" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -48843,24 +46676,38 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"pAd" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"pAn" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) "pAE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) -"pBe" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"pBy" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"pCq" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"pCU" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_south) "pDd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/warnplate/east, /area/desert_dam/building/substation/northwest) -"pDM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) "pDW" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 @@ -48884,6 +46731,10 @@ /obj/item/storage/fancy/vials/random, /turf/open/floor/wood, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"pFt" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/prison/darkpurple2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) "pFY" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -48898,6 +46749,13 @@ /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/garage) +"pGP" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) "pHs" = ( /obj/structure/desertdam/decals/road_stop{ dir = 8; @@ -48922,15 +46780,17 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/warehouse/breakroom) -"pIR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, +"pIC" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +/turf/open/floor/prison/yellowcorner/east, +/area/desert_dam/building/hydroponics/hydroponics) +"pJw" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) "pJW" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, @@ -48938,10 +46798,24 @@ "pLm" = ( /turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/south_valley_dam) +"pNk" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/south_valley_dam) "pNG" = ( /obj/structure/xenoautopsy/tank/broken, /turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) +"pOz" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/excavation/component8/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"pOC" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) "pOE" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -48949,39 +46823,34 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_civilian) -"pPC" = ( -/obj/effect/decal/sand_overlay/sand1{ +"pPk" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"pQG" = ( +/obj/structure/barricade/deployable{ dir = 1 }, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) -"pPW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/whiteyellowcorner/east, -/area/desert_dam/interior/dam_interior/lobby) -"pQN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/item/weapon/baseballbat/metal, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/north, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"pRw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) +"pQY" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"pRr" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_central_south) "pRD" = ( /turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/landing_pad_one) +"pSD" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "pSM" = ( /obj/effect/landmark/nightmare{ insert_tag = "purple-new-bridge" @@ -49003,6 +46872,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"pUQ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river_mouth/southern) "pUR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -49010,14 +46884,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"pWn" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 +"pWW" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"pYd" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, -/area/desert_dam/exterior/valley/valley_crashsite) +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"pYw" = ( +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"qae" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"qby" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) "qbC" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, @@ -49029,21 +46921,29 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"qdI" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/item/weapon/gun/rifle/m41a/corporate/no_lock, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"qeG" = ( -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, -/area/desert_dam/exterior/landing_pad_two) +"qfa" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_northwest) +"qfv" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) "qfI" = ( /obj/structure/flora/bush/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"qhe" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"qip" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) "qjg" = ( /turf/open/desert/rock/deep/transition/southeast, /area/desert_dam/interior/caves/temple) @@ -49053,6 +46953,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) +"qkD" = ( +/obj/structure/platform/metal/almayer/west, +/turf/closed/wall/r_wall/bunker/floodgate, +/area/desert_dam/exterior/valley/valley_labs) "qkJ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -49064,11 +46968,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt/cement/cement12, /area/desert_dam/exterior/telecomm/lz1_south) -"qln" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) "qlr" = ( /obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, @@ -49094,6 +46993,11 @@ }, /turf/open/shuttle/can_surgery/red, /area/desert_dam/interior/dam_interior/hanger) +"qmv" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) "qmy" = ( /obj/structure/surface/rack, /turf/open/floor/sandstone/runed, @@ -49106,14 +47010,48 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) +"qnY" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"qoe" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river_mouth/southern) +"qoq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll, +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_x = 10; + pixel_y = 18 + }, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "qoJ" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/landing_pad_one) -"qqy" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/building/hydroponics/hydroponics) +"qoQ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"qpZ" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/valley/valley_labs) "qqR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -49123,16 +47061,35 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) -"qqU" = ( -/obj/structure/barricade/wooden, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) +"qsF" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river_mouth/southern) "qtb" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_labs) +"qub" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"qvt" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_east) +"qwV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/administrator, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) "qwZ" = ( /obj/structure/bed/chair, /obj/effect/landmark/survivor_spawner, @@ -49142,15 +47099,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"qxQ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) "qyu" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/desert/dirt/desert_transition_edge1, @@ -49167,6 +47115,10 @@ "qzo" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_telecoms) +"qzv" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) "qCr" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -49175,10 +47127,20 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) +"qCs" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) "qCR" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_crashsite) +"qCT" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) "qDb" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) @@ -49186,6 +47148,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/landing_pad_one) +"qEt" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"qFt" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) "qGb" = ( /obj/structure/closet, /obj/effect/landmark/objective_landmark/medium, @@ -49195,6 +47168,12 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"qGw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "qHh" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -49210,6 +47189,11 @@ /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"qHL" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_east) "qIC" = ( /obj/structure/flora/tree/joshua, /turf/open/desert/dirt, @@ -49230,19 +47214,10 @@ "qKE" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_hydro) -"qKF" = ( -/obj/structure/disposalpipe/segment, -/obj/item/weapon/gun/rifle/m41a/corporate/no_lock, -/turf/open/floor/prison/bluecorner/north, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"qKN" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) +"qKO" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/north_tunnel) "qLD" = ( /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/blood, @@ -49259,11 +47234,41 @@ }, /turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) +"qMD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "qNk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) +"qNH" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"qNN" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"qOq" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"qOS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) "qPl" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 2; @@ -49272,26 +47277,30 @@ }, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) -"qPB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable{ - dir = 8 +"qPA" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) "qQz" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) -"qVn" = ( -/obj/effect/spawner/gibspawner/human, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = 12 +"qQO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +/obj/item/weapon/gun/rifle/m41a/corporate/no_lock, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"qRY" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_south) "qVN" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" @@ -49299,14 +47308,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"qXK" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1"; - pixel_x = 12; - pixel_y = 16 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) "qXM" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -49323,13 +47324,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/dark2, /area/desert_dam/building/administration/archives) -"qZF" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "ray" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/desertdam/decals/road_edge{ @@ -49340,25 +47334,18 @@ "rbp" = ( /turf/open/desert/desert_shore/shore_corner1/north, /area/desert_dam/interior/caves/temple) +"rbz" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) "rbM" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/telecomm/lz2_storage) -"rbV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/colonist/random, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"rdo" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"rcZ" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_south) "rdW" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) @@ -49375,6 +47362,18 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock/deep, /area/desert_dam/interior/caves/temple) +"rfw" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_north) +"rfR" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/ammo_magazine/rifle, +/obj/item/ammo_magazine/rifle, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "rfU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -49388,40 +47387,74 @@ /obj/item/stack/yautja_rope, /turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) -"rgU" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +"rhe" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"rhv" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/obj/structure/barricade/deployable{ - dir = 1 +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"ria" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) "rjd" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/floor/filtrationside/northwest, /area/desert_dam/exterior/valley/valley_medical) +"rkd" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"rko" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) "rlU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/cafeteria/loading) +"rmi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "rmo" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/bar_valley_dam) -"rnE" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/prison/sterile_white/west, -/area/desert_dam/building/medical/morgue) +"rnA" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "rob" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"rod" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) "rpc" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -49429,6 +47462,16 @@ /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) +"rpo" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"rpN" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) "rpQ" = ( /obj/effect/decal/cleanable/liquid_fuel, /turf/open/asphalt/cement_sunbleached, @@ -49438,10 +47481,10 @@ /obj/effect/decal/cleanable/vomit, /turf/open/floor/prison/bluecorner, /area/desert_dam/interior/dam_interior/tech_storage) -"rqM" = ( -/obj/item/weapon/gun/smg/mp5, -/turf/open/floor/prison/darkyellow2/northwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) +"rrB" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) "rtW" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, @@ -49459,16 +47502,10 @@ }, /turf/open/desert/rock/deep, /area/desert_dam/interior/caves/temple) -"rvj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/prison/bright_clean/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) +"rwI" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) "rxS" = ( /obj/docking_port/stationary/trijent_elevator/occupied{ id = "trijent_lz1"; @@ -49479,14 +47516,37 @@ }, /turf/open/gm/empty, /area/shuttle/trijent_shuttle/lz1) +"ryn" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "ryG" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/prison/darkyellow2/northwest, /area/desert_dam/interior/dam_interior/garage) +"rzj" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"rAj" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/south_valley_dam) "rAo" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) +"rAx" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_south) "rAL" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/powercell, @@ -49508,11 +47568,11 @@ }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"rCp" = ( -/obj/structure/platform/mineral/sandstone/runed, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) +"rCn" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_east) "rDa" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, @@ -49540,6 +47600,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"rFY" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) "rGu" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, @@ -49547,14 +47612,11 @@ "rHw" = ( /turf/open/floor/plating, /area/desert_dam/exterior/telecomm/lz2_containers) -"rHx" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/item/prop/colony/used_flare, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +"rIq" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_north) "rIY" = ( /obj/structure/tunnel, /turf/open/desert/dirt/rock1, @@ -49567,18 +47629,17 @@ /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"rKj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"rKE" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/objective_landmark/medium, -/obj/item/ammo_magazine/rifle, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/prison/darkredfull2, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"rKA" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"rLz" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) "rNg" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -49594,6 +47655,12 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/breakroom) +"rOc" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) "rPp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -49604,19 +47671,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/garage) -"rQQ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"rRL" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +"rSC" = ( +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) "rTP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -49629,10 +47687,18 @@ name = "reinforced metal wall" }, /area/desert_dam/exterior/rock) +"rUl" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) "rUA" = ( /obj/structure/fence, /turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_hydro) +"rUD" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) "rUK" = ( /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, @@ -49646,34 +47712,31 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/prison, /area/desert_dam/building/mining/workshop) -"rWY" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" - }, +"rVB" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_south) +"rVG" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"rVO" = ( +/obj/structure/platform/metal/almayer/west, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/item/storage/box/m94, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"rXG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/obj/item/prop/colony/used_flare, -/turf/open/desert/excavation/component7/southeast, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_crashsite) +"rXo" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) "rXI" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"rZx" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/tech_storage) "rZU" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal5" @@ -49681,6 +47744,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"sad" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) "sav" = ( /turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/landing_pad_two) @@ -49708,12 +47776,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/whiteyellow/west, /area/desert_dam/interior/dam_interior/garage) -"sdq" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt/desert_transition_edge1/north, -/area/desert_dam/exterior/telecomm/lz1_valley) +"sdc" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/excavation/component5/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) "sdu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, @@ -49738,6 +47804,13 @@ "shm" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/south_valley_dam) +"shK" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib3"; + pixel_x = 17 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) "sia" = ( /turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/bar_valley_dam) @@ -49753,6 +47826,18 @@ "skB" = ( /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_hydro) +"skN" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_south) +"slx" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) "slN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -49766,6 +47851,19 @@ }, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"smi" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"smr" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) "sms" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -49786,23 +47884,44 @@ icon_state = "road_edge_decal7" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"soS" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/tile, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"soO" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/valley/valley_labs) +"soV" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/valley/valley_labs) +"spe" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = 12 + }, +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"sqH" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/interior/caves/temple) "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/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_crashsite) +"srp" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_east) +"srS" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) "ssy" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -49816,16 +47935,32 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"stf" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_north) +"stx" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_south) +"stG" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"suL" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_south) "svy" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"svH" = ( -/obj/item/prop/colony/used_flare, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) "swg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean2, @@ -49836,6 +47971,10 @@ }, /turf/open/shuttle/can_surgery/red, /area/desert_dam/interior/dam_interior/hanger) +"sxC" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) "sye" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt/cement, @@ -49847,23 +47986,27 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) -"syU" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, -/area/desert_dam/exterior/valley/valley_medical) "sAm" = ( /turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/landing_pad_two) +"sAT" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "sAZ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) +"sCS" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) "sCW" = ( /obj/structure/largecrate/random/secure, /turf/open/desert/dirt, @@ -49872,6 +48015,21 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/tech_storage) +"sEg" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river_mouth/southern) +"sEj" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_south) +"sEI" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_central_south) "sEL" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -49901,12 +48059,38 @@ /obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"sHw" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"sKN" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"sLt" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"sLw" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) "sLx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"sLI" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_central_south) "sLS" = ( /obj/structure/window/framed/bunker/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -49919,6 +48103,27 @@ "sNn" = ( /turf/open/desert/rock/deep/transition/north, /area/desert_dam/exterior/telecomm/lz1_south) +"sNC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"sNM" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"sNO" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) "sNQ" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/telecomm/lz2_storage) @@ -49931,6 +48136,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) +"sOt" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) "sOu" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/chem_dispenser/soda{ @@ -49956,21 +48166,16 @@ }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/landing_pad_one) +"sQI" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/valley/valley_labs) "sRl" = ( /obj/effect/landmark/nightmare{ insert_tag = "uppcrash" }, /turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_hydro) -"sTa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"sUb" = ( -/obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) "sUe" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -49986,6 +48191,14 @@ }, /turf/open/asphalt/tile, /area/desert_dam/exterior/landing_pad_one) +"sWs" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"sWL" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) "sWS" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -49997,6 +48210,14 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) +"sXz" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) "sXM" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" @@ -50027,13 +48248,14 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/prison/green/north, /area/desert_dam/building/dorms/hallway_westwing) -"sZe" = ( -/obj/effect/landmark/corpsespawner/colonist/random/burst, -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" - }, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) +"sZg" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/valley/valley_labs) +"tag" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "tai" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/landmark/xeno_hive_spawn, @@ -50055,6 +48277,15 @@ /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"tbR" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"tcA" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) "tcB" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, @@ -50064,23 +48295,36 @@ /obj/item/folder/yellow, /turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) +"tdF" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/valley/valley_labs) +"tdX" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_cargo) "teR" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/temple) +"tfc" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"tfU" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) "thd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics_loading) -"thm" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) "thp" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/item/stack/sheet/wood/medium_stack, @@ -50090,10 +48334,23 @@ /obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz2_storage) +"tjm" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"tjS" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_central_south) "tjX" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"tkJ" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) "tlh" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/desertdam/decals/road_edge{ @@ -50101,20 +48358,19 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) -"tlo" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) +"tlu" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) "tni" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) +"tnp" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_west_wing) "tnu" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" @@ -50124,29 +48380,27 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"toR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/wygoon, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"tqw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, +"trD" = ( +/obj/effect/sentry_landmark/lz_2/top_right, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) +/area/desert_dam/exterior/valley/valley_cargo) "trP" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"trU" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) "trZ" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/desert/rock/deep, /area/desert_dam/interior/caves/temple) +"tsx" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) "tsL" = ( /turf/open/asphalt/tile, /area/desert_dam/exterior/telecomm/lz2_storage) @@ -50161,6 +48415,13 @@ }, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) +"tvD" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) "txr" = ( /turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/landing_pad_one) @@ -50180,10 +48441,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"tyY" = ( -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) +"tzT" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_east) "tAs" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_telecoms) @@ -50202,12 +48464,33 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) +"tAN" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"tBb" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_east) +"tBd" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) "tBD" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"tCi" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) "tCn" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/objective_landmark/science, @@ -50222,16 +48505,22 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"tEH" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"tEM" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/ammo_magazine/rifle, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "tFi" = ( /obj/effect/decal/sand_overlay/sand2, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/interior/caves/central_caves) -"tFD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison/whitegreencorner/north, -/area/desert_dam/building/medical/lobby) "tFG" = ( /obj/structure/machinery/light{ dir = 1 @@ -50249,13 +48538,17 @@ /obj/effect/decal/remains/human, /turf/open/desert/rock, /area/desert_dam/interior/caves/temple) -"tJc" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +"tHT" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 }, -/turf/open/floor/dark2, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"tIJ" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) "tKQ" = ( /turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_crashsite) @@ -50266,6 +48559,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/sterile_white, /area/desert_dam/building/dorms/pool) +"tKV" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) "tLo" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 @@ -50290,32 +48588,43 @@ "tOj" = ( /turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/telecomm/lz1_xenoflora) -"tPP" = ( -/obj/structure/platform, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_valley) -"tPQ" = ( -/obj/effect/landmark/corpsespawner/wygoon/lead, +"tPt" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"tPG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/wygoon, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/blue, -/area/desert_dam/interior/lab_northeast/east_lab_RND) +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "tQR" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"tRl" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/darkyellow2, -/area/desert_dam/interior/dam_interior/engine_west_wing) "tSK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"tUp" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) "tUF" = ( /turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/bar_valley_dam) +"tUY" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) "tVX" = ( /obj/structure/sink, /obj/effect/landmark/objective_landmark/medium, @@ -50324,11 +48633,20 @@ "tXS" = ( /turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/south_valley_dam) +"tYa" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) "tYS" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, /area/desert_dam/building/cafeteria/backroom) +"tZe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/hatchet, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) "tZQ" = ( /turf/closed/wall/r_wall, /area/desert_dam/exterior/rock) @@ -50336,11 +48654,15 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"ucG" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitepurple/north, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"ube" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"uch" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_central_north) "ucS" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -50350,28 +48672,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"uef" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/green, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) "uez" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/garage) -"ueI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/rifle, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) "ueS" = ( /turf/open/asphalt/cement/cement12, /area/desert_dam/exterior/telecomm/lz1_south) @@ -50419,6 +48724,10 @@ "ulg" = ( /turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/telecomm/lz2_storage) +"uli" = ( +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "ulm" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -50432,10 +48741,35 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"upP" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/asphalt, +"unC" = ( +/obj/effect/landmark/corpsespawner/colonist/random/burst, +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_medical) +"unD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"uod" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"uqP" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_south) "urC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -50445,6 +48779,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) +"urS" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "uso" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -50452,6 +48791,15 @@ /obj/item/weapon/broken_bottle, /turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) +"usx" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/excavation/component5/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"usD" = ( +/obj/structure/platform/stone/runed_sandstone, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) "ute" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal5" @@ -50460,6 +48808,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) +"utn" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_south) "uty" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -50468,10 +48821,6 @@ "uvf" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz1_xenoflora) -"uvg" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) "uvh" = ( /obj/structure/toilet{ dir = 4 @@ -50479,6 +48828,20 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/freezerfloor, /area/desert_dam/building/security/prison) +"uwq" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"uxk" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) "uxs" = ( /obj/structure/disposalpipe/segment, /turf/open/asphalt/tile, @@ -50487,17 +48850,89 @@ /obj/structure/surface/rack, /turf/open/floor/plating, /area/desert_dam/building/cafeteria/backroom) +"uyT" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_east) +"uzo" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) "uzL" = ( /turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/telecomm/lz1_valley) +"uAb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"uAh" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "uAo" = ( /turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_hydro) +"uBj" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"uBw" = ( +/obj/item/weapon/gun/smg/mp5, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) "uBP" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) +"uCk" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"uCz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"uDi" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_east) +"uDO" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"uFb" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"uFv" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"uFO" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) "uFX" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_hydro) @@ -50531,16 +48966,21 @@ /obj/structure/medical_supply_link/green, /turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) +"uIO" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_northwest) "uJl" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) -"uKo" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 +"uKi" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/interior/caves/temple) +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) "uLr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -50559,16 +48999,16 @@ }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) +"uMC" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) "uME" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_two) -"uMG" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt/dirt2, -/area/desert_dam/exterior/valley/south_valley_dam) "uMZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -50581,6 +49021,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_crashsite) +"uPJ" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) "uPS" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -50596,9 +49041,27 @@ /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"uSa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/lobby) +"uSg" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) "uSv" = ( /turf/open/asphalt/tile, /area/desert_dam/exterior/landing_pad_two) +"uSA" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_south) "uTo" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, @@ -50607,16 +49070,31 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) +"uVn" = ( +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) "uVK" = ( /obj/item/tool/pickaxe, /obj/effect/decal/remains/human, /turf/open/desert/rock, /area/desert_dam/interior/caves/temple) +"uWq" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) "uWt" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/exterior/landing_pad_two) +"uWK" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/mod88, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "uWT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -50639,29 +49117,53 @@ "uZr" = ( /turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/landing_pad_one) -"vbC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/asteroidplating, -/area/desert_dam/exterior/valley/valley_crashsite) -"vdJ" = ( -/obj/structure/barricade/wooden{ +"vah" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"vaR" = ( +/obj/structure/stairs{ dir = 8 }, -/turf/open/asphalt/tile, -/area/desert_dam/exterior/valley/valley_crashsite) +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_wilderness) +"vds" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"veG" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_central_south) "vfr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/interior/caves/central_caves) +"vfQ" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) "vgm" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"vgO" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"vhn" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) "vhs" = ( /obj/structure/surface/table, /turf/open/floor/whiteyellow/southwest, @@ -50680,6 +49182,12 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/hanger) +"vit" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) "viV" = ( /obj/structure/fence, /turf/open/desert/dirt, @@ -50688,6 +49196,11 @@ /obj/structure/flora/grass/desert/lightgrass_12, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) +"vjZ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_east) "vnf" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -50695,6 +49208,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"vog" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_south) +"voE" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"vpg" = ( +/obj/structure/machinery/optable, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) "vph" = ( /obj/structure/tunnel, /turf/open/desert/dirt/desert_transition_edge1/east, @@ -50733,10 +49262,28 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/mining/workshop_foyer) +"vrI" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_south) +"vsG" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "vte" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) +"vtE" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/north_tunnel) +"vtY" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/largecrate/random, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) "vud" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/tile, @@ -50745,6 +49292,16 @@ /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"vuE" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"vuK" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) "vvy" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1{ @@ -50752,15 +49309,34 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"vvL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidplating, +"vwh" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"vwn" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m41a/corporate/no_lock, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"vwB" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/east, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_crashsite) +"vwP" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/telecomm/lz1_valley) "vxt" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/freezerfloor, /area/desert_dam/building/water_treatment_one/breakroom) +"vza" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) "vzj" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_labs) @@ -50816,14 +49392,6 @@ "vEW" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/telecomm/lz2_storage) -"vFz" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) "vGu" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -50842,26 +49410,72 @@ /obj/structure/tunnel, /turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_civilian) +"vHE" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) "vHQ" = ( /turf/open/gm/empty, /area/shuttle/trijent_shuttle/omega) +"vHV" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"vHX" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) +"vIh" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) "vIx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"vIS" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"vKV" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) "vLd" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"vLf" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) "vLw" = ( /obj/structure/window/shuttle, /obj/effect/decal/cleanable/dirt, /turf/open/shuttle/plating, /area/desert_dam/interior/dam_interior/hanger) +"vLH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"vLZ" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) "vMp" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -50873,13 +49487,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/building/hydroponics/hydroponics_loading) -"vNW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/asteroidplating, +"vNn" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/excavation/component5/southeast, /area/desert_dam/exterior/valley/valley_crashsite) "vOv" = ( /obj/structure/disposalpipe/segment, @@ -50887,18 +49497,23 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) -"vQE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) "vRc" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/landing_pad_one) +"vRw" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_east) +"vRX" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) "vSF" = ( /turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/telecomm/lz2_storage) @@ -50913,14 +49528,6 @@ "vTA" = ( /turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/landing_pad_two) -"vTE" = ( -/obj/structure/machinery/power/apc/no_power/west, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = 12 - }, -/turf/open/floor/prison/blue/west, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "vTR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -50928,6 +49535,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"vUd" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_north) +"vUf" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) "vUl" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -50935,11 +49552,43 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"vUY" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_east) +"vYM" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_south) "vYZ" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/drill, /turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/caves/temple) +"vZh" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"vZG" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"vZI" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/west_tunnel) +"vZQ" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_valley) "wav" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, @@ -50954,18 +49603,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"wbq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) "wbv" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_crashsite) +"wbP" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_labs) "wcc" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -50975,14 +49619,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"wcZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"wfJ" = ( +/obj/structure/stairs{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) "wgi" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, @@ -50990,6 +49633,11 @@ "wgv" = ( /turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/bar_valley_dam) +"whu" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_central_south) "wiF" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/prison/darkyellow2/west, @@ -51006,6 +49654,37 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/cafeteria/loading) +"wkw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"wkI" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"wmA" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_south) +"wns" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"wnv" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) "wnE" = ( /obj/structure/closet/crate/hydroponics/prespawned, /obj/effect/landmark/objective_landmark/close, @@ -51015,6 +49694,22 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/garage) +"woz" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"woG" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"woV" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) "wpr" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/tile, @@ -51023,6 +49718,16 @@ /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"wqv" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"wqz" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) "wqM" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -51032,6 +49737,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) +"wqY" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) "wrk" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -51050,6 +49760,11 @@ }, /turf/open/floor/white, /area/desert_dam/interior/dam_interior/garage) +"wsI" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) "wta" = ( /obj/structure/bed/chair{ dir = 4 @@ -51070,15 +49785,35 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) +"wwq" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) "wya" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) +"wyg" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"wyi" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) "wyo" = ( /turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/interior/caves/temple) +"wyx" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_south) "wyR" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -51094,12 +49829,28 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) +"wzx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) "wAP" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) +"wCX" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"wDu" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) "wDC" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/desert/dirt, @@ -51107,45 +49858,19 @@ "wEy" = ( /turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/landing_pad_one) -"wEQ" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/prison/bright_clean2/southwest, -/area/desert_dam/building/medical/morgue) "wFv" = ( /obj/structure/surface/table/reinforced, /turf/open/floor/prison/whitered/west, /area/desert_dam/building/medical/office1) -"wFU" = ( -/obj/structure/showcase{ - color = "#880808"; - desc = "A large red statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "The Titan" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1; - icon_state = "halfarmor7_ebony" - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1; - icon_state = "y-boots4_ebony" - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - icon_state = "pred_mask12_ebony"; - unacidable = 0; - pixel_y = 9 +"wIf" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/turf/open/floor/strata/grey_multi_tiles, -/area/desert_dam/interior/caves/temple) -"wGR" = ( -/obj/structure/barricade/wooden{ +/obj/structure/barricade/deployable{ dir = 8 }, -/obj/item/weapon/twohanded/spear, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/dam_interior/atmos_storage) +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "wIi" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/desert/dirt, @@ -51157,16 +49882,11 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) -"wIu" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"wIC" = ( -/obj/item/prop/colony/used_flare, -/turf/open/desert/dirt/desert_transition_edge1/west, -/area/desert_dam/exterior/valley/valley_crashsite) +"wKn" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) "wLq" = ( /obj/structure/bed/chair{ dir = 8 @@ -51248,6 +49968,12 @@ /obj/item/storage/briefcase/inflatable, /turf/open/floor/prison/southwest, /area/desert_dam/interior/dam_interior/atmos_storage) +"wUX" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) "wYO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -51262,6 +49988,13 @@ /obj/structure/machinery/recharge_station, /turf/open/floor/prison, /area/desert_dam/building/substation/west) +"xaO" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) "xbj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" @@ -51274,6 +50007,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) +"xbY" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) "xcG" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -51287,6 +50025,15 @@ /obj/structure/flora/grass/desert/lightgrass_5, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) +"xdz" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"xdB" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_south) "xec" = ( /obj/structure/flora/grass/desert/lightgrass_1, /obj/structure/tunnel, @@ -51315,6 +50062,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/cafeteria/loading) +"xjf" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) "xjY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -51334,6 +50087,11 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall, /area/desert_dam/building/dorms/restroom) +"xky" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) "xkF" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -51361,10 +50119,20 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/warning/north, /area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"xlV" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) "xmH" = ( /obj/effect/decal/cleanable/dirt, /turf/open/desert/rock/deep/rock4, /area/desert_dam/interior/caves/temple) +"xmU" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "xof" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/tile, @@ -51387,10 +50155,18 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"xpo" = ( +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) "xqQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_hydro) +"xrf" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) "xrx" = ( /obj/effect/landmark/monkey_spawn, /turf/open/desert/dirt/desert_transition_edge1/northwest, @@ -51416,34 +50192,71 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"xsU" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"xsV" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/iv_drip, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"xsZ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"xtk" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) "xuS" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_hydro) -"xuY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) -"xvt" = ( -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) "xvX" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, /turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) +"xwe" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"xwg" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"xwQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"xwV" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/almayer/west, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_crashsite) "xxv" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"xxQ" = ( -/obj/structure/platform, -/turf/open/desert/dirt/desert_transition_edge1/east, -/area/desert_dam/exterior/telecomm/lz1_valley) "xzc" = ( /obj/structure/surface/table, /turf/open/floor/wood, @@ -51454,28 +50267,65 @@ }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) +"xzF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/item/prop/colony/used_flare, +/turf/open/desert/excavation/component7/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"xAq" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"xBH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/chef, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) "xBM" = ( /turf/open/desert/rock/deep/transition/northeast, /area/desert_dam/interior/caves/temple) +"xCc" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river_mouth/southern) +"xCg" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_central_north) "xCM" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/floor/plating, /area/desert_dam/exterior/telecomm/lz2_containers) -"xDb" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"xCN" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_central_south) +"xCW" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/valley/valley_labs) +"xDl" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"xDn" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) "xEz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"xEA" = ( -/obj/structure/closet/bodybag, -/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, -/area/desert_dam/exterior/valley/valley_medical) "xEP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/white, @@ -51491,6 +50341,17 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) +"xGA" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"xGS" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) "xHa" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/desert/dirt, @@ -51504,6 +50365,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) +"xIa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "xIC" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/telecomm/lz2_storage) @@ -51521,14 +50388,24 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) -"xLb" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/desert/dirt/desert_transition_corner1, -/area/desert_dam/exterior/valley/valley_crashsite) +"xLd" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"xLH" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_east) "xLS" = ( /obj/structure/flora/grass/desert/lightgrass_5, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"xMh" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "xMr" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/barricade/wooden{ @@ -51536,6 +50413,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_central_north) +"xME" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "xNB" = ( /obj/structure/machinery/floodlight/landing, /obj/structure/machinery/landinglight/ds1{ @@ -51543,10 +50424,21 @@ }, /turf/open/floor/asteroidplating, /area/desert_dam/exterior/landing_pad_one) +"xNK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) "xOb" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) +"xOc" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_northwest) "xOm" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -51575,21 +50467,33 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/darkpurple2/north, /area/desert_dam/interior/lab_northeast/east_lab_biology) +"xSr" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/rock/deep, +/area/desert_dam/interior/dam_interior/south_tunnel) +"xSQ" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_northwest) +"xSR" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) "xTH" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_labs) -"xTM" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/southwest, -/area/desert_dam/interior/lab_northeast/east_lab_RND) "xUC" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/neutral, -/area/desert_dam/interior/dam_interior/engine_room) +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = 12 + }, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) "xUS" = ( /turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/landing_pad_two) @@ -51603,6 +50507,11 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_one) +"xXO" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "xYb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -51621,13 +50530,19 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"yab" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = 12 +"xZR" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) +"xZS" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/white, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) "yaA" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/rock/deep/transition/west, @@ -51650,6 +50565,15 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/desert_dam/building/mining/workshop) +"ydP" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_east) +"yeb" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) "yeL" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/telecomm/lz2_tcomms) @@ -51664,9 +50588,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) +"yhW" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) "yii" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/rock) +"ykC" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) "ykJ" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -51688,15 +50624,6 @@ /obj/structure/prop/dam/van, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"yll" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) "ylo" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/freezerfloor, @@ -51718,6 +50645,11 @@ }, /turf/open/floor/prison/darkyellow2/east, /area/desert_dam/interior/dam_interior/garage) +"ymb" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_south) (1,1,1) = {" acu @@ -54923,7 +53855,7 @@ dTs dTs dTs dTs -cfE +iym cfe cgm cgt @@ -55157,7 +54089,7 @@ dTs dTs dTs dTs -kzQ +kbL ceA cgm cic @@ -55185,8 +54117,8 @@ cXl cuP cuP cXm -cAQ -cCO +gvI +hFm ctK dTs dTs @@ -55391,8 +54323,8 @@ jZZ dTs dTs dTs -aIP -chv +fdt +cLy cgm cgm chb @@ -55416,12 +54348,12 @@ dTs dTs dTs dTs -czw -czY -cAa -cAR -cCU -cAa +gty +gWW +ube +nrG +jmo +ube dTs dTs vTA @@ -55626,7 +54558,7 @@ hvG dTs dTs bPA -kzQ +kbL ceA cgm cgm @@ -55860,7 +54792,7 @@ ceA dTs aUm emt -kzQ +kbL ceA ceA ceA @@ -56093,8 +55025,8 @@ ceA ceA bPA cjO -aIT -aKb +dpO +hCC ceB ceB ceB @@ -56113,7 +55045,7 @@ aSK cwm aUh bPA -cxS +tdX crq dTs dTs @@ -56347,7 +55279,7 @@ bbE gMN aUm emt -cxt +xLd crr cwB csD @@ -56561,27 +55493,27 @@ cwl ceA bPA cjO -cFd -cgb +tCi +mWf aSK chG -chw -ciF -ciF -ciF -cmh -cos -cqG -crm -ciF -ciF -chv +tsx +mus +mus +mus +kgJ +qFt +uzo +mbw +mus +mus +cLy ceA aSI aSK beO -cvD -cHu +hkB +ria cYk cYk cRL @@ -56796,20 +55728,20 @@ bNE bNE bRw bSV -cgj +iZZ cey chG -cfC +pPk cjO cjO cjO cjO -cex -cfp +xsU +mrf cjO cjO cjO -kzQ +kbL ceA aSI aSK @@ -57030,10 +55962,10 @@ uvh bNE dTs bPA -kzQ +kbL aSI chG -cfC +pPk cjO ccm hMc @@ -57043,13 +55975,13 @@ bqd hMc aUu cjO -dGN +uxk aUm xvX aSK bqd -cFd -aKo +tCi +jBQ cIv cYZ cUl @@ -57059,9 +55991,9 @@ crx dlM crx crx -sUb +tIJ dFo -lBR +rSC doE cDb cGS @@ -57264,10 +56196,10 @@ cdJ bNE dTs bPA -kzQ +kbL aSI chG -cfC +pPk cjO tAs cjK @@ -57276,14 +56208,14 @@ cmi cmi crn aRy -cvD -cxv +hkB +opR beO aSK aSL cjO cjO -cxt +xLd cJx cYZ cUl @@ -57498,10 +56430,10 @@ cdN bNE dTs emt -kzQ +kbL aSI chG -cfC +pPk cjO tAs ckr @@ -57516,8 +56448,8 @@ aSK aSK aSK beO -cvD -aKq +hkB +tUY cBU cYZ dlb @@ -57732,10 +56664,10 @@ cdN bNE dTs cjO -kzQ +kbL aSI chG -cfC +pPk cjO tAs ckr @@ -57744,8 +56676,8 @@ cmj cmj csj aTH -cFd -cgb +tCi +mWf bqd aSK aSK @@ -57966,10 +56898,10 @@ bcM bNE dTs cjO -cgk -cew -cfo -chC +gIO +efQ +kFB +sXz cjO tAs ckr @@ -57979,13 +56911,13 @@ crg csj cjO cjO -ctz -ctE +gbi +fHD aTH bqd bqd -cFd -cHv +tCi +iOr cIv cYZ cUl @@ -58201,8 +57133,8 @@ bNE dTs cjO cjO -cex -cfp +xsU +mrf cjO cjO tAs @@ -58214,12 +57146,12 @@ csj bvJ bRw bSV -cgj +iZZ bRw bRw bRw bSV -cxt +xLd cJx cYZ cUl @@ -58227,11 +57159,11 @@ crx crx crx dlM -sUb +tIJ crx crx dFo -ozv +pAn doE alh cMC @@ -58448,12 +57380,12 @@ csj cdL ceA bPA -kzQ +kbL aUh ceA ceA bPA -cxt +xLd cJx cYZ dlb @@ -58463,7 +57395,7 @@ cMJ cUk crx crx -xvt +trD dFo doE doE @@ -58479,7 +57411,7 @@ cDX cDX cDX cDX -qeG +niQ cDX cDX cDX @@ -58682,12 +57614,12 @@ cso cdL ceA bPA -kzQ +kbL ceA ceA bRZ emt -cxt +xLd cyG cfq cMM @@ -58722,7 +57654,7 @@ djl djl djl djl -oIc +xMh djl djl djl @@ -58916,12 +57848,12 @@ dTs mKs cwl bPA -kzQ +kbL ceA bRZ emt -cxP -cxQ +pJw +ddN doE doE doE @@ -58950,7 +57882,7 @@ dws ylS bhp bhp -wcZ +cXA dws dws ylS @@ -59150,11 +58082,11 @@ dTs dTs dTs dTs -cuy +xwg cwl bPA -cxq -cxQ +iCF +ddN doE drL drO @@ -59179,7 +58111,7 @@ vGu dws bhp mfH -qln +dWU bhp mfH bhp @@ -59194,7 +58126,7 @@ vGu dws dws vGu -tyY +uli dws dws tlh @@ -59387,7 +58319,7 @@ dTs dTs dTs bPA -cxr +fwm cwz doE dsE @@ -59399,7 +58331,7 @@ doE cAV cuJ cuJ -mkN +kcc cuJ cuJ cuJ @@ -59422,7 +58354,7 @@ djk djk djk djk -hqV +wkI djk djk eCk @@ -59759,12 +58691,12 @@ bzt bzt bzt bzt -bHR -bCh +eyl +fIS bzt bzt -bHR -bCh +eyl +fIS bzt bzt bRj @@ -59991,16 +58923,16 @@ bwc bwT bCT bzu -bFL -bsi -bBo -bCi -bsi -bsi -bBo -bCi -bsi -bOb +qNH +jzi +gTa +aVv +jzi +jzi +gTa +aVv +jzi +oqd bOP dTs dTs @@ -60225,7 +59157,7 @@ bwc bwT bzt bzt -bxY +xtk bGU bzA bzA @@ -60234,7 +59166,7 @@ bGU bzA bzA bKq -bEp +pYw bOP dTs dTs @@ -60305,7 +59237,7 @@ clz bTl bNE dTs -cxt +xLd cPG cTD cfd @@ -60458,8 +59390,8 @@ bzt bwc bBm bzr -bEg -bya +oUK +ijR bGV bzB bzB @@ -60468,7 +59400,7 @@ bGV bzB bzB bKr -bEp +pYw bOP dTs dTs @@ -60539,7 +59471,7 @@ btX bIW bsp cQm -cxu +iov cXm cTD cfd @@ -60692,8 +59624,8 @@ bzt bwc bBm bwU -bEh -bzz +jDn +rXo bGV bzB bzB @@ -60702,7 +59634,7 @@ bGV bzB bzB bKr -bEp +pYw bOQ bOQ bOQ @@ -60723,7 +59655,7 @@ dLe dNF bXQ dTs -aSN +lsV aUA aUB aWf @@ -60927,7 +59859,7 @@ bwc bwT bzt bzt -bxY +xtk bGV bzB bzB @@ -60936,7 +59868,7 @@ bGV bzB bzB bKr -bEr +geD bOR bPT bQZ @@ -60957,7 +59889,7 @@ bTu bTu bXQ dTs -aSN +lsV aUA aSu aSu @@ -61157,11 +60089,11 @@ bwY bhu bzu bzt -bHR -bCh +eyl +fIS bCT bzu -bxY +xtk bGV bHS bHS @@ -61170,7 +60102,7 @@ bGW bHS bHS bKr -bEp +pYw bRk bPU bRX @@ -61191,7 +60123,7 @@ bTG bTG bWR bTG -ahp +dqw cfl aSu cvr @@ -61241,7 +60173,7 @@ bGz bIW bsp cQm -cGI +fTX cGM cxU cwz @@ -61389,13 +60321,13 @@ bJt bLx bON bhu -bsi -bsi -bFN -bJg -bsi -bsi -bzC +jzi +jzi +kAI +jTU +jzi +jzi +fHN bGV bzB bzB @@ -61404,7 +60336,7 @@ bzB bzB bzB bKr -bEp +pYw bRk cdi bRb @@ -61424,8 +60356,8 @@ dKx dKx dKx caB -cdO -cim +jwp +pYd cfl bkk aWE @@ -61638,7 +60570,7 @@ bzB bzB bzB bKr -bEp +pYw bRk cfm bRc @@ -61658,8 +60590,8 @@ cLX cLX cLX cLX -cdP -cin +rko +mZJ cfl bkj aSu @@ -61872,7 +60804,7 @@ bzB bzB bzB bKr -bEp +pYw bRk bPX tdf @@ -61893,7 +60825,7 @@ bTG ddP bTG bYC -cio +cRf cfl bkj aSu @@ -62106,7 +61038,7 @@ bpJ bpJ bzB bKr -bEr +geD bOR bRk bRk @@ -62115,8 +61047,8 @@ bOR bTI bTI bTG -bVS -bWT +mUP +wns bTG bTI bTG @@ -62127,7 +61059,7 @@ bTG bTG bTG bTI -cio +cRf cfl bkk aWE @@ -62340,28 +61272,28 @@ bLh bsC bMH bNj -bFM -bfV -bOT -bOT -bOT -bOT -bfV -bOT -bOT -bVT -bWU -bOT -bfV -bOT -bOT -bOT -bfV -bOT -bOT -bOT -bfV -cip +opT +xaO +ncC +ncC +ncC +ncC +xaO +ncC +ncC +idZ +eHB +ncC +xaO +ncC +ncC +ncC +xaO +ncC +ncC +ncC +xaO +vZI cfl bkj aSu @@ -62559,17 +61491,17 @@ bJt bLx bwX bhu -bsj -bsj -bBr -bCj -bsj -bsj -bsj -bsj -bsj -bsj -bCX +kou +kou +rkd +lwQ +kou +kou +kou +kou +kou +kou +qKO brQ bpJ bpJ @@ -62795,15 +61727,15 @@ bLz brF brF bAs -bBs -bCk +jhG +vZG bAt bAt bAt bAt bHT bJh -bDK +iHH brQ bpJ bpJ @@ -63037,7 +61969,7 @@ bAt bAt bAt bAt -bDK +iHH brQ bpJ bpJ @@ -63271,7 +62203,7 @@ bWa bBD bAt bAt -bDK +iHH brQ bpJ bpJ @@ -63380,7 +62312,7 @@ doE dTs dTs boP -mWt +ffu boR bLS bLS @@ -63505,32 +62437,32 @@ bpF bBP bAt bAt -bDK +iHH brQ bsC bMH bNj -bFO -bkc -bkc -bkc -bkc -bkc -cuu -bkc -bkc -bVW -bWW -bkc -bkc -bkc -bkc -bkc -cuu -bkc -bkc -bkc -cuv +vtE +ekn +ekn +ekn +ekn +ekn +pah +ekn +ekn +hQh +fET +ekn +ekn +ekn +ekn +ekn +pah +ekn +ekn +ekn +tYa ciM cxc bMI @@ -63739,12 +62671,12 @@ bwe bBP bAt bAt -bDK +iHH brQ bpJ bMI bNm -bGu +uVn cjH cjH cjH @@ -63753,8 +62685,8 @@ cjH cjH cjH bOY -bVX -bWX +nFp +nVv bXV bYD bYD @@ -63764,7 +62696,7 @@ bOX bOX bOX bOX -cdR +iyd cuo cxc cfP @@ -63973,12 +62905,12 @@ bwe bBP bHT bJh -bDK +iHH brQ bpJ bMI bNm -bGu +uVn cjH cqa cqa @@ -63998,7 +62930,7 @@ dTs dTs dTs bOX -cdS +mBV cuo cxc bMI @@ -64207,12 +63139,12 @@ bzE bBP bAt bAt -bDK +iHH brQ bsC bMJ bNm -bJk +muB cjH cqa cqa @@ -64232,7 +63164,7 @@ dTs dTs dTs bOX -cdR +iyd cuo cxc bMI @@ -64441,12 +63373,12 @@ bzE bmf bAt bAt -bDK +iHH brQ bpJ bMI bNm -bGu +uVn cjH cqa cqa @@ -64466,7 +63398,7 @@ dTs dTs dTs bOX -cdR +iyd cuo cxc cfP @@ -64675,12 +63607,12 @@ bzE bmf bAt bAt -bDK +iHH brQ bpJ bMI bNm -bGu +uVn cjH cqa cqa @@ -64700,7 +63632,7 @@ bZe bZe bZe cdm -cdR +iyd cuo cxc bMI @@ -64909,12 +63841,12 @@ bzE bBP bAt bAt -bDK +iHH brQ bsC bMJ bNm -bGu +uVn cjH rAL wLI @@ -64934,7 +63866,7 @@ cbi oQK caC bYE -cdR +iyd cuo cxc aEk @@ -65143,12 +64075,12 @@ bwe bBP ciw bJh -bDK +iHH brQ bpJ bMI bNm -bGu +uVn cjH cjH aRS @@ -65168,7 +64100,7 @@ caC cbR caC bYE -cdR +iyd cuo cxc cfP @@ -65377,12 +64309,12 @@ bzE bBP cfr bAt -bDK +iHH brQ bpJ bMI bNm -bGu +uVn bOY bPZ bRh @@ -65402,7 +64334,7 @@ caC dLn caC bYE -mAZ +sWs bGn qqR bJE @@ -65610,14 +64542,14 @@ bWa bUm bpF btD -bJi -bKv +vhn +eqs bBq bBq bML bML -bOh -bPa +egP +mQy bWh bWh bWh @@ -65636,7 +64568,7 @@ bYE dLE bYE bYE -mAZ +sWs bGn qqR aEI @@ -65827,7 +64759,7 @@ bCf bCA bCA bCA -rZx +pOC brM blZ btw @@ -65844,14 +64776,14 @@ bUm cbT cbT bJj -bOZ -bBr +caJ +rkd bBq bBq bML bML -bOi -bQa +ogH +uDO bXa cCT cCT @@ -65870,7 +64802,7 @@ bZW dMg ccC bYE -yll +pGP bGn qqR aEn @@ -66034,16 +64966,16 @@ asa akz aNp aNp -beW -beW -beW -beW -beW -beW -beW -beW -beW -bhC +lHG +lHG +lHG +lHG +lHG +lHG +lHG +lHG +lHG +uIO dTs dTs dTs @@ -66079,12 +65011,12 @@ bAt cfr cfr bAt -bDK +iHH brQ bpJ bMI bNm -bGu +uVn bOY bQc bOY @@ -66104,7 +65036,7 @@ dKI dMo ccD bTt -mAZ +sWs bGn qqR bJE @@ -66307,18 +65239,18 @@ brF brF brF bAs -bCW -bEq +xGA +fqN bAt bAt bHT bJh -bDK +iHH brQ bsC bMJ bNm -bJk +muB bPb bPb bRy @@ -66338,7 +65270,7 @@ cbk cbW ccE bTt -mAZ +sWs bGn qqR bJE @@ -66529,30 +65461,30 @@ dTs dTs dTs dTs -bqM -bqe -bqf -bqe -bqe -bqe -bqe -bqe -bqf -bqe -bqe -bqe -bKv -bxX -bqe -bqe -bqe -bqe -bEi +tHT +lgE +qoQ +lgE +lgE +lgE +lgE +lgE +qoQ +lgE +lgE +lgE +eqs +kAt +lgE +lgE +lgE +lgE +lte brQ bpJ bMI bNm -bGu +uVn bPb bQd bRi @@ -66572,7 +65504,7 @@ dKT dMx ccF bTt -mAZ +sWs bGn qqR edo @@ -66786,7 +65718,7 @@ brR bpJ bMI bNm -bGu +uVn bRy czD cDk @@ -66806,7 +65738,7 @@ dKU dMC dNG bYE -mAZ +sWs bGn qqR bJE @@ -67020,7 +65952,7 @@ bpJ bsC bMJ bNm -bGu +uVn bRy bQe cCQ @@ -67040,7 +65972,7 @@ dKV cbZ ccH bTt -mAZ +sWs bGn qqR bJE @@ -67204,11 +66136,11 @@ bdA aNp aNp aNp -beX -beX -beX -beX -bgf +tkJ +tkJ +tkJ +tkJ +xrf apO apz aql @@ -67254,7 +66186,7 @@ btz btz btz buS -bqP +bbp bRy bQe cCP @@ -67274,7 +66206,7 @@ dKW bZX lkZ bTt -mAZ +sWs bGn qqR edo @@ -67442,7 +66374,7 @@ ame ame ame ame -bgg +jtD aoG apz aqg @@ -67488,7 +66420,7 @@ btC btC btC buU -bqP +bbp bPb bQf bRl @@ -67508,7 +66440,7 @@ dKW dEb lkZ bTt -mAZ +sWs bGn qqR bJE @@ -67676,7 +66608,7 @@ bdg bdg bdg bdf -bgg +jtD aoG apz aqg @@ -67704,25 +66636,25 @@ brQ bsC btA buS -bqN -brO -brO -bBQ -brO -brO -brO -bCZ -bEu -brO -brO -brO -bBQ -brO -brO -brO -brO -bBQ -bOj +nFs +bsY +bsY +hCA +bsY +bsY +bsY +vsG +pSD +bsY +bsY +bsY +hCA +bsY +bsY +bsY +bsY +hCA +cXH bPb bPb cbg @@ -67742,7 +66674,7 @@ dKY dNk kUz bYE -yll +pGP bGn qqR bJE @@ -67910,7 +66842,7 @@ bdC dKe bfw bdf -bgg +jtD aoG apz aql @@ -67938,15 +66870,15 @@ brQ bpJ btz buS -bqO +xXO bxq bxq bxq bxq bxq bxr -bDa -bEv +rKA +jwn bxr bGX bGX @@ -67976,7 +66908,7 @@ dKZ bTt bYE bYE -mAZ +sWs bGn qqR edo @@ -68144,7 +67076,7 @@ beY bdC bfx bdg -bgg +jtD aoG apz aqg @@ -68153,7 +67085,7 @@ asa bdW aiZ aUL -xxQ +vwP rTV rTV rTV @@ -68172,7 +67104,7 @@ brQ bpJ btz buS -bqP +bbp bxq dTs dTs @@ -68210,7 +67142,7 @@ dLa bOY bOY bOY -mAZ +sWs bGn qqR aEI @@ -68339,10 +67271,10 @@ dTs dTs dTs dTs -abB -abP -acX -asl +ner +nDg +tdF +miq aGA aGA aGA @@ -68378,7 +67310,7 @@ bPW bdC bfy bdg -bgg +jtD aoG apz aqg @@ -68387,7 +67319,7 @@ amt bdW aiZ aiZ -tPP +dqH gYT oYp rTV @@ -68406,7 +67338,7 @@ brQ bsC btA buS -bqP +bbp bxq dTs dTs @@ -68443,8 +67375,8 @@ bQb dLb cGr bWh -clV -cdT +rod +mpg bJC uLr cgB @@ -68576,7 +67508,7 @@ abM acb ach ahD -agE +joj aGA aHk aIe @@ -68612,7 +67544,7 @@ bfa bdC hWz bdg -bgg +jtD aoG apz aql @@ -68621,10 +67553,10 @@ asa bdW aiZ bcy -amQ -ett -sdq -fZj +vZQ +fgb +dyK +ftJ dTs bkU blB @@ -68640,7 +67572,7 @@ brQ bpJ btz buS -bqP +bbp bxq dTs dTs @@ -68677,8 +67609,8 @@ cdo cla dNl clU -dlP -cdU +gqG +uPJ ceK cxe cfQ @@ -68810,12 +67742,12 @@ aca ach ach ahD -awK +soO aGA -pQN -qVn -yab -yab +fcj +xUC +pdn +pdn aIf aIf aIf @@ -68846,7 +67778,7 @@ bdC bdC bfA bdf -bgg +jtD aoG apz aqg @@ -68874,7 +67806,7 @@ brQ bpJ btz buS -bqP +bbp bxq dTs dTs @@ -68912,7 +67844,7 @@ bYD bYD bYD bVk -cdV +hvt cuI cfj wzl @@ -69044,7 +67976,7 @@ aca ach ach ahD -adV +xCW aGz aHm aIf @@ -69080,7 +68012,7 @@ bdg dKi bdg bdf -bgg +jtD aoG akp aqg @@ -69108,7 +68040,7 @@ brQ bsC btA buS -bqO +xXO bxq dTs dTs @@ -69146,7 +68078,7 @@ bbx afu afd bVl -afC +kyp cuK cfj cfS @@ -69278,7 +68210,7 @@ aca ach ach ahD -adV +xCW aGz aHm aIf @@ -69314,7 +68246,7 @@ ame ame ame ame -bgg +jtD aoG apz akN @@ -69342,7 +68274,7 @@ brR bpJ btz buS -bqP +bbp bxq bxq afB @@ -69380,7 +68312,7 @@ baZ afd afd bVl -afC +kyp cuK cfj wzl @@ -69512,7 +68444,7 @@ aca ach ach agt -axm +soV aGz aHm aIf @@ -69546,9 +68478,9 @@ aYk aZA aky alo -bfB -bfJ -bgh +tcA +eWk +xSQ aoG apz aki @@ -69576,7 +68508,7 @@ brS bpJ btz buS -bqP +bbp bxr byv bzF @@ -69614,7 +68546,7 @@ dTs bRh bRh bVm -afC +kyp cuK cfj wzl @@ -69746,7 +68678,7 @@ aca ach ach ach -axn +key aGA aHn aIf @@ -69780,8 +68712,8 @@ bsE aYk akz alp -bfC -bfK +exD +xOc alp avC apz @@ -69810,8 +68742,8 @@ bAr bpJ btz buS -bqQ -bxs +fNa +mfY byw byw bSO @@ -69846,9 +68778,9 @@ dTs dTs dTs dTs -aWd -bhM -afE +xSr +nVa +mnr cuK cfj cfS @@ -69980,7 +68912,7 @@ acb ach ach ach -axJ +sZg aGz aHo aIf @@ -70015,7 +68947,7 @@ aZR ame ame ame -bfL +eRY aNn auy aks @@ -70044,8 +68976,8 @@ bpK bpK btC buU -bqU -bvr +dPD +drb bxt bxt bSP @@ -70214,7 +69146,7 @@ ach ach ach ach -axJ +sZg aGz aHp aIf @@ -70249,7 +69181,7 @@ bcT bcU bcU bcT -bfL +eRY apz aqg aki @@ -70278,7 +69210,7 @@ bfj bfj bfT bfU -bwd +eHT bxu byy byy @@ -70448,7 +69380,7 @@ ach ach ach ach -axO +hTk aGz aHq aIf @@ -70483,7 +69415,7 @@ beJ bfb nFW bcU -bfL +eRY apz dKg aki @@ -70682,7 +69614,7 @@ ach ach ach acH -adE +sQI aGz aHr aIf @@ -70717,7 +69649,7 @@ beK bdj dKf bcU -bfL +eRY apz aqg aki @@ -70801,8 +69733,8 @@ ccc cdZ ceN cgy -mqi -oKu +wDu +hBJ cFN cQd cij @@ -70916,7 +69848,7 @@ ach ach ach ahD -adW +qpZ aGA aHs aIf @@ -70951,7 +69883,7 @@ beL bfc bdj bcU -bfL +eRY apz aki aki @@ -71150,7 +70082,7 @@ ach ach acH acP -agE +joj aGz aHm aIf @@ -71185,7 +70117,7 @@ bev bfd bdj bcU -bfL +eRY apz aki aqg @@ -71384,7 +70316,7 @@ ach ach ahD ahY -adY +vds aGz aHm aIf @@ -71419,7 +70351,7 @@ bew bfe bdj bcT -bfL +eRY apz dKh aki @@ -71618,7 +70550,7 @@ ach ach ahD ahZ -aza +tEH aGz aHm aIf @@ -71653,7 +70585,7 @@ bew bfe bfq bcT -bfL +eRY apz aqg akA @@ -71684,8 +70616,8 @@ dTs dTs bpM bpM -rqM -pcu +uBw +nGj bAy bzH bxr @@ -71852,7 +70784,7 @@ ach ach ahD ahC -azQ +eNy aGA aHl aIf @@ -71887,7 +70819,7 @@ bew bfe bdj bcU -bfL +eRY apz aqg akA @@ -71920,7 +70852,7 @@ bpM bxv bRQ bRR -tRl +tnp byC bxr bWc @@ -72086,7 +71018,7 @@ acz ach agt afx -agE +joj aGz aHt aIg @@ -72121,7 +71053,7 @@ bex bfd bdj bcU -bfL +eRY aIK auz aIJ @@ -72152,8 +71084,8 @@ dTs bpM bwf btG -sTa -nzE +bhB +jGL bAz byC bxr @@ -72320,7 +71252,7 @@ abr acz acH acP -agE +joj aGz aGz aGA @@ -72343,8 +71275,8 @@ aiY ajR ajb afZ -bbZ -bcs +fJv +qPA ame bcU qbC @@ -72355,7 +71287,7 @@ bey dKd bdj bcU -bfM +kuU aNp apO apz @@ -72554,9 +71486,9 @@ abs abr acP ahY -aAB -axi -aCd +lew +eBf +wbP aev hTr ahF @@ -72575,11 +71507,11 @@ dTs ajb ajb afZ -aAE -aiu -bca -bct -amf +qip +jZJ +hPS +vHV +vIS bcU qbC bdj @@ -72589,7 +71521,7 @@ bdj bdj bdj bcU -bfN +hhi ame aoE apz @@ -72621,7 +71553,7 @@ bpM bwh bqW bRS -owy +hsS bAA bzH bxr @@ -72807,13 +71739,13 @@ akv dTs dTs dTs -baI -aiu -akB +qfa +jZJ +sCS aiZ bcb bcu -amg +sWL bcT bcU bcU @@ -72823,7 +71755,7 @@ bcU bcU bcU bcT -bfN +hhi ame aoE apz @@ -73047,17 +71979,17 @@ aiZ ajR bcc bcv -bcF -bcX -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bfO +smr +lgd +ftp +ftp +ftp +ftp +ftp +ftp +ftp +ftp +gDS ame aoE apz @@ -73088,7 +72020,7 @@ dTs bpM bwj bEG -pRw +mVl bEG bEG bEG @@ -73322,7 +72254,7 @@ dTs bpM bwk bEG -rvj +unD bpP bSR bzH @@ -73580,7 +72512,7 @@ dTs dTs aEa ljB -pBe +kOK aCC aCw aCZ @@ -74033,7 +72965,7 @@ bYA caF cts bPv -pPW +glw ckX bJr cnw @@ -74428,7 +73360,7 @@ ahh pUO vqR vqR -qxQ +gjR rob vqR vqR @@ -74662,10 +73594,10 @@ ahh aaT jNB sUr -rKj +vLH sUr -qXK -cde +iiL +tbR otn tbb vUl @@ -74894,8 +73826,8 @@ aez aaj aaJ aaV -pDM -thm +lwY +kpH sUr sUr jNB @@ -75131,7 +74063,7 @@ vTR abd uty sUr -rKj +vLH sUr sUr jNB @@ -75366,7 +74298,7 @@ abf abv abz sUr -okj +shK sUr tBD mhR @@ -75997,7 +74929,7 @@ dNS dbu daG dbq -lSp +iar dTP dTP dTP @@ -76231,7 +75163,7 @@ dNS daF daH dbq -nqv +tZe dTP dUa dev @@ -76302,8 +75234,8 @@ ahh ahh ahh ahh -soS -lQM +yhW +uFv ahh dTs dTs @@ -76397,8 +75329,8 @@ ejR ejR goq dCt -bic -biu +oQX +bto jbx jbx jbx @@ -76464,7 +75396,7 @@ cYT wPb dbu daI -bmH +pIC dTP daK ddQ @@ -76531,15 +75463,15 @@ dTs dTs dTs dTs -bMt -bab -axi -axi -abY -aci -aco -acv -aQn +lxs +nbP +eBf +eBf +iMe +hgS +vtY +qkD +iav dTs dTs dTs @@ -76631,16 +75563,16 @@ bVE bVE bVD dCt -ccd -ccL -bZr -cfZ +eyr +hXz +paf +miW cgG cgI cgI -chV -chm -cjl +wUX +tKV +ife jbx mXN rmo @@ -76698,7 +75630,7 @@ cYP dTK eeP daK -qqy +hLq dTP daK ddR @@ -76865,36 +75797,36 @@ cTU cTU hcP dCt -bXf +dfl bYa bZZ -cga -cfX -chm -chT -chW +jrq +jFP +tKV +skN +fcM chn -cjm -chm -clD -cmr -cnB -ckx -cuS -cmr -cxW +xbY +tKV +iCJ +trU +kBf +kRd +jqC +trU +ozh coF dfc ees dNR dTH coF -mBd -chm -chm -clD -cmr -cmr +nkn +tKV +tKV +iCJ +trU +trU dTs dTs dTs @@ -77093,13 +76025,13 @@ mfK tni bVE gQE -bVw -bZr -ceh -ceh -bVx -cfX -cfY +isK +paf +pjK +pjK +etP +jFP +vwh bYb bVy bVy @@ -77116,14 +76048,14 @@ cnC cuQ cvK cvL -cyR +faL cAf hEU hEU czV czV cAf -cAi +wqY chn chn chn @@ -77253,12 +76185,12 @@ dTs dTs dTs dTs -bMt -bMt -bMt -bab -axi -aZd +lxs +lxs +lxs +nbP +eBf +xwe ahh pUO sUr @@ -77270,10 +76202,10 @@ dTs dTs dTs dTs -bgi -bgi -bgi -akR +vZh +vZh +vZh +ivj bhk bhF bhZ @@ -77327,7 +76259,7 @@ mfK wMw bVD hcP -cbt +sLI bZZ ceg ceg @@ -77492,7 +76424,7 @@ aKw aKw bac bbK -bFA +gDa axM ahf ahw @@ -77507,8 +76439,8 @@ bcY bgj bgj akJ -akS -alr +qNN +nYK bhF bia bit @@ -77561,7 +76493,7 @@ mfK dCt dCt dCt -cbu +sEI ceg bYb bVy @@ -77726,14 +76658,14 @@ aKw aKx aIS aIS -bJN +jWD agY ahg ahg ahI cyP agY -aix +org aZg aKw bac @@ -77741,8 +76673,8 @@ bbK bbK bbL bgj -akT -alQ +eXt +eOa bhG bib bib @@ -77792,10 +76724,10 @@ ozu ozu xsS mfK -bVw -bWm -bZr -cce +isK +fEV +paf +ymb bYb bZq bOu @@ -77975,7 +76907,7 @@ aKw aKw bWw bcY -bgU +rwI bhl bhk bhk @@ -78026,7 +76958,7 @@ ozu ozu xsS mfK -bXf +dfl bYa bZZ bYb @@ -78209,18 +77141,18 @@ aIS aZg bac bbK -bWx -bMt -bab -amu +exX +lxs +nbP +iaV amw amw amw -aqm -bXg -bXk -bXk -bXr +xSR +uch +kuZ +kuZ +ojU blM bir bki @@ -78260,7 +77192,7 @@ uml vgm xsS mfK -bXY +xDn bYb bVy bZq @@ -78293,7 +77225,7 @@ czV cho cho cAf -cAj +pvQ chp chp chp @@ -78446,15 +77378,15 @@ aIS aIS aZg bac -amv -amS -amS -amS -aqE +tPt +jwe +jwe +jwe +gda bXh bXd bXd -bXs +woV blM bir biP @@ -78485,16 +77417,16 @@ cTU cTU cTU hcP -bPi -bVx -bVz +lHM +etP +vit qQz clB clB clB clB bXe -bXZ +mia bZq bOu bOu @@ -78520,14 +77452,14 @@ cjS chp chp chp -czB +hWJ cAf czX czX czX cho cAf -cAk +hWI cAl ciQ ciQ @@ -78688,17 +77620,17 @@ bXd bXd bXl bXi -bXt +hiv bWo bQF bQF bQF bQF bWo -bYf -caM -caM -cbz +liO +jSu +jSu +vKV bQF bCs bSY @@ -78711,24 +77643,24 @@ bwv bZQ aCf aEM -aEN -aKu +hKA +exx bZQ bCs cev -bNr -bNs -bNs -bPj +uMC +kKj +kKj +wwq bVy -bWn +stG qQz cev cev cev cev bXe -aIh +omu bOu bOu bOu @@ -78749,26 +77681,26 @@ dTs dTs dTs dTs -cAX -cpv -chS -chS -cjk -cAe +suL +rcZ +jFv +jFv +ojZ +nqW coF dfc dgF jrV dTH coF -cuT -cAX -ckn -ckn -cpv -cAY -cCb -cDd +ixU +suL +pAd +pAd +rcZ +nvn +mIy +jPR cho cho cho @@ -78896,7 +77828,7 @@ aJy aTk aUl aUl -bOw +qhe bPl cCR cCS @@ -78922,17 +77854,17 @@ aIS bXi bXm bXn -bXu +eHI bWo bSY bSY bSY bSY bWo -bYj +tAN bXn bXn -bXu +eHI bSY bCs bSY @@ -78945,24 +77877,24 @@ aCf bZQ aCf aEM -aIh -bhc +omu +wqv bZQ bCs bZQ -aIh +omu bOu bOu bOu bOu -bhc +wqv qQz bZQ bZQ bZQ bZQ bXe -aIh +omu bOu bOu bOu @@ -79002,7 +77934,7 @@ ceZ ceZ cnD caH -cFf +lES cho cho cho @@ -79130,14 +78062,14 @@ aUl aTm aKw aKw -bOx +wqz bPl bRs cEe xMr djZ bPl -aiA +jiP aXS aJy aJy @@ -79156,17 +78088,17 @@ aJy aJy bXn bXn -bXu +eHI bWo bSY bSY bSY bSY bWo -bYI -cbv -cbv -ccg +ooq +kMW +kMW +leH bSY bCs bSY @@ -79179,24 +78111,24 @@ bwv bZQ aCf aEM -aJz -bLF +iJi +tfU bZQ bCs bZQ -aJz -bOv -bOv -bOv -bOv -bLF +iJi +gaO +gaO +gaO +gaO +tfU qQz bZQ bZQ bZQ bZQ bXe -aIh +omu bOu bOu bOu @@ -79236,7 +78168,7 @@ ceo ceo cen cnD -cGT +hdN cho cho cho @@ -79364,14 +78296,14 @@ aKw aUn aUk aUk -bPk +drx aPP aXW aWa aWB aZk aPP -aiC +sad aZe aUl aUl @@ -79390,7 +78322,7 @@ aJy aJy aJy bXn -bXu +eHI blM bir biP @@ -79430,7 +78362,7 @@ ozu ozu xsS mfK -aIh +omu bOu bOu bOu @@ -79470,7 +78402,7 @@ cdw cdw ceo chx -cLh +pCU cjR cho cho @@ -79580,32 +78512,32 @@ dTs dTs dTs dTs -and -and -ard -asy -bek -bfP -bWq -bWq -abC -cby -abG -bWq -bWq -bMu -bMv -bNt -asy -and -aaZ +imo +imo +lJV +vfQ +kfB +rIq +uFO +uFO +fVX +heP +xCg +uFO +uFO +vUd +vIh +fnk +vfQ +imo +pcG aPP aXW aVZ ahK aZk aPP -aiD +rfw aKw aKw aKw @@ -79624,7 +78556,7 @@ aJy aJy aJy aJy -bXv +vuK blM bir bki @@ -79664,7 +78596,7 @@ uml vgm xsS mfK -aIh +omu bOu bOu caG @@ -79704,7 +78636,7 @@ cdw cdw ceo chx -cLi +pCq cjS cjR cho @@ -79816,8 +78748,8 @@ dTs dTs aSi aQq -aRi -aRH +vaR +fKj aPP aPP aPP @@ -79829,8 +78761,8 @@ aPP aPP aPP aPP -aXT -aYy +hSq +fIf aPP aPP aPP @@ -79839,11 +78771,11 @@ aVZ aVZ ahU aio -aiF -bMv -bfP -bWq -bWu +dMB +vIh +rIq +uFO +eSW aZe aUl aUl @@ -79858,7 +78790,7 @@ aJy aJy aJy aJy -bXv +vuK blM bir biP @@ -79898,7 +78830,7 @@ ozu ozu xsS mfK -chA +xsZ clc dsf cef @@ -79938,7 +78870,7 @@ cxz cdw ceo chx -cUJ +uSA ciQ cYg cho @@ -80077,7 +79009,7 @@ aSi aSi aSi aQq -bWv +hDQ aKw aKw aKw @@ -80092,17 +79024,17 @@ aJy aJy aJy aJy -bXv +vuK bYc bTi bTi bTi bTi bYc -bYJ -cbw -cbw -cch +mty +sOt +sOt +sNM bTi bCy bTi @@ -80115,24 +79047,24 @@ bwv caI cgi cgU -chz -cie +qae +dEq caI bCy caI -chz -ciE -ciE -ciE -ciE -cie +qae +pBy +pBy +pBy +pBy +dEq rtW caI caI caI caI cpw -chA +xsZ clc dsg dHb @@ -80172,7 +79104,7 @@ ctM cdw ceo chx -cVX +stx ciQ cjS cjR @@ -80311,7 +79243,7 @@ aOh aXc aOh aPO -bWv +hDQ aKw aKw aKw @@ -80326,17 +79258,17 @@ aJy aJy aJy aJy -bXv +vuK bYc bTi bTi bTi bTi bYc -bZs +mLI aJy aJy -bXv +vuK bTi bCy bTi @@ -80349,24 +79281,24 @@ cgi caI cgi cgU -chA -cif +xsZ +efq caI bCy caI -chA +xsZ clc clc clc clc -cif +efq rtW caI caI caI caI cpw -chA +xsZ clc dsh dIh @@ -80398,7 +79330,7 @@ cfw idg cdC rZU -osD +gCF oyf idg pUR @@ -80406,7 +79338,7 @@ ctM cdw ceo chx -cWC +kHC cAl ciQ cjS @@ -80432,10 +79364,10 @@ dTs dTs dTs dTs -ckx -ckx -ckx -cYe +kRd +kRd +kRd +lcn gdW hqp uFX @@ -80545,7 +79477,7 @@ bdc aRM aPg aPO -bWv +hDQ aKw aKw aKw @@ -80560,17 +79492,17 @@ aJy aJy aJy aJy -bXv +vuK bYc bTi bTi bTi bTi bYc -bZt -cbx -cbx -cci +uWq +gjQ +gjQ +nTj bTi bCy bTi @@ -80583,24 +79515,24 @@ bwv caI cgi cgU -chB -cig +pQY +jyk caI bCy caI -chB -cld -cld -cld -cld -cig +pQY +gnM +gnM +gnM +gnM +jyk rtW caI caI caI caI cpw -chA +xsZ clc clc dsh @@ -80640,7 +79572,7 @@ ctM cdw ceo chx -cAm +tjm cXp ciQ ciQ @@ -80669,8 +79601,8 @@ dTs dTs cAZ cAZ -dsU -cXn +vza +dZW hqp uFX rpQ @@ -80794,7 +79726,7 @@ aXS aJy aJy aJy -bXv +vuK blM bir biP @@ -80809,7 +79741,7 @@ bhk btQ bvj bwu -hgY +lOq bwv bwv bwv @@ -80834,7 +79766,7 @@ ozu ozu xsS mfK -chA +xsZ clc clc clc @@ -80874,7 +79806,7 @@ nYZ cdw cen czC -cAm +tjm cYf cAl ciQ @@ -80903,8 +79835,8 @@ cAZ cAZ cAZ cAZ -dtX -cXo +rLz +jiW hqp rpQ rpQ @@ -81028,7 +79960,7 @@ aZe aXS aJy aJy -bXv +vuK blM bir bki @@ -81043,8 +79975,8 @@ bhk btS bvk bwv -xUC -xuY +nfl +ihy bwv bwv bwv @@ -81068,7 +80000,7 @@ uml vgm xsS mfK -chA +xsZ clc clc clc @@ -81100,15 +80032,15 @@ cfw dPY dPY cht -rRL -ilg +ryn +lMA poi cix nYZ cdw ceo chx -cAm +tjm cAZ cYf cAl @@ -81137,7 +80069,7 @@ cuQ djx cAZ cAZ -dtY +mnz gdW cWy qKE @@ -81262,7 +80194,7 @@ aKw aZe aXS aJy -bXv +vuK blM bir biP @@ -81302,7 +80234,7 @@ ozu ozu xsS mfK -chA +xsZ clc clc clc @@ -81329,10 +80261,10 @@ dTs cdF cdw cdw -pmt +lzA cfw cge -wbq +lyO rZU dPY idg @@ -81342,7 +80274,7 @@ nYZ cdw ceo chx -cAm +tjm cAZ cAZ cYf @@ -81371,7 +80303,7 @@ ciQ cnC cuQ djx -dtY +mnz gdW gdW gdW @@ -81459,7 +80391,7 @@ asx asA asG aud -iUm +idI avq aow dTs @@ -81487,26 +80419,26 @@ dTs dTs dTs dTs -and -ard +imo +lJV anb bcY bdK bdt -bjK -blg -bXz -bjs +gMa +stf +kkn +lax bYc bTi bTi bTi bTi bYc -bYJ -cbw -cbw -cch +mty +sOt +sOt +sNM bTi bCy bTi @@ -81519,24 +80451,24 @@ bwv caI cgi cgU -chz -cie +qae +dEq caI bCy caI -chz -ciE -ciE -ciE -ciE -cie +qae +pBy +pBy +pBy +pBy +dEq rtW caI caI caI caI cpw -chA +xsZ clc clc clc @@ -81545,7 +80477,7 @@ dsh dIh dLr dLC -ccf +xpo dTs dTs dTs @@ -81570,13 +80502,13 @@ dPY rZU idg idg -jiF +fUm chr nYZ cdw ceo chx -cAm +tjm cAZ cAZ cAZ @@ -81605,7 +80537,7 @@ ciQ ciQ ciQ cYh -dtY +mnz gdW gdW gdW @@ -81693,7 +80625,7 @@ asx asA aow aue -tJc +mWW avq aow dTs @@ -81722,12 +80654,12 @@ dTs dTs dTs dTs -bjL -bXA -and -and -bek -bXj +xZS +hvb +imo +imo +kfB +pay bhk bhk bhk @@ -81737,10 +80669,10 @@ bTi bTi bTi bYc -bZs +mLI aJy aJy -bXv +vuK bTi bCy bTi @@ -81753,24 +80685,24 @@ cgi caI cgi cgU -chA -cif +xsZ +efq caI bCy caI -chA +xsZ clc clc clc clc -cif +efq rtW caI caI caI caI cpw -chA +xsZ clc clc clc @@ -81779,7 +80711,7 @@ clc dsg dHb dLq -ccf +xpo cdA dTs dTs @@ -81810,7 +80742,7 @@ ctM cdw ceo chx -cAm +tjm cAZ cAZ cAZ @@ -81839,8 +80771,8 @@ ciQ ciQ ciQ cnC -djy -djz +tlu +rAx aTj gdW gdW @@ -81971,10 +80903,10 @@ bYF bYF bYF bYc -caL -cby -cby -ccj +nXT +heP +heP +sLw bYF bCy bTi @@ -81987,24 +80919,24 @@ bwv caI cgi cgU -chB -cig +pQY +jyk caI bCy cgC -ciD -cle -cle -clf +vgO +gcl +gcl +wyi clh -clk +qCT rtW cgC cgC cgC cgC cpw -cpU +gXF czj clc clc @@ -82013,7 +80945,7 @@ clc dsh dIh dLr -dLI +xCN cdA cdv dTs @@ -82044,7 +80976,7 @@ ctM cdw ceo chx -cAm +tjm cAZ cAZ cAZ @@ -82074,7 +81006,7 @@ clE ciQ ciQ ciQ -dkK +nff drg cZc gdW @@ -82229,16 +81161,16 @@ ejR goq dCt dCt -clg -cli -cll +qRY +uqP +vah rtW cog cog cog cog cpw -cpV +pRr czS czj clc @@ -82247,7 +81179,7 @@ clc clc dsh dIh -dLJ +whu cdA cdw cdv @@ -82264,33 +81196,33 @@ dTs dTs dTs dTs -pgb -oTg +fjD +flz dPR -ieR -qPB +xwQ +opX rZU -oAY -ueI -gIs -mVV +wkw +qMD +tEM +wIf ctM cdw ceo chx -cuT -cBa -cBa -cBa -cBa -cBa -cAX -ckn -cpv -chS -chS -chS -cZd +ixU +yeb +yeb +yeb +yeb +yeb +suL +pAd +rcZ +jFv +jFv +jFv +lcO ciQ ciQ cjS @@ -82308,8 +81240,8 @@ cjQ clE ciQ ciQ -dnC -cYe +eys +lcn gdW gdW hqp @@ -82472,16 +81404,16 @@ ozu ozu xsS mfK -cuR -cli -dsi +kRv +uqP +enz clc clc clc clc clc dsg -dLK +rpN cdA cdw cej @@ -82498,15 +81430,15 @@ dTs ceW ceW ceW -fsE -pPC +hfA +mXL cfw idg idg ute -htl -htl -toR +mjX +mjX +tPG pUR aaY cdw @@ -82524,10 +81456,10 @@ cEf cCc cCc caH -dgW -chS -chS -cZd +lHe +jFv +jFv +lcO ciQ cjS cjR @@ -82543,7 +81475,7 @@ cjQ clE ciQ cnC -dnD +wmA pSM gdW hqp @@ -82708,14 +81640,14 @@ xsS mfK dCt dCt -dsk +tjS clc clc clc clc clc dsg -dLL +wyx cdA cdw cdw @@ -82732,14 +81664,14 @@ cer cdw cdw cdw -pvv -syU +pQG +frZ cfw iAf uYD chq cdc -qdI +qQO cdc ciy ctN @@ -82761,7 +81693,7 @@ ceZ cnD caH caH -cUJ +uSA ciQ ciQ cjS @@ -82777,7 +81709,7 @@ cho cYi ciQ ciQ -dkK +nff gdW gdW hqp @@ -82942,14 +81874,14 @@ xsS bUB bVD goq -dsW +sEj czj clc clc clc clc dsg -dLM +veG ccN cdx cdw @@ -82964,20 +81896,20 @@ cgd cgd cgd cgd -rHx +mCP cgd cgd coL qVN dPY -eKL +eUt cht ccZ ccZ ccZ ccZ ccZ -ogu +krS ccZ ccZ poi @@ -82995,7 +81927,7 @@ cdw cpP ceX caH -cWC +kHC djw cAl ciQ @@ -83011,7 +81943,7 @@ cho cYi ciQ ciQ -doN +vrI gdW gdW hqp @@ -83176,15 +82108,15 @@ xsS bUC bVE gQE -duy +pfP dEY dib dib dib dib dLu -dLN -ccO +eEW +qub ccN cek chy @@ -83195,15 +82127,15 @@ cdC cda cdC cdC -esX +jfJ cdC -upP +xME cda dPY dPY cda dPY -wIu +nhP dPY ibE cda @@ -83211,7 +82143,7 @@ cdC dPY slN cdC -osD +gCF lFc ibE dPY @@ -83228,8 +82160,8 @@ cEf cdw cLj civ -cMN -cid +mXg +rbz cOk cYf djw @@ -83245,7 +82177,7 @@ cho cjQ clE ciQ -doO +sKN gdW gdW hqp @@ -83410,7 +82342,7 @@ xsS bUC bVE gQE -duy +pfP dEY dib dib @@ -83418,8 +82350,8 @@ dib dib dLu dLO -ccP -cdy +qby +hcF cel ceX cfw @@ -83432,19 +82364,19 @@ cdC cdb cdC dPY -tqw +pyr dPY -jPc +rmi cdb dPY dPY dPY idg -uef -vQE -fPz -dLH -far +gmS +qGw +kmN +qoq +haw dPY sFe idg @@ -83462,8 +82394,8 @@ cCc cdw cLj civ -cMO -cNC +woz +rrB cOk cOk dTs @@ -83479,7 +82411,7 @@ cho cho cYi ciQ -doO +sKN cZe gdW cWy @@ -83644,7 +82576,7 @@ xsS bUC bVE gQE -duy +pfP dJB dLk dib @@ -83652,8 +82584,8 @@ dib dib dLu dLO -ccQ -cdz +opD +doV dnP ceY cfw @@ -83665,19 +82597,19 @@ cdc cdc cdc cdc -kem +lsa cdc cdc -rgU +hfw cdc cdc cdc cdc cfA -rWY -dnp -leH -iWF +iuX +oJd +gJK +xsV ctO ctO ctO @@ -83697,9 +82629,9 @@ cfa cpQ civ caH -cND -cOl -cOl +gSh +iRq +iRq dTs dTs dTs @@ -83713,7 +82645,7 @@ cho cho cjQ clE -doO +sKN drg cZc gdW @@ -83878,7 +82810,7 @@ xsS bUC bVE gQE -dAB +vUY dJT dEY dib @@ -83886,7 +82818,7 @@ dib dib dLu dLO -ccR +qzv caH caH ceZ @@ -83903,11 +82835,11 @@ cjT cjT cjT cjT -dnV -sZe -xEA +hUK +unC +lNJ ceX -vFz +sAT cdC dPY dPY @@ -83947,7 +82879,7 @@ cho cho cho cYi -doO +sKN cZe cZc gdW @@ -84112,7 +83044,7 @@ xsS bUB bVD bWs -cAg +ovf dJT dEY dib @@ -84120,7 +83052,7 @@ dib dib dLu dLO -ccR +qzv ccM cen cdw @@ -84147,8 +83079,8 @@ cdC cdC cdC cdC -eKL -jAN +eUt +xIa dPY chr ciU @@ -84181,10 +83113,10 @@ cho cho cho cYi -dpD -dpE -ckx -cYe +rpo +utn +kRd +lcn vud dNS dNS @@ -84326,8 +83258,8 @@ bxQ bBH brh aff -wGR -fSK +kfI +fTR bHz bIx bDx @@ -84346,7 +83278,7 @@ xsS bUC bVE gQE -cAg +ovf dJT dEY dib @@ -84354,7 +83286,7 @@ dib dib dLu dLO -ccR +qzv cdA ceo cdw @@ -84379,7 +83311,7 @@ csH dPZ cdc cdc -dvi +bBB cdc cdc dPZ @@ -84418,7 +83350,7 @@ cjQ clE cnC djx -dtY +mnz vud dNS dNS @@ -84561,7 +83493,7 @@ bBH brh bDz bFa -dEU +nOT bFa bIy bDx @@ -84580,7 +83512,7 @@ xsS bUC bVE gQE -dCU +fQF dKA dEY dib @@ -84588,7 +83520,7 @@ dib dib dLu dLP -dLU +keB cdA ceo cdw @@ -84652,7 +83584,7 @@ cho cYi ciQ cYh -dtY +mnz vud dNS dNS @@ -84747,8 +83679,8 @@ axL ayx aCr ayB -exp -vTE +qwV +spe azm aCr dTs @@ -84814,7 +83746,7 @@ xsS bUC bVE gQE -bXo +hHr dLf dEY dib @@ -84822,7 +83754,7 @@ dib dib dLv dLA -dLV +qnY cdA ceo cdw @@ -84886,7 +83818,7 @@ cho cYi ciQ cnC -dnD +wmA vud jfA dNS @@ -84927,9 +83859,9 @@ gdW gdW dsT dzd -clo -cra -dFP +vHE +iae +mgs dzd dwD gdW @@ -84983,7 +83915,7 @@ aCr ayE auq auq -tPQ +jlY aCr dTs dTs @@ -85048,7 +83980,7 @@ xsS bUC bVE gQE -bXo +hHr dLf dEY dib @@ -85056,7 +83988,7 @@ dib dib dib dLu -dLV +qnY cdA ceo cdw @@ -85120,7 +84052,7 @@ cho cjQ clE ciQ -doN +vrI vud dNS dNS @@ -85161,9 +84093,9 @@ gdW gdW dsT dzd -clp +ptg crb -dFQ +eBr dzd dwD gdW @@ -85282,7 +84214,7 @@ xsS bUD bVD hcP -bXo +hHr dLf dEY dib @@ -85290,7 +84222,7 @@ dib dib dib dLu -dLW +xLH cdB cen cdw @@ -85354,7 +84286,7 @@ cho cho cYi ciQ -doO +sKN xxv wPb wPb @@ -85395,9 +84327,9 @@ dxe gdW dsT dzd -cmg +vuE crb -dGv +tBd dzd dwD gdW @@ -85516,7 +84448,7 @@ xsS mfK dCt dCt -bXo +hHr dLf dEY dib @@ -85524,7 +84456,7 @@ dib dib dib dLu -dLX +uDi cdA ceo cdw @@ -85588,20 +84520,20 @@ cho cho cjQ clE -dpD -chm -clD -cmr -cnB -cUI -cUI -cUI -cUI -cUI -cUI -cUI -cUI -dkb +rpo +tKV +iCJ +trU +kBf +kVK +kVK +kVK +kVK +kVK +kVK +kVK +kVK +ndS hBr uFX jOe @@ -85616,9 +84548,9 @@ kMT gdW dNx dsT -dEo -dFS -dGB +woG +eVD +hxs dwD dxe dyi @@ -85629,14 +84561,14 @@ dxe gdW dsT dzd -cmQ -csg -dGw +jCO +xAq +xjf dzd dwD gdW -dIC -dJd +sNO +fXN gdW dTs dTs @@ -85683,7 +84615,7 @@ dTs dTs aCr ayI -xTM +uCk azh azo aCr @@ -85749,8 +84681,8 @@ vgm xsS bUE hpw -hhj -bXp +pNk +rhe dLf dJB dLk @@ -85758,7 +84690,7 @@ dib dib dib dLu -dLX +uDi cdA ceo cdw @@ -85785,8 +84717,8 @@ dQh crE crE crE -nht -tFD +uSa +odk dQE dPT cBe @@ -85795,7 +84727,7 @@ dQY dRe dRm dRE -mqe +wCX dSu dia cCf @@ -85834,8 +84766,8 @@ cOG cOG cOG cOG -cWE -dkc +oZm +qEt qKE qKE oQx @@ -85850,9 +84782,9 @@ sUe gdW dNx eiq -dFc +xdB cho -dHf +rVB dwD din dWu @@ -85869,10 +84801,10 @@ dAA dzd dwD gdW -dID -cWD -cUI -cUI +mtU +lRM +kVK +kVK dTs dTs dTs @@ -85917,9 +84849,9 @@ dTs dTs aCr ayJ -qKF -jcx -miV +gZJ +eRH +fuK aCr dTs dTs @@ -85983,8 +84915,8 @@ ozu xsS bUE hqT -oNS -bXq +rAj +moD dLf dJT dEY @@ -85992,7 +84924,7 @@ dib dib dib dLu -dLX +uDi cdA ceo cdw @@ -86068,7 +85000,7 @@ djx cOG cOG cOG -cWF +ida cUi mGo mGo @@ -86086,7 +85018,7 @@ gdW dNx cYg cho -dHg +jqn dwD din dyj @@ -86097,13 +85029,13 @@ din gdW dsT dzd -clo -cra -dFP +vHE +iae +mgs dzd dwD gdW -dID +mtU cOG cOG cOG @@ -86152,7 +85084,7 @@ avG aCr aug aug -gCC +btg aug aCr dTs @@ -86218,7 +85150,7 @@ xsS mfK dCt dCt -dEj +fQw dLg dJT dEY @@ -86226,7 +85158,7 @@ dib dib dib dLu -dLX +uDi cdA ceo cdw @@ -86302,7 +85234,7 @@ cnC djx cAZ dtH -duA +ykC vud dNS dlc @@ -86318,9 +85250,9 @@ sUe gdW gdW gdW -dFd -dGA -dHA +vog +jOI +ntP dwD din dyj @@ -86331,13 +85263,13 @@ din gdW dsT dzd -cmQ -csg -dHc +jCO +xAq +ixX dzd dwD gdW -dID +mtU dJe dJe dJe @@ -86386,7 +85318,7 @@ axS axS axS ayL -pIR +gLh azq hVs dTs @@ -86452,7 +85384,7 @@ xsS bUB bVD goq -cAg +ovf dJT dJT dEY @@ -86460,7 +85392,7 @@ dib dib dib dLu -dLX +uDi cdB cen cdw @@ -86536,7 +85468,7 @@ ciQ cnC cuQ cvK -doO +sKN vud dNS dNS @@ -86571,7 +85503,7 @@ com dtI dwE gdW -dJS +fKZ dKL dKL dKL @@ -86686,7 +85618,7 @@ xsS bUC bVE gQE -cAg +ovf dJT dJT dEY @@ -86694,7 +85626,7 @@ dib dib dib dLu -dLX +uDi cdA ceo cdw @@ -86770,7 +85702,7 @@ chn chn chn chn -dvx +fmM xxv wPb wPb @@ -86805,7 +85737,7 @@ dAo gdW gdW gdW -dKB +mcu cgq cgq cgq @@ -86829,7 +85761,7 @@ aiz ahr ahr aju -inV +uFb ahr anK ahr @@ -86920,7 +85852,7 @@ xsS bUC bVE gQE -cDQ +lNc dJT dLj cEW @@ -86928,7 +85860,7 @@ dib dib dib dLu -dLX +uDi cdA ceo cdw @@ -87004,42 +85936,42 @@ cho cho cho cho -dvy -clD -cmr -cxW +vYM +iCJ +trU +ozh coF dfc dgD dNR dTH coF -jsN -chT -dvB -dvB -dDI -dEn -dEn -dEn -dEn -dEn -dFS -dvB +gqm +skN +fkt +fkt +nIm +jKR +jKR +jKR +jKR +jKR +eVD +fkt dzr -cfD -cfD -cfD -cgr -cgs -cgs -cgs -cgs -dHd -dIG -dII -dJA -dHy +pUQ +pUQ +pUQ +qsF +qoe +qoe +qoe +qoe +lbI +fCz +hah +hWk +kBH cgq dKN dJf @@ -87154,7 +86086,7 @@ xsS bUC bVE gQE -duy +pfP dJT dEY dib @@ -87162,7 +86094,7 @@ dib dib dib dLu -dLY +mQl cdA ceo cdw @@ -87241,14 +86173,14 @@ cho cjQ chn chn -cyR +faL cAf czV czV czV czV cAf -cAi +wqY chU cho cho @@ -87388,7 +86320,7 @@ xsS bUC bVE gQE -duy +pfP dJT dEY dib @@ -87396,7 +86328,7 @@ dib dib dib dLu -dLV +qnY cdA ceo cdw @@ -87524,11 +86456,11 @@ eei (154,1,1) = {" acu afG -ajx -akx -akx -akx -aTI +kRs +sLt +sLt +sLt +qfv afG agQ ahr @@ -87622,7 +86554,7 @@ xsS bUB bVD bWs -dAB +vUY dJT dEY dib @@ -87630,7 +86562,7 @@ dib dib dLt dLz -dLV +qnY cdB cen cdw @@ -87758,18 +86690,18 @@ eei (155,1,1) = {" acu afG -ajy +kBL afN afN afN -amd +dub agH agQ ahr ahr agQ agH -ucG +xmU aoP akO api @@ -87856,7 +86788,7 @@ xsS bUC bVE gQE -cAg +ovf dJT dEY dib @@ -87864,7 +86796,7 @@ dib dib dLu dJT -dLV +qnY cdA ceo cdw @@ -87992,11 +86924,11 @@ eei (156,1,1) = {" acu afG -ajy +kBL afN afN afN -amj +etm amE ahr ahr @@ -88090,7 +87022,7 @@ xsS bUC bVE gQE -dCU +fQF dKA dEY dib @@ -88098,7 +87030,7 @@ dib dib dLu dLQ -dLZ +eTp cdA ceo cdw @@ -88226,11 +87158,11 @@ acu (157,1,1) = {" acu afG -ajy +kBL jJE afN afN -amk +pnL ahr ahr ahr @@ -88324,7 +87256,7 @@ xsS bUC bVE gQE -uMG +jgL dLf dEY dib @@ -88332,7 +87264,7 @@ dib dib dLu dLO -ccR +qzv cdA ceo cdw @@ -88418,7 +87350,7 @@ czV czV czV cAf -cAj +pvQ chp chp chp @@ -88460,11 +87392,11 @@ acu (158,1,1) = {" acu afG -ajy +kBL afN afN afN -amd +dub agH agQ aiz @@ -88558,7 +87490,7 @@ xsS bUC bVE gQE -uMG +jgL dLf dEY dib @@ -88566,7 +87498,7 @@ dib dib dLu dLO -ccR +qzv cdA ceo cdw @@ -88645,14 +87577,14 @@ ciQ ciQ cjS chp -czB +hWJ cAf czX czX cho czX cAf -cAk +hWI djw cAl ciQ @@ -88694,11 +87626,11 @@ acu (159,1,1) = {" acu afG -ajN -akC -akC -akC -aml +irP +jpu +jpu +jpu +dhz afG amR ahr @@ -88707,7 +87639,7 @@ agQ agH amr aoP -fXL +jQU eNU aug aun @@ -88792,15 +87724,15 @@ xsS bUD bVD hcP -jvZ -dLh -dLl +gZS +mot +pjm dib dib dib -beZ -aac -bii +ctk +oIN +lYx ccN cen cdw @@ -88815,7 +87747,7 @@ cjv cke ckP clO -nTW +lSV jVr coT lKY @@ -88873,28 +87805,28 @@ dTs dTs dTs dTs -dgX -dtG -duz -duz -duz -duz -cAe +hGx +uBj +dCv +dCv +dCv +dCv +nqW coF dfc dgF jrV dTH coF -cuT -dgX -cAX -ckn -cpv -chS -chS -cjk -dHB +ixU +hGx +suL +pAd +rcZ +jFv +jFv +ojZ +hqG dTs dTs dTs @@ -88905,15 +87837,15 @@ dTs dTs dTs cln -cpd -dEZ -dHe -dHe -dJg -dJE -dKK -dgX -dgX +kDw +xCc +kpd +kpd +jjB +erj +sEg +hGx +hGx dTs dTs dTs @@ -88955,7 +87887,7 @@ aqC avG ayb ayk -jMs +voE ayj avH ayO @@ -89048,9 +87980,9 @@ ciU cjv cke ckO -pdG -rnE -wEQ +vpg +doD +kvn cka cpL dPu @@ -89297,7 +88229,7 @@ cwQ cxE cyh cyZ -ovE +njy dQO cyZ cCq @@ -90346,7 +89278,7 @@ aqF anX aou aoK -jeo +rzj aug aun auq @@ -90430,15 +89362,15 @@ ozu xsS gFr dCt -aWs -dLi -dLp +pqU +hFg +wyg dib dib dib -dLF -dLT -ccO +vHX +jiL +qub ccM cen cdw @@ -90663,8 +89595,8 @@ ozu ozu xsS hwc -hhj -cAh +pNk +tUp dJT dEY dib @@ -90672,7 +89604,7 @@ dib dib dLu dLO -ccR +qzv cdA ceo cdw @@ -90897,8 +89829,8 @@ oAM oAM vLd hwc -oNS -cDP +rAj +hQT dLj cEW dib @@ -90906,7 +89838,7 @@ dib dib dLu dLP -dLU +keB cdA ceo cdw @@ -91132,7 +90064,7 @@ hpw hpw kVU dCt -cAg +ovf dEY dib dib @@ -91140,7 +90072,7 @@ dib dib dLu dJT -dLV +qnY cdA ceo cdw @@ -91185,7 +90117,7 @@ cIK cLm cHL cMW -caz +dij dTd cOm cPN @@ -91366,7 +90298,7 @@ cBZ abo abk abk -cDQ +lNc dEY dib dib @@ -91374,7 +90306,7 @@ dib dib dLu dJT -dLW +xLH cdA ceo cdw @@ -91600,7 +90532,7 @@ abU abO acA abk -duy +pfP dEY dib dib @@ -91608,7 +90540,7 @@ dib dib dLu dJT -dLY +mQl cdB cen cdw @@ -91834,7 +90766,7 @@ abU abU abU abo -dEk +uyT cEW dib dib @@ -91842,7 +90774,7 @@ dib dib dLu dJT -dLV +qnY cdA ceo cdw @@ -92068,7 +91000,7 @@ abU acA abO abo -dEl +tfc dib dib dib @@ -92076,7 +91008,7 @@ dib dib dLu dJT -dLV +qnY cdA ceo cdw @@ -92302,7 +91234,7 @@ abU iJC aVE abo -dEm +oUU dib dib dib @@ -92310,7 +91242,7 @@ dib dLt dLz dJT -dLV +qnY cdA ceo cdw @@ -92536,7 +91468,7 @@ abU abU abU abo -dEW +lTi dib dib dib @@ -92544,7 +91476,7 @@ dib dLu dJT dJT -dLV +qnY cdA ceo cdw @@ -92723,7 +91655,7 @@ bAS bAS bAS bAS -byY +iua azT aET aET @@ -92770,7 +91702,7 @@ abU abO aVR abk -dEW +lTi dib dib dib @@ -92778,7 +91710,7 @@ dib dLu dJT dLQ -dLZ +eTp cdB cen cdw @@ -93004,7 +91936,7 @@ abk abk abk abk -dEW +lTi dib dib dib @@ -93012,7 +91944,7 @@ dLt dLz dJT dLO -ccR +qzv cdA cdw cdw @@ -93238,7 +92170,7 @@ dTs dTs dTs dTs -dEW +lTi dib dib dib @@ -93425,7 +92357,7 @@ aSi aSi aQq aPP -byY +iua adA adA aCG @@ -93472,7 +92404,7 @@ dTs dTs dTs dTs -dEl +tfc dib dib dib @@ -93705,8 +92637,8 @@ wbv aHU dTs dTs -czT -dEX +elX +wKn dib dib dib @@ -93861,9 +92793,9 @@ dTs dTs dTs akL -nnL +rnA aot -hbG +sHw aqa aqr dTs @@ -93915,8 +92847,8 @@ aGD aGH aGH aGH -aIB -aIR +pvF +nAj aGH aGH aGH @@ -93939,7 +92871,7 @@ aTr aHA aGH ilq -cAg +ovf dEY dib dib @@ -94146,15 +93078,15 @@ aFi adA ajG aGH -akV -azU -azU -aHZ -aEh -azU -azU -azU -aDZ +iDW +rUl +rUl +fQx +sxC +rUl +rUl +rUl +qmv aGH wQM eqo @@ -94172,8 +93104,8 @@ bmA aHb aGc aGw -pWn -cAh +xwV +tUp dEY dib dib @@ -94380,7 +93312,7 @@ aFi adA ajG aGH -alj +hYv aIl aIr azT @@ -94388,7 +93320,7 @@ aIU aIX aJj azT -aEf +eRl aGH wQM eqo @@ -94406,8 +93338,8 @@ aMf aHb aGc aGE -fRy -cDP +vwB +hQT dEY dib dib @@ -94565,7 +93497,7 @@ afP afP amr aot -hbG +sHw aqa aqr dTs @@ -94614,7 +93546,7 @@ aFi adA ajG aGH -alj +hYv aIm aIs azT @@ -94622,7 +93554,7 @@ aIV aIY aJk aJC -aEf +eRl aGH aEq adA @@ -94641,7 +93573,7 @@ aHb baX bjQ ilq -cDQ +lNc dEY dib dib @@ -94651,7 +93583,7 @@ dLA dLP adR aOu -ccR +qzv xzm ciU cfw @@ -94782,7 +93714,7 @@ ajV akY aln aln -ewg +pFt amH alI ahe @@ -94799,7 +93731,7 @@ apw afP amr aot -hbG +sHw aqb akL dTs @@ -94848,7 +93780,7 @@ aFi adA ajG aGH -alj +hYv aIn aIt aIC @@ -94856,7 +93788,7 @@ azT aIZ aJl aJD -aEf +eRl aGH aEq adA @@ -94874,8 +93806,8 @@ aUO aZI ouK ilq -bxU -cDR +gfr +iqL cEW dib dib @@ -94885,7 +93817,7 @@ dLu adC dLP adR -ccR +qzv caH aKv cfw @@ -94955,7 +93887,7 @@ dbw dbw ded dcw -lvu +xBH dqs dAg dFh @@ -94978,7 +93910,7 @@ cmN cnW cmH duC -eOU +fMw dwF dxf dym @@ -95082,7 +94014,7 @@ aFi adA ajG aGH -alj +hYv azT azT azT @@ -95090,7 +94022,7 @@ azT azT aJn aJE -aEf +eRl aGH aEq adA @@ -95107,8 +94039,8 @@ aMf aMf aZI ouK -bxS -bxV +nAA +oUB cEW dib dib @@ -95119,7 +94051,7 @@ dLv dLA dJT dLO -ccR +qzv caH aKv cfw @@ -95316,7 +94248,7 @@ aFi adA ajG aGH -alj +hYv aIo azT azT @@ -95324,7 +94256,7 @@ azT aJa aJo aJF -aEf +eRl aGH aEq adA @@ -95341,7 +94273,7 @@ aMg aMg aTr ouK -dEl +tfc dib dib dib @@ -95353,7 +94285,7 @@ dib dLu dJT dLO -ccR +qzv caH ciU cfw @@ -95550,7 +94482,7 @@ tai adA ajG aGH -alj +hYv azT azT azT @@ -95558,7 +94490,7 @@ azT aJb aJp aJG -aJN +vNn aGH aEq adA @@ -95575,7 +94507,7 @@ aMf aMf aTr ouK -dEl +tfc dib dib dib @@ -95587,8 +94519,8 @@ dib dLu dJT dLO -ccP -auv +qby +uKi civ cfw cdC @@ -95784,7 +94716,7 @@ aFi adA ajG aGH -alj +hYv azT azT azT @@ -95792,7 +94724,7 @@ azT azT aJq aJJ -aJO +sdc aGH wQM eqo @@ -95809,10 +94741,10 @@ aMf bmB aTr pAE -bxT -bxW -diM -dFR +tBb +fTV +rFY +gGA dib dib dib @@ -95821,8 +94753,8 @@ dib dLu dJT dLO -ccQ -auX +opD +jUF civ cfw cge @@ -96017,8 +94949,8 @@ aEZ aGl mZj aHH -aHK -aHZ +oSp +fQx azT azT aIo @@ -96026,7 +94958,7 @@ azT aJg azT aJK -aJP +usx aGH wQM eqo @@ -96046,7 +94978,7 @@ pAE ilq ilq ilq -dEW +lTi dib dib dib @@ -96055,7 +94987,7 @@ dib dLu dLQ aeh -ccR +qzv caH ciU cfw @@ -96251,8 +95183,8 @@ aHy aEP aEP aGB -aHM -aIj +hxA +rUD azT azT azT @@ -96260,7 +95192,7 @@ azT azT azT azT -aEf +eRl aGH aEq aCG @@ -96280,7 +95212,7 @@ aGc aGw aHU ilq -dGu +vjZ dib dib dib @@ -96289,7 +95221,7 @@ dib dLu dLO aOu -aeG +ljY caH ciU cfw @@ -96486,7 +95418,7 @@ adA adA ajG aGH -alj +hYv azT azT azT @@ -96494,7 +95426,7 @@ azT azT azT azT -aEf +eRl aGH aEq aEX @@ -96514,7 +95446,7 @@ aGc aGE feU ilq -dGz +fqa dLk dib dib @@ -96523,7 +95455,7 @@ dib dLu dLO aOu -ccR +qzv caH ciU cfw @@ -96720,15 +95652,15 @@ adA adA ajG aGH -azK -aAm -aAm -aIj -aEj -aAm -aAm -aAm -aEl +wsI +xGS +xGS +rUD +gNY +xGS +xGS +xGS +fhO aGH aEq aEX @@ -96748,7 +95680,7 @@ baX aEx azO pDW -duy +pfP dEY dib dib @@ -96757,7 +95689,7 @@ dib dLu dLO aOu -ccR +qzv caH ciU cfw @@ -96957,8 +95889,8 @@ aGM aGH aGH aGH -aID -aIW +tvD +oKX aGH aGH aGH @@ -96982,16 +95914,16 @@ bhw aEq adA hiN -dAB +vUY dJB dLk dib dib dib -aPv -dLR -bXq -ccR +ikX +fat +moD +qzv caH ciU cfw @@ -97160,11 +96092,11 @@ adA adA aFN ajG -akV -azU -aAF -azU -aDZ +iDW +rUl +pOz +rUl +qmv aEq adA adA @@ -97216,16 +96148,16 @@ azO aRU dTs wIr -dCU +fQF dKA dEY dib dib dib -dMq +srS caH -abg -aqw +uwq +wfJ caH ciU cfw @@ -97394,11 +96326,11 @@ adA ajC adA ajG -alj +hYv azT aAM aCK -aEf +eRl aEq adA adA @@ -97439,7 +96371,7 @@ dTs dTs dTs akq -wIC +iOu agK agK agC @@ -97450,13 +96382,13 @@ aCG dTs dTs ilq -aMm +nvh dLf dEY dib dib dib -dMq +srS caH chZ civ @@ -97628,11 +96560,11 @@ adA adA adA ajG -alj +hYv aAe aBw azT -aEf +eRl aEr aEm adA @@ -97673,7 +96605,7 @@ dTs adA aFr qCR -xLb +ito azT azT dTs @@ -97684,13 +96616,13 @@ dTs dTs dTs ilq -aMm +nvh dLf dEY dib dib dib -dMq +srS ccM ank arv @@ -97768,7 +96700,7 @@ dzD dDK dDK dIm -bAk +ngH dDK dDK dDK @@ -97862,12 +96794,12 @@ adA adA adA ajG -alj +hYv aAf aBy azT -aEh -aEv +sxC +slx aEz aEW aEW @@ -97918,13 +96850,13 @@ dTs dTs dTs pDW -aMn +rOc dLf dEY dib dib dib -dMq +srS abe arw arw @@ -98096,12 +97028,12 @@ adA adA dZl ajG -alj +hYv aAg aBA aCK -aEj -aEw +gNY +dmj aEA aEP aEP @@ -98138,13 +97070,13 @@ adA adA adA aFr -aKE -aKQ -aKQ -aKQ -aKQ -aLz -aLE +ltk +xdz +xdz +xdz +xdz +eFT +qOq aJV aLP aLV @@ -98152,13 +97084,13 @@ dTs dTs dTs hiN -aMm +nvh dLf dEY dib dib dib -dMq +srS ccN cek cek @@ -98330,11 +97262,11 @@ adA adA adA ajG -alj +hYv aAk aCm aCK -aEf +eRl aEx aEy adA @@ -98372,13 +97304,13 @@ eqo eqo adA kmU -aKF -vdJ +uAh +ipH aGH -vdJ -vdJ -qqU -aLC +ipH +ipH +hYV +tag aLI adA aLW @@ -98386,13 +97318,13 @@ aMf aLV aLP hiN -aMm +nvh dLf dEY dib dib dib -dMq +srS caH caH anm @@ -98564,11 +97496,11 @@ adA aeo adA ajG -alj +hYv aAl aCs azT -aEf +eRl aEq adA adA @@ -98606,13 +97538,13 @@ ofB ofB aKe adA -aKF -qZF -hQS +uAh +nzf +fFI aLl -hJY -qqU -aLC +iuu +hYV +tag jVv aLQ aLZ @@ -98620,13 +97552,13 @@ aMf aGH aLP wIr -aMm +nvh dLf dEY dib dib dib -dMq +srS caH rjd aDf @@ -98798,11 +97730,11 @@ agC adA adA ajG -alj +hYv azT aCz azT -aEf +eRl aEq adA adA @@ -98840,13 +97772,13 @@ aGf aHx aGn adA -aKF -pob +uAh +fFo aLg aLm aLt -qqU -aLC +hYV +tag adA aLI ajG @@ -98854,18 +97786,18 @@ aGH aMi aLP ilq -dEj +fQw dLg dEY dib dib dib -dMq +srS bnA arx -atC -aeH -aft +gQv +kIj +ogs ahA bnA chZ @@ -98887,7 +97819,7 @@ aXq aOI aTM aVD -hKf +dZc aXh aXh biX @@ -99032,11 +97964,11 @@ aDY adA adA ajG -azK -aAm -aAm -aAm -aEl +wsI +xGS +xGS +xGS +fhO aEq kmU adA @@ -99074,32 +98006,32 @@ aGq aGd aGn adA -aKF -fEU -jwt +uAh +fhq +mTp aLn -fiY +nnn aGH -aLC +tag adA aLR -tlo +iCd aGH aGH aLP ilq -cAg +ovf dJT dEY dib dib dib -adG +srp bnA aOo -dMf +fSP dib -atW +pWW ahA bnA chZ @@ -99121,7 +98053,7 @@ aXu aOH aTM aVV -bIp +nwS aXh aYb aXh @@ -99308,32 +98240,32 @@ adA aEZ aGn aHT -aKF -qZF -rbV -vNW -hgz -qqU -aLF +uAh +nzf +jHm +uCz +mUy +hYV +urS adA adA -qKN +sNC aMf aMk aLV ilq -cAg +ovf dLj cEW dib dib dib -adH +xDl bnA aOo -dMf +fSP dib -atW +pWW ahA bnA aSH @@ -99471,8 +98403,8 @@ amz anD anP anP -rKE -ggz +rfR +vwn aoF apl anP @@ -99539,16 +98471,16 @@ eqo adA adA kmU -nhi +xNK aGl aJh -aKG -aKR -vbC -vvL -aLw -aLA -aLG +uod +gPY +uAb +kuD +pdq +rVO +igm aEW aLT aLZ @@ -99556,18 +98488,18 @@ aMg fbK aGH ilq -cDQ +lNc dEY dib dib dib dib -adH +xDl aof arx -asT +rVG dib -atW +pWW ahA bnA aSH @@ -99774,14 +98706,14 @@ adA adA adA aEZ -kgt +msF aGf -aKJ -aKS -mBP +jei +uSg +qOS aLp -aLx -aLB +xky +cwa leZ aLJ aLU @@ -99790,18 +98722,18 @@ aGM aGH aGH ilq -duy +pfP dEY dib dib dib dib -adH +xDl aof arx -asT +rVG dib -atW +pWW ahA bnA aSH @@ -100010,12 +98942,12 @@ adA aEZ aFi adA -aKF +uAh aGH aGH -uvg +bmZ aGH -aLC +tag adA adA adA @@ -100024,18 +98956,18 @@ aMh aMf aMf ilq -duy +pfP dEY dib dib dib dib -adH +xDl aof arx -asZ -atB -atX +smi +xlV +ffJ ahA bnA aSH @@ -100172,7 +99104,7 @@ amz amz apj anP -hNn +fBc aod aoT aoT @@ -100244,27 +99176,27 @@ adA pyP rpc adA -aKK -aLe -aLe -aLe -aLe -aLD +oSE +hwA +hwA +hwA +hwA +iTB adA adA -svH +eNc adA aMh aLP aMg ilq -duy +pfP dEY dib dib dib dib -adH +xDl bnA aeP afM @@ -100406,7 +99338,7 @@ amz amz apj anP -ggz +vwn aod aFA aoT @@ -100415,7 +99347,7 @@ aqd aqd anP arl -kmj +mst aoT asJ anQ @@ -100479,7 +99411,7 @@ aHy aFj dic adA -llZ +vLZ adA dTs dTs @@ -100492,13 +99424,13 @@ dTs dTs dTs ilq -duy +pfP dEY dib dib dib dib -adJ +rCn bnA bnA bnA @@ -100640,7 +99572,7 @@ amz amz apj anP -ino +wzx aod aoT aoT @@ -100712,7 +99644,7 @@ lVW lVW lVW aKj -rXG +xzF adA adA aCG @@ -100726,13 +99658,13 @@ dTs dTs dTs ilq -duy +pfP dEY dib dib dib dib -dMq +srS aoi aoi aNU @@ -100874,7 +99806,7 @@ amz ant anD anP -lah +uWK aod aoT aoT @@ -100960,13 +99892,13 @@ dTs dTs dTs ilq -duy +pfP dEY dib dib dib dib -dMq +srS aoi asO avp @@ -101194,13 +100126,13 @@ dTs dTs dTs ilq -dAB +vUY dJB dLk dib dib dib -dMq +srS aNU asQ avv @@ -101428,13 +100360,13 @@ dTs dTs dTs ilq -cAg +ovf dJT dEY dib dib dib -dMq +srS aNU asS aNy @@ -101580,7 +100512,7 @@ aoc aoS aFA aoT -rdo +mOw aqs aoT aoT @@ -101662,13 +100594,13 @@ dTs dTs dTs dTs -cAg +ovf dJT dEY dib dib dib -dMq +srS aoi atY aNy @@ -101902,7 +100834,7 @@ cEW dib dib dib -dMq +srS aoi atZ aNy @@ -102047,13 +100979,13 @@ anQ aoA aoT aoT -bIL +baU aoT aoT aFA aoT aoT -rdo +mOw aoT apF anQ @@ -102136,7 +101068,7 @@ dib dib dib dib -dMq +srS aoi auZ aNy @@ -102604,7 +101536,7 @@ bLJ bLJ bLJ bLJ -adL +xZR aoi aoi aNU @@ -102838,7 +101770,7 @@ bLJ bLJ bLJ ack -adM +qvt bnA bnA bnA @@ -102977,7 +101909,7 @@ akK akK amz amz -oey +dhl aoq amz amz @@ -103072,7 +102004,7 @@ bLJ bLJ bLJ acr -adN +gkq bnA bXB bul @@ -103306,7 +102238,7 @@ bLJ bLJ bLJ acr -adN +gkq bnA atc buh @@ -103444,7 +102376,7 @@ akk akk akk amx -kmK +iaC amz anv anq @@ -103522,12 +102454,12 @@ aBL dTs dTs dTs -aBO -aBR -uKo -uKo -uKo -fiW +jvf +fnA +sqH +sqH +sqH +gNM dTs dTs dTs @@ -103540,10 +102472,10 @@ bLJ bLJ bLJ adp -adP +qHL bnA -ate -awn +jbb +ifo bnA bnA aPd @@ -103774,10 +102706,10 @@ bLJ bLJ bLJ bLJ -adQ -adS -ael -aeI +vRw +tzT +ydP +jgX bnA aOm aPk @@ -104011,7 +102943,7 @@ bLJ bLJ adp aey -aeJ +lFx bnA aOo aeV @@ -104245,16 +103177,16 @@ bLJ bLJ bLJ bLJ -bUN +jBn aeV aOq -afL -agJ +neR +wnv aeV -afL -avT -avT -agJ +neR +jnb +jnb +wnv ahA bnA aSH @@ -104479,16 +103411,16 @@ bLJ bLJ bLJ bLJ -bUN +jBn aeV aOq -agl -bUN +vUf +jBn aeV -agl +vUf bLJ bLJ -bUN +jBn ahA bnA aSH @@ -104619,7 +103551,7 @@ app arq asw atJ -xDb +rhv axA aas dTs @@ -104713,16 +103645,16 @@ bLJ bLJ bLJ bLJ -bUN +jBn aeV aOq -ags -ahv +mmM +vRX aeV -ags -awm -awm -ahv +mmM +qCs +qCs +vRX ahA bnA aSH @@ -104947,7 +103879,7 @@ bLJ bLJ bLJ ack -aeK +cnt bnA aOo aeV @@ -105181,7 +104113,7 @@ bLJ bLJ ack adU -adN +gkq bnA aeP afM @@ -105389,9 +104321,9 @@ aBE aBE aBE aAv -hoc -gCS -rQQ +eyd +iKj +kQT qJU ooQ aCk @@ -105415,7 +104347,7 @@ bLJ ack adU adX -aeN +odQ aeO aeQ aMH @@ -105623,9 +104555,9 @@ aBE aBE aBE aAv -rCp -wFU -fgo +usD +mth +eLi qJU aCk aBL @@ -105649,7 +104581,7 @@ bLJ acr adX aeF -ccR +qzv bYN bkP dTs @@ -105857,9 +104789,9 @@ qjg azB aBE aAv -hnJ -hpL -mkU +nbm +fAk +vLf qJU aBE qjg @@ -105883,7 +104815,7 @@ bLJ acr aeb aOu -ccR +qzv bWI dTs dTs diff --git a/maps/map_files/DesertDam/greenriver/newbridge.dmm b/maps/map_files/DesertDam/greenriver/newbridge.dmm index df19de868c79..96599acb3f76 100644 --- a/maps/map_files/DesertDam/greenriver/newbridge.dmm +++ b/maps/map_files/DesertDam/greenriver/newbridge.dmm @@ -3,19 +3,13 @@ /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_bridge) "ab" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "ac" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/almayer/east, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_east) @@ -24,9 +18,7 @@ /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "ae" = ( -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_east) @@ -49,16 +41,12 @@ /turf/closed/wall/rock/orange, /area/desert_dam/exterior/rock) "ak" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) "al" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/almayer/east, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) @@ -67,9 +55,7 @@ /turf/open/gm/river/desert/shallow_corner/north, /area/desert_dam/exterior/river/riverside_east) "an" = ( -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) @@ -102,20 +88,14 @@ /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "au" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/almayer/west, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "av" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "aw" = ( @@ -127,41 +107,29 @@ /turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_east) "ay" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "az" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) "aA" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_east) "aB" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "aC" = ( /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "aD" = ( @@ -170,9 +138,7 @@ /area/desert_dam/exterior/river/riverside_east) "aE" = ( /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) "aF" = ( @@ -189,9 +155,7 @@ /area/desert_dam/exterior/river/riverside_east) "aI" = ( /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "aJ" = ( @@ -220,16 +184,14 @@ /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) "aP" = ( -/obj/structure/platform_decoration, +/obj/structure/platform_decoration/metal/almayer, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aQ" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aR" = ( @@ -238,19 +200,17 @@ /area/desert_dam/exterior/river/riverside_east) "aS" = ( /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aT" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aU" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /obj/effect/blocker/toxic_water/Group_2, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_edge, @@ -264,9 +224,7 @@ /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) "aX" = ( -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_east) @@ -287,18 +245,14 @@ /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "bd" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/almayer/west, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "be" = ( /obj/structure/stairs{ dir = 8 }, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/stair_cut/platform_right, /turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_medical) "bf" = ( @@ -314,28 +268,26 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_medical) "bi" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "bj" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/almayer/north, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "bk" = ( -/obj/structure/platform_decoration, +/obj/structure/platform_decoration/metal/almayer, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) "bl" = ( /obj/structure/stairs{ dir = 8 }, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/valley_medical) "bm" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) "bn" = ( @@ -348,18 +300,14 @@ /obj/structure/stairs{ dir = 1 }, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) "bp" = ( /obj/structure/stairs{ dir = 1 }, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) diff --git a/maps/map_files/DesertDam/purpleriver/newbridge.dmm b/maps/map_files/DesertDam/purpleriver/newbridge.dmm index 7cc7eac77db1..59c17d216912 100644 --- a/maps/map_files/DesertDam/purpleriver/newbridge.dmm +++ b/maps/map_files/DesertDam/purpleriver/newbridge.dmm @@ -24,12 +24,8 @@ /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) "af" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) @@ -79,9 +75,7 @@ /turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_medical) "an" = ( -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) @@ -102,61 +96,43 @@ /area/desert_dam/exterior/valley/valley_medical) "as" = ( /obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "at" = ( /obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) "au" = ( /turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) "av" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/almayer/west, /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "aw" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) "ax" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) "ay" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "az" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/almayer/west, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "aA" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "aB" = ( @@ -171,9 +147,7 @@ /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "aE" = ( -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) "aF" = ( @@ -205,36 +179,32 @@ /area/desert_dam/exterior/river/riverside_south) "aM" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform_decoration, +/obj/structure/platform_decoration/metal/almayer, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "aN" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "aO" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) "aP" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "aQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "aR" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "aS" = ( @@ -270,40 +240,28 @@ /area/desert_dam/exterior/valley/valley_medical) "ba" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "bb" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_south) "bc" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) "bd" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "be" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) "bf" = ( @@ -312,16 +270,12 @@ /area/desert_dam/exterior/river/riverside_south) "bg" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "bh" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "bi" = ( @@ -330,16 +284,12 @@ /area/desert_dam/exterior/river/riverside_south) "bj" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) "bk" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "bl" = ( @@ -347,9 +297,7 @@ /area/desert_dam/exterior/river/riverside_south) "bm" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "bn" = ( @@ -362,16 +310,12 @@ /area/desert_dam/exterior/river/riverside_south) "bp" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_south) "bq" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "br" = ( @@ -379,30 +323,24 @@ /turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) "bs" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_south) "bt" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "bu" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) "bv" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/almayer/north, /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) @@ -418,9 +356,7 @@ /turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) "bA" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_south) diff --git a/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm b/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm index 30adc1a7f997..e3f4e03e4994 100644 --- a/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm +++ b/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm @@ -53,12 +53,6 @@ }, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"eA" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) "fl" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -93,21 +87,13 @@ hull = 1 }, /area/desert_dam/interior/caves/temple) -"ik" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/obj/item/clothing/mask/gas/yautja/damaged{ - anchored = 1; - color = "#880808"; - desc = "A clan mask of uncertain origin, whoever wore it must have been cruel and sadistic."; - icon_state = "pred_mask_elder_tr"; - name = "ancient clan mask"; - pixel_y = 30 - }, -/turf/open/floor/corsat/squareswood/north, +"hn" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"iC" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/river/desert/deep, /area/desert_dam/interior/caves/temple) "iM" = ( /obj/structure/surface/table/reinforced/prison{ @@ -158,6 +144,30 @@ "mB" = ( /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"mL" = ( +/obj/structure/showcase{ + color = "#880808"; + desc = "A large red statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "The Titan" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1; + icon_state = "halfarmor7_ebony" + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1; + icon_state = "y-boots4_ebony" + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + icon_state = "pred_mask12_ebony"; + unacidable = 0; + pixel_y = 10 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/desert_dam/interior/caves/temple) "mQ" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -197,30 +207,6 @@ "oR" = ( /turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) -"pC" = ( -/obj/structure/showcase{ - color = "#880808"; - desc = "A large red statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "The Titan" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1; - icon_state = "halfarmor7_ebony" - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1; - icon_state = "y-boots4_ebony" - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - icon_state = "pred_mask12_ebony"; - unacidable = 0; - pixel_y = 10 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/desert_dam/interior/caves/temple) "qv" = ( /obj/effect/decal/remains/xeno{ pixel_x = 31 @@ -235,12 +221,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt/desert_transition_edge1/west, /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" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -274,15 +254,13 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) +"sZ" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/river/desert/deep, +/area/desert_dam/interior/caves/temple) "td" = ( /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) -"tn" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/interior/caves/temple) "tq" = ( /obj/structure/closet/coffin/predator, /obj/item/storage/large_holster/katana, @@ -324,10 +302,8 @@ }, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"wi" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, +"wl" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, /turf/open/gm/river/desert/deep, /area/desert_dam/interior/caves/temple) "yT" = ( @@ -341,9 +317,9 @@ "zg" = ( /turf/closed/wall/mineral/sandstone/runed/decor, /area/desert_dam/interior/caves/temple) -"An" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/gm/river/desert/deep, +"zH" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) "Ax" = ( /obj/structure/surface/table/reinforced/prison{ @@ -379,6 +355,26 @@ "Co" = ( /turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) +"CC" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"CH" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" + }, +/obj/item/clothing/mask/gas/yautja/damaged{ + anchored = 1; + color = "#880808"; + desc = "A clan mask of uncertain origin, whoever wore it must have been cruel and sadistic."; + icon_state = "pred_mask_elder_tr"; + name = "ancient clan mask"; + pixel_y = 30 + }, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) "Dc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock, @@ -407,12 +403,6 @@ "EB" = ( /turf/closed/wall/rock/orange, /area/desert_dam/exterior/rock) -"FE" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) "Gz" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 @@ -435,6 +425,14 @@ /obj/item/xeno_egg, /turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) +"Hn" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"Im" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) "Ix" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -468,6 +466,10 @@ }, /turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) +"Jg" = ( +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) "Jh" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -484,20 +486,10 @@ /obj/item/clothing/head/hardhat, /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) -"JM" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) "JP" = ( /obj/structure/xenoautopsy/tank, /turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) -"JU" = ( -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) "JZ" = ( /obj/structure/machinery/autolathe/yautja, /turf/open/floor/strata/grey_multi_tiles, @@ -509,6 +501,10 @@ /obj/item/weapon/chainofcommand, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"Kl" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) "KA" = ( /obj/structure/closet/coffin/predator, /turf/open/floor/corsat/squareswood/north, @@ -585,32 +581,16 @@ /obj/item/weapon/unathiknife, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"QT" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) "RB" = ( /obj/structure/machinery/door/window{ dir = 8 }, /turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) -"SD" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) "TO" = ( /obj/structure/xenoautopsy, /turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) -"TU" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) "UB" = ( /obj/structure/machinery/power/smes/magical{ capacity = 9e+008; @@ -640,6 +620,10 @@ }, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) +"YH" = ( +/obj/structure/platform/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) "ZI" = ( /turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_crashsite) @@ -766,12 +750,12 @@ MH mB mB MH -An -wi -wi -wi -wi -tn +wl +sZ +sZ +sZ +sZ +iC MH "} (6,1,1) = {" @@ -969,9 +953,9 @@ MH MH mB mB -SD -JM -FE +Im +hn +Kl mB mB MH @@ -995,9 +979,9 @@ mB uK mB mB -JU -pC -eA +YH +mL +zH mB mB zg @@ -1021,9 +1005,9 @@ mB MH mB mB -re -QT -TU +CC +Jg +Hn mB mB Eh @@ -1300,7 +1284,7 @@ EB EB EB MH -ik +CH MH MH rh diff --git a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm index 518ea89a0257..066d7ab18253 100644 --- a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm +++ b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm @@ -4827,7 +4827,7 @@ /area/prison/research/RD) "aqF" = ( /obj/structure/surface/table/reinforced, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ dir = 4 }, @@ -5144,9 +5144,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.1 }, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/stair_cut/platform_left, /turf/open/floor/prison/sterile_white/southwest, /area/prison/hanger/research) "arI" = ( @@ -5519,7 +5517,7 @@ /area/prison/medbay) "ate" = ( /obj/structure/machinery/power/apc/no_power/south, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/sterile_white/southwest, /area/prison/hanger/research) "atf" = ( @@ -9236,9 +9234,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" }, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison, /area/prison/security/checkpoint/maxsec) "aHV" = ( @@ -9342,9 +9338,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/platform_decoration{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/almayer/west, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "aIv" = ( @@ -9352,9 +9346,7 @@ /area/prison/residential/central) "aIw" = ( /obj/structure/pipes/vents/scrubber, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "aIx" = ( @@ -10067,9 +10059,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.1 }, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/stair_cut/platform_left, /turf/open/floor/prison/sterile_white/southwest, /area/prison/security/checkpoint/highsec/n) "aLq" = ( @@ -14041,9 +14031,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "baX" = ( @@ -14849,9 +14837,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.1 }, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/stair_cut/platform_right, /turf/open/floor/prison/sterile_white/southwest, /area/prison/canteen) "beg" = ( @@ -16117,9 +16103,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "biI" = ( @@ -16408,9 +16392,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.1 }, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/stair_cut/platform_left, /turf/open/floor/prison/sterile_white/southwest, /area/prison/storage/vip) "bka" = ( @@ -19583,9 +19565,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.1 }, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/stair_cut/platform_left, /turf/open/floor/prison/sterile_white/southwest, /area/prison/hallway/central/west) "bxG" = ( @@ -21999,9 +21979,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.1 }, -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/stair_cut/platform_left, /turf/open/floor/prison/sterile_white/southwest, /area/prison/security/checkpoint/highsec/s) "bHx" = ( @@ -32840,13 +32818,11 @@ dir = 8; icon_state = "p_stair_full" }, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/sterile_white/southwest, /area/prison/canteen) "cSA" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/almayer/north, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "cWg" = ( @@ -32974,7 +32950,7 @@ dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/sterile_white/southwest, /area/prison/storage/vip) "dqf" = ( @@ -32990,9 +32966,7 @@ /turf/open/organic/grass, /area/prison/residential/north) "dxF" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/almayer/north, /turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "dyt" = ( @@ -33009,7 +32983,7 @@ /turf/open/floor/plating, /area/prison/residential/north) "dzH" = ( -/obj/structure/platform_decoration, +/obj/structure/platform_decoration/metal/almayer, /turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) "dAz" = ( @@ -33441,9 +33415,7 @@ /turf/open/floor/prison/redfull, /area/prison/cellblock/highsec/north/south) "fyi" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "fCr" = ( @@ -34134,7 +34106,7 @@ /turf/open/floor/prison/yellow/northeast, /area/prison/cellblock/mediumsec/north) "hXJ" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) "hXW" = ( @@ -34230,9 +34202,7 @@ /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/east) "iqo" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/almayer/west, /turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) "irh" = ( @@ -34437,9 +34407,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/prison/yard) "jfe" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "jfp" = ( @@ -34469,9 +34437,7 @@ /area/prison/cellblock/mediumsec/south) "jmr" = ( /obj/structure/largecrate/random/barrel/red, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "jmY" = ( @@ -34496,7 +34462,7 @@ pixel_x = 1; pixel_y = 3 }, -/obj/structure/platform_decoration, +/obj/structure/platform_decoration/metal/almayer, /turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "joJ" = ( @@ -34612,9 +34578,7 @@ /area/prison/storage/medsec) "jHy" = ( /obj/structure/largecrate/random/barrel/white, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "jJE" = ( @@ -34770,9 +34734,7 @@ /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/east) "koj" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "kpc" = ( @@ -35448,9 +35410,7 @@ /turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/s) "nkB" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "nmr" = ( @@ -35601,7 +35561,7 @@ dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/sterile_white/southwest, /area/prison/security/checkpoint/highsec/s) "nSK" = ( @@ -35665,9 +35625,7 @@ /turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) "ocS" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "odp" = ( @@ -35716,9 +35674,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) "onp" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "onA" = ( @@ -35777,9 +35733,7 @@ /turf/open/floor/prison/damaged2/southwest, /area/prison/storage/medsec) "oyQ" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "oyZ" = ( @@ -35843,9 +35797,7 @@ /turf/open/floor/prison/bright_clean2/southwest, /area/prison/toilet/security) "oJi" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison/darkpurplefull2, /area/prison/hanger/research) "oLL" = ( @@ -35891,9 +35843,7 @@ /turf/open/floor/prison/yellow/west, /area/prison/cellblock/mediumsec/north) "oTg" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "oTO" = ( @@ -35992,9 +35942,7 @@ /area/prison/residential/south) "pmO" = ( /obj/structure/largecrate/random/case/small, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "pnT" = ( @@ -36220,7 +36168,7 @@ dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/sterile_white/southwest, /area/prison/hanger/research) "qjI" = ( @@ -36256,9 +36204,7 @@ /turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "qqm" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/almayer/west, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "qqn" = ( @@ -36279,7 +36225,7 @@ /turf/open/organic/grass, /area/prison/residential/south) "qwg" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/floor_marked/southwest, /area/prison/hanger/research) "qxY" = ( @@ -36465,9 +36411,7 @@ /turf/open/floor/plating, /area/prison/cellblock/mediumsec/south) "rxa" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/north) "rxG" = ( @@ -36488,9 +36432,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/west) "rFO" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) "rKA" = ( @@ -36627,9 +36569,7 @@ /area/prison/cellblock/highsec/north/south) "sxx" = ( /obj/structure/machinery/light, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) "sye" = ( @@ -36649,7 +36589,7 @@ /turf/open/floor/prison, /area/prison/security/checkpoint/highsec_medsec) "sEd" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "sGc" = ( @@ -36675,9 +36615,7 @@ /turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "sIA" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/almayer/north, /turf/open/floor/prison/darkpurple2/east, /area/prison/hanger/research) "sLI" = ( @@ -36788,9 +36726,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "thZ" = ( @@ -36843,7 +36779,7 @@ dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/sterile_white/southwest, /area/prison/hallway/central/west) "tuQ" = ( @@ -36878,7 +36814,7 @@ dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/sterile_white/southwest, /area/prison/security/checkpoint/highsec/n) "tzm" = ( @@ -37399,9 +37335,7 @@ /area/prison/hanger/research) "vGg" = ( /obj/structure/largecrate/random, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) "vHX" = ( @@ -37779,7 +37713,7 @@ /turf/open/floor/wood, /area/prison/parole/protective_custody) "xIA" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) "xKa" = ( @@ -37796,9 +37730,7 @@ dir = 4; icon_state = "p_stair_sn_full_cap" }, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/prison, /area/prison/security/checkpoint/maxsec) "xNi" = ( @@ -37853,9 +37785,7 @@ pixel_x = 1; pixel_y = 3 }, -/obj/structure/platform_decoration{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/almayer/west, /turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) "yaY" = ( diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index 782b8758f7c1..634cb0f24b07 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -29,19 +29,16 @@ /obj/structure/machinery/power/apc/power/west, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"aaR" = ( -/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) "abG" = ( /obj/item/trash/chunk, /turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) +"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/showers_laundry) "ace" = ( /obj/effect/landmark{ icon_state = "hive_spawn"; @@ -112,15 +109,6 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"aeV" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/clothing/gloves/boxing/yellow, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) -"aff" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) "afk" = ( /turf/open/floor/solarpanel, /area/fiorina/oob) @@ -145,6 +133,11 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) +"aga" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "agh" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -202,11 +195,6 @@ }, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) -"ahb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/handcard/aceofspades, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) "ahm" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, @@ -225,19 +213,12 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison/darkbrown2, /area/fiorina/tumor/aux_engi) -"aiH" = ( -/turf/open/floor/prison/whitepurplecorner/east, -/area/fiorina/station/research_cells/west) -"aje" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 +"aiv" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells/east) "aju" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -253,14 +234,6 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"ajx" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/space/basic, -/area/fiorina/oob) -"ajC" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/showers_laundry) "ajP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/pizzabox/margherita, @@ -274,13 +247,13 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) -"aki" = ( -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) "akp" = ( /turf/open/floor/prison/green, /area/fiorina/station/chapel) +"akM" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "akW" = ( /obj/structure/bed/chair/janicart, /turf/open/floor/prison, @@ -293,13 +266,14 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_tram) -"ali" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"alk" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco/east_disco) +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) "alC" = ( /obj/structure/inflatable/popped, /turf/open/floor/prison/floor_plate, @@ -332,15 +306,35 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"amg" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison, +/area/fiorina/station/park) +"amn" = ( +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells/west) "amF" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/aux_engi) +"amZ" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells/west) "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/restraint/handcuffs, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec/east) "anm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -381,18 +375,10 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"anx" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) "any" = ( /obj/item/stack/cable_coil/random, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"anB" = ( -/obj/item/tool/kitchen/knife, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "anJ" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -430,6 +416,24 @@ /obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) +"aoG" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) +"aoZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_y = 11 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "ape" = ( /obj/structure/bed/chair{ dir = 4; @@ -440,31 +444,22 @@ "apf" = ( /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"apj" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" +"apg" = ( +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells/east) +"apm" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco/east_disco) +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/east) "apu" = ( /turf/open/floor/prison/blue, /area/fiorina/station/power_ring) "apw" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/tumor/civres) -"apO" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"aqj" = ( -/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/transit_hub) "aqo" = ( /obj/item/shard{ icon_state = "large" @@ -476,12 +471,16 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) -"art" = ( -/obj/structure/platform{ - dir = 8 +"arl" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) +"arn" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "researchprestine" }, -/turf/open/floor/prison/greenblue/southwest, -/area/fiorina/station/botany) +/turf/closed/wall/prison, +/area/fiorina/station/research_cells/west) "arG" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -499,6 +498,14 @@ "arW" = ( /turf/open/floor/prison/sterile_white/southwest, /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/yellow/northeast, +/area/fiorina/station/disco/east_disco) "ask" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -519,45 +526,28 @@ "asz" = ( /turf/open/floor/prison/yellow/southwest, /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) +"asF" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/research_cells/east) "asI" = ( /obj/item/toy/deck, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"atb" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) "atd" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"atl" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) "atp" = ( /obj/item/book/manual/security_space_law{ pixel_x = 3; @@ -569,12 +559,15 @@ /obj/item/reagent_container/food/snacks/eat_bar, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"atV" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco/east_disco) +"atD" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"atY" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec/showers_laundry) "auj" = ( /obj/item/frame/rack, /turf/open/floor/prison/floor_plate, @@ -592,6 +585,18 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) +"auS" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) +"avc" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/research_cells/west) "avJ" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison, @@ -610,6 +615,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) +"awU" = ( +/obj/structure/machinery/iv_drip{ + pixel_y = 19 + }, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) "axb" = ( /obj/item/clothing/suit/storage/marine/specialist, /turf/open/floor/plating/prison, @@ -628,6 +639,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"axz" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/lowsec/east) "axA" = ( /obj/structure/prop/almayer/computers/mission_planning_system{ density = 0; @@ -638,16 +652,17 @@ }, /turf/closed/wall/prison, /area/fiorina/station/security) +"axW" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/space/basic, +/area/fiorina/oob) "aye" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"ayo" = ( -/obj/structure/platform, -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/station/security) "ayB" = ( /obj/structure/bed/chair{ dir = 4; @@ -655,6 +670,10 @@ }, /turf/open/floor/prison/whitegreen/southwest, /area/fiorina/station/medbay) +"ayG" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco/east_disco) "ayH" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin{ @@ -663,6 +682,11 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) +"ayW" = ( +/obj/item/explosive/grenade/incendiary/molotov, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) "ayX" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -723,10 +747,6 @@ /obj/structure/bed/sofa/vert/grey, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) -"aBa" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) "aBb" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -746,16 +766,6 @@ }, /turf/open/organic/grass/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/floor_plate, -/area/fiorina/station/park) "aBJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/chef_recipes{ @@ -763,10 +773,17 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"aBX" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco/east_disco) "aBZ" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/prison, /area/fiorina/station/park) +"aCw" = ( +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "aCC" = ( /obj/item/tool/soap{ pixel_x = 2; @@ -774,13 +791,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"aCP" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells/west) "aCZ" = ( /obj/structure/barricade/wooden, /turf/open/floor/plating/plating_catwalk/prison, @@ -789,20 +799,17 @@ /obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) +"aDj" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) "aDx" = ( /turf/open/floor/prison/yellow, /area/fiorina/station/central_ring) -"aDR" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) -"aDX" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - dir = 1; - icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/research_cells/west) "aEi" = ( /obj/structure/machinery/door/poddoor/shutters/almayer, /turf/open/floor/plating/prison, @@ -818,10 +825,6 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"aEI" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) "aEQ" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/floor_plate, @@ -832,6 +835,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) +"aFH" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/obj/structure/closet/emcloset, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "aFK" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -840,13 +850,10 @@ }, /turf/open/floor/corsat/plate, /area/fiorina/station/telecomm/lz1_cargo) -"aFX" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec/east) +"aFL" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/power_ring) "aFZ" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/medbay) @@ -878,14 +885,6 @@ /obj/item/tool/crowbar, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzI) -"aHm" = ( -/turf/open/floor/prison/blue/north, -/area/fiorina/station/power_ring/reactor) -"aHv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) "aHH" = ( /obj/item/tool/shovel/etool, /turf/open/floor/prison, @@ -915,29 +914,30 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/prison/floor_plate, /area/fiorina/station/park) -"aID" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/obj/item/frame/rack, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco/east_disco) -"aIH" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec/showers_laundry) -"aIN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - dir = 1; - icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' +"aIG" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) +/area/fiorina/station/power_ring/reactor) +"aIT" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "aJk" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/atmos_alert, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) +"aJm" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "aJo" = ( /obj/structure/bed/chair{ dir = 4; @@ -972,17 +972,12 @@ }, /turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) -"aKA" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/space, -/area/fiorina/oob) -"aKK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) +"aKs" = ( +/obj/structure/platform/metal/almayer/west, +/obj/item/prop/almayer/handheld1, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "aKN" = ( /obj/structure/machinery/computer/cameras{ network = list("omega") @@ -999,24 +994,36 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer_hull, /area/fiorina/station/medbay) -"aLG" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 +"aLz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) +"aLC" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/east) "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/darkpurplefull2, +/area/fiorina/station/research_cells/west) "aMg" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/ice_lab) -"aMr" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) "aMu" = ( /obj/effect/alien/weeds/node, /turf/open/floor/prison/whitegreen/northeast, @@ -1055,19 +1062,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"aNz" = ( -/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/floor_plate, -/area/fiorina/station/power_ring) +"aNY" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/east) "aOc" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; @@ -1077,6 +1075,10 @@ "aOm" = ( /turf/open/floor/prison/panelscorched, /area/fiorina/tumor/servers) +"aOp" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "aOC" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -1106,23 +1108,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) -"aPa" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells/west) -"aPc" = ( -/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/east_disco) "aPd" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -1132,27 +1117,10 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"aPf" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/lowsec/east) -"aPr" = ( -/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/security) "aPv" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/central_ring) -"aPw" = ( -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) "aPD" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -1173,19 +1141,10 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) -"aQm" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring/reactor) -"aQp" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) +"aQA" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) "aQH" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/landmark/nightmare{ @@ -1205,20 +1164,6 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"aQY" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) -"aQZ" = ( -/obj/structure/ice/thin/indestructible{ - dir = 8; - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells/basketball) "aRk" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/plating/plating_catwalk/prison, @@ -1229,16 +1174,6 @@ }, /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, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"aRy" = ( -/obj/structure/grille, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) "aRT" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -1254,6 +1189,9 @@ }, /turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) +"aSz" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/research_cells/west) "aSA" = ( /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison, @@ -1269,13 +1207,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/medbay) -"aSU" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells/east) "aTe" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/floor/prison/darkyellowfull2/east, @@ -1283,10 +1214,6 @@ "aTo" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/transit_hub) -"aTt" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) "aTx" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, @@ -1304,6 +1231,13 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) +"aTM" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "aTO" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck/uno, @@ -1314,13 +1248,6 @@ /obj/item/storage/briefcase, /turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) -"aTZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/weed{ - icon_state = "ucigoff" - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec/east) "aUg" = ( /obj/item/tool/crowbar/red, /turf/open/floor/prison, @@ -1333,40 +1260,35 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"aVe" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/west) -"aVn" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) -"aVO" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibmid3" - }, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/medbay) "aVU" = ( /turf/open/floor/corsat/squares, /area/fiorina/station/civres_blue) "aWk" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/telecomm/lz2_maint) -"aWu" = ( -/obj/structure/window_frame/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) "aWI" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) +"aWR" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) "aWV" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) +"aWY" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) "aXk" = ( /obj/item/storage/fancy/candle_box, /turf/open/floor/prison/chapel_carpet/doubleside, @@ -1401,27 +1323,9 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"aXF" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) -"aXG" = ( -/turf/open/floor/prison/yellowcorner, -/area/fiorina/station/lowsec/showers_laundry) -"aXI" = ( -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "End" - }, -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "End" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells/basketball) +"aXC" = ( +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/lowsec/east) "aXO" = ( /turf/open/floor/prison/damaged2, /area/fiorina/station/central_ring) @@ -1438,25 +1342,33 @@ /obj/item/tool/scythe, /turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) -"aZi" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/fiorina/tumor/servers) -"aZD" = ( -/obj/structure/platform{ - dir = 8 +"aYg" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 }, -/obj/structure/platform{ +/obj/structure/machinery/shower{ dir = 4 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/platform_decoration{ - dir = 10 +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells/west) +"aYR" = ( +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells/east) +"aYX" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, +/obj/structure/platform/metal/almayer, /turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) +/area/fiorina/station/chapel) +"aZi" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/tumor/servers) +"aZA" = ( +/turf/open/floor/prison/blue, +/area/fiorina/station/power_ring/reactor) "aZL" = ( /turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) @@ -1464,12 +1376,6 @@ /obj/item/toy/crayon/yellow, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"aZW" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) "baC" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station) @@ -1478,6 +1384,10 @@ /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/darkpurplefull2, +/area/fiorina/station/research_cells/west) "bbn" = ( /obj/item/device/motiondetector, /turf/open/floor/prison/floor_plate, @@ -1494,9 +1404,13 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"bbt" = ( -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/east) +"bbI" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 23 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec/east) "bbU" = ( /obj/structure/sign/safety/fire_haz, /turf/open/floor/prison/floor_plate, @@ -1529,13 +1443,10 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"bcG" = ( -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/station/research_cells/west) -"bcT" = ( -/obj/structure/platform, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) +"bcO" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) "bcX" = ( /obj/item/tool/warning_cone, /obj/structure/machinery/light/double/blue{ @@ -1574,12 +1485,6 @@ }, /turf/open/floor/corsat/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, @@ -1598,10 +1503,6 @@ "beB" = ( /turf/open/floor/prison/blue/southwest, /area/fiorina/station/power_ring) -"beC" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) "beW" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -1624,15 +1525,13 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"bgi" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 8 +"bgd" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 2; + req_access = null }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) +/turf/open/floor/plating/prison, +/area/fiorina/station/disco/east_disco) "bgy" = ( /obj/item/trash/pistachios, /turf/open/floor/plating/prison, @@ -1648,6 +1547,9 @@ /obj/item/explosive/grenade/high_explosive/m15, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) +"bhC" = ( +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec/east) "bhW" = ( /turf/open/floor/prison/greencorner/east, /area/fiorina/tumor/civres) @@ -1660,9 +1562,11 @@ "bix" = ( /turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) -"biN" = ( -/turf/open/floor/prison/bluecorner/west, -/area/fiorina/station/power_ring/reactor) +"biz" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) "bjf" = ( /obj/item/tool/warning_cone, /obj/structure/machinery/light/double/blue, @@ -1680,10 +1584,19 @@ /obj/structure/girder, /turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) +"bjA" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/space/basic, +/area/fiorina/oob) "bjR" = ( /obj/structure/bed/chair, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) +"bjZ" = ( +/obj/item/weapon/twohanded/spear, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "bkg" = ( /obj/structure/bed/chair, /turf/open/floor/prison, @@ -1692,6 +1605,12 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) +"bkQ" = ( +/obj/item/ammo_casing{ + icon_state = "casing_7_1" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) "bkU" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, @@ -1702,6 +1621,14 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) +"blf" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring/reactor) +"blt" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec/showers_laundry) "blA" = ( /obj/item/shard{ icon_state = "medium"; @@ -1709,6 +1636,23 @@ }, /turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) +"blG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + icon = 'icons/obj/structures/doors/2x1prepdoor.dmi' + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) +"blI" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) "bma" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/newspaper, @@ -1774,10 +1718,13 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"bnT" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/west) +"bnW" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "boe" = ( /obj/item/tool/wet_sign, /turf/open/floor/plating/prison, @@ -1797,10 +1744,6 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"bpe" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) "bpo" = ( /obj/item/dogtag, /turf/open/floor/prison/blue/west, @@ -1810,25 +1753,20 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"bpL" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/prison, -/area/fiorina/station/power_ring/reactor) -"bqp" = ( -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec/showers_laundry) -"bqC" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/greenblue/west, -/area/fiorina/station/botany) -"bqD" = ( -/obj/structure/platform_decoration{ - dir = 4 +"bpH" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 }, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) +/area/fiorina/tumor/ice_lab) +"bqu" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/west) "bqF" = ( /obj/structure/closet/secure_closet/guncabinet{ req_access = null @@ -1847,15 +1785,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"brl" = ( -/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) "brC" = ( /turf/open/floor/prison/whitegreen/southeast, /area/fiorina/station/medbay) @@ -1870,29 +1799,34 @@ /obj/structure/prop/almayer/computers/sensor_computer3, /turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) -"bsk" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"bsm" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, -/turf/open/space/basic, -/area/fiorina/oob) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) "bso" = ( /turf/closed/shuttle/ert{ icon_state = "stan_l_w" }, /area/fiorina/tumor/ship) +"bsO" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/west) "bsR" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/plastic, /obj/item/trash/cigbutt, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"btL" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco/east_disco) +"btJ" = ( +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec/showers_laundry) "buz" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, @@ -1910,9 +1844,6 @@ }, /turf/open/floor/prison/blue/east, /area/fiorina/station/power_ring) -"buY" = ( -/turf/open/floor/prison, -/area/fiorina/station/power_ring/reactor) "bvg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/meat{ @@ -1929,10 +1860,6 @@ }, /turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) -"bvl" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) "bvp" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -1955,11 +1882,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"bvO" = ( -/obj/item/clothing/glasses/material, -/obj/structure/barricade/handrail, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) "bvY" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/prison, @@ -1968,15 +1890,14 @@ /obj/structure/computerframe, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) +"bwk" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) "bww" = ( /obj/item/trash/candy, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"bwF" = ( -/obj/structure/bed/roller, -/obj/item/bedsheet/green, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) "bxc" = ( /obj/structure/window/reinforced, /turf/open/floor/prison, @@ -2002,15 +1923,13 @@ }, /turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) +"bxv" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring/reactor) "bxy" = ( /turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/lz/near_lzI) -"bxA" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) "bxE" = ( /obj/structure/prop/structure_lattice{ dir = 4; @@ -2055,22 +1974,19 @@ 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) -"byh" = ( -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec/showers_laundry) "bym" = ( /turf/closed/shuttle/ert{ icon_state = "stan20" }, /area/fiorina/lz/near_lzI) +"byn" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) "byB" = ( /obj/structure/surface/rack, /turf/open/floor/prison/floor_plate, @@ -2079,16 +1995,6 @@ /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/whitegreen/southeast, -/area/fiorina/tumor/ice_lab) "byG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison/whitegreen/east, @@ -2096,10 +2002,6 @@ "byJ" = ( /turf/open/floor/prison/green/west, /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) @@ -2107,15 +2009,6 @@ /obj/structure/inflatable/popped/door, /turf/open/floor/prison/whitegreencorner/west, /area/fiorina/station/medbay) -"bzf" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco/east_disco) "bzO" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/power_ring) @@ -2141,6 +2034,10 @@ /obj/item/storage/pill_bottle/bicaridine/skillless, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) +"bAM" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) "bBr" = ( /obj/structure/barricade/metal/wired{ dir = 1 @@ -2179,24 +2076,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"bCV" = ( -/obj/item/toy/deck, +"bCv" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"bCM" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) +"bDf" = ( +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) -"bDl" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec/east) -"bDv" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) +/area/fiorina/tumor/servers) "bDx" = ( /obj/item/tool/extinguisher/mini, /obj/structure/machinery/light/double/blue{ @@ -2226,6 +2117,10 @@ }, /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/showers_laundry) "bEA" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -2255,12 +2150,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) -"bFi" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) "bFr" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/chapel) @@ -2297,13 +2186,6 @@ /obj/structure/largecrate/supply/generator, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"bGE" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/fancy/crayons, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/east) "bGH" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/prison/whitegreen, @@ -2338,26 +2220,24 @@ /obj/structure/largecrate/random, /turf/open/floor/prison/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) -"bIf" = ( -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/east) "bIz" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"bIV" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) +"bIP" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec/east) +"bIR" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco/east_disco) "bIZ" = ( /turf/closed/shuttle/elevator{ dir = 6 @@ -2371,6 +2251,10 @@ /obj/item/ammo_magazine/pistol/heavy, /turf/open/floor/wood, /area/fiorina/station/civres_blue) +"bJn" = ( +/obj/item/stack/cable_coil/pink, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "bJp" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -2393,17 +2277,20 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"bKt" = ( -/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/west) "bKF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/pill_bottle/imidazoline, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) +"bKO" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"bKT" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/item/stack/cable_coil, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "bLA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight, @@ -2436,15 +2323,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"bMw" = ( -/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/darkpurplefull2, -/area/fiorina/station/research_cells/west) "bMz" = ( /obj/item/tool/lighter/random, /turf/open/floor/prison/kitchen/southwest, @@ -2453,6 +2331,11 @@ /obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) +"bMG" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs/zip, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec/east) "bMI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/folder/black_random, @@ -2479,16 +2362,10 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"bOn" = ( -/obj/structure/platform, -/obj/item/fuel_cell, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) +"bNW" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "bOp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/barbed_wire, @@ -2498,6 +2375,10 @@ /obj/item/stack/cable_coil/blue, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"bOx" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells/west) "bOK" = ( /obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/corsat/squares, @@ -2550,24 +2431,12 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) -"bPZ" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco/east_disco) "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 @@ -2613,6 +2482,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) +"bRc" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; + name = "\improper Fiorina Purple Block Canteen Vendor" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "bRo" = ( /obj/structure/sink{ pixel_y = 23 @@ -2643,11 +2519,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"bRP" = ( -/obj/item/tool/kitchen/knife, -/obj/structure/bed/roller, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "bRQ" = ( /obj/item/stock_parts/micro_laser/ultra, /turf/open/floor/prison/darkpurple2, @@ -2684,10 +2555,6 @@ }, /turf/open/floor/prison/blue/west, /area/fiorina/station/chapel) -"bTo" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/fiorina/oob) "bTp" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -2695,6 +2562,16 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) +"bTr" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/west) +"bTC" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring/reactor) "bTI" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ explo_proof = 1; @@ -2714,16 +2591,20 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"bUB" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/space, -/area/fiorina/oob) +"bVm" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "bVE" = ( /obj/structure/closet/boxinggloves, /turf/open/floor/prison, /area/fiorina/station/central_ring) +"bVO" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells/east) "bVZ" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; @@ -2740,9 +2621,6 @@ /obj/item/tool/mop, /turf/open/floor/prison, /area/fiorina/station/medbay) -"bWX" = ( -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec/east) "bXc" = ( /obj/structure/inflatable/popped, /turf/open/floor/prison/whitegreen/east, @@ -2755,6 +2633,10 @@ "bXh" = ( /turf/open/floor/prison/bluecorner/north, /area/fiorina/station/chapel) +"bXz" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells/west) "bXA" = ( /obj/item/tool/screwdriver, /turf/open/floor/prison, @@ -2775,13 +2657,26 @@ "bZD" = ( /turf/open/floor/prison/darkbrowncorners2/north, /area/fiorina/tumor/aux_engi) +"bZI" = ( +/obj/structure/surface/table/reinforced/prison{ + dir = 8; + flipped = 1 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "bZY" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"caf" = ( -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/west) +"car" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec/showers_laundry) +"cas" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) "caA" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/prison/floor_plate, @@ -2789,10 +2684,9 @@ "caC" = ( /turf/open/floor/prison/green/east, /area/fiorina/station/transit_hub) -"caK" = ( -/obj/structure/machinery/door/airlock/prison/horizontal, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) +"caF" = ( +/turf/open/floor/wood, +/area/fiorina/station/lowsec/east) "caX" = ( /obj/structure/inflatable/popped/door, /obj/item/ammo_casing{ @@ -2808,9 +2702,6 @@ /obj/item/stack/rods, /turf/open/floor/prison, /area/fiorina/station/park) -"cbC" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/research_cells/east) "cbE" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -2823,31 +2714,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"cbF" = ( -/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) "cbN" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station) -"ccl" = ( -/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/station/research_cells/basketball) +"cbY" = ( +/obj/item/newspaper, +/turf/open/floor/prison/whitepurplecorner, +/area/fiorina/station/research_cells/west) "ccH" = ( /obj/structure/machinery/newscaster, /turf/closed/wall/prison, @@ -2894,9 +2767,13 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"cef" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/lowsec/showers_laundry) +"cee" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) "ceq" = ( /obj/item/bodybag, /obj/item/bodybag{ @@ -2920,8 +2797,12 @@ "ceJ" = ( /turf/open/floor/prison/whitegreen/southwest, /area/fiorina/tumor/ice_lab) -"ceX" = ( -/turf/open/floor/prison/yellow/northeast, +"cfa" = ( +/obj/item/frame/rack, +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/lowsec/east) "cfG" = ( /obj/structure/machinery/landinglight/ds1/delayone{ @@ -2929,20 +2810,22 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) -"cgf" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec/east) +"cfU" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) +"cfX" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"cgo" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) "cgx" = ( /obj/structure/bed/chair, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"cgF" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring/reactor) "chg" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/bluefull, @@ -2982,24 +2865,13 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"cil" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - dir = 2; - icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' +"cia" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) -"ciy" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/area/fiorina/tumor/ice_lab) "ciA" = ( /obj/structure/machinery/vending/snack/packaged, /turf/open/floor/prison, @@ -3036,6 +2908,14 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) +"ckl" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring/reactor) "ckm" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -3047,24 +2927,10 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/medbay) -"ckA" = ( -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"ckD" = ( -/obj/item/device/multitool, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco/east_disco) -"ckX" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) -"ckZ" = ( -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/park) +"ckS" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "clb" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "A ticket to Souto Man's raffle!"; @@ -3084,6 +2950,10 @@ /obj/structure/inflatable/popped/door, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) +"clA" = ( +/obj/item/weapon/baton/cattleprod, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/east) "clN" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -3122,17 +2992,14 @@ /obj/item/stock_parts/manipulator/pico, /turf/open/floor/prison/darkpurple2/southeast, /area/fiorina/tumor/servers) -"coL" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/power_ring/reactor) -"cpv" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +"cnU" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"coj" = ( +/obj/item/stool, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) "cpP" = ( /turf/closed/shuttle/elevator/gears, /area/fiorina/station/telecomm/lz1_cargo) @@ -3157,10 +3024,21 @@ /obj/item/stool, /turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) +"cqW" = ( +/obj/item/stool, +/turf/open/floor/prison/damaged2, +/area/fiorina/station/lowsec/east) "cqX" = ( /obj/item/stool, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) +"cqZ" = ( +/obj/structure/platform/metal/stair_cut/platform_right, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring/reactor) "cri" = ( /obj/structure/machinery/computer/prisoner, /obj/structure/window/reinforced{ @@ -3178,41 +3056,33 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"cry" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"crI" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) "crM" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) -"csF" = ( -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells/west) "csL" = ( /turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/telecomm/lz1_tram) +"csW" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) "ctc" = ( /obj/structure/prop/resin_prop{ icon_state = "sheater0" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"ctj" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzII) "cto" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, @@ -3228,6 +3098,13 @@ /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/whitepurple/southeast, +/area/fiorina/station/research_cells/west) "ctW" = ( /obj/structure/bed{ icon_state = "abed" @@ -3246,6 +3123,13 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/blue/southeast, /area/fiorina/station/civres_blue) +"cum" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/obj/item/frame/rack, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco/east_disco) "cvc" = ( /obj/structure/barricade/metal/wired{ dir = 4 @@ -3263,14 +3147,10 @@ }, /turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) -"cvg" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/item/storage/fancy/cigarettes/blackpack, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/west) +"cvf" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "cvi" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/fire, @@ -3295,20 +3175,6 @@ }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) -"cvT" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) -"cvW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec/east) "cwB" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -3323,10 +3189,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"cwT" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells/east) "cxb" = ( /turf/open/floor/prison/darkbrown2/west, /area/fiorina/maintenance) @@ -3335,9 +3197,6 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/prison/greenfull/east, /area/fiorina/station/chapel) -"cxp" = ( -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/disco/east_disco) "cxy" = ( /obj/item/ammo_magazine/rifle/m16{ current_rounds = 0; @@ -3384,14 +3243,10 @@ /obj/effect/spawner/random/pills/lowchance, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"czv" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells/west) +"czx" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "czJ" = ( /obj/structure/reagent_dispensers/watertank{ layer = 2.6 @@ -3399,9 +3254,6 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) -"cAz" = ( -/turf/open/floor/wood, -/area/fiorina/station/disco/east_disco) "cAJ" = ( /obj/item/trash/snack_bowl, /turf/open/floor/prison/yellow/north, @@ -3428,24 +3280,6 @@ /obj/item/storage/toolbox/electrical, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"cBn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"cBv" = ( -/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/east) "cBG" = ( /obj/effect/alien/weeds/node, /turf/open/floor/prison/darkbrown2/west, @@ -3470,6 +3304,9 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"cCe" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/fiorina/station/research_cells/west) "cCh" = ( /obj/item/ammo_casing{ dir = 6; @@ -3529,6 +3366,14 @@ /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) +"cDO" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) "cEb" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -3536,6 +3381,11 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"cEg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "cEw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/transit_hub) @@ -3544,13 +3394,6 @@ icon_state = "stan_inner_t_right" }, /area/fiorina/tumor/ship) -"cEG" = ( -/obj/item/tool/pickaxe, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) "cEW" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "ywflowers_4" @@ -3587,10 +3430,6 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"cGO" = ( -/obj/structure/inflatable, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "cGR" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, @@ -3609,6 +3448,10 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"cHi" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "cHl" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/floor_plate, @@ -3619,6 +3462,10 @@ /obj/item/toy/plush/farwa, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"cHC" = ( +/obj/item/trash/popcorn, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec/east) "cHF" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/eastright, @@ -3632,8 +3479,23 @@ /obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) -"cIu" = ( -/turf/open/floor/prison/darkredfull2, +"cIa" = ( +/turf/closed/wall/prison, +/area/fiorina/station/research_cells/east) +"cIt" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) +"cIJ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells/west) "cIQ" = ( /obj/structure/bed/chair{ @@ -3649,9 +3511,6 @@ }, /turf/open/floor/prison/floor_marked/southwest, /area/fiorina/station/park) -"cJh" = ( -/turf/open/floor/prison/whitepurplecorner, -/area/fiorina/station/research_cells/west) "cJv" = ( /obj/item/stack/rods, /turf/open/floor/corsat/squares, @@ -3676,11 +3535,6 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"cJN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) "cJS" = ( /obj/item/trash/uscm_mre, /obj/effect/landmark/corpsespawner/ua_riot, @@ -3694,6 +3548,9 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/darkbrown2/northwest, /area/fiorina/tumor/aux_engi) +"cKa" = ( +/turf/closed/wall/prison, +/area/fiorina/station/research_cells/west) "cKb" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -3701,16 +3558,12 @@ }, /turf/open/floor/prison/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 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/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/showers_laundry) "cKJ" = ( /obj/structure/closet/secure_closet/guncabinet{ req_access = null @@ -3722,19 +3575,6 @@ /obj/item/prop/helmetgarb/riot_shield, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"cKU" = ( -/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) -"cLp" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco/east_disco) "cLu" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -3742,12 +3582,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"cLy" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) "cLC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -3758,18 +3592,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"cLH" = ( -/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/west) -"cLI" = ( -/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/showers_laundry) "cLS" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/floor_plate/southwest, @@ -3789,19 +3611,24 @@ "cME" = ( /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"cMP" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells/west) "cNe" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"cNJ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells/east) +"cNU" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/gm/river/desert/deep, +/area/fiorina/lz/near_lzII) "cOj" = ( /turf/open/floor/prison/blue, /area/fiorina/station/civres_blue) @@ -3813,6 +3640,9 @@ /obj/item/tool/wet_sign, /turf/open/floor/prison/floor_plate, /area/fiorina/station/park) +"cOF" = ( +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "cOL" = ( /turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/station/telecomm/lz1_cargo) @@ -3842,13 +3672,6 @@ /obj/item/stack/sandbags_empty, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) -"cPL" = ( -/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/park) "cQe" = ( /obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/prison/floor_plate, @@ -3871,10 +3694,19 @@ layer = 3 }, /area/fiorina/oob) +"cQB" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "cRg" = ( /obj/structure/machinery/vending/coffee/simple, /turf/open/floor/prison/floor_plate, /area/fiorina/station/park) +"cRk" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "cRl" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/book/manual/security_space_law, @@ -3885,15 +3717,31 @@ /obj/structure/machinery/sensortower, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) +"cRB" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + dir = 4; + icon_state = "door_open"; + opacity = 0 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) +"cRI" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/stool, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "cRK" = ( /obj/structure/window, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"cRO" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) +"cRM" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco/east_disco) "cRZ" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 @@ -3905,27 +3753,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) -"cTc" = ( -/obj/structure/bed/roller, -/obj/item/bedsheet/green, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) -"cTg" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) -"cTm" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/fiorina/station/disco/east_disco) -"cTo" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring/reactor) "cTr" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/prison, @@ -3964,43 +3791,10 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) -"cUT" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) -"cUU" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"cVb" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco/east_disco) "cVu" = ( /obj/item/stack/sandbags_empty/half, /turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) -"cVx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/beer_pack{ - pixel_y = 7 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) -"cVI" = ( -/obj/item/inflatable, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/showers_laundry) "cVQ" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -4008,27 +3802,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"cWh" = ( -/obj/item/stool, -/turf/open/floor/prison/damaged2/southwest, -/area/fiorina/station/lowsec/east) -"cWn" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/inflatable, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) -"cWB" = ( -/obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) -"cWF" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, +"cVV" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison, /area/fiorina/station/disco/east_disco) "cXp" = ( /obj/item/stack/sheet/metal/medium_stack, @@ -4050,6 +3826,21 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) +"cYi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/card/id/gold{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) +"cYj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/lowsec/east) "cYI" = ( /turf/open/floor/prison/green/northeast, /area/fiorina/tumor/aux_engi) @@ -4060,24 +3851,22 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"cYS" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +"cYT" = ( +/obj/vehicle/powerloader{ + dir = 8 }, -/obj/structure/platform{ - dir = 4 +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) +"cYY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/central_ring) -"cYV" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "cZe" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/phone, @@ -4104,18 +3893,16 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"cZv" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) "cZy" = ( /obj/structure/machinery/door/window/northleft{ dir = 4 }, /turf/open/floor/prison/redfull, /area/fiorina/station/security/wardens) -"cZP" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) "cZR" = ( /turf/open/floor/prison/damaged2, /area/fiorina/station/disco) @@ -4129,13 +3916,14 @@ /obj/structure/machinery/vending/walkman, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"dan" = ( -/obj/structure/bed{ - icon_state = "abed" +"dar" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/obj/item/card/id/visa, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/west) +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/whitegreenfull/southwest, +/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."; @@ -4143,13 +3931,6 @@ }, /turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) -"daD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/fiorina/oob) "daK" = ( /obj/structure/machinery/autolathe, /turf/open/floor/plating/prison, @@ -4163,6 +3944,10 @@ /obj/item/trash/kepler, /turf/open/floor/prison, /area/fiorina/station/security) +"dbh" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "dbi" = ( /obj/item/storage/toolbox/electrical, /turf/open/floor/prison, @@ -4176,20 +3961,10 @@ }, /turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) -"dbr" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"dby" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco/east_disco) +"dbI" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/station/lowsec/showers_laundry) "dbW" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/donkpockets{ @@ -4199,20 +3974,16 @@ /obj/item/storage/box/donkpockets, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"dcv" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/fiorina/station/research_cells/east) "dcy" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"dcD" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/combat, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) "dcO" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/floor_plate, @@ -4224,6 +3995,13 @@ }, /turf/open/floor/prison/darkredfull2, /area/fiorina/oob) +"ddt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/beer_pack{ + pixel_y = 7 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "ddv" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/structure/machinery/light/double/blue{ @@ -4277,6 +4055,9 @@ }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) +"deg" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/fiorina/station/research_cells/east) "deB" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -4287,22 +4068,14 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"deL" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) +"deC" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/almayer_hull, +/area/fiorina/oob) "deR" = ( /obj/item/toy/crayon/red, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"deY" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "dfc" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/oob) @@ -4314,6 +4087,11 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) +"dfw" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/space, +/area/fiorina/oob) "dfA" = ( /obj/structure/barricade/sandbags{ icon_state = "sandbag_0"; @@ -4329,42 +4107,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"dgw" = ( +"dgg" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"dhc" = ( /obj/structure/largecrate/random/secure, /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, /turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco/east_disco) -"dgF" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) -"dgJ" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) -"dgM" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) -"dhi" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/space/basic, -/area/fiorina/oob) "dhL" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -4379,16 +4133,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"diL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) +"diF" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec/east) +"diJ" = ( +/obj/item/stool, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "dje" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plating/prison, @@ -4397,18 +4149,20 @@ /obj/effect/spawner/random/gun/smg/midchance, /turf/open/floor/wood, /area/fiorina/station/park) +"djB" = ( +/obj/vehicle/powerloader{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) +"djF" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells/west) "dkb" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"dki" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) "dkl" = ( /obj/structure/bed/chair{ dir = 1 @@ -4438,6 +4192,21 @@ }, /turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) +"dlg" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"dlj" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells/west) "dlr" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio{ @@ -4454,13 +4223,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"dmi" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) "dmQ" = ( /obj/item/stack/sheet/metal{ amount = 5 @@ -4473,19 +4235,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) -"dnj" = ( -/obj/structure/platform{ - 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/floor_plate, -/area/fiorina/station/disco) "dnz" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/spawner/random/toy, @@ -4500,6 +4249,10 @@ "dnX" = ( /turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) +"doc" = ( +/obj/item/stool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "doe" = ( /obj/item/tool/kitchen/utensil/pspoon, /turf/open/space/basic, @@ -4522,6 +4275,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"doQ" = ( +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring/reactor) "doY" = ( /obj/item/paper/crumpled/bloody, /turf/open/floor/prison/chapel_carpet/doubleside/north, @@ -4533,16 +4292,6 @@ }, /turf/open/floor/prison/yellow/southeast, /area/fiorina/station/lowsec) -"dpn" = ( -/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) "dpH" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/prison, @@ -4551,12 +4300,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/greenblue, /area/fiorina/station/botany) -"dqa" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) "dqE" = ( /obj/structure/prop/souto_land/pole, /turf/open/floor/wood, @@ -4583,10 +4326,18 @@ }, /turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/station/flight_deck) +"drk" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "drt" = ( /obj/structure/machinery/vending/hydroseeds, /turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) +"drZ" = ( +/obj/item/clothing/mask/cigarette, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/west) "dsS" = ( /obj/structure/barricade/handrail/type_b{ dir = 4; @@ -4602,6 +4353,11 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) +"dtg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) "dtk" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/golden_cup, @@ -4622,10 +4378,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"duu" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) +"dul" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) "duw" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/light/double/blue{ @@ -4634,16 +4395,22 @@ }, /turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) -"duE" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6_1" - }, -/turf/open/floor/prison/floor_plate, +"duF" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) +"duL" = ( +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/lowsec/east) "duM" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"duV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "duW" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, @@ -4656,14 +4423,6 @@ /obj/structure/machinery/newscaster, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"dvB" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/tumor/ice_lab) -"dvF" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "dwf" = ( /obj/structure/bed/chair{ dir = 8 @@ -4711,10 +4470,6 @@ }, /turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) -"dxe" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/station/lowsec/showers_laundry) "dxl" = ( /obj/structure/barricade/metal/wired, /turf/open/floor/prison/yellowfull, @@ -4761,20 +4516,33 @@ }, /turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) +"dzh" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "dzl" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) -"dzM" = ( -/turf/open/floor/prison/damaged2/southwest, -/area/fiorina/station/lowsec/east) -"dAd" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +"dzq" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"dzs" = ( +/obj/structure/platform/metal/almayer/east, +/obj/item/stool, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"dzB" = ( +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells/west) +"dzE" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec/showers_laundry) "dAg" = ( /turf/open/floor/prison/whitegreen/northeast, /area/fiorina/station/medbay) @@ -4805,51 +4573,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/greenblue/northeast, /area/fiorina/station/botany) -"dBx" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/ice/thin/indestructible, -/obj/structure/prop/invuln{ - desc = "The underside softly pulses."; - dir = 4; - icon = 'icons/mob/xenos/xenonid_crab.dmi'; - icon_state = "facehugger_thrown"; - layer = 2.5; - name = "frozen creature"; - pixel_x = -22; - pixel_y = -10 - }, -/obj/structure/prop/invuln{ - desc = "The underside softly pulses."; - dir = 4; - icon = 'icons/mob/xenos/xenonid_crab.dmi'; - icon_state = "facehugger_thrown"; - layer = 2.5; - name = "frozen creature"; - pixel_x = 22; - pixel_y = 8 - }, -/obj/structure/prop/invuln{ - desc = "The underside softly pulses."; - dir = 4; - icon = 'icons/mob/xenos/xenonid_crab.dmi'; - icon_state = "facehugger_thrown"; - layer = 2.5; - name = "frozen creature"; - pixel_x = -22; - pixel_y = 8 - }, -/obj/structure/prop/invuln{ - desc = "The underside softly pulses."; - dir = 4; - icon = 'icons/mob/xenos/xenonid_crab.dmi'; - icon_state = "facehugger_thrown"; - layer = 2.5; - name = "frozen creature"; - pixel_x = 22; - pixel_y = -10 - }, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells/basketball) "dBy" = ( /turf/open/floor/prison, /area/fiorina/station/chapel) @@ -4864,10 +4587,6 @@ "dBZ" = ( /turf/open/floor/prison/darkyellowcorners2/east, /area/fiorina/station/flight_deck) -"dCi" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) "dCn" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; @@ -4902,16 +4621,6 @@ /obj/item/trash/plate, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"dCG" = ( -/obj/item/fuel_cell, -/obj/structure/platform, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) "dCK" = ( /obj/structure/prop/souto_land/pole, /turf/open/floor/prison/darkbrown2, @@ -4920,26 +4629,10 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"dDk" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring/reactor) "dDn" = ( /obj/effect/spawner/random/tool, /turf/open/floor/prison/floor_plate, /area/fiorina/station/park) -"dDp" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco/east_disco) -"dDr" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "dDI" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 @@ -4995,6 +4688,12 @@ /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/darkpurplefull2, +/area/fiorina/station/research_cells/west) "dFK" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine/nailgun, @@ -5007,19 +4706,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"dGs" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco/east_disco) -"dGv" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/obj/item/storage/toolbox/syndicate, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) "dGx" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -5037,14 +4723,10 @@ }, /turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/park) -"dGD" = ( -/obj/structure/surface/table/reinforced/prison{ - dir = 8; - flipped = 1 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) +"dGF" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "dHb" = ( /obj/structure/closet/secure_closet/guncabinet{ req_access = null @@ -5058,28 +4740,13 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/civres) -"dHf" = ( -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec/east) "dHD" = ( /turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) -"dHF" = ( -/obj/structure/barricade/sandbags{ - dir = 4; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco/east_disco) -"dHO" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec/east) +"dHE" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/botany) "dHU" = ( /turf/open/floor/prison/platingdmg1, /area/fiorina/station/security) @@ -5090,47 +4757,34 @@ "dIo" = ( /turf/closed/wall/prison, /area/fiorina/tumor/civres) -"dIv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison/floor_plate, +"dIp" = ( +/turf/open/floor/prison/blue/east, /area/fiorina/station/power_ring/reactor) +"dIu" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "dJc" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/spawner/random/gun/rifle, +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) +/area/fiorina/station/botany) "dJd" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/item/ammo_magazine/rifle/mar40, /turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) -"dJe" = ( -/obj/structure/platform{ - dir = 8 +"dJh" = ( +/obj/structure/bookcase/manuals/research_and_development{ + pixel_y = 10 }, -/turf/open/floor/prison, -/area/fiorina/station/park) -"dJf" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) +"dJt" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/turf/open/floor/prison/yellow/southwest, +/turf/open/floor/prison/yellow, /area/fiorina/station/disco/east_disco) -"dJY" = ( -/obj/item/storage/backpack{ - pixel_x = -11; - pixel_y = 15 - }, -/obj/item/trash/syndi_cakes, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) -"dKh" = ( -/obj/structure/closet/basketball, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "dKo" = ( /obj/effect/spawner/random/gun/shotgun, /turf/open/floor/carpet, @@ -5141,23 +4795,20 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) +"dKO" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "dKX" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/maintenance) -"dKY" = ( -/turf/open/floor/prison/whitepurplecorner/west, -/area/fiorina/station/research_cells/west) "dLq" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/wood, /area/fiorina/station/park) -"dLy" = ( -/obj/item/reagent_container/food/drinks/sillycup, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring/reactor) "dLL" = ( /turf/open/floor/prison/darkpurple2/southwest, /area/fiorina/tumor/servers) @@ -5168,29 +4819,18 @@ }, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"dMb" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/prison, -/area/fiorina/station/power_ring/reactor) "dMt" = ( /turf/open/floor/prison/darkbrowncorners2/west, /area/fiorina/tumor/aux_engi) -"dNc" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"dNd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"dMT" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/almayer/north, +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "Corner" }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco/east_disco) +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) "dNh" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/lz/near_lzI) @@ -5211,6 +4851,16 @@ /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison/darkredfull2, /area/fiorina/lz/near_lzI) +"dOc" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"dOf" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/tumor/ice_lab) "dOk" = ( /turf/open/floor/prison/panelscorched, /area/fiorina/tumor/civres) @@ -5224,30 +4874,16 @@ /obj/item/storage/bible/hefa, /turf/open/floor/wood, /area/fiorina/station/chapel) +"dOI" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "dOO" = ( /turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) -"dOQ" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells/west) "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 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "dPe" = ( /obj/structure/bed/chair, /turf/open/floor/prison/yellowfull, @@ -5259,15 +4895,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"dPr" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) "dPZ" = ( /obj/structure/monorail{ dir = 6; @@ -5275,12 +4902,10 @@ }, /turf/open/space, /area/fiorina/oob) -"dQB" = ( -/obj/structure/closet/basketball, -/obj/item/storage/pill_bottle/tramadol/skillless, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) +"dQe" = ( +/obj/item/tool/surgery/scalpel, +/turf/open/floor/prison, +/area/fiorina/station/lowsec/showers_laundry) "dQW" = ( /obj/item/ammo_casing{ dir = 8; @@ -5307,6 +4932,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"dRF" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "dRO" = ( /obj/effect/acid_hole{ dir = 4 @@ -5316,13 +4945,6 @@ name = "metal wall" }, /area/fiorina/oob) -"dRU" = ( -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec/showers_laundry) -"dRW" = ( -/obj/item/paper, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) "dSM" = ( /obj/effect/spawner/random/tool, /turf/open/floor/prison/darkpurplefull2, @@ -5339,9 +4961,11 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"dTR" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/power_ring/reactor) +"dTQ" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/closet/radiation, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "dTX" = ( /obj/structure/surface/rack, /obj/item/storage/bible/hefa{ @@ -5362,6 +4986,18 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"dUm" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/structure/morgue{ + dir = 8; + layer = 2.6 + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) "dUn" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/flora/pottedplant{ @@ -5375,11 +5011,19 @@ /obj/structure/machinery/recharge_station, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"dUI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) +"dUx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells/west) +"dVu" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco/east_disco) "dVx" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -5387,6 +5031,15 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) +"dVA" = ( +/obj/item/stool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) +"dVC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "dVD" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/prison/whitegreen, @@ -5442,11 +5095,10 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"dXT" = ( -/obj/structure/platform_decoration, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +"dXS" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "dYi" = ( /turf/open/floor/prison/yellow/west, /area/fiorina/station/central_ring) @@ -5467,6 +5119,14 @@ /obj/structure/machinery/faxmachine, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"dYB" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "dYC" = ( /turf/open/floor/prison/yellow/east, /area/fiorina/station/central_ring) @@ -5496,6 +5156,10 @@ "dZK" = ( /turf/open/floor/prison/bluecorner/east, /area/fiorina/station/chapel) +"dZM" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/east) "dZQ" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/darkyellow2/east, @@ -5506,25 +5170,46 @@ }, /turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) -"ebh" = ( -/obj/structure/machinery/iv_drip{ - pixel_y = 19 +"eao" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) -"eca" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec/showers_laundry) +"eaH" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"ebx" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) +"ecd" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) +"ecj" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + layer = 3.5 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "ecu" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"ecz" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/station/park) "ecD" = ( /obj/structure/bed/chair{ dir = 1 @@ -5534,14 +5219,6 @@ }, /turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) -"ecE" = ( -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells/basketball) "ecL" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -5558,14 +5235,6 @@ "ecU" = ( /turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/station/flight_deck) -"ecX" = ( -/obj/item/inflatable, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/showers_laundry) "eds" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, @@ -5574,32 +5243,6 @@ /obj/item/device/multitool, /turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) -"edu" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/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" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"edG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) "edY" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; @@ -5607,10 +5250,6 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"eed" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison/redfull, -/area/fiorina/station/lowsec/east) "eeH" = ( /obj/structure/monorail{ dir = 9; @@ -5685,29 +5324,14 @@ "egv" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/civres_blue) -"egz" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "egL" = ( /obj/item/newspaper, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"egP" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) "egT" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/medbay) -"ehq" = ( -/turf/open/floor/prison/yellowcorner/east, -/area/fiorina/station/lowsec/showers_laundry) "ehr" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison/floor_plate/southwest, @@ -5716,35 +5340,20 @@ /obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/prison/darkyellowfull2/east, /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{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/tumor/servers) -"eip" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) -"eiM" = ( -/obj/structure/platform, -/obj/structure/closet/crate/bravo, -/obj/item/stack/sheet/plasteel, -/obj/item/tool/wirecutters, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +"eio" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) +"eja" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6_1" }, -/turf/open/floor/plating/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) +"ejf" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/prison, /area/fiorina/station/lowsec/showers_laundry) "ejq" = ( /obj/structure/machinery/space_heater, @@ -5772,13 +5381,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"ejZ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +"ejM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/wy_mre{ + pixel_x = 5; + pixel_y = 2 }, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/east) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "ekb" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_tram) @@ -5810,10 +5420,26 @@ }, /turf/open/floor/prison/blue/southeast, /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/showers_laundry) "ele" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) +"elm" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) +"elr" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibmid3" + }, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "elO" = ( /turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) @@ -5827,6 +5453,12 @@ /obj/structure/closet/crate/trashcart, /turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) +"emo" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/tumor/ice_lab) "emC" = ( /obj/structure/lattice, /obj/item/shard{ @@ -5834,30 +5466,21 @@ }, /turf/open/space, /area/fiorina/oob) -"emT" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco/east_disco) +"emE" = ( +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/power_ring/reactor) "end" = ( /obj/structure/window/framed/prison/cell, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"enm" = ( -/obj/structure/surface/table/reinforced/prison, -/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 - }, +"eni" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"enn" = ( +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) +/area/fiorina/station/transit_hub) "enu" = ( /obj/item/trash/uscm_mre, /turf/open/floor/prison/darkyellowfull2/east, @@ -5870,13 +5493,33 @@ /obj/effect/alien/weeds/node, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) +"enU" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "enY" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/oob) +"eor" = ( +/obj/item/tool/pickaxe, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) "eot" = ( /turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_tram) +"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/west) +"eow" = ( +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells/west) "eoW" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating/prison, @@ -5909,18 +5552,6 @@ /obj/item/device/flashlight, /turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) -"eqw" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring) -"eqJ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) "eqQ" = ( /turf/open/floor/corsat/squares, /area/fiorina/station/telecomm/lz1_cargo) @@ -5968,32 +5599,22 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"erD" = ( -/obj/structure/largecrate/supply, -/obj/structure/platform_decoration{ - dir = 8 +"erU" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/medbay) -"erT" = ( -/obj/structure/platform_decoration/kutjevo{ +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/space, -/area/fiorina/oob) -"esh" = ( -/obj/item/book/manual/atmospipes, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/west) +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec/showers_laundry) "esw" = ( /turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/medbay) "esy" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/power_ring/reactor) +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) "esR" = ( /obj/structure/machinery/space_heater, /turf/open/floor/prison/whitegreenfull/southwest, @@ -6002,6 +5623,10 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"esY" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) "esZ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -6024,6 +5649,12 @@ }, /turf/open/floor/prison/yellow/southeast, /area/fiorina/station/lowsec) +"eux" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec/east) "euz" = ( /obj/structure/bed/chair{ dir = 4 @@ -6074,12 +5705,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/botany) -"ewi" = ( -/obj/vehicle/powerloader{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) "ewx" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -6122,10 +5747,6 @@ }, /turf/open/floor/prison/darkbrown2/southwest, /area/fiorina/maintenance) -"exF" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "exI" = ( /turf/open/floor/prison/darkbrowncorners2/west, /area/fiorina/station/park) @@ -6138,11 +5759,6 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"exT" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/west) "exW" = ( /obj/structure/monorail{ name = "launch track" @@ -6203,28 +5819,24 @@ /obj/structure/machinery/portable_atmospherics/canister/phoron, /turf/open/floor/corsat/plate, /area/fiorina/station/telecomm/lz1_cargo) +"eyB" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/space, +/area/fiorina/oob) "eyO" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) -"eze" = ( -/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) -"ezj" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells/east) +"eyT" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"ezd" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/west) "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." @@ -6246,16 +5858,6 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"eAh" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/disco/east_disco) -"eAk" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) "eAM" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 @@ -6276,20 +5878,14 @@ /obj/structure/bed/chair, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"eBr" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"eBI" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -8; - pixel_y = 16 +"eBH" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) "eBO" = ( /obj/structure/machinery/door/airlock/almayer/marine, /turf/open/floor/prison/yellowfull, @@ -6297,11 +5893,6 @@ "eBS" = ( /turf/open/floor/prison/cell_stripe/north, /area/fiorina/station/power_ring) -"eBV" = ( -/obj/item/explosive/grenade/incendiary/molotov, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) "eCy" = ( /obj/effect/spawner/random/gun/pistol, /turf/open/floor/prison/whitegreenfull/southwest, @@ -6316,17 +5907,37 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) -"eDq" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"eDA" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/turf/open/floor/plating/prison, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/research_cells/west) +"eDU" = ( +/obj/structure/platform/metal/almayer/east, +/obj/item/stool, +/obj/item/clothing/shoes/slippers_worn, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "eEx" = ( /obj/item/circuitboard/machine/rdserver, /turf/open/floor/prison/darkpurplefull2, /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/floor_plate, +/area/fiorina/station/power_ring/reactor) "eED" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin{ @@ -6347,10 +5958,6 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"eEK" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) "eEQ" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/darkyellow2/west, @@ -6360,12 +5967,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) -"eEX" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) "eFa" = ( /obj/structure/barricade/metal{ dir = 1; @@ -6404,16 +6005,26 @@ /obj/item/storage/firstaid/regular, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) +"eGF" = ( +/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/metal/stair_cut/platform_right, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) "eGO" = ( /obj/item/storage/toolbox/electrical, /obj/structure/surface/rack, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"eHa" = ( -/obj/structure/lattice, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/fiorina/oob) +"eGT" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "eHk" = ( /obj/structure/machinery/door/morgue{ dir = 2; @@ -6439,16 +6050,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"eHx" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/wood, -/area/fiorina/station/disco/east_disco) "eHC" = ( /turf/closed/shuttle/ert{ icon_state = "wy25" @@ -6466,9 +6067,6 @@ /obj/item/trash/popcorn, /turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) -"eHX" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/lowsec/east) "eIx" = ( /obj/structure/window/reinforced{ dir = 8 @@ -6505,17 +6103,18 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) +"eJy" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec/showers_laundry) "eJK" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) -"eJQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) +"eKa" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/security) "eLu" = ( /turf/closed/wall/prison, /area/fiorina/maintenance) @@ -6525,6 +6124,12 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"eLy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco/east_disco) "eLB" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 @@ -6535,17 +6140,16 @@ /obj/item/weapon/gun/energy/taser, /turf/open/floor/prison, /area/fiorina/station/security) -"eLX" = ( -/obj/structure/platform_decoration{ - dir = 1 +"eLU" = ( +/obj/item/tool/mop{ + pixel_y = 23 }, /obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "eME" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper, @@ -6564,6 +6168,14 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) +"eMN" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "eMU" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -6581,6 +6193,11 @@ }, /turf/open/floor/prison/darkbrown2/west, /area/fiorina/station/park) +"eNr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray/empty, +/turf/open/floor/prison, +/area/fiorina/station/lowsec/showers_laundry) "eNv" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/darkyellowfull2/east, @@ -6591,21 +6208,6 @@ }, /turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) -"eOy" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"eOF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space, -/area/fiorina/oob) "eOI" = ( /obj/item/shard{ icon_state = "large" @@ -6616,6 +6218,13 @@ /obj/item/reagent_container/food/snacks/eat_bar, /turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) +"eOQ" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + layer = 2.6 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "ePq" = ( /obj/item/trash/cigbutt/ucigbutt, /obj/item/trash/cigbutt/ucigbutt{ @@ -6644,6 +6253,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) +"eQb" = ( +/obj/item/clothing/gloves/boxing/green, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec/showers_laundry) "eQk" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -6652,6 +6265,12 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) +"eQs" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) "eQz" = ( /obj/structure/machinery/gibber, /obj/effect/decal/cleanable/blood{ @@ -6669,10 +6288,6 @@ }, /turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/flight_deck) -"eQY" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) "eRl" = ( /obj/item/stack/sheet/metal, /turf/open/floor/prison/floor_plate, @@ -6697,16 +6312,6 @@ /obj/item/stack/rods, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"eSb" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) "eSn" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison/greenblue/southeast, @@ -6723,15 +6328,19 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"eSI" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "eSO" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"eSX" = ( -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec/showers_laundry) +"eTa" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec/east) "eTb" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -6745,27 +6354,10 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"eTy" = ( -/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/reactor) "eTC" = ( /obj/item/frame/rack, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"eUd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_y = 11 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "eUi" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, @@ -6800,16 +6392,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, @@ -6818,6 +6400,9 @@ /obj/structure/machinery/computer/arcade, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"eVD" = ( +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec/east) "eVK" = ( /obj/structure/prop/structure_lattice{ dir = 4; @@ -6887,11 +6472,6 @@ /obj/item/tool/wet_sign, /turf/open/floor/prison, /area/fiorina/station/disco) -"eXO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) "eXP" = ( /obj/structure/machinery/door/poddoor/almayer{ density = 0; @@ -6899,19 +6479,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"eXY" = ( -/obj/structure/platform, -/obj/structure/reagent_dispensers/fueltank/oxygentank{ - layer = 2.6 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"eYa" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/showers_laundry) "eYr" = ( /obj/structure/inflatable, /obj/structure/barricade/handrail/type_b, @@ -6951,6 +6518,10 @@ }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/security/wardens) +"eYW" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "eZi" = ( /obj/structure/machinery/power/apc/power/west, /turf/open/floor/prison, @@ -6960,6 +6531,10 @@ /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"eZK" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "eZQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/handcuffs{ @@ -6980,12 +6555,17 @@ }, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"fac" = ( -/obj/structure/platform/shiva{ - dir = 1 +"eZW" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco/east_disco) +"faw" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "faD" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -6996,6 +6576,9 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"fbn" = ( +/turf/closed/wall/prison, +/area/fiorina/station/power_ring/reactor) "fbo" = ( /obj/structure/barricade/plasteel, /obj/structure/barricade/metal{ @@ -7030,18 +6613,16 @@ /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"fcJ" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) -"fcR" = ( -/obj/structure/bed/chair{ +"fcB" = ( +/obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring/reactor) +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec/showers_laundry) +"fcH" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) "fdf" = ( /obj/structure/closet, /obj/item/stack/cable_coil, @@ -7049,33 +6630,12 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"fdg" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) -"fdl" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco/east_disco) -"fdn" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) "fdu" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/lz/near_lzI) -"fdB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stool{ - pixel_y = 12 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) "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."; @@ -7085,26 +6645,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"fdR" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrowncorners2, -/area/fiorina/station/park) -"fdV" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"fer" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) +"ffx" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec/east) "ffA" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/greenfull/northwest, @@ -7113,18 +6657,18 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/power_ring) -"fgM" = ( -/obj/structure/platform, -/obj/item/ammo_casing{ - dir = 2; - icon_state = "casing_5" - }, -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) +"fgq" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring/reactor) "fgN" = ( /obj/item/device/flashlight/flare, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) +"fgT" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) "fgU" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, @@ -7142,14 +6686,16 @@ /obj/item/storage/toolbox/emergency, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"fhJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = -4; - pixel_y = 9 +"fhS" = ( +/obj/structure/platform/metal/almayer, +/obj/item/fuel_cell, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) "fic" = ( /obj/structure/bed/sofa/south/grey/right, /obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ @@ -7163,6 +6709,14 @@ "fiq" = ( /turf/open/floor/plating/prison, /area/fiorina/oob) +"fis" = ( +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells/basketball) "fiw" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison/bluefull, @@ -7179,6 +6733,12 @@ "fjd" = ( /turf/closed/wall/prison, /area/fiorina/lz/near_lzI) +"fjg" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "fjo" = ( /obj/item/ammo_casing{ icon_state = "casing_5_1" @@ -7210,13 +6770,6 @@ dir = 9 }, /area/fiorina/tumor/aux_engi) -"fko" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) "fkG" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -7224,25 +6777,9 @@ }, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"fkH" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"fli" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) -"flo" = ( -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) +"flG" = ( +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco/east_disco) "fmb" = ( /obj/item/storage/firstaid/toxin, /turf/open/floor/prison/floor_plate, @@ -7253,10 +6790,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"fml" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring/reactor) "fmE" = ( /obj/effect/landmark/objective_landmark/medium, /obj/structure/closet/secure_closet/engineering_personal, @@ -7266,46 +6799,26 @@ /obj/item/device/cassette_tape/ocean, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"fna" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/east) "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 - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) "fnD" = ( /turf/closed/shuttle/elevator{ dir = 4 }, /area/fiorina/station/telecomm/lz1_cargo) -"fnH" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/showers_laundry) -"fnM" = ( -/obj/item/stool, -/obj/item/reagent_container/food/drinks/bottle/bluecuracao{ - pixel_x = 15; - pixel_y = 25 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/east) "fnY" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/prison/floor_plate, /area/fiorina/station/park) -"fob" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) "fop" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/science, @@ -7317,17 +6830,12 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"fpg" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, +"foR" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/area/fiorina/station/park) "fpn" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/aux_engi) @@ -7356,11 +6864,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"fpX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) "fqg" = ( /turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/central_ring) @@ -7380,6 +6883,10 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"fqI" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "frc" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/blue/west, @@ -7388,33 +6895,22 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"fry" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells/east) "frM" = ( /obj/effect/spawner/random/toolbox, /obj/structure/surface/rack, /obj/item/device/flashlight, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) -"frQ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) "frR" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"fsj" = ( -/turf/closed/wall/prison, -/area/fiorina/station/research_cells/west) +"fse" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/power_ring) "fsk" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating/prison, @@ -7423,16 +6919,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"ftd" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) "fth" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison/floor_plate, @@ -7478,16 +6964,16 @@ /obj/item/clipboard, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"fvb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring/reactor) -"fvr" = ( -/obj/structure/platform_decoration{ - dir = 4 +"fvn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/park) +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"fvx" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/east) "fvH" = ( /turf/open/floor/prison/cell_stripe/east, /area/fiorina/oob) @@ -7546,6 +7032,14 @@ /obj/structure/filingcabinet, /turf/open/floor/prison/floor_plate, /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/showers_laundry) +"fyi" = ( +/turf/open/floor/wood, +/area/fiorina/station/research_cells/west) "fyt" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "ywflowers_3" @@ -7558,13 +7052,6 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"fyC" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space, -/area/fiorina/oob) "fyO" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, @@ -7628,13 +7115,6 @@ }, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"fAW" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/decal/cleanable/blood/gibs/robot/limb, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) "fAZ" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/drinks/bottle/holywater{ @@ -7647,10 +7127,16 @@ /obj/structure/closet/secure_closet/engineering_materials, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) +"fBA" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec/showers_laundry) "fBD" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"fBK" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) "fCf" = ( /obj/structure/bed/roller, /obj/structure/machinery/iv_drip{ @@ -7715,14 +7201,6 @@ /obj/structure/machinery/computer/arcade, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) -"fDv" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "fDE" = ( /turf/open/floor/prison/damaged1/southwest, /area/fiorina/station/central_ring) @@ -7737,14 +7215,46 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) +"fDW" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison, +/area/fiorina/station/power_ring/reactor) "fEn" = ( /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) +"fEt" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/item/reagent_container/food/drinks/sillycup, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"fEv" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring/reactor) "fEH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/station_alert, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"fEY" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/delivery, +/area/fiorina/station/power_ring/reactor) +"fFv" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + layer = 2.97; + pixel_y = -14 + }, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco/east_disco) "fFw" = ( /obj/structure/largecrate/random, /turf/open/floor/prison/floor_marked/southwest, @@ -7753,12 +7263,6 @@ /obj/item/tool/screwdriver, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fGi" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/darkbrown2/southeast, -/area/fiorina/station/park) "fGA" = ( /obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/prison, @@ -7779,16 +7283,14 @@ "fHo" = ( /turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) -"fHv" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) -"fHI" = ( -/obj/structure/platform_decoration{ - dir = 4 +"fHK" = ( +/obj/structure/ice/thin/indestructible{ + dir = 8; + icon_state = "Corner" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells/basketball) "fIn" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison/redfull, @@ -7802,10 +7304,12 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"fIy" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/west) +"fII" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/gm/river/desert/deep, +/area/fiorina/lz/near_lzII) "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."; @@ -7839,12 +7343,6 @@ /obj/item/clothing/accessory/storage/webbing, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"fKm" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) "fKn" = ( /obj/item/stock_parts/manipulator/pico, /turf/open/floor/prison/darkpurple2, @@ -7853,27 +7351,49 @@ /obj/item/device/flashlight/flare, /turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) +"fKE" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"fKO" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) "fKP" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"fLj" = ( -/obj/item/stool{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/structure/sign/poster{ - icon_state = "poster1"; - pixel_y = 32 +"fKX" = ( +/obj/item/storage/backpack{ + pixel_x = -11; + pixel_y = 15 }, +/obj/item/trash/syndi_cakes, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) +"fLb" = ( +/obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/showers_laundry) +/area/fiorina/station/lowsec/east) "fLu" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"fLH" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "fLS" = ( /obj/structure/bed/chair, /turf/open/floor/wood, @@ -7888,16 +7408,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) -"fMc" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.5 - }, -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) "fMn" = ( /obj/structure/machinery/photocopier{ pixel_y = 4 @@ -7911,17 +7421,15 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"fNM" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec) "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, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco/east_disco) "fOg" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -7939,9 +7447,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"fOl" = ( -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "fOC" = ( /obj/effect/spawner/random/tool, /turf/open/floor/prison/darkyellow2/west, @@ -7950,15 +7455,6 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/station/flight_deck) -"fON" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/fiorina/station/power_ring/reactor) "fOT" = ( /turf/open/floor/prison/blue/north, /area/fiorina/station/power_ring) @@ -7969,13 +7465,6 @@ "fPB" = ( /turf/open/space, /area/fiorina/station/medbay) -"fPW" = ( -/obj/item/clothing/under/stowaway, -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) "fQa" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/cell_stripe/west, @@ -7995,33 +7484,11 @@ /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/whitegreenfull/southwest, -/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) -"fRo" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) -"fRq" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/security) -"fRt" = ( +"fRc" = ( /obj/structure/toilet{ dir = 8; pixel_y = 8 @@ -8029,9 +7496,13 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells/east) -"fRT" = ( -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec/showers_laundry) +"fRo" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) +"fRq" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security) "fSa" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison/sterile_white/southwest, @@ -8046,6 +7517,13 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) +"fSq" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + dir = 1; + icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "fSz" = ( /turf/closed/shuttle/ert{ icon_state = "stan25" @@ -8068,19 +7546,9 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"fTc" = ( -/turf/open/floor/prison/yellowcorner, -/area/fiorina/station/lowsec/east) "fTd" = ( /turf/open/floor/prison/green/southwest, /area/fiorina/tumor/aux_engi) -"fTn" = ( -/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/chapel) "fTs" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/plating_catwalk/prison, @@ -8092,14 +7560,6 @@ /obj/item/clothing/suit/suspenders, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fTE" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) -"fUb" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/west) "fUd" = ( /obj/structure/barricade/plasteel{ dir = 4 @@ -8163,16 +7623,6 @@ "fWr" = ( /turf/open/floor/prison/red/east, /area/fiorina/lz/near_lzII) -"fWs" = ( -/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) "fWy" = ( /turf/open/floor/prison/floor_marked/southwest, /area/fiorina/station/power_ring) @@ -8186,10 +7636,15 @@ }, /turf/open/space, /area/fiorina/oob) -"fXj" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/east) +"fWV" = ( +/turf/open/floor/prison/damaged1/southwest, +/area/fiorina/station/disco/east_disco) +"fXo" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco/east_disco) "fXB" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/security) @@ -8211,6 +7666,17 @@ }, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/servers) +"fXV" = ( +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/blood/gibs/robot/limb, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) +"fXW" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/power_ring/reactor) "fYa" = ( /obj/structure/inflatable, /turf/open/floor/prison/whitegreenfull/southwest, @@ -8219,19 +7685,6 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) -"fYg" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) "fYo" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -8240,15 +7693,24 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"fYI" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "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" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) +"fZc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "fZd" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 @@ -8299,17 +7761,20 @@ "gbf" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) +"gbg" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/space, +/area/fiorina/oob) "gbh" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/toolbox, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"gbm" = ( -/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/west) +"gbk" = ( +/obj/item/trash/burger, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "gbv" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -8322,13 +7787,6 @@ /obj/item/clothing/gloves/botanic_leather, /turf/open/floor/prison/greenblue/west, /area/fiorina/station/botany) -"gbO" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/station/medbay) "gbR" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -8337,11 +7795,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) -"gbS" = ( -/obj/structure/surface/rack, -/obj/item/restraint/handcuffs/zip, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec/east) "gbT" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/prison, @@ -8365,6 +7818,14 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/blue/north, /area/fiorina/station/chapel) +"gdS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "gec" = ( /obj/structure/prop/structure_lattice{ dir = 8; @@ -8374,13 +7835,12 @@ }, /turf/open/floor/corsat/squares, /area/fiorina/station/civres_blue) -"gef" = ( -/obj/structure/lattice, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 +"ger" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, -/turf/open/space, -/area/fiorina/oob) +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec/showers_laundry) "geF" = ( /obj/structure/lattice, /turf/open/floor/almayer_hull, @@ -8416,9 +7876,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"gfP" = ( -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) "ggd" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1" @@ -8442,20 +7899,14 @@ /obj/item/clothing/glasses/sunglasses/sechud, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"ghg" = ( -/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{ - dir = 1 +"ghe" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" }, -/turf/open/space, -/area/fiorina/oob) +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) "ghw" = ( /obj/structure/bed/chair/dropship/pilot, /obj/effect/landmark/objective_landmark/close, @@ -8472,12 +7923,6 @@ "gir" = ( /turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/servers) -"giw" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) "giA" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison/redfull, @@ -8488,6 +7933,14 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"gjm" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/space, +/area/fiorina/oob) +"gjr" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison, +/area/fiorina/station/power_ring/reactor) "gjs" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -8503,12 +7956,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/bluecorner, /area/fiorina/station/chapel) -"gkv" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) "gkC" = ( /obj/structure/machinery/vending/cola, /obj/structure/prop/souto_land/streamer{ @@ -8521,14 +7968,20 @@ /obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) +"glj" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/east) +"glD" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) "glG" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"glZ" = ( -/obj/structure/grille, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) "gmg" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison/darkyellow2, @@ -8552,6 +8005,10 @@ /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/showers_laundry) "gmN" = ( /obj/structure/closet/secure_closet/engineering_materials, /obj/effect/spawner/random/gun/smg, @@ -8562,15 +8019,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) -"gnm" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) -"gno" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) "gnG" = ( /obj/effect/decal/medical_decals{ icon_state = "docstripingdir" @@ -8589,9 +8037,19 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/prison, /area/fiorina/station/civres_blue) +"gnY" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/bible/hefa, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells/west) "goo" = ( /turf/open/floor/prison/yellow/west, /area/fiorina/lz/near_lzII) +"gos" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec/east) "goG" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, @@ -8608,13 +8066,6 @@ /obj/structure/window_frame/prison, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"gpW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco/east_disco) "gpY" = ( /obj/item/explosive/grenade/high_explosive/m15{ pixel_x = -9; @@ -8626,27 +8077,34 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/tumor/servers) -"gqM" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +"gqo" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec/showers_laundry) +"gqC" = ( +/obj/structure/platform/metal/almayer/west, +/obj/item/prop/almayer/flight_recorder, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "gqU" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper/janitor, /turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) -"gqV" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec/east) "grg" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) +"grn" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/space, +/area/fiorina/oob) +"grz" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "grA" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 @@ -8659,15 +8117,14 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"gsv" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 8 +"gsx" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells/west) +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) "gsN" = ( /obj/structure/closet, /obj/effect/spawner/random/gun/shotgun/midchance, @@ -8686,14 +8143,6 @@ }, /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/darkbrown2, -/area/fiorina/station/park) "gtg" = ( /obj/structure/barricade/sandbags{ dir = 4; @@ -8706,6 +8155,14 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"gtr" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) +"gtD" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "gtH" = ( /obj/structure/safe, /obj/item/storage/beer_pack, @@ -8739,9 +8196,17 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/darkyellow2/east, /area/fiorina/lz/near_lzI) +"gux" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "guz" = ( /turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) +"guH" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "guU" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -8753,12 +8218,6 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/civres) -"gvb" = ( -/obj/structure/holohoop{ - pixel_y = 25 - }, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec/east) "gve" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, @@ -8769,6 +8228,14 @@ /obj/item/storage/pill_bottle/inaprovaline/skillless, /turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) +"gvs" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"gvy" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco/east_disco) "gvZ" = ( /obj/item/stack/sheet/wood{ pixel_x = 1; @@ -8785,6 +8252,14 @@ "gws" = ( /turf/open/floor/plating, /area/fiorina/oob) +"gwt" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "gwH" = ( /turf/closed/wall/strata_ice/jungle{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -8820,10 +8295,6 @@ /obj/item/stack/tile/plasteel, /turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) -"gxS" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco/east_disco) "gyh" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" @@ -8835,21 +8306,10 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"gyr" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "gyt" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) -"gyy" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) "gyA" = ( /obj/structure/machinery/disposal, /turf/open/floor/prison/floor_plate, @@ -8860,12 +8320,6 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) -"gyF" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) "gyJ" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -8894,6 +8348,15 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) +"gzu" = ( +/obj/item/clothing/mask/cigarette/bcigarette, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) +"gzN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/handcard/aceofspades, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "gAh" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -8909,6 +8372,14 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, /area/fiorina/station/park) +"gAs" = ( +/obj/structure/platform/metal/almayer, +/obj/item/ammo_casing{ + dir = 2; + icon_state = "casing_5" + }, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) "gAA" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/plating/prison, @@ -8917,6 +8388,9 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"gAD" = ( +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells/east) "gAQ" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 @@ -8927,6 +8401,10 @@ /obj/structure/machinery/landinglight/ds2/delaythree, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) +"gBw" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "gBx" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -8948,16 +8426,6 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) -"gBR" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) "gBY" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/prison/redfull, @@ -8990,6 +8458,10 @@ /obj/item/paper, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"gCK" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "gDx" = ( /obj/structure/surface/table/woodentable, /obj/item/newspaper{ @@ -9005,17 +8477,6 @@ /obj/structure/bed/chair/office/dark, /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) -"gDY" = ( -/obj/item/stack/cable_coil/pink, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) -"gEg" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/fancy/cigar/tarbacks, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/east) "gEq" = ( /turf/open/floor/prison/platingdmg1, /area/fiorina/oob) @@ -9031,10 +8492,10 @@ /obj/structure/inflatable/door, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"gFF" = ( -/obj/effect/decal/cleanable/blood/gibs/robot/up, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) +"gFN" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/east) "gFW" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/green/southeast, @@ -9045,10 +8506,23 @@ }, /turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_cargo) +"gGn" = ( +/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/east) "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 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "gHn" = ( /obj/structure/filingcabinet{ pixel_x = 8; @@ -9083,15 +8557,14 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"gHC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/platform{ - dir = 4 +"gIa" = ( +/obj/item/stool, +/obj/item/reagent_container/food/drinks/bottle/bluecuracao{ + pixel_x = 15; + pixel_y = 25 }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec/east) "gIo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/cups{ @@ -9116,22 +8589,16 @@ /obj/effect/alien/weeds/node, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"gJy" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec/east) -"gJN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) -"gJP" = ( -/obj/structure/barricade/handrail, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) +"gJv" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"gJM" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells/east) "gKg" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/floor_plate, @@ -9140,13 +8607,6 @@ /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gKk" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) "gKl" = ( /obj/structure/janitorialcart, /obj/structure/machinery/light/double/blue{ @@ -9166,6 +8626,9 @@ /obj/item/stool, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"gLq" = ( +/turf/closed/wall/prison, +/area/fiorina/station/disco/east_disco) "gLu" = ( /turf/closed/shuttle/ert{ icon_state = "stan_leftengine" @@ -9178,6 +8641,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"gLC" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river/pool, +/area/fiorina/station/park) "gLK" = ( /obj/structure/tunnel/maint_tunnel, /turf/open/floor/prison/greenblue/southwest, @@ -9186,56 +8653,16 @@ /obj/item/clothing/head/welding, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) -"gMD" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/west) -"gMH" = ( -/turf/closed/wall/prison, -/area/fiorina/station/research_cells/east) -"gNu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/card/id/gold{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) -"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" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"gND" = ( -/obj/item/device/flashlight/lamp/tripod, +"gMl" = ( +/obj/structure/platform/metal/almayer/north, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) +/area/fiorina/station/power_ring) "gNJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) -"gNU" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) "gNY" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "ppflowers_2" @@ -9256,13 +8683,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"gOC" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/research_cells/west) "gOJ" = ( /obj/structure/closet/secure_closet/medical2{ req_access_txt = "100" @@ -9271,6 +8691,10 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/corsat/squares, /area/fiorina/station/medbay) +"gOU" = ( +/obj/item/bodybag, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec/showers_laundry) "gPk" = ( /obj/structure/barricade/metal/wired{ dir = 4 @@ -9290,12 +8714,6 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"gPD" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) "gPS" = ( /obj/item/stack/rods, /turf/open/floor/prison/chapel_carpet/doubleside/north, @@ -9306,6 +8724,10 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) +"gQc" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/fiorina/station/lowsec/showers_laundry) "gQz" = ( /obj/structure/bed/chair, /turf/open/floor/prison/whitegreenfull/southwest, @@ -9334,28 +8756,9 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) -"gRl" = ( -/obj/structure/holohoop{ - dir = 4; - id = "basketball"; - side = "left" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) -"gRs" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) -"gRR" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec/showers_laundry) +"gRA" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco/east_disco) "gRT" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/sign/poster{ @@ -9374,10 +8777,6 @@ /obj/structure/bed/chair/comfy, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"gRY" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) "gSf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/explosive/grenade/incendiary/molotov, @@ -9387,11 +8786,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) -"gSg" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "gSC" = ( /obj/item/prop/helmetgarb/gunoil, /turf/open/floor/prison, @@ -9409,75 +8803,48 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"gST" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) -"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, /turf/open/gm/river/darkred_pool, /area/fiorina/station/park) -"gTe" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) "gTi" = ( /turf/open/floor/prison/blue, /area/fiorina/station/chapel) -"gTs" = ( -/obj/item/trash/popcorn, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/east) "gTy" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/surface/rack, /turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/lz/near_lzI) -"gTG" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells/west) +"gTI" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "gTN" = ( /turf/open/floor/prison/darkpurple2/northeast, /area/fiorina/tumor/ice_lab) -"gTW" = ( -/obj/structure/platform, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/transit_hub) "gUj" = ( /turf/closed/shuttle/ert{ icon_state = "stan3" }, /area/fiorina/tumor/ship) -"gUl" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec/showers_laundry) "gUu" = ( /obj/structure/largecrate/random/barrel, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) -"gUT" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 +"gVc" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "gVs" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/prison, @@ -9493,19 +8860,29 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gVK" = ( -/turf/open/floor/prison, -/area/fiorina/station/research_cells/east) "gVT" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) -"gWv" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) +"gWq" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" + }, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/wood, +/area/fiorina/station/disco/east_disco) +"gWA" = ( +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring/reactor) +"gXa" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "gXd" = ( /obj/structure/prop/almayer/computers/mission_planning_system{ density = 0; @@ -9523,6 +8900,14 @@ "gXF" = ( /turf/open/floor/prison/darkyellow2/north, /area/fiorina/tumor/servers) +"gXI" = ( +/obj/item/book/manual/atmospipes, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/west) +"gYD" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells/west) "gYH" = ( /obj/structure/closet/secure_closet/security_empty, /obj/structure/window/reinforced{ @@ -9584,10 +8969,6 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"hax" = ( -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) "hay" = ( /turf/closed/shuttle/ert{ icon_state = "wy_leftengine" @@ -9597,11 +8978,10 @@ /obj/item/disk, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) -"hbh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) +"haQ" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "hbn" = ( /obj/structure/bed/chair{ dir = 8 @@ -9638,14 +9018,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"hbp" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/disco) "hbt" = ( /obj/item/tool/screwdriver, /turf/open/floor/prison/darkpurplefull2, @@ -9654,13 +9026,6 @@ /obj/item/stack/sandbags_empty/half, /turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) -"hbO" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) "hcs" = ( /obj/item/stack/sheet/metal{ amount = 5 @@ -9685,12 +9050,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) -"hcY" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) "hds" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-8" @@ -9732,12 +9091,6 @@ "heO" = ( /turf/closed/shuttle/elevator, /area/fiorina/station/civres_blue) -"heT" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/greenblue/southeast, -/area/fiorina/station/botany) "hfc" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -9750,12 +9103,15 @@ /obj/item/storage/briefcase/inflatable, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"hfd" = ( -/obj/structure/platform{ - dir = 1 +"hfJ" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) +/turf/open/space, +/area/fiorina/oob) "hfT" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/flight_deck) @@ -9767,35 +9123,20 @@ /obj/item/trash/burger, /turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) -"hgi" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/east) -"hgy" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) -"hgz" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec/showers_laundry) "hgA" = ( /obj/item/ammo_magazine/smg/nailgun, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) -"hgC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells/east) "hgD" = ( /obj/effect/alien/weeds/node, /turf/open/floor/prison/darkbrowncorners2/east, /area/fiorina/tumor/aux_engi) +"hgF" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/gm/river/desert/deep, +/area/fiorina/lz/near_lzII) "hgP" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/darkbrowncorners2/north, @@ -9830,11 +9171,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"hhZ" = ( -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) +"hhX" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/lowsec/east) "hil" = ( /obj/structure/surface/rack, /obj/item/tool/plantspray/pests, @@ -9854,20 +9194,21 @@ /obj/item/stack/rods, /turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) +"hjg" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/lowsec/showers_laundry) "hjp" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"hjC" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_half_cap" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) +"hjA" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"hjB" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "hjE" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced, @@ -9876,6 +9217,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) +"hjI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec/east) "hjM" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, @@ -9892,10 +9240,6 @@ "hjW" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzI) -"hkb" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/east) "hkh" = ( /obj/structure/bedsheetbin{ icon_state = "linenbin-empty"; @@ -9910,10 +9254,6 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"hkr" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec/showers_laundry) "hkA" = ( /turf/open/floor/prison/darkyellow2, /area/fiorina/station/flight_deck) @@ -9921,6 +9261,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/darkyellowcorners2/west, /area/fiorina/station/telecomm/lz1_cargo) +"hkH" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells/east) "hkM" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, /turf/open/floor/prison/whitegreenfull/southwest, @@ -9934,6 +9278,14 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) +"hlx" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"hlB" = ( +/obj/item/tool/kitchen/knife, +/turf/open/floor/prison, +/area/fiorina/station/lowsec/showers_laundry) "hlT" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -9942,19 +9294,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"hmp" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) "hmq" = ( /obj/item/device/flashlight, /turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) -"hmz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/surgical, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "hmE" = ( /obj/item/stack/sheet/metal, /turf/open/floor/prison/whitegreen/east, @@ -9965,21 +9308,20 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"hmX" = ( -/obj/item/tool/soap, -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells/west) "hnh" = ( /obj/item/reagent_container/food/drinks/sillycup, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"hnq" = ( +/obj/item/fuel_cell, +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) "hnK" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/floor_plate, @@ -9990,6 +9332,13 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) +"hoa" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) "hob" = ( /obj/item/phone{ pixel_y = 7 @@ -9999,15 +9348,18 @@ "hoo" = ( /turf/open/floor/prison/bluecorner/east, /area/fiorina/station/civres_blue) -"hot" = ( -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring/reactor) "hox" = ( /obj/structure/barricade/handrail{ dir = 4 }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) +"hoz" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) "hoC" = ( /obj/item/trash/popcorn, /turf/open/floor/prison/floor_plate, @@ -10037,10 +9389,22 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/darkbrown2, /area/fiorina/tumor/aux_engi) +"hpz" = ( +/obj/structure/ice/thin/indestructible{ + dir = 1; + icon_state = "Corner" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells/basketball) "hpW" = ( /obj/item/stack/cable_coil/orange, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"hpX" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring/reactor) "hqb" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -10052,34 +9416,25 @@ /obj/structure/bed/chair/wood/normal, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"hqG" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 +"hqD" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 }, -/turf/open/floor/prison/whitegreen/northwest, -/area/fiorina/tumor/ice_lab) -"hqI" = ( -/obj/item/paper, -/turf/open/floor/prison/whitepurple/west, +/turf/open/floor/plating/prison, /area/fiorina/station/research_cells/west) "hqO" = ( /turf/open/floor/prison/cell_stripe/west, /area/fiorina/lz/near_lzII) -"hre" = ( -/obj/structure/platform_decoration{ - dir = 4 +"hqX" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/device/flashlight, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"hri" = ( -/turf/open/floor/prison/yellow/north, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec/east) "hrl" = ( /obj/structure/bed/sofa/vert/grey, @@ -10117,6 +9472,16 @@ /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 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec/showers_laundry) "hsc" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -10129,16 +9494,17 @@ }, /turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) -"hsg" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco/east_disco) "hsl" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) +"hsz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco/east_disco) "hsC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/southleft, @@ -10184,6 +9550,10 @@ /obj/effect/spawner/random/gun/smg, /turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) +"htT" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring/reactor) "htX" = ( /turf/open/floor/prison/green/southwest, /area/fiorina/station/chapel) @@ -10193,6 +9563,10 @@ }, /turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) +"hul" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "huB" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger{ @@ -10204,6 +9578,26 @@ /obj/item/tool/crowbar, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"huG" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/showers_laundry) +"huJ" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec/east) +"huZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "hva" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -10224,9 +9618,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) -"hvA" = ( -/turf/open/floor/prison/whitepurplecorner/north, -/area/fiorina/station/research_cells/west) "hvF" = ( /obj/structure/grille, /turf/open/floor/plating/prison, @@ -10243,10 +9634,10 @@ }, /turf/open/floor/prison/blue/west, /area/fiorina/station/chapel) -"hwJ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) +"hwN" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec/showers_laundry) "hwS" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -10254,28 +9645,19 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) -"hxj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +"hxp" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.6 }, -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "hxq" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) -"hxG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/space/basic, -/area/fiorina/oob) "hxJ" = ( /obj/structure/sign/poster{ icon_state = "poster12"; @@ -10284,6 +9666,14 @@ }, /turf/open/space/basic, /area/fiorina/oob) +"hxM" = ( +/obj/structure/ice/thin/indestructible{ + dir = 1; + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells/basketball) "hyc" = ( /turf/open/floor/prison/darkbrowncorners2, /area/fiorina/maintenance) @@ -10305,22 +9695,23 @@ /obj/structure/grille, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"hyL" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/east) +"hyM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring/reactor) +"hyR" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) "hyT" = ( /turf/closed/shuttle/ert{ icon_state = "stan_leftengine" }, /area/fiorina/tumor/aux_engi) -"hyU" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) -"hzf" = ( -/turf/open/floor/prison/yellowcorner/west, -/area/fiorina/station/lowsec/east) "hzi" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/processor{ @@ -10374,27 +9765,45 @@ }, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"hAu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/lockbox/vials{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) "hAI" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) +"hAP" = ( +/obj/item/clothing/under/stowaway, +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec/showers_laundry) "hAX" = ( /turf/open/floor/prison/darkpurple2/northwest, /area/fiorina/tumor/ice_lab) +"hBc" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells/west) "hBf" = ( /obj/effect/spawner/random/tool, /turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) +"hBF" = ( +/obj/structure/window_frame/prison/reinforced, +/obj/item/stack/sheet/glass/reinforced{ + pixel_y = 5 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) +"hBK" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison, +/area/fiorina/station/botany) "hCc" = ( /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/plating/plating_catwalk/prison, @@ -10417,6 +9826,20 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) +"hCG" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/research_cells/east) +"hCR" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells/west) +"hCX" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) "hDb" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/landmark/objective_landmark/close, @@ -10431,17 +9854,9 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"hDS" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +"hDF" = ( +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec/showers_laundry) "hDV" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal1" @@ -10457,6 +9872,25 @@ "hEk" = ( /turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/flight_deck) +"hEs" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/research_cells/west) +"hEv" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) +"hEW" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "hEZ" = ( /turf/open/floor/prison/platingdmg3, /area/fiorina/station/security) @@ -10472,6 +9906,14 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"hFW" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) +"hFX" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/station/chapel) "hGg" = ( /obj/structure/sign/poster{ desc = "You are becoming hysterical."; @@ -10501,10 +9943,6 @@ /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) -"hHb" = ( -/obj/item/poster, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/west) "hHc" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/candelabra{ @@ -10516,10 +9954,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) -"hHk" = ( -/obj/item/stool, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) "hHq" = ( /obj/structure/closet/cabinet, /obj/effect/landmark/objective_landmark/close, @@ -10547,14 +9981,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"hHP" = ( -/obj/structure/machinery/light/double/blue{ +"hHX" = ( +/obj/structure/toilet{ dir = 4; - pixel_x = 10; - pixel_y = -3 + pixel_y = 8 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec/east) "hIO" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/prison/floor_plate, @@ -10563,32 +9997,34 @@ /obj/structure/machinery/power/apc/power/north, /turf/open/floor/prison/green/north, /area/fiorina/station/chapel) -"hJm" = ( +"hJd" = ( /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 - }, -/turf/open/floor/prison/floor_plate/southwest, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, /area/fiorina/station/disco/east_disco) -"hKI" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) +"hJo" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/item/reagent_container/food/drinks/flask/barflask, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/west) +"hJu" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring/reactor) +"hJV" = ( +/obj/structure/platform/metal/almayer/west, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) "hKN" = ( /turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) -"hKP" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/tool/shovel/spade, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) "hLz" = ( /turf/closed/wall/prison, /area/fiorina/lz/near_lzII) @@ -10603,6 +10039,12 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) +"hMj" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/fiorina/station/lowsec/showers_laundry) "hMA" = ( /obj/item/tool/crowbar, /turf/open/floor/prison/whitegreen, @@ -10630,6 +10072,15 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) +"hNt" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "hNU" = ( /obj/structure/janitorialcart, /turf/open/floor/prison, @@ -10649,24 +10100,14 @@ /obj/structure/inflatable/popped/door, /turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) -"hOQ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) -"hPi" = ( -/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/park) "hPq" = ( /obj/structure/machinery/power/apc/power/south, /turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) +"hPu" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring/reactor) "hPL" = ( /obj/item/tool/wrench, /turf/open/floor/prison/darkpurple2/southeast, @@ -10724,6 +10165,13 @@ }, /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/east_disco) "hRb" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -10731,9 +10179,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) -"hRo" = ( -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells/west) "hRs" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/corsat/plate, @@ -10741,38 +10186,10 @@ "hRX" = ( /turf/open/gm/river/red_pool, /area/fiorina/station/park) -"hSc" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "hSk" = ( /obj/structure/toilet, /turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) -"hSl" = ( -/obj/structure/platform, -/turf/open/floor/prison/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/cell_stripe/east, -/area/fiorina/station/medbay) -"hSt" = ( -/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/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) "hSA" = ( /obj/item/reagent_container/food/drinks/bottle/tomatojuice, /turf/open/floor/prison/floor_plate, @@ -10859,6 +10276,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"hVA" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/west) "hVG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -10869,11 +10290,6 @@ "hVI" = ( /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 @@ -10894,31 +10310,29 @@ /obj/effect/spawner/random/gun/rifle/lowchance, /turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/lz/near_lzI) -"hWt" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/west) "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/floor/prison/floor_plate, -/area/fiorina/station/botany) "hWF" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"hXw" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/bluecorner/east, +"hWG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) +"hXF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring/reactor) "hXG" = ( /obj/structure/barricade/metal/wired{ @@ -10926,6 +10340,13 @@ }, /turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) +"hXJ" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco/east_disco) "hXN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/plastic, @@ -10938,6 +10359,14 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/medbay) +"hXP" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring/reactor) "hXX" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -10954,6 +10383,14 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"hYs" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + layer = 2.97; + pixel_y = -14 + }, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "hYx" = ( /obj/item/tool/wet_sign, /obj/item/tool/mop{ @@ -10962,11 +10399,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"hYT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) "hYX" = ( /obj/structure/machinery/bot/medbot, /turf/open/floor/prison/whitegreenfull/southwest, @@ -10993,13 +10425,12 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"hZY" = ( -/obj/structure/window_frame/prison/reinforced, -/obj/item/stack/sheet/glass/reinforced{ - pixel_y = 5 +"hZU" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + dir = 4 }, /turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) +/area/fiorina/station/research_cells/east) "iaa" = ( /turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/disco) @@ -11035,22 +10466,6 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"ibE" = ( -/turf/open/floor/prison/yellow, -/area/fiorina/station/disco/east_disco) -"ibZ" = ( -/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 - }, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/west) "icg" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison/whitegreen/northwest, @@ -11078,19 +10493,11 @@ /obj/item/trash/sosjerky, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"idu" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/research_cells/west) -"idP" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) +"idj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "idS" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, @@ -11098,20 +10505,6 @@ "iea" = ( /turf/open/floor/prison/whitegreencorner/north, /area/fiorina/station/medbay) -"ieu" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/morgue{ - dir = 8; - layer = 2.6 - }, -/turf/open/floor/corsat/squares, -/area/fiorina/station/medbay) "ieA" = ( /obj/structure/barricade/handrail/type_b, /turf/open/floor/prison, @@ -11124,12 +10517,6 @@ /obj/item/stack/sheet/metal, /turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) -"ifk" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) "ifm" = ( /turf/open/floor/prison/greencorner, /area/fiorina/tumor/civres) @@ -11147,6 +10534,12 @@ /obj/structure/bed/chair/comfy, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"ifB" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/space/basic, +/area/fiorina/oob) "ifJ" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -11231,6 +10624,10 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) +"ihA" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/space, +/area/fiorina/oob) "ihB" = ( /turf/open/floor/prison/redfull, /area/fiorina/station/security) @@ -11260,15 +10657,6 @@ /obj/structure/machinery/gibber, /turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) -"iiK" = ( -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) -"iiY" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) "ijd" = ( /obj/item/trash/cigbutt, /turf/open/floor/prison, @@ -11284,15 +10672,10 @@ "ijC" = ( /turf/open/floor/prison/darkpurplefull2, /area/fiorina/lz/near_lzI) -"ijE" = ( -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) -"ikc" = ( -/obj/item/trash/chips, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) -"ikg" = ( -/obj/item/weapon/twohanded/spear, +"ika" = ( +/obj/structure/bed{ + icon_state = "abed" + }, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells/east) "ikt" = ( @@ -11326,10 +10709,6 @@ }, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"ilx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring/reactor) "ilM" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -11340,10 +10719,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"iml" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "imp" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -11353,10 +10728,6 @@ "imt" = ( /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"imx" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/lowsec/showers_laundry) "imz" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/corsat/squares, @@ -11365,14 +10736,14 @@ /obj/item/trash/chunk, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"imI" = ( +"imH" = ( /obj/structure/stairs/perspective{ dir = 8; - icon_state = "p_stair_ew_full_cap" + icon_state = "p_stair_full" }, -/obj/structure/platform/stair_cut, +/obj/structure/platform/metal/almayer, /turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) +/area/fiorina/station/civres_blue) "imN" = ( /obj/structure/filingcabinet/disk, /turf/open/floor/prison, @@ -11381,9 +10752,14 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"iny" = ( -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/disco/east_disco) +"inv" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "inA" = ( /obj/structure/surface/table/reinforced/prison{ flipped = 1 @@ -11398,40 +10774,21 @@ "ioc" = ( /turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) -"iox" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) "ioE" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) -"ioK" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) "ioM" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/medbay) +"ioN" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) "ioS" = ( /obj/item/storage/briefcase, /turf/open/floor/prison/whitegreenfull/southwest, /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/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) "ioW" = ( /obj/structure/bed/chair{ dir = 8 @@ -11450,6 +10807,10 @@ /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/botany) +"ipy" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) "ipz" = ( /obj/item/device/flashlight, /turf/open/floor/prison, @@ -11504,13 +10865,14 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) -"isk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) +"isw" = ( +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco/east_disco) +"isI" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/item/tool/pickaxe, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) "itd" = ( /obj/item/tool/lighter/random, /turf/open/floor/plating/plating_catwalk/prison, @@ -11529,21 +10891,14 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) -"iuf" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco/east_disco) -"ius" = ( -/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/showers_laundry) "iuz" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/prison, /area/fiorina/station/transit_hub) +"iuC" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "iuN" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -11577,6 +10932,15 @@ /obj/effect/landmark/corpsespawner/prison_security, /turf/open/floor/wood, /area/fiorina/station/park) +"ivA" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "ivD" = ( /obj/item/tool/weldingtool{ pixel_x = 6; @@ -11602,10 +10966,6 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"iwl" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec/east) "iwu" = ( /obj/item/newspaper, /turf/open/floor/prison, @@ -11614,6 +10974,18 @@ /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) +"iwT" = ( +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "End" + }, +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "End" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells/basketball) "iwZ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -11634,6 +11006,14 @@ /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison/greenblue, /area/fiorina/station/botany) +"ixU" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) "iyc" = ( /obj/item/stack/rods/plasteel, /turf/open/auto_turf/sand/layer1, @@ -11642,21 +11022,6 @@ /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 - }, -/turf/open/floor/prison/darkbrown2/west, -/area/fiorina/station/park) "iys" = ( /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/prison/kitchen, @@ -11680,16 +11045,6 @@ }, /turf/open/floor/prison/greenfull/east, /area/fiorina/station/chapel) -"izh" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/lowsec) "izN" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced/prison, @@ -11701,14 +11056,6 @@ "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) "iAA" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gib5" @@ -11721,6 +11068,9 @@ "iBr" = ( /turf/open/floor/prison, /area/fiorina/station/flight_deck) +"iBI" = ( +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) "iBM" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/greenblue/northeast, @@ -11730,6 +11080,16 @@ icon_state = "stan25" }, /area/fiorina/oob) +"iCf" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/gloves/boxing/blue, +/obj/item/clothing/gloves/boxing/blue, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) +"iCC" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "iCE" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -11740,10 +11100,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"iDc" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) +"iCN" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/showers_laundry) +"iCU" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/prison, +/area/fiorina/station/disco/east_disco) "iDg" = ( /obj/structure/barricade/sandbags{ dir = 8; @@ -11793,9 +11157,10 @@ /obj/effect/spawner/random/gun/rifle, /turf/open/floor/prison/greenfull/east, /area/fiorina/station/chapel) -"iEl" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, +"iDR" = ( +/obj/structure/largecrate/supply, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) "iEA" = ( /obj/structure/closet/crate/miningcar{ @@ -11819,6 +11184,11 @@ }, /turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) +"iES" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/item/device/flashlight, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "iFg" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -11831,11 +11201,24 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) +"iFB" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells/west) "iFC" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) +"iFP" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/east) "iFZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/hugemushroomslice, @@ -11844,6 +11227,25 @@ }, /turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) +"iGe" = ( +/obj/structure/platform/metal/almayer/east, +/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/floor_plate, +/area/fiorina/station/disco) +"iGh" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) "iGw" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/prison/greenfull/northwest, @@ -11852,24 +11254,20 @@ /obj/structure/closet/crate/trashcart, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) +"iGI" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/plating/prison, +/area/fiorina/station/civres_blue) "iGX" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"iHd" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/lowsec/east) -"iHt" = ( -/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/power_ring/reactor) +"iHi" = ( +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec/showers_laundry) "iHu" = ( /obj/item/newspaper, /turf/open/floor/prison, @@ -11892,18 +11290,10 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/greenblue/east, /area/fiorina/station/botany) -"iIl" = ( -/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) +"iIw" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/space/basic, +/area/fiorina/oob) "iIx" = ( /obj/effect/decal/cleanable/blood{ desc = "Watch your step."; @@ -11921,14 +11311,23 @@ }, /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/floor_plate, +/area/fiorina/station/lowsec/east) "iIS" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"iIY" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) "iIZ" = ( /obj/item/stack/cable_coil, /obj/structure/machinery/light/double/blue{ @@ -11952,6 +11351,14 @@ "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/yellow/southwest, +/area/fiorina/station/lowsec/east) "iKF" = ( /obj/structure/inflatable, /turf/open/floor/prison/floor_plate, @@ -11966,6 +11373,18 @@ }, /turf/open/floor/prison/whitegreen/northeast, /area/fiorina/station/medbay) +"iLl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) +"iLE" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison/chapel_carpet, +/area/fiorina/station/chapel) "iLJ" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/prison, @@ -11990,15 +11409,18 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"iNh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) "iNk" = ( /obj/structure/largecrate/random, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) +"iNs" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "iNt" = ( /obj/item/device/whistle, /turf/open/floor/prison/whitegreenfull/southwest, @@ -12034,16 +11456,6 @@ /obj/item/storage/donut_box/empty, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"iPA" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells/west) "iQj" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light/double/blue{ @@ -12088,6 +11500,14 @@ }, /turf/open/floor/prison/darkbrown2/west, /area/fiorina/tumor/aux_engi) +"iRA" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison, +/area/fiorina/station/disco) "iRG" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/chunk, @@ -12132,15 +11552,12 @@ "iTm" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/station/civres_blue) -"iTs" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) +"iTr" = ( +/obj/structure/closet/basketball, +/obj/item/storage/pill_bottle/tramadol/skillless, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "iTt" = ( /obj/structure/machinery/landinglight/ds2, /turf/open/floor/prison/floor_plate, @@ -12155,12 +11572,6 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/prison, /area/fiorina/station/security) -"iTR" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "iUa" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -12184,6 +11595,13 @@ }, /turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) +"iUz" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco/east_disco) "iUB" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -12192,16 +11610,19 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"iUL" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec/showers_laundry) -"iUO" = ( -/obj/structure/platform{ - dir = 8 +"iUR" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) +/obj/structure/platform/metal/almayer/west, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) "iUS" = ( /obj/structure/barricade/handrail/type_b, /obj/structure/barricade/handrail/type_b{ @@ -12243,17 +11664,6 @@ }, /turf/open/floor/prison/yellow/northeast, /area/fiorina/station/lowsec) -"iWq" = ( -/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) "iWP" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -12261,18 +11671,27 @@ }, /turf/open/floor/prison/whitegreen/west, /area/fiorina/station/central_ring) -"iXs" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"iWX" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/east) +"iXn" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"iXq" = ( +/obj/item/stool, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec/showers_laundry) "iXB" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring/reactor) +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells/east) "iXJ" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -12286,6 +11705,10 @@ "iYa" = ( /turf/open/floor/prison/bluecorner/west, /area/fiorina/station/chapel) +"iYe" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring/reactor) "iYw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/central_ring) @@ -12298,9 +11721,6 @@ /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/maintenance) -"iZl" = ( -/turf/closed/wall/prison, -/area/fiorina/station/lowsec/east) "iZm" = ( /obj/item/trash/chips, /obj/structure/machinery/light/double/blue{ @@ -12310,19 +11730,16 @@ }, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/servers) -"jaB" = ( -/obj/structure/platform/kutjevo/smooth{ +"jbg" = ( +/obj/structure/holohoop{ dir = 1 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"jaR" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/prison, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec/east) +"jbm" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/showers_laundry) "jbq" = ( /turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) @@ -12350,6 +11767,13 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) +"jce" = ( +/obj/structure/window_frame/prison/reinforced, +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "jci" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, /obj/structure/window/reinforced{ @@ -12358,13 +11782,6 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"jcr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) "jcv" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -12386,44 +11803,29 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) -"jcI" = ( -/obj/item/pamphlet/engineer, -/obj/structure/closet, -/obj/item/restraint/handcuffs, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec/east) "jdn" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"jdE" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 2; - req_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco/east_disco) "jew" = ( /obj/structure/largecrate/supply/ammo, /obj/item/storage/fancy/crayons, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"jeL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/chapel) +"jfc" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/east) "jfd" = ( /turf/open/gm/river/pool, /area/fiorina/station/park) +"jfp" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) "jft" = ( /obj/structure/barricade/sandbags{ icon_state = "sandbag_0"; @@ -12434,23 +11836,6 @@ "jfO" = ( /turf/open/floor/prison/yellow/southeast, /area/fiorina/station/central_ring) -"jfT" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) -"jgo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) "jgu" = ( /turf/closed/wall/prison, /area/fiorina/station/park) @@ -12477,17 +11862,6 @@ /obj/effect/spawner/random/tool, /turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) -"jhv" = ( -/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/east_disco) "jhG" = ( /turf/closed/shuttle/ert{ icon_state = "stan25" @@ -12501,22 +11875,23 @@ /obj/item/clothing/suit/armor/bulletproof/badge, /turf/open/floor/prison/yellow/southeast, /area/fiorina/station/lowsec) +"jii" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/east) "jiq" = ( /obj/structure/lz_sign/prison_sign, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"jiz" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "jiA" = ( /obj/item/storage/firstaid/regular, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"jiP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/smg/mp5, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) "jiV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/saltshaker, @@ -12538,12 +11913,22 @@ /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/whitepurple/northwest, +/area/fiorina/station/research_cells/west) "jjs" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"jjx" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/disco/east_disco) "jjH" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison, @@ -12563,27 +11948,11 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) -"jkl" = ( -/obj/item/trash/burger, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) "jkw" = ( /obj/structure/machinery/computer/atmos_alert, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) -"jkE" = ( -/obj/item/stool, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) -"jkM" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells/east) "jkW" = ( /obj/structure/dropship_equipment/fulton_system, /turf/open/floor/prison, @@ -12617,15 +11986,6 @@ /obj/item/stack/nanopaste, /turf/open/floor/prison/blue/north, /area/fiorina/station/civres_blue) -"jlE" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/research_cells/west) -"jlH" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space, -/area/fiorina/oob) "jlI" = ( /obj/structure/bed/sofa/south/grey, /turf/open/floor/prison, @@ -12642,17 +12002,18 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/aux_engi) -"jmr" = ( -/obj/structure/platform{ +"jmv" = ( +/obj/structure/machinery/shower{ dir = 4 }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec/showers_laundry) +"jmG" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/research_cells/west) +"jna" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/fiorina/station/research_cells/west) "jnd" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -12665,10 +12026,6 @@ /obj/structure/machinery/vending/sovietsoda, /turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) -"jnp" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "jnQ" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -12680,9 +12037,9 @@ "jnU" = ( /turf/open/floor/prison/darkpurple2/north, /area/fiorina/tumor/servers) -"jnV" = ( -/obj/item/weapon/twohanded/spear, -/turf/open/floor/prison/sterile_white/southwest, +"jnX" = ( +/obj/item/storage/pill_bottle/spaceacillin/skillless, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells/west) "jor" = ( /obj/effect/spawner/random/attachment, @@ -12705,6 +12062,19 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) +"joB" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"joJ" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/prison, +/area/fiorina/station/lowsec/showers_laundry) "joU" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/prison, @@ -12734,12 +12104,12 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) -"jpB" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 +"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/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/research_cells/west) "jpQ" = ( /obj/structure/bed/chair{ dir = 4 @@ -12785,6 +12155,10 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) +"jqN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "jri" = ( /obj/structure/closet/secure_closet/freezer/fridge/groceries, /obj/structure/machinery/light/double/blue{ @@ -12797,12 +12171,6 @@ "jrN" = ( /turf/open/floor/prison/platingdmg1, /area/fiorina/tumor/aux_engi) -"jrO" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/power_ring) "jrT" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger, @@ -12813,14 +12181,22 @@ /obj/structure/closet/crate/trashcart, /turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) -"jso" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec/showers_laundry) "jsp" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) +"jsu" = ( +/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/darkredfull2, +/area/fiorina/station/research_cells/west) "jsU" = ( /obj/item/stack/tile/plasteel{ pixel_x = 3; @@ -12834,13 +12210,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"jth" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/obj/item/frame/rack, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco/east_disco) "jtK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; @@ -12852,6 +12221,31 @@ /obj/effect/alien/weeds/node, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) +"jtW" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"juL" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"juV" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/east) "juX" = ( /obj/structure/machinery/door/poddoor/almayer{ density = 0; @@ -12859,6 +12253,10 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/park) +"jvi" = ( +/obj/structure/closet/wardrobe/orange, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) "jvm" = ( /obj/item/storage/surgical_tray, /obj/structure/surface/table/reinforced/prison, @@ -12868,10 +12266,6 @@ }, /turf/open/floor/corsat/squares, /area/fiorina/station/medbay) -"jvp" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) "jvy" = ( /mob/living/simple_animal/hostile/carp{ desc = "He is late for work."; @@ -12897,6 +12291,15 @@ /obj/item/trash/hotdog, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) +"jxS" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "jyo" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/cell_stripe/west, @@ -12931,10 +12334,6 @@ /obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/tumor/servers) -"jzC" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "jzN" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison/floor_plate, @@ -12942,18 +12341,16 @@ "jzP" = ( /turf/open/floor/prison/bluecorner, /area/fiorina/station/power_ring) -"jAp" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +"jAw" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" }, -/obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec/east) -"jAx" = ( -/obj/item/clothing/mask/cigarette, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/west) +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/space, +/area/fiorina/oob) "jAF" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/medical_decals{ @@ -12961,12 +12358,18 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"jBb" = ( -/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/reactor) +"jAP" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco/east_disco) +"jAW" = ( +/obj/structure/largecrate/supply/ammo, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "jBn" = ( /obj/structure/closet/secure_closet/medical3, /obj/structure/machinery/light/double/blue{ @@ -12982,18 +12385,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"jBC" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells/west) "jBQ" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/wood, /area/fiorina/station/park) -"jBX" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco/east_disco) "jCe" = ( /turf/open/floor/prison/darkpurple2/northeast, /area/fiorina/tumor/servers) @@ -13006,11 +12401,6 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) -"jCx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) "jCy" = ( /obj/structure/prop/dam/crane{ icon_state = "tractor_damaged" @@ -13021,26 +12411,19 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) -"jCO" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) "jDe" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) -"jDr" = ( -/obj/structure/disposalpipe/broken, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring/reactor) +"jDl" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "jDR" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -13048,6 +12431,17 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"jEa" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring/reactor) +"jEq" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) "jEr" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison, @@ -13060,33 +12454,34 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) +"jEK" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/fiorina/station/research_cells/west) "jEQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, /turf/open/floor/prison, /area/fiorina/lz/console_II) -"jFb" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco/east_disco) -"jFh" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ +"jET" = ( +/obj/structure/barricade/metal/wired{ dir = 4 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) +"jEY" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/station/research_cells/west) "jFl" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"jFw" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/disco/east_disco) "jFz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison/darkbrown2/north, @@ -13119,16 +12514,19 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/prison/whitepurple/northeast, /area/fiorina/oob) -"jGv" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/lowsec/east) -"jGC" = ( -/obj/structure/platform{ - dir = 8 +"jGz" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/obj/effect/spawner/random/tool, +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) +"jGK" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/space/basic, +/area/fiorina/oob) "jHj" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/floor_plate, @@ -13145,18 +12543,15 @@ /obj/item/tool/lighter, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"jHD" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) "jHU" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"jHV" = ( +/obj/item/paper, +/obj/structure/inflatable/door, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "jIw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -13216,27 +12611,19 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) -"jKI" = ( -/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, -/area/fiorina/oob) +"jKJ" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) "jKR" = ( /obj/structure/machinery/shower{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ice_lab) -"jLz" = ( +"jLe" = ( +/obj/structure/machinery/constructable_frame, /turf/open/floor/prison, /area/fiorina/station/disco/east_disco) "jLC" = ( @@ -13246,15 +12633,13 @@ }, /turf/open/floor/prison/darkyellowcorners2/west, /area/fiorina/station/telecomm/lz1_cargo) -"jLD" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - layer = 3.5 +"jMf" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 5; + pixel_y = 5 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "jMh" = ( /turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/medbay) @@ -13279,19 +12664,16 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) +"jNl" = ( +/obj/structure/ice/thin/indestructible{ + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells/basketball) "jNw" = ( /turf/open/floor/prison/blue/northwest, /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'; @@ -13301,12 +12683,6 @@ }, /turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/flight_deck) -"jOv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/power_ring) "jOY" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -13315,23 +12691,17 @@ /obj/item/stack/cable_coil, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"jPD" = ( -/obj/structure/disposalpipe/broken{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring/reactor) "jPK" = ( /turf/closed/shuttle/elevator{ dir = 6 }, /area/fiorina/station/telecomm/lz1_cargo) -"jPX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' +"jPM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) +/area/fiorina/station/research_cells/east) "jPY" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "Residential Apartment" @@ -13346,26 +12716,17 @@ "jQs" = ( /turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) -"jQt" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) "jQy" = ( /turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) -"jQE" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +"jQF" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/west) -"jQQ" = ( -/obj/structure/closet/basketball, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) "jQS" = ( /obj/structure/closet/secure_closet/guncabinet{ req_access = null @@ -13394,16 +12755,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"jRC" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) "jRF" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, @@ -13412,13 +12763,17 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/disco) -"jSx" = ( -/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" +"jSc" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) +/obj/item/reagent_container/food/drinks/flask/marine, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/west) +"jSx" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "jSD" = ( /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating/prison, @@ -13436,26 +12791,12 @@ /obj/structure/machinery/recharger, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"jSY" = ( -/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/disco/east_disco) "jSZ" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"jTa" = ( -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "jTo" = ( /obj/item/prop/helmetgarb/gunoil, /turf/open/floor/prison/whitegreen/east, @@ -13464,6 +12805,9 @@ /obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"jTJ" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/lowsec/showers_laundry) "jTN" = ( /obj/structure/filingcabinet{ pixel_x = 8; @@ -13475,12 +12819,6 @@ }, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"jUa" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/tumor/ice_lab) "jUs" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -13537,6 +12875,13 @@ }, /turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) +"jWy" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) "jWE" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; @@ -13544,6 +12889,16 @@ }, /turf/open/floor/prison/blue/west, /area/fiorina/station/civres_blue) +"jWI" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/west) +"jWY" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/fancy/cigar/tarbacks, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells/east) "jXj" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, @@ -13552,9 +12907,16 @@ /obj/structure/girder/reinforced, /turf/open/floor/almayer, /area/fiorina/tumor/ship) +"jXr" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/park) "jXz" = ( /turf/closed/wall/prison, /area/fiorina/tumor/servers) +"jXU" = ( +/turf/open/floor/prison/yellowcorner/east, +/area/fiorina/station/lowsec/showers_laundry) "jXV" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, /turf/open/floor/plating/plating_catwalk/prison, @@ -13562,10 +12924,16 @@ "jXZ" = ( /turf/closed/shuttle/elevator, /area/fiorina/tumor/aux_engi) -"jYn" = ( -/obj/structure/platform, +"jYm" = ( +/obj/structure/machinery/constructable_frame, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) +/area/fiorina/station/lowsec/east) +"jYs" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "jYt" = ( /obj/structure/barricade/metal/wired{ dir = 8 @@ -13576,6 +12944,10 @@ "jYK" = ( /turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) +"jYM" = ( +/obj/item/trash/chips, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "jYU" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -13596,24 +12968,31 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_tram) +"jZF" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) +"kab" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "kag" = ( /turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/power_ring) -"kaq" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) "kat" = ( /turf/open/floor/prison/green/north, /area/fiorina/station/botany) -"kaw" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) "kaF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/sake, @@ -13634,6 +13013,10 @@ /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/floor_plate, +/area/fiorina/station/lowsec/east) "kbi" = ( /obj/item/ammo_casing{ dir = 6; @@ -13650,12 +13033,6 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/greenblue/west, /area/fiorina/station/botany) -"kbp" = ( -/obj/item/ammo_casing{ - icon_state = "casing_7_1" - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) "kbt" = ( /obj/structure/janitorialcart, /obj/item/tool/mop{ @@ -13670,29 +13047,9 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"kby" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring/reactor) -"kbO" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/power_ring/reactor) "kbT" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"kcQ" = ( -/obj/structure/ice/thin/indestructible{ - dir = 1; - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells/basketball) -"kdl" = ( -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) "kdq" = ( /obj/structure/machinery/vending/hydronutrients, /turf/open/floor/prison/greenfull/northwest, @@ -13709,17 +13066,13 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzI) -"kei" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/darkpurplefull2, +"keb" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells/east) -"keo" = ( -/turf/open/floor/wood, -/area/fiorina/station/lowsec/east) -"kfn" = ( -/obj/item/clothing/gloves/boxing/green, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/showers_laundry) "kfL" = ( /obj/structure/machinery/photocopier, /turf/open/floor/prison, @@ -13743,6 +13096,25 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) +"kgp" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec/showers_laundry) +"kgu" = ( +/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/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco/east_disco) "kgG" = ( /turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_cargo) @@ -13750,6 +13122,10 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) +"kgQ" = ( +/obj/item/stool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) "kgT" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper/carbon, @@ -13776,6 +13152,10 @@ }, /turf/open/floor/corsat/squares, /area/fiorina/station/civres_blue) +"khw" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring/reactor) "khY" = ( /obj/structure/closet/secure_closet/medical3, /turf/open/floor/prison/whitegreenfull/southwest, @@ -13802,10 +13182,17 @@ /obj/item/tool/weldpack, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"kiU" = ( -/obj/structure/bed/chair/office/dark, +"kiT" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) +"kjs" = ( +/obj/structure/platform/metal/almayer/east, /turf/open/floor/prison, /area/fiorina/station/disco/east_disco) +"kjt" = ( +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) "kjP" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/northleft, @@ -13814,10 +13201,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"kjQ" = ( -/obj/item/toy/handcard/uno_reverse_blue, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "kjT" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/organic/grass/astroturf, @@ -13844,22 +13227,18 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"kle" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) "klh" = ( /obj/structure/machinery/vending/security, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) +"kll" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) "klp" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -13880,15 +13259,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"klD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/bottle/spaceacillin{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) "klN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/donut_box{ @@ -13909,6 +13279,13 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) +"kmL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 1; + icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/east) "kmN" = ( /obj/structure/machinery/computer/cameras{ dir = 1; @@ -13917,15 +13294,14 @@ /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/darkpurplefull2, +/area/fiorina/station/research_cells/east) "knh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"kns" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray/empty, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "kny" = ( /obj/item/stack/tile/plasteel{ pixel_x = 5; @@ -13933,13 +13309,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"knQ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) "knW" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/station_alert{ @@ -13995,12 +13364,6 @@ /obj/structure/closet/bombcloset, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) -"koY" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "kpe" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/whitegreen/west, @@ -14015,6 +13378,13 @@ "kpq" = ( /turf/open/floor/prison/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/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) "kpv" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 @@ -14067,26 +13437,14 @@ }, /turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/station/flight_deck) -"ksg" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "ksu" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) -"ksL" = ( -/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) +"ksE" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec/showers_laundry) "ksV" = ( /obj/structure/barricade/handrail/type_b{ dir = 4; @@ -14117,13 +13475,14 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"kuK" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +"kuQ" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" }, -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/station/research_cells/west) +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) "kvg" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -14163,10 +13522,6 @@ }, /turf/open/floor/prison/blue, /area/fiorina/station/chapel) -"kwQ" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/west) "kwT" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating/prison, @@ -14211,23 +13566,18 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) -"kyh" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"kyl" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) "kyF" = ( /turf/open/floor/prison/blue/west, /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 + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/west) "kyW" = ( /obj/item/stack/sandbags/large_stack, /turf/open/floor/plating/prison, @@ -14242,6 +13592,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"kzh" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + dir = 4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "kzs" = ( /obj/item/stack/sandbags/large_stack, /turf/open/floor/prison/green/east, @@ -14270,6 +13626,13 @@ }, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) +"kzR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "kAc" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/processor{ @@ -14281,14 +13644,6 @@ }, /turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) -"kAB" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) "kAO" = ( /obj/item/folder/yellow, /turf/open/floor/plating/prison, @@ -14305,16 +13660,19 @@ /obj/item/toy/bikehorn/rubberducky, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"kBX" = ( +"kBW" = ( /obj/structure/stairs/perspective{ dir = 4; - icon_state = "p_stair_sn_full_cap" + icon_state = "p_stair_full" }, -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, /turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/flight_deck) "kCj" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -14341,28 +13699,14 @@ /obj/structure/surface/rack, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"kCV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells/east) +"kCT" = ( +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec/east) "kCY" = ( /obj/item/tool/weldingtool, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"kDa" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"kDh" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) "kDw" = ( /turf/open/floor/prison/darkyellowcorners2, /area/fiorina/station/telecomm/lz1_cargo) @@ -14395,10 +13739,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"kET" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/east) "kEZ" = ( /obj/item/stack/tile/plasteel{ pixel_x = 12; @@ -14410,57 +13750,36 @@ /obj/structure/machinery/vending/hydronutrients, /turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) -"kFn" = ( -/obj/item/frame/toolbox_tiles, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/west) -"kFN" = ( -/obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) "kGc" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) -"kGB" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/security) +"kGd" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells/east) +"kGo" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells/west) "kGD" = ( /obj/structure/largecrate/random/mini/med, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"kGZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/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 - }, -/turf/open/floor/prison/chapel_carpet/doubleside/north, -/area/fiorina/station/chapel) "kHv" = ( /turf/open/floor/prison/bluecorner/north, /area/fiorina/station/power_ring) +"kHx" = ( +/obj/structure/platform/metal/almayer/north, +/obj/item/fuel_cell, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) "kHF" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) @@ -14468,6 +13787,10 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) +"kHH" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "kHI" = ( /obj/item/stack/sheet/metal, /turf/open/floor/prison/darkpurplefull2, @@ -14480,14 +13803,14 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"kHT" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) "kHZ" = ( /obj/item/stack/folding_barricade, /turf/open/floor/prison/redfull, /area/fiorina/station/security) +"kIb" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec/showers_laundry) "kIg" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/floor_plate, @@ -14513,6 +13836,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) +"kIO" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "kJd" = ( /obj/item/tool/warning_cone, /turf/open/floor/prison/darkbrown2/east, @@ -14521,6 +13848,10 @@ /obj/item/tool/wrench, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) +"kJg" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) "kJz" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/fuelcell_recycler, @@ -14553,10 +13884,12 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) -"kKp" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) +"kKh" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/tumor/ice_lab) "kKs" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -14568,20 +13901,14 @@ /obj/item/weapon/baton, /turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) -"kKI" = ( -/obj/structure/machinery/light/double/blue{ +"kKy" = ( +/obj/structure/stairs/perspective{ dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) -"kKP" = ( -/obj/structure/platform{ - dir = 8 + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring) +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) "kLs" = ( /obj/vehicle/powerloader{ dir = 8 @@ -14604,6 +13931,10 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) +"kMf" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "kMm" = ( /obj/structure/barricade/handrail, /turf/open/floor/prison/floor_plate, @@ -14611,6 +13942,14 @@ "kMq" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/civres_blue) +"kMA" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "kMC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/objective, @@ -14634,18 +13973,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) -"kNj" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - dir = 4; - icon_state = "door_open"; - opacity = 0 - }, -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "kNk" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/surface/rack, @@ -14691,6 +14018,13 @@ "kOB" = ( /turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) +"kOM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/plating/prison, +/area/fiorina/station/chapel) "kOV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/folder/black_random, @@ -14704,29 +14038,19 @@ /obj/structure/machinery/computer3/server/rack, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"kPl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_y = 11 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "kPz" = ( /obj/structure/lattice, /turf/open/space, /area/fiorina/oob) -"kPM" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) -"kPT" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap" +"kPG" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/almayer/north, +/obj/structure/ice/thin/indestructible{ + dir = 1; + icon_state = "Corner" }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring/reactor) +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) "kPY" = ( /turf/closed/wall/prison, /area/fiorina/tumor/fiberbush) @@ -14760,6 +14084,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"kRl" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) "kRO" = ( /obj/item/tool/warning_cone{ pixel_x = -4; @@ -14783,6 +14114,9 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"kSe" = ( +/turf/open/floor/prison/yellow, +/area/fiorina/station/disco/east_disco) "kSh" = ( /turf/closed/shuttle/elevator{ dir = 9 @@ -14792,35 +14126,9 @@ /obj/structure/closet/firecloset, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) -"kSD" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform{ - dir = 8; - layer = 2.5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) -"kTk" = ( -/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/east_disco) "kTs" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/maintenance) -"kTD" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/blue/southwest, -/area/fiorina/station/power_ring) "kTL" = ( /obj/item/stack/rods, /obj/item/shard{ @@ -14849,12 +14157,6 @@ }, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"kUR" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) "kVg" = ( /obj/item/stack/cable_coil/blue, /turf/open/floor/plating/prison, @@ -14863,10 +14165,6 @@ /obj/structure/largecrate/random, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"kVK" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) "kVN" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/prison/redfull, @@ -14880,6 +14178,13 @@ /obj/item/restraint/handcuffs, /turf/open/floor/prison, /area/fiorina/station/security) +"kWx" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "kWL" = ( /turf/open/floor/prison/floor_marked/southwest, /area/fiorina/lz/near_lzII) @@ -14887,6 +14192,13 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) +"kWT" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"kXk" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells/west) "kXm" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/pistol/heavy, @@ -14916,10 +14228,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"kXX" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) +"kXT" = ( +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec/showers_laundry) "kYd" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -14992,12 +14303,22 @@ /obj/structure/airlock_assembly, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"laK" = ( +/obj/item/stool, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco/east_disco) "laX" = ( /obj/structure/toilet{ dir = 8 }, /turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) +"lbg" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer/east, +/obj/vehicle/powerloader/ft, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) "lbt" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -15015,27 +14336,11 @@ }, /turf/open/floor/prison/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) -"lbU" = ( -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec/east) -"lbZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) -"lcb" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) +"lbL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco/east_disco) "lcm" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 @@ -15049,17 +14354,18 @@ /obj/item/stack/sandbags/large_stack, /turf/open/floor/prison/floor_plate/southwest, /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/whitepurple/northeast, +/area/fiorina/station/research_cells/west) "lcJ" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/prison/whitegreencorner/east, /area/fiorina/tumor/ice_lab) +"lcO" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) "ldd" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/stack/rods, @@ -15086,6 +14392,10 @@ /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) +"ldF" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/power_ring/reactor) "ldW" = ( /obj/item/stack/sandbags, /turf/open/floor/prison/kitchen, @@ -15106,6 +14416,12 @@ /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/yellow/east, +/area/fiorina/station/disco/east_disco) "leZ" = ( /obj/item/trash/cigbutt, /turf/open/floor/prison/whitegreenfull/southwest, @@ -15114,6 +14430,14 @@ /obj/structure/pipes/standard/manifold/visible, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"lfx" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) +"lfX" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "lge" = ( /turf/open/floor/prison/blue/northeast, /area/fiorina/station/civres_blue) @@ -15175,46 +14499,23 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzII) +"ljc" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/east) "ljd" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"ljr" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring/reactor) -"ljx" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/civres_blue) -"ljM" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/clothing/gloves/boxing/blue, -/obj/item/clothing/gloves/boxing/blue, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) -"ljO" = ( -/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/floor_plate, -/area/fiorina/station/power_ring/reactor) "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/showers_laundry) "lkr" = ( /turf/open/floor/prison/whitegreen/northwest, /area/fiorina/tumor/ice_lab) @@ -15244,13 +14545,16 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"lkR" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/showers_laundry) "lld" = ( /turf/open/floor/prison/red/west, /area/fiorina/station/security) +"llf" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) "lls" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -15276,27 +14580,6 @@ }, /turf/open/floor/prison/platingdmg3, /area/fiorina/station/security) -"llQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/almayer_hull, -/area/fiorina/oob) -"lml" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/space/basic, -/area/fiorina/oob) -"lmn" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/medbay) "lmu" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -15304,6 +14587,20 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) +"lmC" = ( +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) +"lmJ" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"lny" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "lnK" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/telecomm/lz1_tram) @@ -15318,6 +14615,10 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) +"low" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/greenblue/southwest, +/area/fiorina/station/botany) "loE" = ( /obj/structure/window/reinforced{ dir = 8 @@ -15336,12 +14637,6 @@ }, /turf/open/floor/prison/redfull, /area/fiorina/station/medbay) -"loX" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) "lpd" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/blue, @@ -15372,28 +14667,20 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) +"lpX" = ( +/obj/structure/machinery/door/airlock/prison/horizontal, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) +"lpZ" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "lqa" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"lqg" = ( -/obj/item/stool{ - pixel_x = -4; - pixel_y = 23 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/east) -"lqp" = ( -/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/whitepurple/northwest, -/area/fiorina/station/research_cells/west) "lqq" = ( /turf/open/floor/wood, /area/fiorina/station/chapel) @@ -15438,10 +14725,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) -"lrK" = ( -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison/blue/west, -/area/fiorina/station/power_ring/reactor) "lrV" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/faxmachine, @@ -15456,6 +14739,26 @@ /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 + }, +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec/showers_laundry) +"lsZ" = ( +/obj/item/tool/soap, +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells/west) "ltd" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/sterile_white/southwest, @@ -15476,18 +14779,13 @@ "ltA" = ( /turf/open/floor/prison/floorscorched1, /area/fiorina/tumor/aux_engi) -"ltC" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) "ltQ" = ( /turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/security) +"lud" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/space/basic, +/area/fiorina/oob) "luf" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal1" @@ -15498,10 +14796,22 @@ /obj/effect/spawner/random/tool, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) +"lur" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"lux" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) "luy" = ( /obj/item/trash/candle, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/maintenance) +"luR" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "luZ" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/whitegreenfull/southwest, @@ -15592,10 +14902,6 @@ }, /turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) -"lyc" = ( -/obj/item/roller, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "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."; @@ -15604,9 +14910,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"lyq" = ( -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/east) "lyJ" = ( /obj/item/tool/crowbar, /turf/open/floor/plating/prison, @@ -15622,6 +14925,11 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"lzm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "lzn" = ( /obj/structure/machinery/portable_atmospherics/canister/phoron, /turf/open/floor/corsat/squares, @@ -15634,10 +14942,13 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"lzx" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells/west) +"lzz" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/fancy/crayons, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells/east) "lzB" = ( /obj/structure/closet/crate/miningcar{ name = "\improper materials storage bin" @@ -15670,6 +14981,14 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) +"lAM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "lAN" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -15723,12 +15042,6 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"lCe" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) "lCl" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/stamp/captain, @@ -15744,17 +15057,14 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) +"lCG" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "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 - }, -/turf/open/space/basic, -/area/fiorina/oob) "lDG" = ( /obj/structure/machinery/computer/drone_control, /obj/structure/window/reinforced{ @@ -15767,6 +15077,10 @@ /obj/item/stack/cable_coil, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) +"lEd" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/west) "lEg" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/floor_plate, @@ -15779,16 +15093,6 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"lEp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer_hull, -/area/fiorina/station/medbay) "lEy" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -15824,6 +15128,10 @@ /obj/effect/landmark/corpsespawner/security/liaison, /turf/open/floor/wood, /area/fiorina/station/park) +"lFg" = ( +/obj/item/paper, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "lFm" = ( /obj/structure/bed/roller, /obj/item/trash/used_stasis_bag, @@ -15840,10 +15148,20 @@ /obj/item/stack/cable_coil, /turf/open/floor/prison, /area/fiorina/station/disco) +"lFB" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/west) "lFD" = ( /obj/item/tool/crowbar/red, /turf/open/floor/prison/darkbrown2/east, /area/fiorina/tumor/aux_engi) +"lFK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco/east_disco) "lFM" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, @@ -15881,13 +15199,21 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"lHT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 +"lHH" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) +"lHJ" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) "lIj" = ( /obj/structure/prop/ice_colony/surveying_device, /turf/open/floor/prison/blue/east, @@ -15906,18 +15232,6 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"lIl" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison/whitegreen/northeast, -/area/fiorina/tumor/ice_lab) "lIt" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -15947,10 +15261,30 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) +"lIG" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/research_cells/west) "lIH" = ( /obj/structure/machinery/processor, /turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) +"lIJ" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) +"lIN" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/servers) +"lJb" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/almayer_hull, +/area/fiorina/oob) "lJf" = ( /obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ layer = 2.6 @@ -15991,10 +15325,22 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"lLk" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison, +/area/fiorina/station/park) "lLE" = ( /obj/item/bedsheet/blue, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"lLN" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) "lLQ" = ( /turf/open/floor/prison, /area/fiorina/tumor/servers) @@ -16004,17 +15350,14 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"lMf" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/showers_laundry) "lMh" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"lMi" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/east) "lMq" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/microwave{ @@ -16023,14 +15366,40 @@ }, /turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) +"lMJ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"lMV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "lNc" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/redfull, /area/fiorina/station/security) +"lNf" = ( +/obj/item/inflatable, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec/showers_laundry) "lNv" = ( /obj/item/restraint/adjustable/cable/pink, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) +"lNC" = ( +/turf/open/floor/prison/yellowcorner, +/area/fiorina/station/lowsec/east) "lNP" = ( /obj/structure/bed/roller, /turf/open/floor/prison, @@ -16065,11 +15434,11 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) -"lPz" = ( -/obj/item/paper, -/obj/structure/inflatable/door, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) +"lOX" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/space/basic, +/area/fiorina/oob) "lPA" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison, @@ -16091,17 +15460,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison/darkbrown2/southwest, /area/fiorina/maintenance) -"lQL" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) -"lRe" = ( -/obj/item/bedsheet, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) "lRk" = ( /obj/item/stack/rods/plasteel, /turf/open/floor/prison/damaged3, @@ -16126,33 +15484,27 @@ /obj/structure/machinery/vending/snack, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"lSf" = ( -/obj/item/clothing/shoes/marine/upp/knife, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) -"lSo" = ( -/obj/structure/window/framed/prison/cell, +"lSj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 2; + icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' + }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells/west) -"lSS" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) -"lTg" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) +"lSq" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "lTp" = ( /obj/structure/sink{ pixel_y = 15 }, /turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) +"lTs" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/east) "lTW" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; @@ -16160,18 +15512,23 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"lUc" = ( -/obj/structure/largecrate/random/case, -/obj/item/storage/toolbox/emergency{ - pixel_y = 4 - }, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/west) "lUi" = ( /turf/closed/shuttle/ert{ icon_state = "stan23" }, /area/fiorina/tumor/ship) +"lUs" = ( +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "Straight" + }, +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells/basketball) "lUu" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -16181,25 +15538,18 @@ /obj/item/clothing/suit/storage/hazardvest, /turf/open/floor/corsat/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) -"lUM" = ( -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) -"lUR" = ( -/turf/open/floor/prison/damaged1/southwest, -/area/fiorina/station/lowsec/east) +"lUZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "lVA" = ( /turf/open/floor/prison/cell_stripe/east, /area/fiorina/lz/near_lzII) @@ -16214,6 +15564,16 @@ /obj/item/tool/soap/weyland_yutani, /turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) +"lWy" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "lXs" = ( /obj/item/book/manual/marine_law, /obj/item/book/manual/marine_law{ @@ -16225,26 +15585,6 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/maintenance) -"lXO" = ( -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform{ - dir = 1; - layer = 2.1 - }, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) -"lYd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco/east_disco) -"lYf" = ( -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco/east_disco) "lYj" = ( /obj/structure/sink{ pixel_y = 15 @@ -16254,10 +15594,6 @@ }, /turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) -"lYv" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "lZf" = ( /turf/closed/shuttle/elevator{ dir = 10 @@ -16275,6 +15611,9 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) +"lZp" = ( +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec/showers_laundry) "lZs" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -16290,6 +15629,12 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"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/east) "maA" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/prison/whitegreenfull/southwest, @@ -16298,16 +15643,6 @@ /obj/structure/prop/almayer/computers/sensor_computer2, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"mbe" = ( -/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/reactor) "mbg" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/plating_catwalk/prison, @@ -16326,18 +15661,25 @@ /obj/item/clipboard, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"mbQ" = ( -/obj/item/frame/rack, -/obj/structure/barricade/handrail/type_b{ - dir = 1 +"mbU" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/lowsec/east) +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/fiorina/station/power_ring) "mcr" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stock_parts/matter_bin/super, /turf/open/floor/wood, /area/fiorina/station/park) +"mcy" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/chapel) "mcH" = ( /turf/open/floor/prison/blue, /area/fiorina/tumor/servers) @@ -16346,14 +15688,6 @@ /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) -"mcW" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) "mdd" = ( /obj/item/storage/toolbox/electrical, /turf/open/floor/plating/prison, @@ -16397,13 +15731,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"mdJ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/fiorina/oob) "mdS" = ( /turf/open/floor/prison/greenbluecorner/west, /area/fiorina/station/botany) @@ -16429,17 +15756,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"mer" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco/east_disco) +"met" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"meE" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/east) "mfe" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/twohanded/sledgehammer{ @@ -16465,13 +15788,9 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) -"mgC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec/east) +"mgz" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "mgE" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 @@ -16485,9 +15804,6 @@ /obj/item/circuitboard/machine/rdserver, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"mhe" = ( -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) "mho" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -16495,9 +15811,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"mhp" = ( -/turf/open/floor/prison, -/area/fiorina/station/lowsec/east) "mhM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -16523,10 +15836,6 @@ }, /turf/open/floor/prison/yellow/northeast, /area/fiorina/station/central_ring) -"mjt" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/research_cells/west) "mju" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/prison/floor_plate/southwest, @@ -16534,17 +15843,29 @@ "mjx" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) -"mjB" = ( -/obj/structure/platform, -/turf/open/gm/river/pool, -/area/fiorina/station/park) -"mjG" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) +"mjW" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/space, +/area/fiorina/oob) +"mke" = ( +/obj/item/tool/wirecutters, +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "mkn" = ( /turf/open/floor/prison/darkyellow2/southeast, /area/fiorina/station/power_ring) +"mkr" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) "mkI" = ( /obj/structure/machinery/microwave{ desc = "So uh yeah, about that cat..."; @@ -16572,6 +15893,13 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/disco) +"mlE" = ( +/turf/open/floor/prison/yellowcorner, +/area/fiorina/station/lowsec/showers_laundry) +"mlG" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "mlU" = ( /obj/structure/machinery/shower{ pixel_y = 13 @@ -16609,6 +15937,10 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/fiberbush) +"mns" = ( +/obj/item/stool, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/east) "mny" = ( /turf/closed/wall/prison, /area/fiorina/station/flight_deck) @@ -16620,13 +15952,6 @@ /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) -"mof" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; - name = "\improper Fiorina Purple Block Canteen Vendor" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) "mok" = ( /obj/structure/closet/crate/bravo, /obj/item/stack/sheet/metal/medium_stack, @@ -16636,10 +15961,23 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"mom" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/surgicaldrill, +/turf/open/floor/prison/yellowcorner, +/area/fiorina/station/lowsec/showers_laundry) "moK" = ( /obj/item/clothing/under/shorts/red, /turf/open/floor/prison/yellowfull, /area/fiorina/station/central_ring) +"moQ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/east) "moW" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/plating/prison, @@ -16654,25 +15992,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzII) -"mpj" = ( -/obj/item/tool/soap, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) -"mpB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/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) "mpE" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -16684,22 +16003,21 @@ /obj/item/stock_parts/manipulator/pico, /turf/open/floor/prison/darkpurple2/east, /area/fiorina/tumor/servers) -"mpY" = ( -/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) +"mpR" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "mqB" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/red, /area/fiorina/station/security) +"mqF" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "mqJ" = ( /obj/structure/barricade/metal/wired{ dir = 8 @@ -16707,14 +16025,14 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"mqL" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "mqM" = ( /obj/item/stack/sandbags_empty/half, /turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/flight_deck) -"mqS" = ( -/obj/item/trash/barcardine, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) "mrk" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -16722,6 +16040,11 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"mrG" = ( +/obj/structure/extinguisher_cabinet, +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco/east_disco) "mrI" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med, /turf/closed/wall/prison, @@ -16730,18 +16053,20 @@ /obj/structure/closet/secure_closet/medical2, /turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) +"mrP" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"mrW" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "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/whitegreen, -/area/fiorina/tumor/ice_lab) "msj" = ( /obj/item/toy/crayon/orange, /turf/open/floor/plating/prison, @@ -16764,15 +16089,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"msG" = ( -/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/darkpurplefull2, -/area/fiorina/station/research_cells/east) "msH" = ( /obj/item/tool/surgery/cautery, /turf/open/floor/prison/yellow/west, @@ -16795,6 +16111,10 @@ "mtG" = ( /turf/open/floor/prison/darkbrowncorners2, /area/fiorina/station/park) +"mtM" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/space, +/area/fiorina/oob) "mtP" = ( /obj/structure/window/reinforced{ dir = 8; @@ -16802,6 +16122,13 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"mue" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "muD" = ( /obj/structure/tunnel, /turf/open/organic/grass/astroturf, @@ -16812,12 +16139,18 @@ }, /turf/open/floor/prison/whitegreen/north, /area/fiorina/tumor/ice_lab) -"mvh" = ( -/turf/open/floor/prison/floor_marked/west, -/area/fiorina/station/lowsec/showers_laundry) +"mvl" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "mvp" = ( /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) +"mvt" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) "mvF" = ( /obj/structure/monorail{ name = "launch track" @@ -16828,29 +16161,30 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"mvV" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreen/east, -/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/darkbrownfull2, /area/fiorina/tumor/aux_engi) -"mwh" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 +"mwi" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"mwu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c10, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 }, /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) "mwK" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -16866,10 +16200,12 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"mwX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) +"mwP" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec/east) "mxc" = ( /obj/effect/spawner/random/tool, /turf/open/floor/prison, @@ -16888,6 +16224,11 @@ /obj/effect/spawner/gibspawner/human, /turf/open/gm/river/darkred_pool, /area/fiorina/station/park) +"mxN" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/space/basic, +/area/fiorina/oob) "mxQ" = ( /turf/closed/wall/prison, /area/fiorina/station/power_ring) @@ -16916,14 +16257,6 @@ /obj/structure/barricade/handrail/type_b, /turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) -"myC" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells/west) "myH" = ( /obj/item/storage/briefcase, /turf/open/floor/prison/greenfull/northwest, @@ -16942,20 +16275,6 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison/whitegreen/southwest, /area/fiorina/tumor/ice_lab) -"myS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) -"mzm" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/east) "mzn" = ( /obj/item/frame/firstaid_arm_assembly, /turf/open/floor/prison/bluefull, @@ -16994,16 +16313,6 @@ "mAt" = ( /turf/open/floor/prison/greenbluecorner, /area/fiorina/station/botany) -"mAE" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) "mAK" = ( /obj/structure/sign/poster{ desc = "Hubba hubba."; @@ -17050,19 +16359,14 @@ /obj/structure/prop/resin_prop, /turf/open/floor/plating/prison, /area/fiorina/station/park) +"mCF" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/lowsec/showers_laundry) "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, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) "mDn" = ( /turf/open/floor/prison/green/northeast, /area/fiorina/tumor/servers) @@ -17079,6 +16383,18 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) +"mDC" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"mDG" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/power_ring) "mDS" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -17112,14 +16428,6 @@ /obj/item/device/flashlight/on, /turf/open/floor/prison/darkbrowncorners2/north, /area/fiorina/tumor/aux_engi) -"mFi" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) -"mFt" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/east) "mFS" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/prison/floor_plate, @@ -17134,14 +16442,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"mGN" = ( -/obj/structure/platform{ - dir = 8 - }, -/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/floor_plate, @@ -17173,18 +16473,13 @@ /obj/item/frame/rack, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"mIf" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +"mIr" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/servers) -"mIn" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison/bluecorner/west, -/area/fiorina/station/power_ring/reactor) +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "mIu" = ( /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/plating/prison, @@ -17196,13 +16491,6 @@ }, /turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) -"mJb" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/fuel_cell, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) "mJc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison/floor_plate, @@ -17228,6 +16516,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"mJp" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) "mJq" = ( /obj/item/trash/kepler, /turf/open/floor/plating/prison, @@ -17236,13 +16531,23 @@ /obj/item/device/flashlight/flare/on, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"mJO" = ( -/obj/structure/ice/thin/indestructible{ - icon_state = "Straight" +"mKa" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) +"mKd" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec/showers_laundry) +"mKh" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells/basketball) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "mKo" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/close, @@ -17255,26 +16560,6 @@ "mKx" = ( /turf/open/floor/prison/blue_plate, /area/fiorina/station/botany) -"mKS" = ( -/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, -/area/fiorina/oob) -"mLm" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) "mLL" = ( /obj/item/tool/mop, /turf/open/floor/prison/floor_plate, @@ -17336,45 +16621,19 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"mNX" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/bible/hefa, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/west) +"mOc" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "mOf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/plastic, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"mOm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, +"mOI" = ( +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) -"mOr" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/east) -"mOE" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/bright_clean_marked/southwest, -/area/fiorina/station/power_ring) +/area/fiorina/station/lowsec/showers_laundry) "mOU" = ( /obj/structure/barricade/handrail/type_b{ dir = 4 @@ -17449,6 +16708,10 @@ }, /turf/open/space, /area/fiorina/oob) +"mRR" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "mRS" = ( /turf/open/floor/prison/darkpurple2/northeast, /area/fiorina/station/central_ring) @@ -17465,9 +16728,6 @@ /obj/item/weapon/gun/rifle/m16, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"mSF" = ( -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/lowsec/showers_laundry) "mSP" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/floor/prison, @@ -17476,6 +16736,18 @@ /obj/effect/alien/weeds/node, /turf/open/floor/prison/darkbrown2, /area/fiorina/tumor/aux_engi) +"mTa" = ( +/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/station/research_cells/basketball) "mTl" = ( /obj/item/storage/box/gloves, /turf/open/floor/prison/greenfull/northwest, @@ -17486,16 +16758,17 @@ }, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"mTH" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec/east) "mTM" = ( /obj/item/tool/warning_cone, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"mUd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/east) "mUA" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, @@ -17542,6 +16815,9 @@ /obj/structure/largecrate/random, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/telecomm/lz1_tram) +"mVE" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells/east) "mVO" = ( /obj/item/tool/extinguisher, /turf/open/floor/prison, @@ -17549,12 +16825,6 @@ "mVY" = ( /turf/open/floor/prison/damaged2/southwest, /area/fiorina/station/security) -"mWj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) "mWs" = ( /obj/structure/prop/souto_land/streamer{ dir = 6 @@ -17575,12 +16845,6 @@ /obj/item/stack/rods, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"mWX" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) "mWY" = ( /obj/item/coin/uranium{ anchored = 1; @@ -17595,12 +16859,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"mXC" = ( -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec/showers_laundry) -"mXM" = ( -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring/reactor) "mXS" = ( /obj/structure/closet/secure_closet/guncabinet{ req_access = null @@ -17617,10 +16875,11 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) -"mYA" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/research_cells/west) +"mYz" = ( +/obj/structure/platform/metal/almayer/east, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) "mYG" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ship) @@ -17628,6 +16887,15 @@ /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 + }, +/obj/effect/spawner/random/gun/smg/lowchance, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "mZH" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -17638,8 +16906,13 @@ "naf" = ( /turf/closed/shuttle/ert, /area/fiorina/oob) -"naU" = ( -/turf/open/floor/prison/yellowcorner/north, +"naj" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"naI" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec/showers_laundry) "naW" = ( /turf/closed/wall/r_wall/prison, @@ -17648,23 +16921,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"nbD" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) "nbP" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) -"nbY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - icon = 'icons/obj/structures/doors/2x1prepdoor.dmi' - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "ncb" = ( /turf/open/floor/prison/darkyellow2/southeast, /area/fiorina/lz/near_lzI) @@ -17712,13 +16972,19 @@ /obj/effect/spawner/random/pills/lowchance, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"ndo" = ( -/turf/closed/wall/prison, -/area/fiorina/station/power_ring/reactor) +"ndC" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) "ndD" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) +"ndQ" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells/east) "ndZ" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" @@ -17738,10 +17004,6 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"nem" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "nez" = ( /obj/item/ammo_casing{ dir = 6; @@ -17783,22 +17045,12 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) -"nfi" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "nfu" = ( /obj/effect/decal/medical_decals{ icon_state = "cryomid" }, /turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) -"nfA" = ( -/obj/structure/platform, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) "nfF" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -17816,42 +17068,35 @@ name = "synthetic vegetation" }, /area/fiorina/station/civres_blue) +"ngg" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring/reactor) "ngn" = ( /obj/structure/machinery/deployable/barrier, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"ngq" = ( -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/east) -"ngX" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec/showers_laundry) -"nhi" = ( -/obj/structure/machinery/shower{ +"ngo" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/barricade/handrail{ dir = 1; - pixel_y = -1 + icon_state = "hr_kutjevo"; + name = "solar lattice" }, +/turf/open/space, +/area/fiorina/oob) +"ngF" = ( +/obj/item/device/flashlight/lamp/tripod, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) -"nhm" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison/whitepurple/southeast, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells/west) -"nho" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) +"nhm" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "nhM" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -17889,6 +17134,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"niw" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) +"niZ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform_decoration/metal/almayer/northwest, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "njg" = ( /obj/effect/spawner/random/gun/rifle/lowchance, /turf/open/floor/prison/darkyellow2/west, @@ -17938,6 +17195,19 @@ }, /turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) +"nkg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) +"nkw" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco/east_disco) "nkF" = ( /turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/park) @@ -17960,28 +17230,35 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) +"nlT" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"nlX" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells/east) "nmh" = ( /obj/structure/window{ dir = 1 }, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"nmq" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/yellow, -/area/fiorina/station/disco/east_disco) -"nmx" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/obj/structure/machinery/light/double/blue{ +"nmi" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ dir = 1; - pixel_y = 21 + icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' }, -/turf/open/floor/prison/darkredfull2, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/research_cells/west) +"nmm" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) "nmy" = ( /obj/structure/machinery/space_heater, /turf/open/floor/prison/sterile_white/southwest, @@ -17996,25 +17273,15 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"nmM" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) "nmT" = ( /obj/item/toy/crayon/blue, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"nmZ" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) -"nnf" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +"nnr" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/prison/yellow/southwest, +/turf/open/floor/plating/prison, /area/fiorina/station/disco/east_disco) "nny" = ( /obj/structure/surface/table/reinforced/prison, @@ -18026,24 +17293,6 @@ /obj/effect/spawner/random/tool, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"nnD" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/research_cells/west) -"nnG" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) "noa" = ( /obj/structure/largecrate/supply/supplies/plasteel, /turf/open/floor/plating/prison, @@ -18059,12 +17308,6 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"noz" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) "npx" = ( /obj/structure/barricade/handrail/type_b{ dir = 4; @@ -18072,9 +17315,6 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) -"nqg" = ( -/turf/open/floor/prison/whitepurplecorner/east, -/area/fiorina/station/research_cells/east) "nqL" = ( /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner, @@ -18084,16 +17324,6 @@ "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 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) "nre" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, @@ -18121,6 +17351,13 @@ /obj/structure/medical_supply_link, /turf/open/floor/prison/sterile_white/southwest, /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/west) "nsD" = ( /obj/structure/prop/structure_lattice{ dir = 4; @@ -18136,39 +17373,43 @@ "ntc" = ( /turf/open/floor/prison/green/east, /area/fiorina/tumor/civres) +"nte" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) "ntf" = ( /obj/item/implanter/compressed, /obj/structure/safe, /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/redfull, /area/fiorina/station/security) +"ntv" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) "ntw" = ( /turf/open/floor/prison/cell_stripe/west, /area/fiorina/lz/near_lzI) +"ntx" = ( +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/disco/east_disco) "ntE" = ( /obj/structure/barricade/handrail/type_b, /turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) -"ntH" = ( -/obj/structure/ice/thin/indestructible{ - dir = 8; - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform{ - dir = 1; - layer = 2.1 - }, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) "ntM" = ( /obj/structure/machinery/space_heater, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"ntQ" = ( -/obj/effect/spawner/random/goggles/midchance, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) +"ntW" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/autolathe/full{ + layer = 2.98 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "ntZ" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -18188,11 +17429,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) -"nuf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "nuo" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison/floor_plate, @@ -18207,14 +17443,6 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"nuX" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) "nvi" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -18225,15 +17453,13 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/bluecorner/north, /area/fiorina/station/chapel) -"nvs" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" +"nvx" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "nvD" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/botany) @@ -18246,13 +17472,28 @@ /turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) "nvZ" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells/east) +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "nwv" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison/darkbrown2/west, /area/fiorina/tumor/aux_engi) +"nwA" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) "nwS" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/prison/darkyellowfull2/east, @@ -18284,6 +17525,9 @@ }, /turf/open/floor/prison, /area/fiorina/station/chapel) +"nxC" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/power_ring/reactor) "nxW" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 @@ -18302,22 +17546,16 @@ /obj/item/clothing/gloves/latex, /turf/open/floor/prison/redfull, /area/fiorina/station/medbay) -"nyq" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) "nyC" = ( /obj/item/stack/rods/plasteel, /turf/open/floor/prison/floorscorched2, /area/fiorina/station/security) -"nyG" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 +"nyF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco/east_disco) "nyO" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -18326,16 +17564,6 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"nyS" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/tool/extinguisher/mini, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) "nzf" = ( /obj/structure/machinery/processor, /obj/effect/decal/cleanable/blood{ @@ -18370,9 +17598,6 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/maintenance) -"nAc" = ( -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells/east) "nAf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/marine_law{ @@ -18383,6 +17608,17 @@ "nAm" = ( /turf/open/floor/prison/yellow/east, /area/fiorina/lz/near_lzII) +"nAs" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) +"nAK" = ( +/turf/open/floor/prison/yellowcorner/north, +/area/fiorina/station/lowsec/showers_laundry) +"nAV" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/power_ring/reactor) "nBb" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -18423,6 +17659,18 @@ /obj/item/stack/rods, /turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) +"nCS" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) "nCV" = ( /obj/item/ammo_casing{ icon_state = "casing_7_1" @@ -18432,13 +17680,6 @@ "nCX" = ( /turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"nDg" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) "nDq" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison/floor_plate, @@ -18452,15 +17693,12 @@ /turf/open/floor/plating/prison, /area/fiorina/station/medbay) "nDu" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - dir = 4 +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) -"nDx" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec/east) "nDI" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/prison/floor_plate, @@ -18473,14 +17711,21 @@ /obj/item/device/flashlight, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) -"nEE" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "nEI" = ( /obj/structure/machinery/deployable/barrier, /turf/open/floor/prison, /area/fiorina/station/security) +"nEN" = ( +/obj/item/clothing/glasses/material, +/obj/structure/barricade/handrail, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) +"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/reactor) "nEW" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ @@ -18488,9 +17733,6 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) -"nFa" = ( -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells/east) "nFb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/cigarettes/emeraldgreen, @@ -18516,13 +17758,36 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"nFP" = ( -/turf/open/floor/prison/sterile_white/west, -/area/fiorina/station/lowsec/east) +"nGf" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "nGy" = ( /obj/item/newspaper, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"nGB" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco/east_disco) +"nGO" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco/east_disco) +"nGV" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells/west) "nGZ" = ( /turf/open/floor/prison, /area/fiorina/lz/near_lzI) @@ -18568,38 +17833,31 @@ }, /turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) -"nJq" = ( -/obj/structure/platform{ - dir = 1 +"nIJ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"nIU" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) "nJu" = ( /obj/item/stack/rods, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"nJF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) "nJT" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) -"nKl" = ( -/obj/structure/platform{ +"nKf" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/gm/river/desert/deep, -/area/fiorina/lz/near_lzII) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring/reactor) "nKo" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/microwave{ @@ -18624,10 +17882,18 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"nLv" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) +"nKZ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"nLO" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/east) "nLS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/saltshaker{ @@ -18665,16 +17931,6 @@ "nMp" = ( /turf/open/floor/prison/greenblue/east, /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/whitegreenfull/southwest, -/area/fiorina/station/central_ring) "nMI" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -18697,12 +17953,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"nNy" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "nNJ" = ( /obj/structure/surface/rack, /turf/open/floor/plating/prison, @@ -18754,13 +18004,6 @@ /obj/item/clothing/glasses/gglasses, /turf/open/space, /area/fiorina/oob) -"nPn" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells/west) "nPA" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -18807,9 +18050,6 @@ /obj/item/tool/kitchen/knife/butcher, /turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) -"nRl" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/disco/east_disco) "nRQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/saltshaker{ @@ -18822,52 +18062,13 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /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 - }, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/station/medbay) "nRU" = ( /obj/structure/closet/emcloset, /turf/open/floor/prison/whitegreen/southeast, /area/fiorina/station/medbay) -"nRW" = ( -/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" - }, -/obj/item/prop/helmetgarb/flair_initech, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"nSa" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison, +"nSx" = ( +/turf/closed/wall/r_wall/prison, /area/fiorina/station/disco/east_disco) -"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) "nSS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/dropper, @@ -18901,6 +18102,9 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) +"nUh" = ( +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec/east) "nUm" = ( /obj/structure/barricade/wooden, /turf/open/floor/prison/floor_plate, @@ -18930,25 +18134,29 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"nUG" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco/east_disco) "nUJ" = ( /obj/effect/spawner/random/technology_scanner, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"nUP" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) "nUS" = ( /obj/structure/machinery/computer3/server/rack, /turf/open/floor/prison/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/whitepurple/southeast, +/area/fiorina/station/research_cells/west) +"nVE" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) +"nVK" = ( +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/east) "nVN" = ( /obj/item/trash/cigbutt, /turf/open/floor/prison/floor_plate, @@ -19009,9 +18217,6 @@ /obj/item/weapon/gun/smg/mp5, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"nXL" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/disco/east_disco) "nXX" = ( /obj/item/stack/medical/bruise_pack, /turf/open/floor/prison, @@ -19032,26 +18237,10 @@ /obj/item/tool/wrench, /turf/open/floor/prison/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" - }, -/turf/open/space/basic, -/area/fiorina/oob) -"nZk" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, +"nYQ" = ( +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) +/area/fiorina/station/power_ring) "nZB" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) @@ -19076,22 +18265,14 @@ "oaa" = ( /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) -"oah" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco/east_disco) +"oaD" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) "obh" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/prison, /area/fiorina/station/security) -"oby" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/fiorina/station/botany) "obz" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/plating/prison, @@ -19106,6 +18287,14 @@ }, /turf/closed/wall/prison, /area/fiorina/tumor/civres) +"obQ" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) "occ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/lime{ @@ -19133,10 +18322,16 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"ocA" = ( -/obj/structure/closet/wardrobe/orange, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) +"ocW" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space, +/area/fiorina/oob) "ode" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -19159,6 +18354,17 @@ "odC" = ( /turf/open/floor/prison/platingdmg1, /area/fiorina/tumor/civres) +"odQ" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/east) +"oeh" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec/east) "oer" = ( /turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) @@ -19203,19 +18409,6 @@ /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/power/north, /turf/open/floor/plating/plating_catwalk/prison, @@ -19226,6 +18419,10 @@ }, /turf/open/floor/prison/whitegreen/northeast, /area/fiorina/station/medbay) +"ogc" = ( +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) "ogf" = ( /obj/structure/monorail{ name = "launch track" @@ -19240,26 +18437,18 @@ /obj/item/clothing/head/helmet/marine/veteran/ua_riot, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"ohd" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - layer = 2.97; - pixel_y = -14 - }, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco/east_disco) "ohl" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/darkpurple2/north, /area/fiorina/station/central_ring) +"oht" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) "ohx" = ( /obj/item/tool/match, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"ohF" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/closed/wall/mineral/bone_resin, -/area/fiorina/tumor/ice_lab) "ohY" = ( /obj/item/circuitboard/machine/pacman/super, /obj/structure/machinery/constructable_frame{ @@ -19333,9 +18522,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"oka" = ( -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells/east) "okg" = ( /obj/structure/barricade/handrail/type_b{ dir = 1 @@ -19352,10 +18538,74 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"okR" = ( -/obj/effect/decal/cleanable/blood/gibs/robot/limb, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells/east) +"okF" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/ice/thin/indestructible, +/obj/structure/prop/invuln{ + desc = "The underside softly pulses."; + dir = 4; + icon = 'icons/mob/xenos/xenonid_crab.dmi'; + icon_state = "facehugger_thrown"; + layer = 2.5; + name = "frozen creature"; + pixel_x = -22; + pixel_y = -10 + }, +/obj/structure/prop/invuln{ + desc = "The underside softly pulses."; + dir = 4; + icon = 'icons/mob/xenos/xenonid_crab.dmi'; + icon_state = "facehugger_thrown"; + layer = 2.5; + name = "frozen creature"; + pixel_x = 22; + pixel_y = 8 + }, +/obj/structure/prop/invuln{ + desc = "The underside softly pulses."; + dir = 4; + icon = 'icons/mob/xenos/xenonid_crab.dmi'; + icon_state = "facehugger_thrown"; + layer = 2.5; + name = "frozen creature"; + pixel_x = -22; + pixel_y = 8 + }, +/obj/structure/prop/invuln{ + desc = "The underside softly pulses."; + dir = 4; + icon = 'icons/mob/xenos/xenonid_crab.dmi'; + icon_state = "facehugger_thrown"; + layer = 2.5; + name = "frozen creature"; + pixel_x = 22; + pixel_y = -10 + }, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells/basketball) +"okG" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) +"okJ" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells/west) +"okQ" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/fiorina/station/power_ring) "okT" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, @@ -19398,6 +18648,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) +"olB" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) "omb" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/guestpass, @@ -19420,19 +18677,10 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"omN" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) "omO" = ( /obj/structure/barricade/wooden, /turf/open/floor/prison/cell_stripe, /area/fiorina/station/medbay) -"omS" = ( -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec/east) "onb" = ( /obj/structure/bed/chair{ dir = 8 @@ -19453,12 +18701,6 @@ }, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"ont" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) "onB" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/multitool, @@ -19470,18 +18712,12 @@ }, /turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) -"onY" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) -"ooc" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"onW" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells/west) "oou" = ( /obj/structure/closet/emcloset, /obj/item/clothing/head/cmcap{ @@ -19493,16 +18729,36 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) +"oox" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring/reactor) "ooF" = ( /obj/structure/machinery/power/apc/power/south, /turf/open/floor/wood, /area/fiorina/station/park) +"ooO" = ( +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) +"ope" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) "oph" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/bottle/holywater, /obj/item/reagent_container/food/drinks/bottle/holywater, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) +"opj" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec/east) "opM" = ( /obj/structure/bed/chair, /turf/open/floor/prison/bluefull, @@ -19534,12 +18790,6 @@ /obj/effect/spawner/random/tool, /turf/open/floor/prison/green/west, /area/fiorina/station/chapel) -"orB" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple2, -/area/fiorina/tumor/servers) "orC" = ( /obj/structure/machinery/vending/sovietsoda, /turf/open/floor/prison/greenfull/northwest, @@ -19556,12 +18806,18 @@ /obj/item/tool/weldingtool, /turf/open/auto_turf/sand/layer1, /area/fiorina/tumor/civres) -"osv" = ( -/obj/structure/platform_decoration{ - dir = 1 +"osu" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/turf/open/floor/prison/darkbrowncorners2/west, -/area/fiorina/station/park) +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) +"osN" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/prison, +/area/fiorina/station/lowsec/showers_laundry) "osQ" = ( /obj/structure/bed{ icon_state = "abed" @@ -19569,6 +18825,14 @@ /obj/item/bedsheet/green, /turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) +"osS" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "osX" = ( /obj/structure/cable/heavyduty{ icon_state = "0-4" @@ -19601,6 +18865,10 @@ "otK" = ( /turf/open/floor/prison/floor_marked/west, /area/fiorina/tumor/servers) +"otS" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) "ouH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/med_data/laptop{ @@ -19608,17 +18876,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"ouP" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) -"ove" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) +"ovb" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "ovk" = ( /obj/effect/spawner/random/tool, /turf/open/floor/prison/whitegreencorner/east, @@ -19639,6 +18900,10 @@ }, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) +"owc" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco/east_disco) "owd" = ( /obj/item/storage/backpack/souto, /turf/open/floor/prison, @@ -19647,16 +18912,24 @@ /obj/effect/landmark/static_comms/net_two, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) -"oxp" = ( -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 +"owz" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/greenblue/southeast, +/area/fiorina/station/botany) +"owI" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/chapel) +"owS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells/west) "oxv" = ( /obj/effect/alien/weeds/node, /turf/open/floor/prison/floor_plate, @@ -19670,6 +18943,14 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) +"oxR" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/tumor/servers) "oxS" = ( /obj/item/paper/crumpled/bloody, /turf/open/floor/prison/chapel_carpet/doubleside, @@ -19681,26 +18962,16 @@ /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, /turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) -"oyA" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/prison, -/area/fiorina/station/disco/east_disco) +"oyy" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/west) "oyC" = ( /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/wood, @@ -19712,14 +18983,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"oyO" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/bright_clean_marked/southwest, -/area/fiorina/station/power_ring) "oyS" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison, @@ -19734,6 +18997,11 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"ozB" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/space, +/area/fiorina/oob) "ozC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; @@ -19751,39 +19019,45 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"oAl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring/reactor) -"oAH" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco/east_disco) +"oBc" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "oBj" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"oBC" = ( +/obj/structure/ice/thin/indestructible{ + dir = 4; + icon_state = "Corner" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells/basketball) "oCe" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/park) "oCf" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec/showers_laundry) -"oCn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, /turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"oCH" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison, /area/fiorina/station/park) +"oCM" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco/east_disco) "oDe" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, @@ -19806,6 +19080,14 @@ /obj/item/stack/rods, /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 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "oDV" = ( /obj/item/stack/rods, /turf/open/floor/prison/whitegreen/west, @@ -19823,22 +19105,16 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) -"oEu" = ( -/obj/structure/platform_decoration, -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) -"oEC" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "oED" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"oEE" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/gm/river/desert/deep, +/area/fiorina/lz/near_lzII) "oEH" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -19875,15 +19151,6 @@ }, /turf/open/floor/prison/greenblue, /area/fiorina/station/botany) -"oEY" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/combat, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) "oFf" = ( /obj/item/reagent_container/food/drinks/cans/aspen, /turf/open/floor/prison/floor_plate, @@ -19929,16 +19196,6 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison/darkbrown2/east, /area/fiorina/tumor/aux_engi) -"oGy" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) "oGR" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 @@ -19952,13 +19209,14 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"oGZ" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/floor_plate/southwest, +"oHe" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/wood, +/area/fiorina/station/park) +"oHi" = ( +/obj/item/stool, +/turf/open/floor/prison, /area/fiorina/station/disco/east_disco) -"oHl" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) "oHm" = ( /turf/open/floor/prison/darkbrown2/northeast, /area/fiorina/tumor/aux_engi) @@ -19970,18 +19228,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"oIq" = ( -/obj/structure/ice/thin/indestructible{ - dir = 1; - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform{ - dir = 1; - layer = 2.1 - }, -/turf/open/ice/noweed, -/area/fiorina/tumor/ice_lab) "oIz" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical/green, @@ -20037,14 +19283,17 @@ /obj/item/stack/sandbags/large_stack, /turf/open/floor/prison/green/southeast, /area/fiorina/tumor/civres) -"oKf" = ( -/obj/structure/stairs/perspective{ +"oKn" = ( +/obj/structure/holohoop{ dir = 4; - icon_state = "p_stair_full" + id = "basketball"; + side = "left" }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) "oKq" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/prison, @@ -20053,6 +19302,9 @@ /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, /turf/open/floor/corsat/plate, /area/fiorina/station/civres_blue) +"oLE" = ( +/turf/open/floor/prison, +/area/fiorina/station/lowsec/showers_laundry) "oLF" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/darkbrown2, @@ -20066,6 +19318,11 @@ /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/bluecorner, +/area/fiorina/station/power_ring/reactor) "oMf" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison/floor_plate, @@ -20074,22 +19331,51 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/fiorina/station/park) +"oMw" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/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/whitepurple/northeast, +/area/fiorina/station/research_cells/west) +"oMI" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibup1" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"oMW" = ( +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec/showers_laundry) +"oNn" = ( +/obj/structure/platform/metal/almayer, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) "oNu" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.4 }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"oOg" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/platform_decoration{ - dir = 8 +"oNx" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) +"oNC" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "oOh" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -20105,14 +19391,6 @@ /obj/effect/decal/hefa_cult_decals/d32, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/maintenance) -"oOk" = ( -/obj/structure/platform, -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) "oOp" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; @@ -20124,6 +19402,14 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) +"oOU" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "oOV" = ( /obj/structure/machinery/filtration/console{ pixel_y = 22 @@ -20134,10 +19420,14 @@ /obj/structure/bed/roller, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"oPK" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) +"oPH" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco/east_disco) +"oPN" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) "oPR" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) @@ -20152,10 +19442,14 @@ /obj/structure/inflatable/popped, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"oQy" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) +"oQp" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring/reactor) "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."; @@ -20165,30 +19459,30 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"oQS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco/east_disco) "oRg" = ( /turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_cargo) -"oRL" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) "oRR" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/fiorina/station/park) +"oSn" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec/showers_laundry) "oSz" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/floor/prison/yellow/northwest, /area/fiorina/station/disco) -"oSU" = ( -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco/east_disco) "oTa" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/plastic, @@ -20201,6 +19495,13 @@ "oTi" = ( /turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) +"oTx" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/bright_clean2/southwest, +/area/fiorina/station/power_ring/reactor) "oTy" = ( /obj/structure/prop/structure_lattice{ health = 300 @@ -20221,32 +19522,19 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/civres_blue) +"oTL" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec/showers_laundry) "oTP" = ( /turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/station/telecomm/lz1_tram) -"oTS" = ( -/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) -"oTT" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/park) "oUg" = ( /turf/closed/wall/prison, /area/fiorina/station/telecomm/lz1_cargo) -"oUF" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/blue/northeast, -/area/fiorina/station/power_ring/reactor) "oUP" = ( /obj/structure/lattice, /obj/effect/landmark/nightmare{ @@ -20261,6 +19549,10 @@ "oWw" = ( /turf/open/floor/prison/darkbrowncorners2/east, /area/fiorina/station/park) +"oWC" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco/east_disco) "oWF" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, @@ -20296,15 +19588,6 @@ /obj/item/reagent_container/food/drinks/cans/aspen, /turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) -"oXI" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "oXR" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -20346,6 +19629,12 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) +"oYX" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/tumor/ice_lab) "oZf" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -20355,6 +19644,10 @@ /obj/item/clothing/under/color/orange, /turf/open/floor/prison, /area/fiorina/station/security) +"oZj" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "oZk" = ( /turf/open/floor/prison/darkpurple2/southwest, /area/fiorina/tumor/ice_lab) @@ -20365,12 +19658,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"oZy" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) "oZz" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/eastright, @@ -20386,6 +19673,10 @@ /obj/item/clipboard, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"oZU" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "pab" = ( /obj/item/tool/weldpack{ pixel_x = 6 @@ -20402,6 +19693,17 @@ }, /turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) +"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" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) +"pak" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "paF" = ( /obj/item/tool/shovel/etool, /turf/open/floor/prison/floor_plate, @@ -20419,6 +19721,10 @@ }, /turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) +"pbo" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) "pbp" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, /turf/open/floor/corsat/plate, @@ -20434,20 +19740,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) -"pbV" = ( -/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 - }, -/turf/open/space, -/area/fiorina/oob) "pbX" = ( /turf/open/floor/prison/red, /area/fiorina/station/security) @@ -20458,9 +19750,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"pco" = ( -/turf/open/floor/prison/whitepurplecorner/west, -/area/fiorina/station/research_cells/east) "pcu" = ( /turf/open/floor/almayer_hull, /area/fiorina/oob) @@ -20470,6 +19759,17 @@ /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, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) +"pdq" = ( +/obj/vehicle/powerloader, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) "pdB" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -20489,31 +19789,16 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"pdR" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "pdX" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "lavendergrass_1" }, /turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) -"pei" = ( -/obj/item/stool, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "pen" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/prison/green, /area/fiorina/station/transit_hub) -"pes" = ( -/turf/closed/wall/prison, -/area/fiorina/station/disco/east_disco) -"pex" = ( -/obj/item/stool, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec/showers_laundry) "peA" = ( /obj/structure/machinery/computer/communications{ dir = 4; @@ -20528,13 +19813,6 @@ }, /turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) -"pfG" = ( -/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/reactor) "pgb" = ( /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/ice_lab) @@ -20552,6 +19830,10 @@ /obj/structure/girder, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"pho" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "phz" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) @@ -20559,31 +19841,22 @@ /obj/item/newspaper, /turf/open/floor/prison/whitegreen/north, /area/fiorina/tumor/ice_lab) -"phM" = ( +"pim" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) -"phQ" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/redfull, +/area/fiorina/station/lowsec/east) +"piC" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/closed/wall/mineral/bone_resin, +/area/fiorina/tumor/ice_lab) +"piV" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison/whitegreen/west, /area/fiorina/tumor/ice_lab) -"pik" = ( -/turf/open/floor/prison/yellowcorner/north, -/area/fiorina/station/lowsec/east) -"piw" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/structure/platform{ - dir = 4 - }, -/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, @@ -20592,12 +19865,6 @@ "pjg" = ( /turf/open/floor/prison/green/northwest, /area/fiorina/tumor/servers) -"pjn" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells/west) "pjE" = ( /obj/structure/filingcabinet/filingcabinet{ pixel_x = 8 @@ -20647,12 +19914,6 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"plB" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco/east_disco) "plK" = ( /turf/closed/wall/prison, /area/fiorina/station/security/wardens) @@ -20660,11 +19921,6 @@ /obj/structure/foamed_metal, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"pmf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) "pmn" = ( /obj/structure/surface/rack, /obj/item/poster, @@ -20692,50 +19948,36 @@ "pnh" = ( /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/tumor/servers) +"pnn" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "pnx" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"pnC" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/stool{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/prison/yellowfull, +"pnP" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec/east) "pnS" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) -"poR" = ( -/obj/structure/machinery/light/double/blue{ +"pom" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/barricade/handrail{ dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) -"poT" = ( -/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 + icon_state = "hr_kutjevo"; + name = "solar lattice" }, -/obj/item/tool/stamp, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"poC" = ( +/obj/structure/machinery/photocopier, /turf/open/floor/prison/darkredfull2, -/area/fiorina/station/lowsec/east) -"ppf" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/wood, /area/fiorina/station/research_cells/west) "ppq" = ( /obj/structure/surface/table/reinforced/prison, @@ -20745,10 +19987,6 @@ }, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"ppr" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/west) "ppG" = ( /obj/item/stack/rods/plasteel, /turf/open/floor/plating/prison, @@ -20778,6 +20016,10 @@ /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) +"pqz" = ( +/obj/item/clothing/suit/storage/labcoat, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) "pqC" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -20794,13 +20036,6 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"prc" = ( -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec/east) -"pre" = ( -/obj/item/stool, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) "prh" = ( /obj/structure/girder/reinforced, /turf/open/floor/almayer/plating/northeast, @@ -20809,15 +20044,6 @@ /obj/structure/machinery/autolathe/medilathe/full, /turf/open/floor/prison/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{ @@ -20844,10 +20070,12 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) -"psx" = ( -/obj/structure/platform, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/botany) +"psG" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "psL" = ( /obj/structure/machinery/optable{ desc = "This maybe could be used for advanced medical procedures."; @@ -20887,6 +20115,14 @@ /obj/item/clothing/gloves/latex, /turf/open/floor/prison/redfull, /area/fiorina/station/medbay) +"pud" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) "puw" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/prison, @@ -20901,10 +20137,6 @@ }, /turf/open/floor/prison/darkyellow2/east, /area/fiorina/lz/near_lzI) -"pvm" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) "pvz" = ( /obj/structure/janitorialcart, /obj/structure/machinery/light/double/blue{ @@ -20919,15 +20151,13 @@ name = "metal wall" }, /area/fiorina/oob) +"pvE" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) "pvF" = ( /turf/open/floor/prison/whitegreencorner, /area/fiorina/tumor/ice_lab) -"pwb" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/blue/northwest, -/area/fiorina/station/power_ring/reactor) "pwo" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -20956,10 +20186,6 @@ /obj/item/reagent_container/syringe, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"pxo" = ( -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) "pxr" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/donut_box{ @@ -20967,16 +20193,20 @@ }, /turf/open/floor/prison/redfull, /area/fiorina/station/security) +"pxu" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/prison, +/area/fiorina/station/transit_hub) "pxL" = ( /turf/open/floor/prison/darkbrown2/east, /area/fiorina/maintenance) -"pxW" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/item/tool/pickaxe, -/turf/open/floor/prison/whitegreen, -/area/fiorina/tumor/ice_lab) +"pxX" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells/west) "pyK" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, /turf/open/floor/corsat/plate, @@ -20989,10 +20219,6 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) -"pzK" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) "pzL" = ( /obj/item/ammo_magazine/m56d, /obj/item/ammo_magazine/m56d, @@ -21014,16 +20240,22 @@ /obj/effect/spawner/random/tool, /turf/open/floor/prison/green/east, /area/fiorina/station/chapel) +"pBj" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco/east_disco) "pBq" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"pBB" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "pBT" = ( /obj/structure/barricade/metal{ health = 250; @@ -21065,15 +20297,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) +"pCQ" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/stool{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "pCX" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"pDJ" = ( -/obj/structure/machinery/shower{ - dir = 8 +"pDo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' }, -/turf/open/floor/prison/kitchen, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells/west) "pDQ" = ( /obj/structure/bed/sofa/south/grey/right, @@ -21082,23 +20325,22 @@ "pEt" = ( /turf/open/floor/prison/darkbrown2/northwest, /area/fiorina/maintenance) -"pEK" = ( -/turf/open/auto_turf/sand/layer1, -/area/fiorina/station/disco/east_disco) "pFc" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) -"pFi" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/telecomm/lz1_tram) "pFA" = ( /obj/item/storage/toolbox/emergency, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) +"pFB" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"pFE" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/almayer_hull, +/area/fiorina/oob) "pFP" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -21118,25 +20360,18 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"pGy" = ( -/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/botany) "pGH" = ( /turf/closed/shuttle/ert{ icon_state = "stan_white_t_up" }, /area/fiorina/tumor/ship) -"pGK" = ( -/obj/structure/platform{ - dir = 1 +"pGS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/gm/river/pool, -/area/fiorina/station/park) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) "pHh" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -21156,9 +20391,12 @@ /obj/structure/machinery/space_heater, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) -"pHA" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison/yellowfull, +"pHx" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec/east) "pIs" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -21181,13 +20419,6 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"pIy" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) "pIA" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -21202,9 +20433,6 @@ "pJc" = ( /turf/open/floor/wood, /area/fiorina/maintenance) -"pJG" = ( -/turf/open/floor/prison/cell_stripe, -/area/fiorina/station/research_cells/west) "pJK" = ( /obj/structure/surface/rack, /obj/item/reagent_container/glass/bucket/mopbucket, @@ -21228,11 +20456,6 @@ /obj/item/tool/wet_sign, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"pKC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "pKJ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /obj/structure/barricade/wooden{ @@ -21250,6 +20473,14 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) +"pKV" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/plating/prison, +/area/fiorina/station/park) "pKY" = ( /obj/structure/cable/heavyduty{ icon_state = "2-4" @@ -21264,6 +20495,13 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) +"pLE" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) "pLM" = ( /obj/item/trash/cigbutt, /turf/open/floor/prison/blue/west, @@ -21276,25 +20514,26 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/greencorner/west, /area/fiorina/tumor/aux_engi) -"pMD" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells/west) -"pMZ" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec/showers_laundry) +"pMr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "pNj" = ( /obj/structure/bookcase, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"pNl" = ( -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) +"pNp" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) "pNG" = ( /obj/structure/closet/crate/science{ density = 0; @@ -21326,13 +20565,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"pPg" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) "pPo" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/prison/darkpurple2/north, @@ -21347,21 +20579,30 @@ }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) +"pQc" = ( +/obj/structure/closet/basketball, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/east) +"pQm" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) "pQs" = ( /turf/open/floor/prison, /area/fiorina/station/civres_blue) "pQz" = ( /turf/open/floor/prison/bluecorner/west, /area/fiorina/station/civres_blue) -"pRh" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec/showers_laundry) -"pRp" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) +"pRa" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/west) "pRx" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison, @@ -21380,6 +20621,10 @@ /obj/item/weapon/wirerod, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) +"pRM" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/station/park) "pSr" = ( /obj/structure/pipes/standard/manifold/visible, /turf/open/floor/prison/sterile_white/southwest, @@ -21412,20 +20657,14 @@ dir = 5 }, /area/fiorina/station/telecomm/lz1_cargo) -"pUf" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"pUo" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, +"pUD" = ( +/obj/structure/platform_decoration/metal/almayer, /turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) +"pUG" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/east) "pUO" = ( /obj/item/trash/boonie, /turf/open/floor/prison/whitegreenfull/southwest, @@ -21455,6 +20694,10 @@ /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/yellow/northwest, +/area/fiorina/station/lowsec/east) "pWc" = ( /obj/item/tool/crowbar/red, /turf/open/floor/prison/floor_plate, @@ -21482,10 +20725,6 @@ /obj/item/reagent_container/food/snacks/wrapped/booniebars, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) -"pXF" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) "pXH" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, @@ -21511,16 +20750,25 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) +"pYe" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"pYl" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "pYz" = ( /obj/structure/closet/emcloset, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) -"pYA" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells/west) "pYB" = ( /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) @@ -21552,6 +20800,16 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) +"pZn" = ( +/turf/open/floor/prison/yellowcorner/west, +/area/fiorina/station/lowsec/showers_laundry) +"pZp" = ( +/obj/item/tool/soap, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells/west) "qaA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, @@ -21630,10 +20888,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"qcI" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco/east_disco) "qcX" = ( /obj/structure/machinery/vending/snack/packaged, /turf/open/floor/prison/floor_plate, @@ -21666,10 +20920,13 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"qec" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/west) +"qeq" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "qes" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -21718,20 +20975,32 @@ /obj/item/device/cassette_tape/hiphop, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"qfc" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/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) +"qfh" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco/east_disco) +"qfi" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) +"qfK" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/tumor/ice_lab) +"qfR" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco/east_disco) "qgd" = ( /obj/item/explosive/grenade/incendiary/molotov{ pixel_x = 8; @@ -21774,13 +21043,24 @@ /obj/item/reagent_container/food/drinks/golden_cup, /turf/open/space, /area/fiorina/oob) -"qgR" = ( +"qgY" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"qhh" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/ice_lab) "qhk" = ( /turf/open/floor/prison/darkbrown2/southeast, /area/fiorina/station/park) @@ -21803,6 +21083,10 @@ }, /turf/open/floor/prison/redcorner/west, /area/fiorina/station/power_ring) +"qhL" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "qhN" = ( /turf/open/floor/prison/redcorner/east, /area/fiorina/station/security) @@ -21815,6 +21099,15 @@ "qhZ" = ( /turf/open/floor/prison/platingdmg3, /area/fiorina/station/transit_hub) +"qib" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "qif" = ( /obj/item/inflatable, /obj/structure/surface/table/reinforced/prison, @@ -21824,15 +21117,6 @@ /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/whitegreen/northwest, -/area/fiorina/station/medbay) "qjb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox, @@ -21858,9 +21142,6 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"qjT" = ( -/turf/closed/wall/prison, -/area/fiorina/station/lowsec/showers_laundry) "qjX" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -21884,10 +21165,6 @@ /obj/structure/bed/chair/office/dark, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) -"qkK" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) "qkN" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications, @@ -21899,6 +21176,20 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"qlz" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/medbay) +"qlC" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) "qmj" = ( /obj/structure/closet/emcloset, /obj/item/weapon/nullrod{ @@ -21916,37 +21207,22 @@ }, /turf/open/space, /area/fiorina/oob) -"qmU" = ( -/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/floor_plate, -/area/fiorina/station/research_cells/west) "qnb" = ( /obj/structure/bed/roller, /turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) -"qnf" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring/reactor) -"qnu" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison/yellow, -/area/fiorina/station/lowsec/showers_laundry) "qny" = ( /obj/item/tool/wirecutters/clippers, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) +"qnL" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "qob" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -21985,6 +21261,10 @@ /obj/item/stack/cable_coil/blue, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"qpF" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco/east_disco) "qpM" = ( /turf/closed/shuttle/ert{ icon_state = "stan_leftengine" @@ -22022,17 +21302,19 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"qqr" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells/west) -"qqH" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +"qqm" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/obj/item/clothing/gloves/combat, -/turf/open/floor/prison/whitepurple/northwest, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison, +/area/fiorina/station/botany) +"qqC" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells/west) "qqQ" = ( /turf/open/floor/prison/green/northeast, @@ -22041,10 +21323,6 @@ /obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) -"qre" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) "qrn" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) @@ -22057,6 +21335,10 @@ /obj/item/explosive/plastic, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) +"qrB" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/power_ring) "qrI" = ( /obj/structure/bed/sofa/south/grey/left, /obj/item/reagent_container/food/snacks/sandwich{ @@ -22064,6 +21346,18 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) +"qrN" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"qrU" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells/west) "qsc" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, @@ -22080,19 +21374,20 @@ /obj/structure/flora/pottedplant/random, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"qsE" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) "qsF" = ( /turf/open/floor/prison/darkbrown2/north, /area/fiorina/maintenance) +"qsV" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/plating/prison, +/area/fiorina/station/flight_deck) +"qtp" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring/reactor) "qtP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/prop/helmetgarb/raincover, @@ -22118,22 +21413,20 @@ /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"qvJ" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco/east_disco) +"qva" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/smg/mp5, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "qvN" = ( /obj/structure/prop/resin_prop{ icon_state = "rack" }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) -"qvR" = ( -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells/east) -"qwo" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) "qws" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "bee" @@ -22144,9 +21437,16 @@ /obj/structure/surface/rack, /turf/open/floor/prison/darkbrown2/southeast, /area/fiorina/maintenance) +"qwH" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/lowsec/east) "qwK" = ( /turf/open/floor/prison/floorscorched2, /area/fiorina/station/civres_blue) +"qxx" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/west) "qxy" = ( /obj/item/stack/sheet/metal, /turf/open/floor/prison/greenfull/northwest, @@ -22162,23 +21462,43 @@ "qxP" = ( /turf/open/floor/prison/darkbrown2/southwest, /area/fiorina/tumor/aux_engi) -"qyX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_y = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) -"qzb" = ( +"qxW" = ( +/obj/structure/platform/metal/almayer/west, /obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 + dir = 8; + icon_state = "p_stair_ew_half_cap" }, /turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) +/area/fiorina/lz/near_lzI) +"qxZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) +"qya" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/clothing/gloves/combat, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) +"qyq" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) +"qyM" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/disco/east_disco) "qzo" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/prison, @@ -22187,6 +21507,14 @@ /obj/structure/largecrate/random/case, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) +"qzZ" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco/east_disco) "qAe" = ( /obj/item/trash/eat, /turf/open/floor/prison/floor_plate, @@ -22201,6 +21529,10 @@ /obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"qAO" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/station/botany) "qAQ" = ( /turf/open/floor/prison/cell_stripe/east, /area/fiorina/tumor/aux_engi) @@ -22217,13 +21549,9 @@ /obj/item/storage/briefcase, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) -"qBz" = ( -/obj/item/storage/secure/briefcase{ - pixel_x = 9; - pixel_y = 18 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) +"qBw" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "qBB" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "A ticket to Souto Man's raffle!"; @@ -22240,6 +21568,19 @@ }, /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/darkredfull2, +/area/fiorina/station/research_cells/west) +"qBT" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells/west) "qCa" = ( /obj/structure/prop/resin_prop{ dir = 1; @@ -22260,6 +21601,10 @@ }, /turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) +"qCx" = ( +/obj/item/reagent_container/food/drinks/sillycup, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring/reactor) "qCE" = ( /obj/structure/machinery/computer/emails{ dir = 1; @@ -22268,6 +21613,9 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"qCK" = ( +/turf/open/floor/prison/damaged1/southwest, +/area/fiorina/station/lowsec/east) "qCW" = ( /turf/closed/shuttle/elevator{ dir = 6 @@ -22305,9 +21653,25 @@ /obj/structure/closet/bodybag, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) +"qEp" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "qEs" = ( /turf/open/floor/prison/yellowcorner/east, /area/fiorina/station/lowsec) +"qEt" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison, +/area/fiorina/station/power_ring/reactor) +"qEC" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco/east_disco) "qFf" = ( /obj/item/tool/kitchen/rollingpin, /turf/open/floor/prison/kitchen, @@ -22334,18 +21698,18 @@ }, /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/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) +"qFW" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec/east) "qGe" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 @@ -22363,17 +21727,14 @@ "qGn" = ( /turf/open/floor/corsat/plate, /area/fiorina/station/telecomm/lz1_cargo) -"qGx" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) "qGy" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"qGB" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells/west) "qGO" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light/double/blue, @@ -22383,12 +21744,25 @@ /obj/effect/spawner/random/tool, /turf/open/floor/prison, /area/fiorina/station/civres_blue) +"qGW" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) "qHi" = ( /obj/effect/landmark/nightmare{ insert_tag = "riot_control" }, /turf/open/floor/prison, /area/fiorina/station/security) +"qHl" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) "qHG" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = 25 @@ -22440,6 +21814,12 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"qJl" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" + }, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec/showers_laundry) "qJr" = ( /turf/open/floor/prison, /area/fiorina/tumor/fiberbush) @@ -22484,6 +21864,9 @@ /obj/item/disk/data, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) +"qJY" = ( +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec/east) "qKq" = ( /obj/structure/machinery/computer/arcade, /obj/item/toy/syndicateballoon{ @@ -22499,20 +21882,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"qKr" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring/reactor) "qKx" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"qKM" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/west) "qKT" = ( /obj/item/stack/rods/plasteel, /turf/open/auto_turf/sand/layer1, @@ -22528,10 +21901,6 @@ }, /turf/open/floor/prison/yellow/northeast, /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, /turf/open/floor/prison/floor_plate, @@ -22549,13 +21918,10 @@ /obj/item/storage/toolbox/mechanical/green, /turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) -"qMi" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) +"qMk" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison, +/area/fiorina/station/park) "qMs" = ( /obj/item/stack/cable_coil/green, /turf/open/floor/prison/floor_plate, @@ -22563,17 +21929,6 @@ "qMI" = ( /turf/open/floor/prison/damaged3, /area/fiorina/station/security) -"qNj" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "qNu" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/clothing/accessory/storage/holster, @@ -22600,12 +21955,10 @@ "qNF" = ( /turf/open/floor/prison/yellow/northeast, /area/fiorina/station/lowsec) -"qOk" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/almayer_hull, -/area/fiorina/oob) +"qOq" = ( +/obj/structure/grille, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) "qOu" = ( /turf/open/floor/prison/damaged3, /area/fiorina/station/disco) @@ -22613,10 +21966,6 @@ /obj/item/stack/cable_coil/cyan, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"qOT" = ( -/obj/item/clothing/mask/cigarette/bcigarette, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) "qOW" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -22629,6 +21978,15 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"qOZ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "qPa" = ( /obj/item/device/motiondetector, /turf/open/floor/prison/yellow/north, @@ -22636,16 +21994,19 @@ "qPb" = ( /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) -"qPl" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" - }, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec/showers_laundry) "qPr" = ( /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/darkpurplefull2, +/area/fiorina/station/research_cells/east) "qQa" = ( /turf/open/floor/prison/darkpurple2/north, /area/fiorina/station/central_ring) @@ -22681,6 +22042,12 @@ /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/blue/northwest, +/area/fiorina/station/power_ring/reactor) "qQA" = ( /obj/item/reagent_container/food/drinks/bottle/holywater{ desc = "A flask of the holy HEFA grenade oil."; @@ -22688,56 +22055,33 @@ }, /turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) -"qQM" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, +"qRa" = ( +/obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/prison, -/area/fiorina/station/disco) +/area/fiorina/station/lowsec/showers_laundry) +"qRf" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells/east) "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." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) -"qRv" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco/east_disco) -"qRy" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/machinery/light/double/blue{ +"qRi" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/platform{ - dir = 1 + icon_state = "door_open"; + opacity = 0 }, -/obj/structure/platform{ +/obj/structure/barricade/metal/wired{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/disco/east_disco) -"qRz" = ( -/obj/item/stool, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) -"qRC" = ( -/obj/item/stack/barbed_wire, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec/east) "qRK" = ( @@ -22764,39 +22108,38 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) +"qSz" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/gloves/boxing/yellow, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) "qSA" = ( /obj/item/trash/candy, /turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) -"qSW" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "qTe" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"qTp" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring/reactor) +"qTt" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco/east_disco) "qTx" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, /obj/item/storage/firstaid/regular, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"qTQ" = ( -/obj/structure/platform_decoration, -/obj/item/reagent_container/food/drinks/sillycup, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/flight_deck) "qTW" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/blue/east, /area/fiorina/station/power_ring) +"qUb" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "qUo" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -22814,6 +22157,10 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) +"qUw" = ( +/obj/item/device/multitool, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco/east_disco) "qUC" = ( /obj/item/ammo_casing{ dir = 2; @@ -22821,14 +22168,27 @@ }, /turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) +"qVb" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "qVW" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/fiorina/station/park) -"qXA" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) +"qWe" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison, +/area/fiorina/station/security) +"qXj" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec/showers_laundry) "qXM" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/plating/prison, @@ -22849,10 +22209,9 @@ /turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) "qZp" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec) +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/pool, +/area/fiorina/station/park) "qZv" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -22860,16 +22219,20 @@ }, /turf/open/floor/prison/whitegreen/east, /area/fiorina/station/central_ring) -"qZH" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) +"qZz" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "raC" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) +"raJ" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "raL" = ( /turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) @@ -22913,6 +22276,13 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) +"rce" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_y = 11 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "rcg" = ( /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) @@ -22925,14 +22295,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"rcs" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/stool, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) +"rcy" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/space, +/area/fiorina/oob) "rcE" = ( /obj/structure/inflatable/popped/door, /obj/item/stack/barbed_wire, @@ -22950,16 +22316,6 @@ "rdo" = ( /turf/open/floor/prison/greenbluecorner/north, /area/fiorina/station/botany) -"rdt" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"rdS" = ( -/obj/item/stool, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) "red" = ( /obj/structure/barricade/metal/wired{ dir = 8 @@ -22967,6 +22323,13 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"rez" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco/east_disco) "reZ" = ( /obj/structure/barricade/sandbags{ dir = 8; @@ -22986,6 +22349,17 @@ "rft" = ( /turf/open/floor/prison/greenblue, /area/fiorina/station/botany) +"rfy" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"rfI" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/space, +/area/fiorina/oob) "rfQ" = ( /obj/effect/spawner/random/tech_supply, /obj/structure/machinery/light/double/blue{ @@ -22994,9 +22368,13 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"rfW" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating/prison, +"rgc" = ( +/obj/item/device/binoculars/civ, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec/showers_laundry) "rgg" = ( /obj/item/tool/candle{ @@ -23004,6 +22382,9 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) +"rhf" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/research_cells/west) "rhh" = ( /obj/structure/monorail{ dir = 4; @@ -23011,6 +22392,16 @@ }, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) +"rhH" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells/west) +"rhR" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/space, +/area/fiorina/oob) "rie" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/whitegreen/west, @@ -23022,34 +22413,44 @@ "rja" = ( /turf/closed/wall/prison, /area/fiorina/station/civres_blue) +"rjw" = ( +/turf/closed/wall/prison, +/area/fiorina/station/lowsec/showers_laundry) "rjy" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) +"rjD" = ( +/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/west) "rjP" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) -"rkg" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/west) "rki" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"rko" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +"rkp" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec/east) "rkv" = ( /turf/open/floor/prison/greencorner/west, /area/fiorina/station/chapel) +"rkF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "rkH" = ( /obj/structure/grille, /obj/structure/lattice, @@ -23059,17 +22460,14 @@ /obj/item/clothing/glasses/science, /turf/open/space, /area/fiorina/oob) +"rkX" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "rle" = ( /obj/item/stack/cable_coil/green, /turf/open/floor/wood, /area/fiorina/station/chapel) -"rlk" = ( -/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/east_disco) "rlP" = ( /obj/structure/largecrate/supply, /turf/open/floor/prison/floor_plate, @@ -23110,6 +22508,10 @@ /obj/structure/largecrate/supply/explosives/mortar_flare, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"rnE" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec/showers_laundry) "rnM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/crayons, @@ -23128,15 +22530,17 @@ }, /turf/open/floor/prison/darkpurple2/southeast, /area/fiorina/tumor/ice_lab) -"roE" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" +"rov" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/bright_clean2/southwest, +/area/fiorina/station/park) +"roC" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/station/park) "roF" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -23156,6 +22560,10 @@ "roQ" = ( /turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) +"rpf" = ( +/obj/structure/grille, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/east) "rpt" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/floor_plate, @@ -23170,10 +22578,12 @@ }, /turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) -"rqi" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/east) +"rqd" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) "rqq" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -23199,30 +22609,20 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"rrf" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/lowsec/east) "rrs" = ( /obj/item/stack/rods/plasteel, /turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/lz/near_lzI) +"rru" = ( +/obj/effect/spawner/random/goggles/midchance, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) "rrD" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) -"rrY" = ( -/turf/open/floor/prison/blue/east, -/area/fiorina/station/power_ring/reactor) -"rsg" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/station/park) "rsp" = ( /obj/item/toy/crayon/purple, /turf/open/floor/plating/prison, @@ -23232,20 +22632,6 @@ /obj/item/reagent_container/food/drinks/coffee, /turf/open/floor/prison, /area/fiorina/station/medbay) -"rsO" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells/west) -"rsQ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "rsR" = ( /turf/open/floor/prison/blue/northeast, /area/fiorina/station/power_ring) @@ -23271,13 +22657,6 @@ }, /turf/open/floor/prison/blue/northeast, /area/fiorina/station/civres_blue) -"rtC" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) -"rtL" = ( -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec/east) "rtP" = ( /obj/item/trash/cigbutt, /turf/open/floor/prison/sterile_white/southwest, @@ -23305,17 +22684,17 @@ }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) -"rwg" = ( -/obj/structure/window_frame/prison/reinforced, -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) "rwj" = ( /obj/structure/barricade/plasteel, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) +"rwm" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/west) "rwu" = ( /obj/structure/bed/chair{ dir = 1 @@ -23328,6 +22707,13 @@ }, /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/yellow/east, +/area/fiorina/station/lowsec/showers_laundry) "rwQ" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/greenblue/west, @@ -23341,27 +22727,11 @@ }, /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" - }, -/obj/structure/lattice, -/turf/open/space/basic, +"ryp" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/space, /area/fiorina/oob) -"rxM" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) "ryJ" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ dir = 4 @@ -23375,14 +22745,29 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"rzY" = ( -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec/showers_laundry) +"rzF" = ( +/obj/structure/holohoop{ + pixel_y = 25 + }, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec/east) +"rzZ" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "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, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/east) "rAK" = ( /obj/structure/barricade/metal{ dir = 4; @@ -23409,9 +22794,11 @@ /turf/open/floor/prison, /area/fiorina/station/security) "rBh" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "rBr" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, @@ -23431,48 +22818,52 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"rBF" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/flight_deck) -"rDp" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) -"rDu" = ( +"rBE" = ( /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_sn_full_cap" }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"rBF" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/flight_deck) +"rCq" = ( +/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"rEe" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) -"rEN" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec/east) -"rES" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"rCt" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco/east_disco) -"rFo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +/turf/open/floor/wood, +/area/fiorina/station/lowsec/east) +"rDf" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) +"rEk" = ( +/obj/structure/lattice, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/space, +/area/fiorina/oob) +"rEr" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/almayer/north, +/obj/structure/ice/thin/indestructible{ + dir = 8; + icon_state = "Straight" }, +/turf/open/ice/noweed, +/area/fiorina/tumor/ice_lab) +"rEx" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/fiorina/station/research_cells/east) +"rEG" = ( +/obj/structure/platform_decoration/metal/almayer, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) +/area/fiorina/station/park) "rFu" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/chapel_carpet/doubleside, @@ -23494,6 +22885,9 @@ /obj/structure/machinery/computer3/laptop/secure_data, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"rGf" = ( +/turf/open/auto_turf/sand/layer1, +/area/fiorina/station/disco/east_disco) "rGq" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) @@ -23501,6 +22895,14 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) +"rGB" = ( +/obj/structure/platform/metal/almayer/east, +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) "rGK" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -23530,10 +22932,6 @@ /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"rHM" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) "rHV" = ( /obj/structure/bed/chair, /obj/structure/machinery/light/double/blue{ @@ -23545,6 +22943,14 @@ "rHX" = ( /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) +"rIr" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/west) "rIy" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/phone{ @@ -23556,10 +22962,6 @@ /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"rIP" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) "rIS" = ( /obj/structure/sign/poster{ icon_state = "poster6" @@ -23583,10 +22985,6 @@ "rJF" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) -"rJH" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) "rJO" = ( /turf/open/floor/carpet, /area/fiorina/station/security/wardens) @@ -23602,19 +23000,13 @@ /obj/item/stack/cable_coil/green, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"rKa" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 +"rKd" = ( +/obj/item/stool, +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_y = 32 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"rKi" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/prison, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec/showers_laundry) "rKm" = ( /obj/structure/machinery/vending/coffee, @@ -23636,16 +23028,13 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) -"rLA" = ( -/obj/structure/platform, -/turf/open/floor/prison, -/area/fiorina/station/botany) -"rMa" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells/east) +"rLG" = ( +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells/west) +"rLJ" = ( +/obj/item/clothing/gloves/boxing, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec/showers_laundry) "rMo" = ( /obj/effect/landmark/objective_landmark/far, /obj/structure/closet/secure_closet/engineering_personal, @@ -23656,10 +23045,10 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"rMQ" = ( -/obj/item/storage/pill_bottle/spaceacillin/skillless, -/turf/open/floor/prison/whitepurple/northeast, -/area/fiorina/station/research_cells/west) +"rMw" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco/east_disco) "rMT" = ( /obj/structure/prop/almayer/computers/mission_planning_system{ density = 0; @@ -23693,10 +23082,6 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) -"rOn" = ( -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) "rOu" = ( /obj/structure/closet, /obj/effect/spawner/random/sentry/midchance, @@ -23716,6 +23101,10 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) +"rOV" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) "rPd" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/metal/medium_stack, @@ -23731,6 +23120,18 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) +"rPj" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/transit_hub) +"rPs" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "rPD" = ( /obj/item/stack/sheet/metal, /turf/open/floor/prison/floor_plate, @@ -23762,6 +23163,15 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"rPM" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/almayer_hull, +/area/fiorina/station/medbay) +"rPS" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/east) "rPW" = ( /obj/effect/spawner/random/gun/rifle/lowchance, /turf/open/floor/prison/floor_plate, @@ -23778,11 +23188,22 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"rQi" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"rQt" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/space, +/area/fiorina/oob) "rQu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/cable_coil/orange, /turf/open/floor/prison/floor_plate, /area/fiorina/maintenance) +"rQB" = ( +/turf/open/floor/prison/sterile_white/west, +/area/fiorina/station/lowsec/east) "rQK" = ( /obj/item/bananapeel{ name = "tactical banana peel" @@ -23792,6 +23213,14 @@ "rQN" = ( /turf/open/floor/prison/darkbrown2/southeast, /area/fiorina/station/power_ring) +"rRd" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "rRg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/mineral/plastic, @@ -23806,15 +23235,13 @@ }, /turf/open/floor/prison/blue/north, /area/fiorina/station/civres_blue) -"rSN" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/autolathe/full{ - layer = 2.98 +"rSr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "rSU" = ( /obj/structure/barricade/sandbags{ dir = 4; @@ -23829,9 +23256,6 @@ }, /turf/open/floor/prison/whitegreen/west, /area/fiorina/tumor/ice_lab) -"rTs" = ( -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells/west) "rTD" = ( /obj/effect/spawner/random/powercell, /turf/open/floor/prison/bluefull, @@ -23843,18 +23267,12 @@ }, /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/whitegreen/north, -/area/fiorina/station/medbay) +"rTY" = ( +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring/reactor) +"rTZ" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/fiorina/station/research_cells/west) "rUf" = ( /turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/tumor/servers) @@ -23878,19 +23296,6 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"rUV" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/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/whitepurple/northeast, -/area/fiorina/station/research_cells/west) "rVi" = ( /obj/structure/barricade/handrail/type_b, /turf/open/floor/prison/darkyellow2/southeast, @@ -23900,10 +23305,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/darkbrown2/southeast, /area/fiorina/maintenance) -"rVt" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/lowsec/showers_laundry) "rVM" = ( /obj/structure/closet/crate/miningcar, /obj/structure/barricade/wooden{ @@ -23951,6 +23352,23 @@ /obj/item/trash/liquidfood, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) +"rYy" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/structure/sign/poster{ + icon_state = "poster1"; + pixel_y = 32 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec/showers_laundry) +"rYK" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec/east) "rYY" = ( /obj/structure/bed/roller, /obj/structure/machinery/filtration/console{ @@ -23969,6 +23387,11 @@ icon_state = "stan_rightengine" }, /area/fiorina/station/power_ring) +"rZF" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) "rZI" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, @@ -23994,19 +23417,21 @@ "rZP" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/aux_engi) -"sag" = ( -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) -"sbb" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 +"saL" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9; + pixel_y = 8 }, -/obj/structure/machinery/shower{ - dir = 4 +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 11; + pixel_y = 8 }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells/west) +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "sbf" = ( /obj/effect/landmark/corpsespawner/prisoner, /turf/open/gm/river/darkred_pool, @@ -24030,6 +23455,14 @@ "sbW" = ( /turf/open/floor/prison/greenbluecorner/east, /area/fiorina/station/botany) +"scb" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/station/park) +"sce" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison, +/area/fiorina/station/park) "scp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/uscm_mre, @@ -24043,12 +23476,6 @@ /obj/structure/machinery/washing_machine, /turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) -"scK" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/interior/plastic, -/area/fiorina/station/research_cells/east) "scM" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/telecomm/lz1_tram) @@ -24059,16 +23486,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) -"scZ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/security) "sda" = ( /obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/prison, @@ -24077,14 +23494,16 @@ /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"sdw" = ( -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "sdE" = ( /obj/item/storage/wallet/random, /turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) +"sdG" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) "sdK" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp{ @@ -24140,12 +23559,6 @@ }, /turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) -"sfi" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/chapel_carpet/doubleside, -/area/fiorina/station/chapel) "sfn" = ( /obj/structure/disposalpipe/segment{ icon_state = "delivery_outlet"; @@ -24173,12 +23586,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"sfW" = ( -/obj/structure/platform{ - dir = 8 +"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/plating/prison, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "sga" = ( /obj/effect/decal{ icon = 'icons/obj/items/policetape.dmi'; @@ -24189,16 +23605,17 @@ /obj/structure/barricade/metal/wired, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) +"sgt" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison, +/area/fiorina/station/lowsec/east) "sgw" = ( /obj/structure/window_frame/prison, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"sgB" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells/east) +"sgI" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "sgJ" = ( /obj/structure/surface/rack, /obj/item/storage/belt/gun/flaregun/full, @@ -24214,6 +23631,17 @@ /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 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells/west) +"shC" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "shH" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, @@ -24226,6 +23654,14 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) +"siy" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) +"siB" = ( +/obj/item/poster, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/west) "siE" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/prison/darkbrownfull2, @@ -24238,6 +23674,11 @@ }, /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/showers_laundry) "sjd" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -24245,19 +23686,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"sji" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/poster, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) -"sjv" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) -"sjA" = ( -/obj/item/stool, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/disco/east_disco) "sjJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger{ @@ -24304,6 +23732,21 @@ /obj/item/reagent_container/blood, /turf/open/floor/prison/greenbluecorner/east, /area/fiorina/station/botany) +"sjZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) +"skj" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec/showers_laundry) "skG" = ( /turf/open/floor/prison/blue/southwest, /area/fiorina/tumor/servers) @@ -24342,12 +23785,6 @@ /obj/structure/barricade/handrail/type_b, /turf/open/floor/prison, /area/fiorina/station/disco) -"smn" = ( -/obj/structure/bookcase/manuals/research_and_development{ - pixel_y = 10 - }, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) "sms" = ( /turf/open/floor/prison/bluecorner/north, /area/fiorina/station/civres_blue) @@ -24364,13 +23801,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzI) -"snr" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/stool, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) "snW" = ( /obj/structure/prop/resin_prop{ icon_state = "rack" @@ -24383,13 +23813,6 @@ /obj/effect/spawner/random/tool, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) -"sor" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) "sov" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -24407,6 +23830,13 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) +"spl" = ( +/obj/item/stack/sheet/metal, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) "spm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/flora/pottedplant{ @@ -24415,23 +23845,6 @@ /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/darkbrown2/east, -/area/fiorina/station/park) "spH" = ( /obj/structure/disposalpipe/segment{ icon_state = "delivery_outlet"; @@ -24441,6 +23854,14 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) +"spI" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"spR" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "sqx" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; @@ -24448,34 +23869,31 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) +"sqC" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/lowsec/east) +"sqL" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco/east_disco) "sqR" = ( /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 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) "srt" = ( /obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"srA" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison/yellowcorner, -/area/fiorina/station/lowsec/showers_laundry) "srI" = ( /obj/item/tool/crowbar/red, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"srQ" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells/east) "ssb" = ( /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) @@ -24494,13 +23912,6 @@ /obj/structure/largecrate/supply/supplies/tables_racks, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"ssJ" = ( -/obj/structure/lattice, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space, -/area/fiorina/oob) "ssM" = ( /obj/structure/janitorialcart, /turf/open/floor/prison/floor_plate, @@ -24513,6 +23924,12 @@ /obj/item/clothing/under/shorts/black, /turf/open/floor/prison/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/west) "stf" = ( /obj/effect/spawner/random/tool, /turf/open/floor/prison, @@ -24521,12 +23938,6 @@ /obj/structure/machinery/line_nexter, /turf/open/floor/prison/red/west, /area/fiorina/station/security) -"stx" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/east) "stC" = ( /obj/structure/largecrate/random, /turf/open/floor/prison/greenfull/northwest, @@ -24552,12 +23963,10 @@ /obj/item/device/tracker, /turf/open/floor/prison/yellow/northwest, /area/fiorina/station/disco) -"suD" = ( -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring/reactor) -"suR" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/fiorina/station/lowsec/showers_laundry) +"suq" = ( +/obj/item/stool, +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/lowsec/east) "suX" = ( /turf/open/floor/prison, /area/fiorina/station/central_ring) @@ -24581,18 +23990,27 @@ /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/kitchen, +/area/fiorina/station/lowsec/showers_laundry) "svP" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) +"svS" = ( +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco/east_disco) "svW" = ( /obj/structure/surface/rack, /obj/item/clothing/gloves/latex, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"swg" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/space, -/area/fiorina/oob) "swj" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) @@ -24602,12 +24020,6 @@ /obj/structure/surface/rack, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) -"swT" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/tumor/ice_lab) "sxc" = ( /obj/item/weapon/gun/rifle/mar40, /turf/open/floor/prison/floor_plate, @@ -24619,15 +24031,14 @@ "sxE" = ( /turf/open/floor/prison/redcorner, /area/fiorina/station/power_ring) -"sxH" = ( -/obj/structure/platform{ - dir = 8 - }, +"sxY" = ( /obj/structure/stairs/perspective{ + dir = 4; icon_state = "p_stair_sn_full_cap" }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) +/area/fiorina/station/park) "syj" = ( /obj/item/clothing/under/color/orange, /turf/open/floor/prison/redfull, @@ -24636,6 +24047,14 @@ /obj/item/tool/wirecutters/clippers, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) +"syM" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) "syU" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -24654,6 +24073,10 @@ "sze" = ( /turf/open/floor/prison/greencorner/north, /area/fiorina/tumor/civres) +"szn" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) "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."; @@ -24661,10 +24084,6 @@ }, /turf/open/floor/prison/bluecorner/east, /area/fiorina/station/chapel) -"szv" = ( -/obj/item/stool, -/turf/open/floor/prison/damaged2, -/area/fiorina/station/lowsec/east) "szD" = ( /obj/structure/stairs/perspective{ dir = 9; @@ -24680,20 +24099,18 @@ /obj/item/stack/sandbags_empty/half, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"sAg" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "sAp" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"sBf" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) +"sAF" = ( +/obj/item/inflatable, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec/showers_laundry) "sBj" = ( /obj/structure/barricade/metal{ health = 85; @@ -24708,10 +24125,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"sBH" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/west) "sBM" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison/whitegreencorner/east, @@ -24720,20 +24133,6 @@ /obj/structure/machinery/power/apc/power/south, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"sBU" = ( -/obj/structure/ice/thin/indestructible{ - dir = 1; - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells/basketball) -"sBW" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) "sBY" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/goggles/lowchance, @@ -24747,9 +24146,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) -"sCo" = ( -/turf/open/floor/prison/yellowcorner/west, -/area/fiorina/station/lowsec/showers_laundry) "sCH" = ( /obj/item/frame/rack, /obj/item/clothing/under/marine/ua_riot, @@ -24760,13 +24156,15 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) +"sDp" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "sDw" = ( -/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/west) +/turf/open/floor/prison, +/area/fiorina/station/lowsec/east) "sDL" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -24774,17 +24172,23 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) +"sDR" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 1; + icon_state = "human2" + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "sDS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) -"sEw" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"sEK" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/prison/whitepurple/north, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells/east) "sEO" = ( /turf/closed/wall/r_wall/prison, @@ -24803,17 +24207,19 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) -"sFG" = ( -/obj/item/bedsheet, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/showers_laundry) -"sFQ" = ( -/obj/structure/bed{ - icon_state = "abed" +"sFH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/east) +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/tool/stamp, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec/east) "sFY" = ( /obj/structure/barricade/metal/wired{ dir = 4 @@ -24821,17 +24227,6 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"sGa" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/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{ @@ -24856,6 +24251,39 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/wood, /area/fiorina/station/park) +"sGS" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) +"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/darkpurplefull2, +/area/fiorina/station/research_cells/west) +"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/floor_plate, +/area/fiorina/station/power_ring/reactor) +"sHj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "sHL" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/greenfull/east, @@ -24866,15 +24294,6 @@ }, /turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) -"sHO" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space, -/area/fiorina/oob) "sIg" = ( /obj/item/device/pinpointer, /turf/open/floor/prison/floor_plate/southwest, @@ -24885,13 +24304,15 @@ }, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"sIi" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) "sIj" = ( /turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/flight_deck) +"sIk" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec/showers_laundry) "sIs" = ( /obj/item/weapon/gun/smg/nailgun, /obj/structure/surface/rack, @@ -24918,13 +24339,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison, /area/fiorina/lz/near_lzI) -"sJb" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) "sJu" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 @@ -24941,6 +24355,9 @@ /obj/item/stack/folding_barricade, /turf/open/floor/prison, /area/fiorina/station/security) +"sJH" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells/east) "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." @@ -24951,13 +24368,30 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) -"sKu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +"sJX" = ( +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/space, +/area/fiorina/oob) +"sKr" = ( +/obj/item/storage/secure/briefcase{ + pixel_x = 9; + pixel_y = 18 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) +"sKt" = ( +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "sKY" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -24982,6 +24416,11 @@ }, /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/civres) +"sLF" = ( +/obj/structure/lattice, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/space, +/area/fiorina/oob) "sMe" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/security_space_law{ @@ -24990,6 +24429,10 @@ }, /turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) +"sMq" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "sMX" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor/prison/darkbrownfull2, @@ -25007,6 +24450,10 @@ /obj/item/storage/pill_bottle/bicaridine/skillless, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) +"sNi" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "sNj" = ( /obj/structure/barricade/metal/wired{ dir = 8 @@ -25016,15 +24463,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"sNQ" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/telecomm/lz1_tram) "sNU" = ( /turf/open/floor/prison/red/north, /area/fiorina/station/security) @@ -25073,14 +24511,6 @@ "sPi" = ( /turf/open/floor/prison/darkyellowcorners2/west, /area/fiorina/station/telecomm/lz1_cargo) -"sPt" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/shiva, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) "sPJ" = ( /obj/structure/bed/chair{ dir = 4 @@ -25095,6 +24525,11 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) +"sQv" = ( +/obj/structure/platform/metal/almayer, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) "sQy" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/random/gun/pistol/midchance, @@ -25109,35 +24544,25 @@ /obj/item/restraint/handcuffs, /turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) -"sQL" = ( -/obj/structure/platform, -/turf/open/gm/river/red_pool, -/area/fiorina/station/park) -"sRE" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"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) -"sSS" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, +"sRv" = ( +/obj/item/clothing/shoes/marine/upp/knife, +/turf/open/floor/prison, +/area/fiorina/station/lowsec/showers_laundry) +"sRJ" = ( +/obj/structure/machinery/constructable_frame, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/showers_laundry) +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/lowsec/east) +"sSv" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) "sSY" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -25188,22 +24613,16 @@ /obj/structure/barricade/wooden, /turf/open/floor/prison/darkyellow2/east, /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/floor_plate, -/area/fiorina/station/park) "sUc" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) +"sUd" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco/east_disco) "sUe" = ( /obj/structure/bed/chair{ dir = 8 @@ -25230,29 +24649,14 @@ "sUV" = ( /turf/open/floor/prison/darkbrowncorners2/east, /area/fiorina/tumor/aux_engi) -"sUW" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco/east_disco) +"sUX" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) "sUY" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/corsat/squares, /area/fiorina/station/civres_blue) -"sVd" = ( -/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/botany) -"sVv" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/space, -/area/fiorina/oob) "sVS" = ( /obj/item/trash/pistachios, /turf/open/floor/prison/whitegreenfull/southwest, @@ -25307,10 +24711,24 @@ /obj/item/storage/bag/trash, /turf/open/floor/prison, /area/fiorina/station/disco) +"sWR" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security) +"sWX" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/research_cells/west) "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/east) "sXi" = ( /turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) @@ -25346,22 +24764,23 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"sZh" = ( -/obj/item/newspaper, -/turf/open/floor/prison/whitepurplecorner, -/area/fiorina/station/research_cells/west) +"sYX" = ( +/obj/structure/lattice, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/space, +/area/fiorina/oob) "sZt" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"sZG" = ( -/obj/item/tool/surgery/scalpel, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "sZZ" = ( /obj/structure/barricade/wooden, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) +"tad" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco/east_disco) "tai" = ( /obj/structure/bed/chair, /obj/structure/prop/souto_land/pole, @@ -25383,13 +24802,18 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"taF" = ( -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) +"taI" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "taL" = ( /obj/item/clothing/under/color/orange, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) +"taS" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/power_ring/reactor) "taY" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/space/basic, @@ -25412,17 +24836,10 @@ }, /turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/servers) -"tcb" = ( -/obj/structure/holohoop{ - dir = 8; - id = "basketball"; - side = "right" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) +"tcd" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) "tco" = ( /obj/item/paper/crumpled/bloody/csheet, /turf/open/floor/prison/floor_plate, @@ -25437,16 +24854,6 @@ }, /turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) -"tcL" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/chapel) "tcW" = ( /obj/structure/monorail{ name = "launch track" @@ -25462,12 +24869,6 @@ /obj/structure/largecrate/random, /turf/open/floor/prison/floor_plate, /area/fiorina/station/central_ring) -"tdq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "tdr" = ( /obj/structure/prop/resin_prop{ dir = 4; @@ -25476,10 +24877,10 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"ted" = ( -/obj/effect/landmark/wo_supplies/storage/belts/knifebelt, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) +"tdY" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/station/central_ring) "tel" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/medbay) @@ -25498,6 +24899,14 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) +"teE" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) "teI" = ( /obj/structure/largecrate/supply/supplies/tables_racks, /turf/open/floor/prison/floor_plate, @@ -25514,10 +24923,6 @@ }, /turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) -"tfn" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco/east_disco) "tfw" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/darkpurplefull2, @@ -25528,6 +24933,13 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"tfy" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "tfP" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/fiberbush) @@ -25562,14 +24974,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"thB" = ( +"thz" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/mre_pack/meal4{ - name = "\improper prison food"; - pixel_y = 9 +/obj/item/storage/lockbox/vials{ + pixel_x = -4; + pixel_y = 4 }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) "thI" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -25588,14 +25000,14 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"til" = ( -/obj/structure/platform{ - dir = 4 +"tim" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/obj/item/stool, -/obj/item/clothing/shoes/slippers_worn, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/civres_blue) +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "tir" = ( /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/prison, @@ -25608,23 +25020,14 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"tiw" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/item/stack/barbed_wire, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) -"tiM" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreen/west, -/area/fiorina/tumor/ice_lab) +"tiP" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells/west) +"tiX" = ( +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) "tiY" = ( /turf/open/floor/prison/floorscorched2, /area/fiorina/tumor/civres) @@ -25634,6 +25037,13 @@ "tja" = ( /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"tjh" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec/east) "tji" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -25650,11 +25060,16 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"tjw" = ( -/obj/structure/platform_decoration, -/obj/structure/inflatable, -/turf/open/floor/prison/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/kitchen, +/area/fiorina/station/research_cells/west) "tkd" = ( /obj/structure/filingcabinet, /obj/structure/filingcabinet{ @@ -25666,16 +25081,20 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/prison/floor_plate, /area/fiorina/station/park) +"tkh" = ( +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco/east_disco) "tkj" = ( /turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) -"tkP" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" +"tkZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating/prison, -/area/fiorina/station/botany) +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells/west) "tle" = ( /obj/structure/filingcabinet{ pixel_x = 8; @@ -25688,6 +25107,12 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) +"tlj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring/reactor) "tlq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp{ @@ -25704,31 +25129,6 @@ }, /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/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" @@ -25761,10 +25161,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"tmz" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) "tmF" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison/whitegreen/north, @@ -25795,14 +25191,14 @@ /obj/effect/landmark/queen_spawn, /turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) -"tnU" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells/west) -"tnY" = ( -/obj/structure/platform_decoration, +"tnx" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, /turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) +/area/fiorina/tumor/ice_lab) "tob" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -25810,9 +25206,35 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"tok" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "toE" = ( /turf/open/floor/carpet, /area/fiorina/station/civres_blue) +"toG" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/space, +/area/fiorina/oob) +"toN" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "tpa" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -25825,19 +25247,6 @@ }, /turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/maintenance) -"tph" = ( -/obj/structure/extinguisher_cabinet, -/obj/structure/window/framed/prison, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco/east_disco) -"tpn" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco/east_disco) "tpt" = ( /obj/structure/closet/wardrobe/chaplain_black, /obj/effect/spawner/random/goggles, @@ -25895,21 +25304,6 @@ /obj/item/storage/toolbox, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/tumor/servers) -"tqP" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/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) "trl" = ( /obj/item/trash/buritto, /turf/open/floor/plating/prison, @@ -25921,11 +25315,13 @@ /obj/item/stack/barbed_wire, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"trO" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 +"trR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/turf/open/floor/prison/kitchen, +/obj/item/storage/fancy/cigarettes/blackpack, +/turf/open/floor/prison/whitepurple/southeast, /area/fiorina/station/research_cells/west) "trS" = ( /obj/structure/barricade/wooden{ @@ -25984,15 +25380,10 @@ }, /turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) -"ttc" = ( -/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/floor_plate, -/area/fiorina/station/power_ring/reactor) +"ttU" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) "tuf" = ( /obj/item/clothing/shoes/jackboots{ name = "Awesome Guy" @@ -26011,38 +25402,6 @@ "tuA" = ( /turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/telecomm/lz1_tram) -"tuH" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/fuel_cell, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) -"tuT" = ( -/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/yellow/east, -/area/fiorina/station/lowsec/showers_laundry) -"tuX" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/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, @@ -26064,6 +25423,16 @@ /obj/structure/machinery/door/poddoor/shutters/almayer, /turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) +"txf" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "txh" = ( /obj/structure/bed/sofa/vert/grey, /turf/open/floor/prison, @@ -26079,10 +25448,6 @@ "tyj" = ( /turf/open/floor/prison/blue/east, /area/fiorina/station/chapel) -"tyk" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) "tyt" = ( /obj/item/ammo_casing{ dir = 8; @@ -26103,14 +25468,13 @@ /obj/structure/closet/crate/freezer, /turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) -"tzN" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 +"tzy" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "tzU" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison/bluefull, @@ -26134,6 +25498,10 @@ }, /turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/medbay) +"tAE" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/east) "tAR" = ( /obj/structure/surface/rack, /obj/item/tool/extinguisher, @@ -26144,12 +25512,16 @@ /obj/item/tool/crowbar, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"tCc" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison/damaged3, -/area/fiorina/station/security) +"tBP" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/interior/plastic, +/area/fiorina/station/research_cells/east) +"tCm" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) "tCv" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/prison/greenfull/east, @@ -26158,12 +25530,6 @@ /obj/item/stack/folding_barricade, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"tCZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/almayer_hull, -/area/fiorina/oob) "tDB" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp{ @@ -26191,6 +25557,14 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"tDK" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"tDO" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "tDQ" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -26214,9 +25588,8 @@ /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) "tEU" = ( -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec/east) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring/reactor) "tEX" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/prison/floor_plate, @@ -26233,27 +25606,13 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/lz/near_lzII) -"tFA" = ( -/obj/structure/platform{ - dir = 4 - }, -/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, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"tFB" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" }, -/turf/open/floor/prison/whitegreen/southeast, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"tGc" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) "tGU" = ( /obj/structure/closet/crate/medical, /obj/item/storage/pill_bottle/tramadol/skillless, @@ -26270,20 +25629,19 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) +"tHl" = ( +/obj/structure/inflatable, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) +"tHp" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) "tHw" = ( /obj/item/stack/rods, /turf/open/floor/prison/darkbrown2/east, /area/fiorina/tumor/aux_engi) -"tHC" = ( -/obj/item/clothing/gloves/boxing, -/turf/open/floor/prison/yellow/southwest, -/area/fiorina/station/lowsec/showers_laundry) -"tHF" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/fiorina/station/medbay) "tHJ" = ( /obj/structure/closet/firecloset, /obj/effect/landmark/objective_landmark/medium, @@ -26308,15 +25666,6 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/prison, /area/fiorina/station/chapel) -"tIp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space/basic, -/area/fiorina/oob) "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."; @@ -26325,6 +25674,10 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) +"tIN" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "tIU" = ( /obj/item/tool/candle, /turf/open/floor/prison/chapel_carpet, @@ -26365,6 +25718,13 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) +"tKh" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "tKk" = ( /obj/structure/bed{ icon_state = "abed" @@ -26372,12 +25732,6 @@ /obj/item/reagent_container/food/snacks/wrapped/barcardine, /turf/open/floor/prison/yellow/southwest, /area/fiorina/station/lowsec) -"tKm" = ( -/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/west) "tKv" = ( /obj/structure/machinery/computer/secure_data{ dir = 8 @@ -26385,12 +25739,6 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"tKI" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/east, -/area/fiorina/station/research_cells/west) "tKN" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; @@ -26398,11 +25746,6 @@ }, /turf/open/floor/prison/green/east, /area/fiorina/tumor/civres) -"tKU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/cigbutt, -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/disco/east_disco) "tLk" = ( /obj/item/paper/crumpled, /turf/open/floor/prison/sterile_white/southwest, @@ -26417,6 +25760,14 @@ }, /turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) +"tMr" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "tMs" = ( /obj/item/weapon/gun/smg/mp5, /obj/effect/decal/cleanable/blood, @@ -26441,6 +25792,12 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) +"tMW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring/reactor) "tNf" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -26459,39 +25816,25 @@ /obj/item/prop/helmetgarb/riot_shield, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"tNQ" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - layer = 2.97; - pixel_y = -14 - }, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) "tNV" = ( /obj/item/stack/sheet/wood, /turf/open/floor/plating/prison, /area/fiorina/station/park) +"tOc" = ( +/turf/open/floor/wood, +/area/fiorina/station/disco/east_disco) +"tOp" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "tOG" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/pill_bottle/kelotane/skillless, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"tOK" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) "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) "tOS" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/item/reagent_container/food/snacks/grown/eggplant{ @@ -26500,10 +25843,6 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"tPf" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "tPz" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/candelabra{ @@ -26517,6 +25856,9 @@ /obj/structure/largecrate/supply/medicine/iv, /turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) +"tPB" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells/west) "tPC" = ( /turf/open/floor/prison/darkyellowcorners2, /area/fiorina/station/flight_deck) @@ -26524,15 +25866,11 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"tQi" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - dir = 4; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) +"tPR" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "tQk" = ( /obj/item/shard{ icon_state = "medium" @@ -26550,38 +25888,25 @@ "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, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "tSm" = ( /turf/open/floor/prison/greenblue/west, /area/fiorina/station/botany) -"tSv" = ( -/obj/item/stool, -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_y = 32 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/showers_laundry) -"tSI" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring/reactor) -"tSL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "tSY" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/transit_hub) +"tTm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stool{ + pixel_y = 12 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "tTv" = ( /obj/item/stack/sandbags/large_stack, /turf/open/floor/prison/darkyellow2/west, @@ -26627,12 +25952,30 @@ /obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"tVb" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 +"tVp" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/closet/crate/bravo, +/obj/item/stack/sheet/plasteel, +/obj/item/tool/wirecutters, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, /turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) +"tVI" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells/west) +"tVV" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) +"tVY" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/prison, +/area/fiorina/station/power_ring/reactor) "tWf" = ( /obj/structure/inflatable/popped, /turf/open/floor/plating/plating_catwalk/prison, @@ -26641,13 +25984,19 @@ /obj/structure/closet/secure_closet/hydroponics, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) -"tWI" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space, -/area/fiorina/oob) +"tWo" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) +"tWs" = ( +/obj/item/toy/deck, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) +"tWz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "tXt" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -26655,16 +26004,6 @@ }, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) -"tXD" = ( -/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/park) "tXT" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/prison/redfull, @@ -26688,10 +26027,13 @@ "tYw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/civres) -"tYD" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/power_ring) +"tYz" = ( +/obj/structure/bed/roller, +/obj/item/bedsheet/green, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) "tYQ" = ( /obj/structure/bed/chair, /turf/open/floor/prison/blue_plate/east, @@ -26701,9 +26043,12 @@ /obj/item/paper_bin, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) -"tYX" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) +"tZe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "tZk" = ( /turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/aux_engi) @@ -26711,17 +26056,14 @@ /obj/structure/prop/almayer/computers/sensor_computer1, /turf/open/floor/prison/darkredfull2, /area/fiorina/lz/near_lzI) +"tZE" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "tZO" = ( /obj/item/frame/rack, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"tZP" = ( -/obj/item/stack/sheet/metal, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) "tZW" = ( /obj/item/tool/wet_sign, /turf/open/floor/almayer/plate, @@ -26743,6 +26085,24 @@ /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/kitchen, +/area/fiorina/station/lowsec/showers_laundry) +"ubo" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) +"ubx" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/disco/east_disco) "ubA" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/emails{ @@ -26759,6 +26119,14 @@ "ubP" = ( /turf/open/floor/prison, /area/fiorina/station/security) +"ubQ" = ( +/obj/structure/ice/thin/indestructible{ + dir = 8; + icon_state = "Straight" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells/basketball) "ubX" = ( /turf/open/floor/prison/whitegreen/northeast, /area/fiorina/tumor/ice_lab) @@ -26790,6 +26158,10 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) +"udd" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "udj" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/floor_plate, @@ -26829,10 +26201,14 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"ueE" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) +"ueD" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison, +/area/fiorina/station/disco) "ueI" = ( /obj/structure/filingcabinet, /turf/open/floor/prison/whitegreenfull/southwest, @@ -26847,6 +26223,10 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"ufE" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/fiorina/station/lowsec/showers_laundry) "ufL" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -26861,6 +26241,16 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison/panelscorched, /area/fiorina/tumor/aux_engi) +"ufR" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/fiorina/station/research_cells/west) +"ugg" = ( +/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/showers_laundry) "ugk" = ( /turf/open/floor/prison/darkbrowncorners2, /area/fiorina/tumor/aux_engi) @@ -26876,16 +26266,6 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"ugv" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space/basic, -/area/fiorina/oob) "ugI" = ( /obj/item/fuel_cell, /turf/open/floor/prison, @@ -26909,13 +26289,14 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) -"uhW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco/east_disco) +"uhm" = ( +/obj/structure/window_frame/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) +"uhA" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/east) "uhX" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/prison/whitegreen/northeast, @@ -26927,35 +26308,12 @@ }, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) -"uid" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison, -/area/fiorina/station/security) -"uin" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/fiorina/station/research_cells/west) "uiD" = ( /obj/structure/barricade/wooden{ dir = 8 }, /turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) -"uiV" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) "ujb" = ( /turf/open/floor/prison/darkyellowcorners2/north, /area/fiorina/station/telecomm/lz1_cargo) @@ -26963,10 +26321,13 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"ujx" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/prison, -/area/fiorina/station/research_cells/east) +"ujs" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) "ujz" = ( /obj/item/paper/prison_station/inmate_handbook, /turf/open/floor/prison/floor_plate/southwest, @@ -26981,16 +26342,14 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"uky" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison/whitegreen/southwest, -/area/fiorina/tumor/ice_lab) +"ulc" = ( +/obj/item/paper, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells/west) +"ulN" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "ume" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/coffee{ @@ -27010,6 +26369,12 @@ "umm" = ( /turf/open/floor/prison/yellow/north, /area/fiorina/station/central_ring) +"umu" = ( +/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/east) "umy" = ( /obj/structure/prop/resin_prop{ dir = 4; @@ -27026,6 +26391,9 @@ /obj/item/clothing/gloves/boxing/blue, /turf/open/floor/prison/yellow/northwest, /area/fiorina/station/central_ring) +"umN" = ( +/turf/closed/wall/prison, +/area/fiorina/station/lowsec/east) "umW" = ( /obj/structure/bed/sofa/pews, /turf/open/floor/wood, @@ -27063,29 +26431,36 @@ "unA" = ( /turf/open/floor/prison/platingdmg1, /area/fiorina/station/civres_blue) -"unF" = ( -/obj/item/tool/wirecutters, -/obj/structure/platform/shiva{ - dir = 1 +"uou" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) -"uon" = ( -/obj/item/stack/sheet/wood, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/west) -"uox" = ( -/turf/open/floor/prison/floor_plate/southwest, -/area/fiorina/station/lowsec/east) +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) +"uow" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) +"uoH" = ( +/obj/structure/barricade/sandbags{ + dir = 4; + icon_state = "sandbag_0"; + pixel_y = 2 + }, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco/east_disco) "upf" = ( /obj/structure/closet/toolcloset, /turf/open/floor/prison/darkbrown2/west, /area/fiorina/maintenance) -"upr" = ( -/obj/structure/platform, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) "upw" = ( /turf/open/floor/prison/red/west, /area/fiorina/lz/near_lzII) @@ -27099,6 +26474,10 @@ }, /turf/open/floor/prison/redcorner/east, /area/fiorina/station/power_ring) +"upM" = ( +/obj/structure/disposalpipe/broken, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring/reactor) "upX" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/prison, @@ -27111,41 +26490,50 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"uqj" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/bright_clean2/southwest, -/area/fiorina/station/park) -"uqF" = ( -/obj/structure/closet, -/turf/open/floor/prison/bluecorner/east, -/area/fiorina/station/power_ring/reactor) +"uqV" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) "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) +"urw" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/east) "usg" = ( /obj/effect/spawner/random/attachment, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"utl" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"utm" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "uts" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical/green, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"utB" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) +"utw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "utL" = ( /obj/structure/bed/chair, /turf/open/floor/prison/darkbrown2/north, @@ -27154,17 +26542,33 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) -"uui" = ( -/obj/structure/ice/thin/indestructible{ - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells/basketball) +"uud" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "uuk" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison/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/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) +"uuJ" = ( +/obj/structure/holohoop{ + dir = 8; + id = "basketball"; + side = "right" + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) "uuL" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; @@ -27176,12 +26580,6 @@ /obj/item/prop/helmetgarb/gunoil, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uvg" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) "uvn" = ( /turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) @@ -27223,13 +26621,10 @@ /obj/structure/largecrate/supply/supplies/water, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"uws" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, +"uwk" = ( +/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) +/area/fiorina/station/research_cells/west) "uwT" = ( /obj/structure/sign/poster{ icon_state = "poster10"; @@ -27241,13 +26636,6 @@ /obj/effect/spawner/random/tool, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) -"uxh" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/east) "uxv" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, @@ -27270,6 +26658,19 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"uyA" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"uyC" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells/west) "uyM" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, @@ -27314,12 +26715,6 @@ "uAg" = ( /turf/open/floor/prison/whitegreencorner/north, /area/fiorina/tumor/ice_lab) -"uAE" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/wood, -/area/fiorina/station/lowsec/east) "uAX" = ( /obj/effect/decal/hefa_cult_decals/d32, /turf/open/floor/prison/chapel_carpet/doubleside, @@ -27332,26 +26727,23 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uBV" = ( -/obj/structure/platform_decoration{ - dir = 4 +"uBX" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "uCO" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"uCX" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, +"uDF" = ( +/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, -/area/fiorina/station/park) +/area/fiorina/station/disco/east_disco) "uDX" = ( /obj/structure/prop/structure_lattice{ health = 300 @@ -27373,12 +26765,10 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"uEx" = ( -/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/east) +"uEl" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/space/basic, +/area/fiorina/oob) "uEy" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/cell_stripe/east, @@ -27412,22 +26802,31 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"uFs" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform{ - dir = 1 +"uFr" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz1_tram) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"uFx" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/space/basic, +/area/fiorina/oob) "uFC" = ( /obj/structure/barricade/metal/wired, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"uFO" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison/darkpurplefull2, +"uFL" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"uFW" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells/west) "uGu" = ( /obj/effect/decal/hefa_cult_decals/d32{ @@ -27441,6 +26840,13 @@ }, /turf/open/floor/prison/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/yellow/northeast, +/area/fiorina/station/disco/east_disco) "uGT" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -27452,6 +26858,14 @@ /obj/item/tool/weldingtool, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"uHv" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/fiorina/station/botany) "uIg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/mechanical{ @@ -27459,10 +26873,6 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/maintenance) -"uIi" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) "uIB" = ( /obj/structure/bed/chair{ dir = 1 @@ -27497,6 +26907,10 @@ }, /turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) +"uJp" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec/showers_laundry) "uJG" = ( /obj/item/ammo_casing{ icon_state = "casing_10_1" @@ -27524,41 +26938,22 @@ /obj/item/clipboard, /turf/open/floor/prison, /area/fiorina/station/park) -"uKJ" = ( -/obj/structure/ice/thin/indestructible{ - dir = 8; - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells/basketball) +"uKK" = ( +/obj/structure/bed/roller, +/obj/item/bedsheet/green, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) "uKX" = ( /turf/open/floor/prison/redfull, /area/fiorina/station/security/wardens) -"uLf" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"uLo" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/disco/east_disco) +"uLj" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/limb, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells/east) "uLq" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/telecomm/lz1_tram) -"uLr" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) "uLJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/station_alert, @@ -27569,11 +26964,10 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/prison/greenfull/east, /area/fiorina/station/chapel) -"uLT" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, +"uLV" = ( +/obj/item/bedsheet, /turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells/west) +/area/fiorina/station/lowsec/showers_laundry) "uMc" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison, @@ -27591,6 +26985,12 @@ /obj/structure/surface/rack, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) +"uMt" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) "uMw" = ( /turf/open/floor/wood, /area/fiorina/station/security/wardens) @@ -27616,6 +27016,12 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"uNh" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/prison, +/area/fiorina/station/medbay) "uNm" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/random/gun/rifle/highchance, @@ -27631,6 +27037,14 @@ /obj/structure/machinery/landinglight/ds1, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) +"uNB" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/lowsec) "uNG" = ( /obj/structure/machinery/power/apc/power/north, /turf/open/floor/prison, @@ -27642,10 +27056,6 @@ "uNM" = ( /turf/closed/wall/prison, /area/fiorina/tumor/aux_engi) -"uOb" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "uOu" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -27677,38 +27087,6 @@ "uPl" = ( /turf/open/floor/prison/darkyellowcorners2/east, /area/fiorina/station/telecomm/lz1_cargo) -"uPw" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/item/reagent_container/food/drinks/flask/barflask, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells/west) -"uPy" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring/reactor) -"uPA" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/gm/river/desert/deep, -/area/fiorina/lz/near_lzII) -"uPC" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells/west) "uPX" = ( /turf/open/floor/prison/green/northeast, /area/fiorina/tumor/civres) @@ -27730,6 +27108,15 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison/whitegreen/southeast, /area/fiorina/tumor/ice_lab) +"uRh" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "uRv" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -27772,22 +27159,19 @@ /obj/item/tool/kitchen/utensil/pknife, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"uSY" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/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/darkyellow2/southwest, /area/fiorina/station/telecomm/lz1_cargo) +"uTq" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells/east) "uTr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/prison/whitegreen/west, @@ -27800,6 +27184,14 @@ /obj/item/device/flashlight/flare, /turf/open/floor/prison/darkyellowcorners2/north, /area/fiorina/station/telecomm/lz1_cargo) +"uTv" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) +"uTw" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring/reactor) "uTA" = ( /obj/structure/bed/chair{ dir = 8 @@ -27811,10 +27203,6 @@ /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"uUU" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring/reactor) "uVk" = ( /obj/effect/decal{ icon = 'icons/obj/items/policetape.dmi'; @@ -27830,10 +27218,6 @@ icon_state = "stan_inner_w_1" }, /area/fiorina/tumor/ship) -"uVo" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison, -/area/fiorina/station/power_ring/reactor) "uVD" = ( /turf/open/floor/corsat/squares, /area/fiorina/station/medbay) @@ -27852,6 +27236,12 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"uVM" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/closet/firecloset/full, +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "uVO" = ( /obj/structure/prop/souto_land/pole{ dir = 1 @@ -27881,6 +27271,12 @@ }, /turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) +"uWk" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/east, +/obj/item/tool/extinguisher/mini, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) "uWA" = ( /obj/structure/closet/secure_closet/engineering_electrical, /obj/structure/machinery/light/double/blue{ @@ -27891,24 +27287,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) -"uWO" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrown2, -/area/fiorina/station/park) -"uWQ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/gm/river/desert/deep, -/area/fiorina/lz/near_lzII) -"uXa" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) "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."; @@ -27939,10 +27317,6 @@ /obj/item/reagent_container/food/drinks/bottle/pwine, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"uXV" = ( -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) "uXY" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = 32 @@ -27952,14 +27326,6 @@ "uYi" = ( /turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) -"uYo" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) "uYx" = ( /obj/structure/prop/resin_prop{ icon_state = "coolanttank" @@ -27972,15 +27338,6 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"uZo" = ( -/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/darkpurplefull2, -/area/fiorina/station/research_cells/west) "uZt" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "A ticket to Souto Man's raffle!"; @@ -28020,6 +27377,10 @@ /obj/item/device/flashlight/flare, /turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) +"vao" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "vaC" = ( /obj/structure/closet/bombcloset, /obj/item/clothing/suit/armor/bulletproof, @@ -28032,6 +27393,11 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) +"vce" = ( +/obj/structure/platform/metal/almayer/east, +/obj/item/tool/shovel/spade, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) "vcf" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" @@ -28041,16 +27407,22 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) +"vcn" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "vcq" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) -"vcu" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) +"vcv" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) "vcC" = ( /obj/item/stack/rods, /turf/open/space, @@ -28084,18 +27456,17 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"vdR" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/east) "vdW" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) +"vej" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "vel" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison/floor_plate, @@ -28115,21 +27486,6 @@ opacity = 0 }, /area/fiorina/oob) -"veC" = ( -/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/floor_plate, -/area/fiorina/station/power_ring/reactor) "veJ" = ( /obj/item/clothing/head/helmet/marine/specialist/hefa, /turf/open/floor/prison, @@ -28142,13 +27498,10 @@ /obj/structure/inflatable, /turf/open/floor/prison/whitegreen/southwest, /area/fiorina/station/medbay) -"veW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, +"vft" = ( +/obj/structure/platform/metal/almayer/west, /turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) +/area/fiorina/station/power_ring) "vfz" = ( /obj/item/storage/box/donkpockets, /obj/structure/surface/table/reinforced/prison, @@ -28158,9 +27511,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"vfA" = ( -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/west) "vfL" = ( /obj/item/storage/box/flashbangs, /obj/structure/surface/table/reinforced/prison, @@ -28171,6 +27521,9 @@ icon_state = "stan27" }, /area/fiorina/station/power_ring) +"vfO" = ( +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/station/lowsec/showers_laundry) "vgi" = ( /obj/item/stack/rods, /turf/open/floor/prison/floor_plate, @@ -28179,6 +27532,13 @@ /obj/item/storage/toolbox/antag, /turf/open/floor/prison/green/west, /area/fiorina/tumor/civres) +"vgA" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/obj/structure/closet/emcloset, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "vgC" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -28186,6 +27546,16 @@ }, /turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/lz/near_lzI) +"vgG" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) +"vgK" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer_hull, +/area/fiorina/station/medbay) "vgL" = ( /obj/structure/closet/secure_closet/guncabinet{ req_access = null @@ -28198,11 +27568,6 @@ /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"vgT" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/prison/blue/southeast, -/area/fiorina/station/power_ring/reactor) "vhd" = ( /obj/structure/window/reinforced/tinted, /obj/structure/surface/table/reinforced/prison, @@ -28219,41 +27584,10 @@ "vhI" = ( /turf/open/gm/river/darkred_pool, /area/fiorina/station/park) -"vhX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) -"vis" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring/reactor) "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 @@ -28275,6 +27609,10 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) +"vjR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring/reactor) "vjT" = ( /obj/effect/alien/weeds/node, /turf/open/floor/plating/prison, @@ -28300,14 +27638,6 @@ }, /turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) -"vkt" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/central_ring) "vlK" = ( /obj/structure/surface/rack, /turf/open/floor/prison/whitegreen/northwest, @@ -28365,12 +27695,6 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"vnj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) "vnl" = ( /obj/structure/largecrate/random/barrel/white, /obj/structure/barricade/wooden{ @@ -28404,13 +27728,10 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/darkyellow2/southeast, /area/fiorina/lz/near_lzI) -"vnQ" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) -"vob" = ( -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/disco/east_disco) +"voh" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "voi" = ( /turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) @@ -28421,21 +27742,16 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"vov" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"voK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) +"vor" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/damaged3, +/area/fiorina/station/security) +"voI" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring/reactor) "voO" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/yellow, @@ -28444,49 +27760,12 @@ /obj/structure/dropship_equipment/medevac_system, /turf/open/floor/prison/floor_marked/southwest, /area/fiorina/station/power_ring) -"voT" = ( -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "Straight" - }, -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "Straight" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells/basketball) "voV" = ( /obj/item/ammo_casing{ icon_state = "casing_6_1" }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) -"vpm" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring/reactor) -"vpv" = ( -/obj/structure/holohoop{ - dir = 1 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/east) -"vpD" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) -"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" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, @@ -28496,10 +27775,21 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) -"vrs" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec/showers_laundry) +"vqs" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) +"vqW" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells/west) +"vrp" = ( +/obj/structure/ice/thin/indestructible{ + icon_state = "Corner" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/ice/noweed, +/area/fiorina/station/research_cells/basketball) "vrA" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 @@ -28510,32 +27800,34 @@ /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/sterile_white/southwest, +/area/fiorina/station/research_cells/east) "vrO" = ( /obj/structure/closet/secure_closet/engineering_materials, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) -"vrR" = ( -/obj/structure/platform_decoration, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) "vrS" = ( /obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/transit_hub) -"vrT" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/chapel_carpet, -/area/fiorina/station/chapel) +"vsr" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/east) "vsL" = ( /obj/structure/prop/dam/crane, /turf/open/floor/prison/floor_marked/west, /area/fiorina/tumor/servers) +"vsM" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) "vsT" = ( /obj/structure/cable/heavyduty{ icon_state = "1-8" @@ -28586,6 +27878,19 @@ }, /turf/open/floor/prison/yellow/northwest, /area/fiorina/station/disco) +"vui" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + layer = 3.5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"vuq" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) "vuK" = ( /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/prison, @@ -28601,18 +27906,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"vuX" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/park) -"vvo" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "researchprestine" - }, -/turf/closed/wall/prison, -/area/fiorina/station/research_cells/west) "vvp" = ( /obj/item/tool/candle{ pixel_x = 5; @@ -28642,12 +27935,6 @@ /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/darkpurplefull2, @@ -28665,12 +27952,12 @@ }, /turf/open/floor/prison/blue_plate/north, /area/fiorina/station/botany) -"vxm" = ( -/obj/structure/platform{ - dir = 4 +"vwX" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/prison/greenblue/east, -/area/fiorina/station/botany) +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells/east) "vxs" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_w_2" @@ -28695,13 +27982,6 @@ /obj/item/clothing/suit/storage/hazardvest, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"vyv" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/inflatable/popped, -/turf/open/floor/prison/whitegreen, -/area/fiorina/station/medbay) "vyw" = ( /turf/open/floor/prison/darkyellow2/northwest, /area/fiorina/station/telecomm/lz1_cargo) @@ -28712,6 +27992,9 @@ }, /turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/telecomm/lz1_cargo) +"vza" = ( +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec/showers_laundry) "vzh" = ( /obj/structure/foamed_metal, /turf/open/floor/plating/prison, @@ -28735,6 +28018,11 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"vzu" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "vzB" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ explo_proof = 1; @@ -28753,9 +28041,22 @@ opacity = 0 }, /area/fiorina/tumor/ship) +"vAU" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "vAX" = ( /turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) +"vBa" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells/west) "vBF" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -28768,43 +28069,13 @@ /obj/item/storage/firstaid/regular, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"vBP" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/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/blue_plate/north, /area/fiorina/station/botany) -"vCm" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"vCp" = ( -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco) -"vCr" = ( -/obj/structure/largecrate/supply/ammo, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) "vCu" = ( /obj/item/storage/bible/hefa, /turf/open/floor/prison/green/north, @@ -28819,6 +28090,10 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"vCM" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "vCQ" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "A ticket to Souto Man's raffle!"; @@ -28828,10 +28103,6 @@ }, /turf/open/floor/prison/blue/east, /area/fiorina/station/chapel) -"vCR" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec/east) "vDf" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -28853,19 +28124,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/corsat/plate, /area/fiorina/station/civres_blue) -"vDS" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco/east_disco) -"vEi" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) "vEK" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/power_ring) @@ -28913,10 +28171,18 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/ice_lab) +"vFV" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec/showers_laundry) "vFY" = ( /obj/item/reagent_container/glass/bucket, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) +"vGf" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison, +/area/fiorina/station/power_ring/reactor) "vGM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin{ @@ -28927,6 +28193,13 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) +"vHk" = ( +/obj/structure/platform/metal/almayer/west, +/obj/item/prop/almayer/comp_open{ + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "vHo" = ( /turf/open/floor/prison/blue/northeast, /area/fiorina/tumor/servers) @@ -28959,18 +28232,24 @@ "vIG" = ( /turf/open/floor/prison/platingdmg2, /area/fiorina/station/security) -"vJn" = ( -/obj/structure/platform{ - dir = 4 - }, +"vIH" = ( +/obj/structure/platform_decoration/metal/almayer, /turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/transit_hub) +/area/fiorina/station/telecomm/lz1_tram) +"vJh" = ( +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/east) "vJo" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"vJw" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "vJL" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -28986,6 +28265,10 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/almayer, /area/fiorina/tumor/ship) +"vJR" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) "vKz" = ( /obj/item/stack/sheet/metal{ amount = 5 @@ -29002,43 +28285,18 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison/darkbrown2/east, /area/fiorina/maintenance) -"vLB" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) "vLH" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/wood, /area/fiorina/station/park) -"vLO" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/central_ring) "vLX" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) -"vLY" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/lowsec/east) "vMk" = ( /obj/structure/machinery/vending/snack/packaged, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) -"vMl" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco/east_disco) "vMs" = ( /obj/structure/machinery/vending/hydroseeds, /turf/open/floor/prison/greenfull/northwest, @@ -29046,12 +28304,11 @@ "vMK" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/power_ring) -"vMN" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/darkbrown2/northeast, -/area/fiorina/station/park) +"vMR" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "vMT" = ( /turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) @@ -29087,10 +28344,6 @@ }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) -"vOQ" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/delivery, -/area/fiorina/station/power_ring/reactor) "vOZ" = ( /obj/structure/largecrate/supply/supplies/metal, /turf/open/floor/plating/prison, @@ -29106,13 +28359,6 @@ /obj/structure/barricade/handrail/type_b, /turf/open/floor/prison/floor_plate, /area/fiorina/station/flight_deck) -"vPM" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) "vPR" = ( /turf/closed/shuttle/ert{ icon_state = "stan1" @@ -29122,16 +28368,16 @@ /obj/item/clothing/gloves/botanic_leather, /turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) -"vQn" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/west) "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) +"vQD" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "vQJ" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ density = 0; @@ -29139,6 +28385,16 @@ }, /turf/open/floor/prison/darkbrown2/north, /area/fiorina/maintenance) +"vQK" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"vRk" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/power_ring/reactor) "vRu" = ( /obj/structure/sink{ dir = 4; @@ -29147,6 +28403,9 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/prison/whitepurple/southeast, /area/fiorina/oob) +"vRA" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) "vRF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/pamphlet/skill/powerloader, @@ -29160,6 +28419,12 @@ /obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"vSn" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "vSC" = ( /obj/item/reagent_container/food/condiment/saltshaker{ pixel_x = -5; @@ -29184,12 +28449,6 @@ "vTA" = ( /turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/station/flight_deck) -"vTI" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/transit_hub) "vTL" = ( /obj/item/trash/hotdog, /turf/open/floor/prison/floor_plate, @@ -29207,10 +28466,17 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"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/yellowfull, +/area/fiorina/station/lowsec/showers_laundry) "vUv" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced, @@ -29221,37 +28487,13 @@ /obj/item/tool/screwdriver, /turf/open/floor/prison/green/southwest, /area/fiorina/tumor/civres) -"vUJ" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) -"vUZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"vVg" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) +"vUP" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "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" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) "vVN" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -29284,13 +28526,6 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/medbay) -"vXr" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/disco/east_disco) "vXy" = ( /turf/open/floor/prison/green/southeast, /area/fiorina/tumor/civres) @@ -29302,14 +28537,10 @@ /obj/structure/girder/reinforced, /turf/open/floor/almayer/plate, /area/fiorina/tumor/ship) -"vYJ" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) -"vYK" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison/bluecorner/north, -/area/fiorina/station/power_ring/reactor) +"vYX" = ( +/obj/item/roller, +/turf/open/floor/prison, +/area/fiorina/station/lowsec/showers_laundry) "vYY" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; @@ -29318,6 +28549,10 @@ }, /turf/open/floor/prison/greenfull/east, /area/fiorina/station/transit_hub) +"vZe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring/reactor) "vZs" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/floor_plate, @@ -29326,6 +28561,10 @@ /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/showers_laundry) "vZV" = ( /turf/closed/wall/strata_ice/jungle{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -29335,21 +28574,13 @@ "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/showers_laundry) "wat" = ( -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/yellow/west, /area/fiorina/station/lowsec/showers_laundry) -"waN" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) "waQ" = ( /turf/open/floor/prison/darkyellow2/southwest, /area/fiorina/station/power_ring) @@ -29385,24 +28616,25 @@ "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/showers_laundry) "wcB" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/gun/pistol/midchance, /turf/open/floor/prison/darkpurple2/north, /area/fiorina/tumor/servers) +"wcC" = ( +/obj/structure/closet/basketball, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) "wcP" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/plating/prison, @@ -29417,14 +28649,36 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) -"wdQ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison/whitepurple/southeast, +"wdo" = ( +/obj/structure/closet, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring/reactor) +"wdv" = ( +/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" + }, +/obj/item/prop/helmetgarb/flair_initech, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/prison, +/area/fiorina/station/medbay) +"wdL" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells/west) "wdU" = ( /obj/structure/foamed_metal, /turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) +"wef" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/research_cells/west) "wet" = ( /obj/item/stack/sandbags/large_stack, /turf/open/floor/prison/darkyellow2/north, @@ -29507,6 +28761,15 @@ /obj/item/device/flashlight/flare/on, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"wge" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "wgi" = ( /obj/effect/landmark/nightmare{ insert_tag = "scavshipholder" @@ -29531,22 +28794,10 @@ "wgO" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/station/park) -"wha" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) -"whb" = ( -/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/floor_plate, -/area/fiorina/station/power_ring/reactor) +"whc" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/almayer_hull, +/area/fiorina/oob) "whf" = ( /turf/closed/shuttle/elevator{ dir = 4 @@ -29563,32 +28814,20 @@ "whu" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/civres) -"wis" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) -"wiO" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) "wiR" = ( /obj/structure/surface/rack, /obj/item/key, /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/whitegreen/southwest, /area/fiorina/station/medbay) -"wjc" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/bluecorner, -/area/fiorina/station/power_ring/reactor) "wjC" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/prison/darkbrown2/northwest, /area/fiorina/tumor/aux_engi) +"wjH" = ( +/obj/item/stack/barbed_wire, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) "wjO" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/blood, @@ -29624,6 +28863,10 @@ /obj/item/stack/sheet/metal, /turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/ice_lab) +"wlv" = ( +/obj/item/trash/barcardine, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) "wly" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/lz/near_lzII) @@ -29675,22 +28918,6 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/darkbrown2, /area/fiorina/maintenance) -"woh" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/whitegreen/north, -/area/fiorina/station/medbay) -"wol" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/prison/whitegreen/east, -/area/fiorina/tumor/ice_lab) "wou" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/whitegreenfull/southwest, @@ -29709,13 +28936,6 @@ /obj/item/stack/sheet/plasteel, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"wpq" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - dir = 1; - icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) "wps" = ( /obj/structure/bed/sofa/south/grey/left, /obj/structure/machinery/light/double/blue{ @@ -29733,6 +28953,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) +"wpO" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) "wpW" = ( /obj/structure/sign/kiddieplaque{ desc = "It is a warning sign that describes the process by which fiberbush expands in humid environments, behaving similar to kudzu vines."; @@ -29741,12 +28967,26 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) -"wqI" = ( -/obj/structure/platform_decoration{ - dir = 8 +"wqs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/poster, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/west) +"wqz" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/west) +"wqY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/east) "wrR" = ( /turf/closed/wall/prison, /area/fiorina/station/botany) @@ -29756,28 +28996,13 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"wsq" = ( -/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/darkredfull2, -/area/fiorina/station/research_cells/west) +"wsw" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "wsz" = ( /turf/open/floor/prison/darkbrown2/west, /area/fiorina/tumor/aux_engi) -"wsA" = ( -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco/east_disco) -"wsK" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/bluecorner/west, -/area/fiorina/station/power_ring/reactor) "wsM" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.4 @@ -29787,11 +29012,15 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"wtf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) +"wsR" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "wtm" = ( /obj/structure/monorail{ name = "launch track" @@ -29811,40 +29040,9 @@ /obj/item/weapon/classic_baton, /turf/open/floor/prison/redfull, /area/fiorina/station/security) -"wtJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4; - pixel_y = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) -"wua" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/bluecorner/west, -/area/fiorina/station/power_ring) -"wuf" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/damaged2/southwest, -/area/fiorina/station/lowsec/east) "wun" = ( /turf/open/floor/prison/whitegreencorner/west, /area/fiorina/tumor/ice_lab) -"wuz" = ( -/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) "wuA" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/smg/nailgun, @@ -29865,10 +29063,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"wuD" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) "wuN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison/darkbrownfull2, @@ -29877,10 +29071,6 @@ /obj/item/tool/warning_cone, /turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) -"wuY" = ( -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "wvH" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/chapel_carpet/doubleside, @@ -29910,17 +29100,17 @@ }, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"wws" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "wxl" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/prison/darkbrown2/northeast, /area/fiorina/maintenance) -"wxt" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison, -/area/fiorina/station/disco/east_disco) -"wxP" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/whitepurple/north, +"wxW" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells/west) "wxX" = ( /obj/structure/machinery/computer/cameras{ @@ -29945,18 +29135,10 @@ /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/floor_plate, -/area/fiorina/station/botany) +"wyb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) "wyl" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating/prison, @@ -29973,10 +29155,18 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/oob) +"wyQ" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec/east) "wyT" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) +"wyU" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/up, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) "wzd" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -29994,33 +29184,10 @@ "wzH" = ( /turf/open/floor/prison/blue/northeast, /area/fiorina/station/chapel) -"wzK" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/prop/almayer/flight_recorder, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"wzT" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.6 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"wAb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/disco/east_disco) +"wzN" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/telecomm/lz1_tram) "wAn" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 @@ -30032,9 +29199,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/darkredfull2, /area/fiorina/lz/near_lzI) -"wAP" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/lowsec/east) "wAQ" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -30065,6 +29229,13 @@ /obj/item/stack/tile/plasteel, /turf/open/floor/plating/prison, /area/fiorina/station/security) +"wBV" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/surface/rack, +/obj/item/stack/flag/yellow, +/obj/item/stack/flag/yellow, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "wBX" = ( /obj/structure/largecrate/supply/supplies, /turf/open/floor/plating/prison, @@ -30076,15 +29247,6 @@ /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"wCY" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells/west) "wDe" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison/greenblue, @@ -30114,12 +29276,6 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"wEc" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/west) "wED" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -30151,6 +29307,21 @@ /obj/item/stack/cable_coil/pink, /turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) +"wFs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"wFB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) "wFM" = ( /obj/structure/machinery/power/apc/power/west, /turf/open/floor/prison/floor_plate/southwest, @@ -30162,9 +29333,6 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"wGa" = ( -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells/west) "wGb" = ( /obj/item/ammo_casing{ icon_state = "casing_1" @@ -30200,12 +29368,6 @@ }, /turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) -"wHl" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/wood, -/area/fiorina/station/park) "wHq" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/floor/plating/prison, @@ -30216,34 +29378,19 @@ }, /turf/open/floor/prison/red/west, /area/fiorina/station/security) +"wHu" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) "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, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) -"wHN" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/lowsec/showers_laundry) -"wHS" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 12; - pixel_y = 13 - }, +"wHV" = ( /turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/west) +/area/fiorina/station/research_cells/east) "wId" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/prison, @@ -30266,18 +29413,6 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) -"wIG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/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) "wIJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -30296,9 +29431,10 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) -"wJs" = ( -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells/west) +"wJd" = ( +/obj/structure/barricade/handrail, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells/basketball) "wJw" = ( /obj/structure/closet/crate/trashcart, /obj/item/weapon/gun/rifle/m16, @@ -30308,30 +29444,12 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"wJC" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/east) -"wKa" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/yellow/northwest, -/area/fiorina/station/lowsec/showers_laundry) "wKb" = ( /obj/effect/spawner/random/gun/rifle/midchance, /turf/open/floor/wood, /area/fiorina/station/park) -"wKh" = ( -/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/floor_plate, +"wKi" = ( +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec/east) "wKl" = ( /obj/structure/bed/sofa/south/grey/right, @@ -30402,6 +29520,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) +"wMp" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "wMv" = ( /obj/item/shard{ icon_state = "medium" @@ -30417,21 +29539,17 @@ /obj/item/disk/botany, /turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) -"wMN" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) -"wNb" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/yellow/southeast, -/area/fiorina/station/disco/east_disco) "wNi" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"wNo" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "wNr" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -30462,13 +29580,23 @@ "wNX" = ( /turf/open/floor/prison/green/west, /area/fiorina/station/chapel) +"wOq" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/fiorina/oob) +"wOG" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco/east_disco) "wPz" = ( /turf/closed/shuttle/elevator, /area/fiorina/station/telecomm/lz1_cargo) -"wPI" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) "wQb" = ( /turf/open/floor/prison/blue/north, /area/fiorina/station/civres_blue) @@ -30487,6 +29615,14 @@ /obj/item/weapon/gun/energy/taser, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) +"wQF" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/central_ring) "wQN" = ( /obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/plating/prison, @@ -30521,10 +29657,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"wRx" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) "wRz" = ( /obj/structure/barricade/wooden, /turf/open/floor/prison/cell_stripe/west, @@ -30536,6 +29668,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"wRS" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "wSb" = ( /obj/structure/machinery/gibber, /turf/open/floor/prison/kitchen, @@ -30560,12 +29696,6 @@ "wSm" = ( /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"wSo" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/darkbrown2/east, -/area/fiorina/station/park) "wSt" = ( /obj/structure/monorail{ dir = 9; @@ -30573,10 +29703,24 @@ }, /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 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "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, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells/west) "wSU" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) @@ -30594,9 +29738,17 @@ "wUs" = ( /turf/open/floor/prison/floorscorched1, /area/fiorina/station/civres_blue) -"wUL" = ( -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/showers_laundry) +"wUv" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells/west) +"wUz" = ( +/obj/item/frame/toolbox_tiles, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells/west) "wVc" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/coffee{ @@ -30605,34 +29757,22 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/tumor/fiberbush) -"wVD" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/showers_laundry) +"wWm" = ( +/turf/open/floor/prison/yellowcorner/north, +/area/fiorina/station/lowsec/east) "wWs" = ( /turf/open/floor/greengrid, /area/fiorina/station/security) -"wWT" = ( -/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/east) -"wWW" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/almayer_hull, -/area/fiorina/station/medbay) "wXe" = ( /obj/structure/machinery/computer/cameras{ dir = 1 }, /turf/open/floor/prison/redfull, /area/fiorina/station/security) +"wXo" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "wXy" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light/double/blue{ @@ -30647,16 +29787,41 @@ /obj/structure/pipes/standard/cap/hidden, /turf/open/floor/prison/sterile_white/southwest, /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 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) +"wXR" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"wXY" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/station/park) "wYq" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/chem_dispenser/soda, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"wYP" = ( -/obj/structure/platform, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/botany) +"wYT" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring/reactor) +"wZt" = ( +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/station/research_cells/west) "wZv" = ( /obj/item/stack/sheet/metal, /turf/open/floor/wood, @@ -30665,15 +29830,6 @@ /obj/structure/filingcabinet, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"wZL" = ( -/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/darkredfull2, -/area/fiorina/station/research_cells/west) "wZN" = ( /obj/item/reagent_container/food/drinks/bottle/melonliquor, /turf/open/floor/plating/prison, @@ -30683,18 +29839,10 @@ /obj/item/storage/pill_bottle/kelotane/skillless, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"xas" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/fiorina/station/research_cells/east) "xat" = ( /obj/item/stool, /turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) -"xax" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) "xaO" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison/floor_plate, @@ -30706,10 +29854,6 @@ }, /turf/open/floor/prison/cell_stripe/north, /area/fiorina/station/central_ring) -"xbf" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/disco/east_disco) "xbm" = ( /obj/structure/machinery/line_nexter{ id = "line2"; @@ -30718,6 +29862,14 @@ /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/yellow/northeast, +/area/fiorina/station/disco/east_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."; @@ -30735,6 +29887,12 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) +"xbG" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "xbM" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) @@ -30742,26 +29900,30 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) -"xcS" = ( -/obj/structure/platform{ - dir = 8 - }, +"xct" = ( +/turf/open/floor/prison/blue/north, +/area/fiorina/station/power_ring/reactor) +"xcz" = ( +/obj/structure/closet/secure_closet/engineering_personal, /obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 + dir = 1; + pixel_y = 21 }, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) -"xdt" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 +/area/fiorina/station/power_ring/reactor) +"xdb" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/prison, +/area/fiorina/station/lowsec/showers_laundry) +"xdz" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/turf/open/space/basic, -/area/fiorina/oob) +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/prison, +/area/fiorina/station/botany) "xdE" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -30774,19 +29936,27 @@ /obj/item/trash/cigbutt, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) +"xdZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) "xei" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) +"xel" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/east) "xew" = ( /turf/closed/shuttle/ert{ icon_state = "stan_leftengine" }, /area/fiorina/lz/near_lzI) -"xeL" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/east) "xeO" = ( /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) @@ -30808,14 +29978,6 @@ }, /turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) -"xfG" = ( -/obj/item/device/binoculars/civ, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/showers_laundry) "xgb" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/prison/floor_plate, @@ -30830,21 +29992,25 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) +"xgC" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco/east_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/darkpurplefull2, +/area/fiorina/station/research_cells/west) "xgU" = ( /obj/item/circuitboard/machine/rdserver, /turf/open/floor/prison/floorscorched1, /area/fiorina/tumor/servers) -"xgY" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 1; - icon_state = "human2" - }, -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) "xhL" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaltopleft" @@ -30855,10 +30021,21 @@ /obj/structure/curtain/red, /turf/open/floor/prison/sterile_white, /area/fiorina/station/civres_blue) +"xhV" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "xia" = ( /obj/item/ammo_magazine/smg/mp5, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) +"xig" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "xiF" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light/double/blue{ @@ -30874,6 +30051,9 @@ /obj/structure/machinery/vending/cigarette/free, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) +"xiZ" = ( +/turf/open/floor/prison/yellowcorner/west, +/area/fiorina/station/lowsec/east) "xja" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -30884,31 +30064,17 @@ /obj/structure/computerframe, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"xjF" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison/whitepurple/north, -/area/fiorina/station/research_cells/west) "xjM" = ( /turf/open/floor/prison/redcorner/west, /area/fiorina/station/security) -"xjR" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring/reactor) +"xkg" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) "xkm" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"xkq" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) "xkv" = ( /turf/closed/wall/prison, /area/fiorina/station/telecomm/lz1_tram) @@ -30924,17 +30090,21 @@ }, /turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"xlu" = ( -/obj/structure/bed/chair{ +"xlp" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) +/turf/open/floor/wood, +/area/fiorina/station/research_cells/west) "xlx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/tomatosoup, /turf/open/floor/prison/blue, /area/fiorina/station/power_ring) +"xlC" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) "xlZ" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/pillbottles, @@ -30966,10 +30136,26 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"xnt" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) "xnU" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) +"xoh" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison, +/area/fiorina/station/power_ring/reactor) "xoi" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/plating/prison, @@ -30977,13 +30163,6 @@ "xow" = ( /turf/open/floor/prison/green/east, /area/fiorina/station/chapel) -"xoE" = ( -/turf/open/floor/wood, -/area/fiorina/station/research_cells/west) -"xoJ" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) "xoK" = ( /obj/structure/closet, /obj/item/restraint/handcuffs, @@ -30996,16 +30175,18 @@ /obj/structure/machinery/computer/atmos_alert, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"xpd" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) "xpj" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "lavendergrass_4" }, /turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) -"xps" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/east) "xpw" = ( /obj/structure/machinery/power/apc/power/west, /turf/open/floor/prison, @@ -31014,16 +30195,32 @@ /obj/item/storage/belt/marine, /turf/open/floor/prison, /area/fiorina/station/security) -"xpM" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/power_ring) +"xpy" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec/east) +"xpF" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/space/basic, +/area/fiorina/oob) "xpO" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) +"xqi" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring/reactor) +"xql" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "xqP" = ( /obj/structure/surface/rack, /obj/item/tool/plantspray/weeds, @@ -31047,6 +30244,16 @@ }, /turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"xrw" = ( +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/space, +/area/fiorina/oob) "xrz" = ( /obj/item/clothing/head/cmcap, /turf/open/floor/prison/green, @@ -31071,10 +30278,6 @@ /obj/item/bedsheet/green, /turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) -"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/whitegreenfull/southwest, @@ -31094,27 +30297,18 @@ /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/darkbrownfull2, /area/fiorina/tumor/aux_engi) -"xtP" = ( -/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 - }, -/turf/open/space, +"xts" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells/west) +"xtI" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/space/basic, /area/fiorina/oob) "xuQ" = ( /obj/effect/decal/medical_decals{ @@ -31122,13 +30316,6 @@ }, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"xvr" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/east) "xvv" = ( /turf/open/floor/prison, /area/fiorina/station/botany) @@ -31152,13 +30339,14 @@ /obj/item/trash/eat, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"xwh" = ( -/obj/item/tool/soap, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/fiorina/station/research_cells/west) +"xwc" = ( +/obj/structure/platform/metal/almayer/north, +/obj/item/fuel_cell, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) +"xwm" = ( +/turf/open/floor/prison, +/area/fiorina/station/power_ring/reactor) "xwo" = ( /obj/structure/surface/rack, /obj/item/storage/box/sprays, @@ -31171,6 +30359,9 @@ "xwC" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/fiberbush) +"xxg" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/lowsec/east) "xxD" = ( /turf/open/floor/wood, /area/fiorina/station/civres_blue) @@ -31186,6 +30377,10 @@ }, /turf/open/floor/prison/whitegreen/north, /area/fiorina/tumor/ice_lab) +"xxW" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "xxX" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gib4" @@ -31205,10 +30400,6 @@ "xzj" = ( /turf/open/floor/carpet, /area/fiorina/tumor/civres) -"xzp" = ( -/obj/item/clothing/suit/storage/labcoat, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) "xzs" = ( /obj/structure/machinery/space_heater, /turf/open/organic/grass/astroturf, @@ -31222,23 +30413,22 @@ }, /turf/open/space, /area/fiorina/oob) +"xAn" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/showers_laundry) "xAo" = ( /obj/item/trash/cigbutt/bcigbutt, /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"xAq" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "xAs" = ( /obj/item/device/reagent_scanner, /turf/open/organic/grass/astroturf, /area/fiorina/tumor/fiberbush) -"xAL" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) -"xAV" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) "xAY" = ( /obj/effect/landmark{ icon_state = "hive_spawn"; @@ -31247,6 +30437,10 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/prison/whitegreencorner/north, /area/fiorina/tumor/ice_lab) +"xBc" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells/west) "xBl" = ( /obj/structure/surface/table/woodentable, /obj/item/circuitboard/apc, @@ -31261,32 +30455,32 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"xBn" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison, -/area/fiorina/station/lowsec/showers_laundry) -"xBu" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"xBL" = ( -/obj/structure/bed{ - icon_state = "abed" +"xBF" = ( +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec/east) +"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"; + pixel_x = 1; + pixel_y = -1 }, -/obj/item/reagent_container/food/drinks/flask/marine, -/turf/open/floor/prison/whitepurple/southwest, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells/west) -"xBS" = ( -/turf/open/floor/prison/blue, -/area/fiorina/station/power_ring/reactor) "xCa" = ( /obj/item/toy/crayon/rainbow, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"xCg" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/east) +"xCh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/east) "xCp" = ( /obj/structure/inflatable/popped, /turf/open/floor/prison/whitegreen, @@ -31295,15 +30489,10 @@ /obj/structure/curtain/shower, /turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) -"xCv" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"xCE" = ( -/turf/open/floor/prison/damaged1/southwest, -/area/fiorina/station/disco/east_disco) +"xCR" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells/east) "xCV" = ( /obj/item/reagent_container/food/drinks/bottle/orangejuice, /turf/open/floor/prison, @@ -31320,14 +30509,6 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"xDD" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/prison/yellow/north, -/area/fiorina/station/lowsec/showers_laundry) -"xDY" = ( -/obj/item/stool, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "xEi" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; @@ -31335,10 +30516,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"xEu" = ( -/obj/item/weapon/baton/cattleprod, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells/east) "xEy" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -31365,6 +30542,10 @@ "xFg" = ( /turf/open/floor/prison/yellow/northwest, /area/fiorina/station/central_ring) +"xFJ" = ( +/obj/item/tool/soap, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec/showers_laundry) "xFL" = ( /obj/effect/decal{ icon = 'icons/obj/items/policetape.dmi'; @@ -31383,6 +30564,13 @@ }, /turf/open/floor/prison/bluefull, /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/darkredfull2, +/area/fiorina/station/lowsec/east) "xGi" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -31406,18 +30594,10 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/security) -"xHg" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/yellow/east, -/area/fiorina/station/lowsec/east) "xHi" = ( /obj/item/trash/candle, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) -"xHA" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison, -/area/fiorina/station/power_ring/reactor) "xHV" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/civres) @@ -31430,24 +30610,18 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"xIq" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/disco) "xIx" = ( /obj/structure/largecrate/random, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"xIL" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison/whitepurple/southeast, -/area/fiorina/station/research_cells/west) +"xID" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"xJn" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco/east_disco) "xJw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/civres_blue) @@ -31462,21 +30636,18 @@ /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" +"xKE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder{ + pixel_x = 8; + pixel_y = 8 }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec/east) +"xKP" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells/east) "xKX" = ( /turf/open/floor/plating/prison, /area/fiorina/station/disco) @@ -31505,6 +30676,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) +"xLx" = ( +/obj/item/bedsheet, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec/showers_laundry) "xLD" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -31521,9 +30696,6 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"xMg" = ( -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/west) "xMp" = ( /obj/item/trash/c_tube, /turf/open/floor/prison/whitegreenfull/southwest, @@ -31532,20 +30704,6 @@ /obj/item/stack/sandbags_empty/half, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"xMW" = ( -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/space, -/area/fiorina/oob) "xMX" = ( /obj/structure/inflatable/door, /turf/open/floor/prison/whitegreen/west, @@ -31560,48 +30718,30 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison, /area/fiorina/station/security) -"xNn" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/transit_hub) -"xNA" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison/whitepurple/southwest, -/area/fiorina/station/research_cells/west) "xNG" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) +"xNJ" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/obj/item/frame/rack, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco/east_disco) "xNU" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/prison/darkyellow2/northeast, /area/fiorina/station/flight_deck) -"xNV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/sterile_white/southwest, -/area/fiorina/station/research_cells/east) "xOm" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"xOp" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/organic/grass/astroturf, -/area/fiorina/station/research_cells/basketball) "xOs" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -31622,35 +30762,23 @@ "xPk" = ( /turf/open/floor/prison/greencorner/west, /area/fiorina/tumor/civres) -"xPo" = ( -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison/yellow/northeast, -/area/fiorina/station/lowsec/east) -"xPF" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/east) "xPG" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"xQp" = ( -/obj/structure/inflatable, -/turf/open/floor/prison/whitepurple, -/area/fiorina/station/research_cells/west) "xQx" = ( /turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) -"xQC" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +"xRa" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/fiorina/oob) +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/station/disco) "xRl" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -31669,13 +30797,20 @@ "xRI" = ( /turf/open/floor/prison/yellow/east, /area/fiorina/station/lowsec) -"xSu" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"xRY" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/prison/whitepurple/northeast, +/obj/item/card/id/visa, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells/west) +"xSj" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison, +/area/fiorina/station/transit_hub) +"xSw" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/east) "xSz" = ( /obj/structure/barricade/metal/wired{ dir = 8 @@ -31693,9 +30828,6 @@ /obj/item/tool/kitchen/utensil/pspoon, /turf/open/floor/prison/blue/east, /area/fiorina/station/power_ring) -"xTw" = ( -/turf/open/floor/prison/floor_plate, -/area/fiorina/station/lowsec/east) "xTD" = ( /obj/structure/inflatable/popped/door, /obj/effect/decal/medical_decals{ @@ -31727,6 +30859,21 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/station/park) +"xVw" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells/west) +"xVC" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/station/disco/east_disco) "xVJ" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical/green, @@ -31741,10 +30888,6 @@ }, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"xVL" = ( -/obj/item/bodybag, -/turf/open/floor/prison/yellow/west, -/area/fiorina/station/lowsec/showers_laundry) "xVW" = ( /turf/open/floor/prison/darkbrown2/northwest, /area/fiorina/station/park) @@ -31752,14 +30895,6 @@ /obj/item/clothing/shoes/dress, /turf/open/space, /area/fiorina/oob) -"xWh" = ( -/obj/structure/ice/thin/indestructible{ - dir = 4; - icon_state = "Corner" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/ice/noweed, -/area/fiorina/station/research_cells/basketball) "xWE" = ( /obj/item/reagent_container/food/condiment/peppermill{ pixel_x = -5; @@ -31767,6 +30902,10 @@ }, /turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) +"xWG" = ( +/obj/item/weapon/twohanded/spear, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells/west) "xWV" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -31807,10 +30946,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"xXw" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/whitepurple/west, -/area/fiorina/station/research_cells/west) +"xXP" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz1_tram) "xXY" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/floor_plate, @@ -31827,6 +30970,17 @@ /obj/structure/machinery/power/apc/power/west, /turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) +"xYJ" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells/west) +"xYM" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "xYN" = ( /obj/item/device/t_scanner, /turf/open/floor/prison/floor_plate, @@ -31867,17 +31021,6 @@ }, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security/wardens) -"xZL" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/prison/bluefull, -/area/fiorina/station/power_ring/reactor) "xZM" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/green/west, @@ -31917,17 +31060,17 @@ /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"yaB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/fiorina/station/research_cells/west) "yaJ" = ( /obj/structure/machinery/vending/sovietsoda, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"yaS" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec/showers_laundry) "yaY" = ( /obj/item/stack/sheet/metal, /turf/open/space, @@ -31948,31 +31091,10 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/lz/near_lzII) -"ybk" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells/east) "ybm" = ( /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" - }, -/turf/open/floor/prison, -/area/fiorina/station/botany) -"ybE" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/effect/spawner/random/tool, -/obj/item/clothing/gloves/combat, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "ybU" = ( /obj/structure/prop/resin_prop{ icon_state = "sheater0" @@ -32014,11 +31136,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) -"ydw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/surgicaldrill, -/turf/open/floor/prison/yellowcorner, -/area/fiorina/station/lowsec/showers_laundry) "ydK" = ( /turf/open/floor/prison/blue/east, /area/fiorina/station/power_ring) @@ -32036,6 +31153,10 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison, /area/fiorina/station/medbay) +"yeI" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) "yeX" = ( /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison, @@ -32067,20 +31188,12 @@ /obj/effect/spawner/random/technology_scanner, /turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"ygr" = ( -/obj/structure/platform, -/turf/open/floor/prison/cell_stripe/west, -/area/fiorina/station/security) -"ygs" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" +"ygk" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, -/turf/open/floor/plating/prison, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/yellowcorner, +/area/fiorina/station/lowsec/showers_laundry) "ygw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -32095,12 +31208,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"ygC" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/yellow/east, +"ygL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec/east) +"ygS" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/disco/east_disco) "yhs" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, @@ -32111,6 +31225,19 @@ /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 + }, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells/west) "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." @@ -32121,6 +31248,10 @@ /obj/structure/machinery/disposal, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) +"yin" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "yio" = ( /turf/closed/shuttle/ert, /area/fiorina/tumor/aux_engi) @@ -32131,11 +31262,13 @@ /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) "yiG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - icon = 'icons/obj/structures/doors/2x1prepdoor.dmi' +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec/showers_laundry) +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison, +/area/fiorina/station/disco) "yiL" = ( /obj/item/trash/cigbutt/bcigbutt, /turf/open/floor/prison/darkredfull2, @@ -32150,10 +31283,11 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/fiorina/lz/near_lzI) -"yjy" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison/whitepurple/northwest, -/area/fiorina/station/research_cells/west) +"yjV" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/lattice, +/turf/open/space/basic, +/area/fiorina/oob) "yjW" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison/floor_plate, @@ -32169,14 +31303,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"ykU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/wy_mre{ - pixel_x = 5; - pixel_y = 2 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/fiorina/station/research_cells/west) "ykX" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" @@ -32189,13 +31315,22 @@ }, /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 + }, +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells/east) "ylu" = ( /obj/item/tool/wrench, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"ylI" = ( -/turf/open/floor/prison/yellowfull, -/area/fiorina/station/lowsec/east) +"ylU" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/space/basic, +/area/fiorina/oob) "ylW" = ( /obj/effect/decal/medical_decals{ icon_state = "cryomid" @@ -38321,7 +37456,7 @@ baC baC baC pcu -iWq +hfJ bQM bQM bQM @@ -38531,9 +37666,9 @@ baC baC baC baC -bTo +gjm pcu -iWq +hfJ bQM bQM bQM @@ -38743,9 +37878,9 @@ baC baC baC bQM -bTo +gjm pcu -iWq +hfJ bQM bQM bQM @@ -38952,15 +38087,15 @@ bfF rGq rZP baC -swg -fQV -fQV -fyC -qOk -mKS -fQV -fQV -erT +rfI +rQt +rQt +eyB +pFE +ocW +rQt +rQt +grn bQM bQM bQM @@ -39164,7 +38299,7 @@ bfF rGq lHx bQM -bTo +gjm afk afk afk @@ -39172,7 +38307,7 @@ hkh afk afk afk -iWq +hfJ bQM bQM bQM @@ -39376,7 +38511,7 @@ vsT rGq lHx bQM -bTo +gjm afk afk afk @@ -39384,7 +38519,7 @@ pcu afk afk afk -iWq +hfJ bQM bQM bQM @@ -39588,7 +38723,7 @@ rGq rGq lHx bQM -bTo +gjm afk afk afk @@ -39596,7 +38731,7 @@ hkh afk afk afk -iWq +hfJ bQM bQM bQM @@ -39800,15 +38935,15 @@ osX rGq rZP baC -aKA -jlH -jlH -tWI -llQ -jKI -jlH -jlH -bUB +rcy +rhR +rhR +dfw +lJb +ngo +rhR +rhR +mtM bQM bQM bQM @@ -40015,9 +39150,9 @@ baC baC baC bQM -bTo +gjm pcu -iWq +hfJ bQM bQM bQM @@ -40229,7 +39364,7 @@ baC baC baC pcu -iWq +hfJ bQM bQM bQM @@ -44307,7 +43442,7 @@ bQM bQM bQM cAW -bTo +gjm aaa bQM cAW @@ -44519,9 +43654,9 @@ bQM bQM bQM cAW -bTo +gjm pcu -iWq +hfJ cAW cAW cAW @@ -44676,10 +43811,10 @@ irB irB irB tkj -uWO -gSX -gSX -oTT +eGT +qMk +qMk +amg oPU oPU oPU @@ -44882,21 +44017,21 @@ oer oPU uKE oPU -rsg -kDa +oCH +bKO irB jgu jgu -cPL -uCX +ebx +byn jgu jgu -hcY +dGF wgO -gqM -gSX -gSX -oTT +rEG +qMk +qMk +amg tkj oer vLH @@ -45092,9 +44227,9 @@ jgu tkj oer oPU -rsg -kDa -sTU +oCH +bKO +rBh jgu kXD jgu @@ -45103,12 +44238,12 @@ mWs dCK chT jgu -cPL +ebx sTm -uCX +byn jgu jgu -hcY +dGF tkj oer xVW @@ -45155,9 +44290,9 @@ bQM bQM bQM cAW -bTo +gjm pcu -iWq +hfJ cAW cAW cAW @@ -45304,7 +44439,7 @@ jgu bxm oer oPU -uLf +gXa jgu kXD jgu @@ -45320,7 +44455,7 @@ wnu dqE tNV kXD -hcY +dGF tkj oer lzJ @@ -45367,9 +44502,9 @@ bQM bQM bQM cAW -bTo +gjm pcu -iWq +hfJ cAW cAW cAW @@ -45515,8 +44650,8 @@ vhB wgO tkj oer -rsg -sTU +oCH +rBh kXD oRR dLq @@ -45532,7 +44667,7 @@ wbI wbI lzJ kXD -hcY +dGF tkj lzJ irB @@ -45579,9 +44714,9 @@ bQM bQM bQM cAW -bTo +gjm pcu -iWq +hfJ cAW cAW cAW @@ -45599,17 +44734,17 @@ agi agi aWV aWV -cYV +cDO fUz -edu +oxR aWV jXz jXz jXz aWV -cYV +cDO fUz -mIf +lIN jXz otg dLL @@ -45727,7 +44862,7 @@ vhB wgO tkj oer -uLf +gXa jgu jgu wbI @@ -45744,7 +44879,7 @@ wbI wbI wbI kXD -hcY +dGF mPX tiZ irB @@ -45811,17 +44946,17 @@ aWV aWV jXz jXz -eim +bDf lLQ -orB +hlx jXz pgx pgx pgx jXz -eim +bDf lLQ -orB +hlx gKi lLQ oiV @@ -45938,26 +45073,26 @@ jgu jgu jgu bxm -uWO -sTU +eGT +rBh kXD wbI jcv djf tkj oer -hPi +pKV jUG jUG -oKf +ixU lxT alP wbI jcv wbI kXD -oCn -wHl +vQK +oHe wbI irB irB @@ -46005,7 +45140,7 @@ bQM cAW bQM aaa -iWq +hfJ cAW cAW cAW @@ -46150,7 +45285,7 @@ jgu itN jgu tkj -bcT +udd jgu jgu jBQ @@ -46158,10 +45293,10 @@ bvK dLq tkj oer -pGK +gLC jfd hRX -mjB +qZp tkj oer jBQ @@ -46169,7 +45304,7 @@ oRR dLq jgu jgu -hcY +dGF wbI tkj oer @@ -46215,9 +45350,9 @@ bQM bQM bQM cAW -bTo +gjm pcu -iWq +hfJ cAW cAW cAW @@ -46362,7 +45497,7 @@ jgu itN jgu tkj -sRE +cRk jgu anu wbI @@ -46370,10 +45505,10 @@ rBz wbI tkj oer -pGK +gLC hRX pzh -sQL +ttU nez oer wbI @@ -46381,7 +45516,7 @@ rBz wbI qkg jgu -sBf +kMA wbI tkj oer @@ -46427,9 +45562,9 @@ bQM bQM bQM cAW -bTo +gjm pcu -iWq +hfJ cAW cAW cAW @@ -46574,26 +45709,26 @@ jgu jgu jgu tkj -osv -iyk +ecz +iUR oyT oyT oyT oyT oWw oer -pGK +gLC mxs vhI -fgM +gAs tkj lzP oyT oyT oyT eNn -uqj -bFi +rov +mwi oyT oWw oer @@ -46639,9 +45774,9 @@ bQM bQM bQM cAW -bTo +gjm pcu -iWq +hfJ cAW cAW agi @@ -46786,26 +45921,26 @@ itN itN oPU tkj -fdR -spA +scb +juL tiZ tiZ tiZ tiZ wCI lAn -dqa +pFB sbf vhI -sQL +ttU oWG mtG tiZ tiZ tiZ uVO -tXD -wSo +sxY +lcO tiZ tiZ qhk @@ -46851,9 +45986,9 @@ bQM bQM bQM cAW -bTo +gjm pcu -iWq +hfJ cAW cAW agi @@ -46998,7 +46133,7 @@ itN itN oPU tkj -sRE +cRk jgu anu wbI @@ -47006,10 +46141,10 @@ jcv wbI tkj oer -pGK +gLC uxN gTc -sQL +ttU nWk oer wbI @@ -47017,7 +46152,7 @@ jcv wbI qkg jgu -nho +iGh wbI wbI wbI @@ -47063,9 +46198,9 @@ bQM bQM bQM cAW -bTo +gjm pcu -iWq +hfJ cAW cAW agi @@ -47210,7 +46345,7 @@ itN sIz oPU tkj -bcT +udd jgu jgu jBQ @@ -47218,10 +46353,10 @@ nAf dLq tkj oer -pGK +gLC hRX sbf -sQL +ttU tkj oer jBQ @@ -47275,9 +46410,9 @@ bQM bQM bQM cAW -bTo +gjm pcu -iWq +hfJ agi aWV aWV @@ -47422,18 +46557,18 @@ itN kMC oPU tkj -eEX -aBD +aOp +foR kXD wbI rBz wbI qUC oer -sSM +ebx sTm sTm -uCX +byn tkj oer wbI @@ -47487,9 +46622,9 @@ bQM bQM bQM cAW -bTo +gjm pcu -pbV +toG agi aWV aPD @@ -47635,7 +46770,7 @@ wgO oPU tkj oer -uLf +gXa kXD wbI wbI @@ -47699,7 +46834,7 @@ bQM cAW cAW cAW -bTo +gjm pcu pcu agi @@ -47847,7 +46982,7 @@ vhB oPU gyt oer -ckZ +pRM kXD aBJ wKb @@ -47911,9 +47046,9 @@ bQM cAW cAW cAW -bTo +gjm pcu -xtP +jAw agi aWV aPD @@ -48059,7 +47194,7 @@ vhB oPU tkj oer -ckZ +pRM kXD lvt tas @@ -48123,7 +47258,7 @@ cAW cAW cAW cAW -bTo +gjm pcu agi agi @@ -48271,12 +47406,12 @@ vhB oPU tkj oer -ckZ +pRM jgu jgu -hPi +pKV jUG -oKf +ixU jgu wuC roi @@ -48335,7 +47470,7 @@ bQM cAW cAW cAW -bTo +gjm pcu agi agi @@ -48483,16 +47618,16 @@ wgO dmT tkj oer -ove -dJe -dJe -vuX +sce +lLk +lLk +qVb wgO -uLf +gXa jgu jgu -hPi -gtf +pKV +lMJ jgu itN jBQ @@ -48700,12 +47835,12 @@ oPU oPU gAn oPU -ove -dbr -dbr -vMN -fGi -dbr +sce +dOI +dOI +roC +wXY +dOI itN wbI qJL @@ -49081,7 +48216,7 @@ frM bnA wSU wSU -nJq +xxW guz iiw awL @@ -49293,7 +48428,7 @@ vBX wAn wSU wSU -nJq +xxW guz gcx okv @@ -49505,7 +48640,7 @@ vBX bnA wSU wSU -nJq +xxW guz gcx okv @@ -49717,7 +48852,7 @@ guz bnA vDf wSU -nJq +xxW guz gcx pLQ @@ -49726,7 +48861,7 @@ guz guz guz guz -gTW +eaH cEw cEw cEw @@ -49929,7 +49064,7 @@ bgc bnA wSU kok -nJq +xxW guz gcx okv @@ -49938,7 +49073,7 @@ guz wSU uSA uSA -pRp +vej bnA wps guz @@ -49947,17 +49082,17 @@ wrR mpE vOm vOm -psx +dHE ipd soj iTJ kbo tSm tSm -iTs -bqC -art -fvr +xdz +tWo +low +jXr nkF nkF nkF @@ -50140,8 +49275,8 @@ fXI guz xvB aAA -xNn -eBr +pxu +enn guz gcx pLQ @@ -50150,7 +49285,7 @@ guz wSU yeX pen -byT +xkg bnA mSo guz @@ -50159,7 +49294,7 @@ wrR xvv xvv xvv -rLA +qAO ipd soj rKy @@ -50362,26 +49497,26 @@ guz wSU uSA uSA -giw -noz -nSh +cQB +wXo +iNs vBX guz eMG xvv xvv xvv -rLA +qAO ipd spb rKy xiL mAt nMp -jFh -vxm -heT -aZW +atb +yeI +owz +qhL wgO wgO wgO @@ -50583,7 +49718,7 @@ bPG xvv xvv xvv -rLA +qAO ipd spb rKy @@ -50593,7 +49728,7 @@ wrR ipd ipd nvD -hcY +dGF vhB vhB wgO @@ -50795,17 +49930,17 @@ bPG xvv xvv xvv -rLA +qAO ipd kdq rKy xiL mdS tSm -iTs -bqC -art -vuX +xdz +tWo +low +qVb wgO wgO bRs @@ -50998,16 +50133,16 @@ guz wSU uSA uSA -qLv -gyy -dpn +luR +vJw +hEW vBX guz bPG xvv xvv xvv -rLA +qAO ipd vMs sFd @@ -51210,26 +50345,26 @@ guz wSU yeX pen -byT +xkg bnA jHp myH jHp wrR -tkP +qlC pYL pYL -jHD +fKE wrR wrR wrR wrR rKy mAt -jFh -vxm -heT -aZW +atb +yeI +owz +qhL wgO lAN wgO @@ -51419,10 +50554,10 @@ gcx okv gcx guz -eQY -vJn -vJn -asE +sMq +rPj +rPj +qeq bnA kzL guz @@ -51631,7 +50766,7 @@ gcx okv gcx guz -jYn +wws wrR ipd ipd @@ -51843,7 +50978,7 @@ gcx okv gcx guz -byT +xkg pVD mKx iTJ @@ -52048,14 +51183,14 @@ fXI guz okv aAA -aje -vTI +alk +vCM guz gcx okv gcx ffA -jYn +wws pVD mKx iBM @@ -52261,22 +51396,22 @@ tSY bnA vDf kok -nJq +xxW guz gcx okv gcx vrS -jYn +wws wrR wrR tql xiL iOX -pGy +gsx eYN eYN -ybx +uHv jqM xiL rKy @@ -52473,23 +51608,23 @@ vBX bnA vBX wSU -nJq +xxW guz gcx okv gcx ffA -jYn +wws wrR nhX anT vcq -kle -wHC +vuq +eyT kat jVM -omN -nrd +cgo +hoz vAX rKy rft @@ -52685,23 +51820,23 @@ guz vBX vBX kok -bem +jtW guz gcx okv gcx guz -byT +xkg wrR nzf dpZ vAX -hWz +uyA bSM bSM bSM bSM -vCm +tcd pAl rKy rft @@ -52897,23 +52032,23 @@ guz vBX vBX wSU -bem +jtW rdi gcx tER gcx guz -byT +xkg wrR eQz ixK rKG -wyd -oby -oby -oby -oby -ftd +xpd +hjA +hjA +hjA +hjA +nte vAX rKy oEX @@ -53052,13 +52187,13 @@ rty cui mzn eXp -til -ljx +eDU +iXn raL raL raL -bpe -snr +tDO +dzs eXp raL rty @@ -53109,13 +52244,13 @@ guz vBX vBX wSU -nJq +xxW rhh kJf okv gcx guz -jYn +wws wrR wrR iFg @@ -53265,11 +52400,11 @@ bxg jlB xrZ xGc -uws +iGI uzy uzy uzy -iAq +imH xGc bNE rKA @@ -53321,13 +52456,13 @@ wSX iuz vBX wSU -nJq +xxW rhh uEj okv gcx guz -jYn +wws pVD mKx iTJ @@ -53533,13 +52668,13 @@ wSU oVk vBX wSU -bem +jtW rhh jji vjG gcx guz -byT +xkg pVD mKx dBt @@ -53745,13 +52880,13 @@ wSU oVk vBX kok -bem +jtW guz gcx okv gcx guz -byT +xkg wrR vdH eyv @@ -53767,10 +52902,10 @@ qjX wDe xiL iOX -pGy +gsx eYN eYN -ybx +uHv iOX xiL rKy @@ -53957,13 +53092,13 @@ wSU eys vBX wSU -nJq +xxW guz gcx kEj gcx guz -jYn +wws pVD iQH mKx @@ -53978,12 +53113,12 @@ ipd rKy rft vAX -kle -mLm +vuq +dJc kat jVM -omN -nrd +cgo +hoz vAX rKy rft @@ -54140,13 +53275,13 @@ bis nOz mCp gTi -xst +hFX lqq lqq lqq lqq lqq -vrT +iLE mCp gTi nOz @@ -54169,13 +53304,13 @@ wSU wSU vBX kok -nJq +xxW guz gcx okv gcx guz -jYn +wws pVD mKx mKx @@ -54190,12 +53325,12 @@ ipd rKy iEA vAX -hWz +uyA bSM bSM bSM bSM -vCm +tcd vAX rKy rft @@ -54312,17 +53447,17 @@ tel ioM ioM ioM -sKu -iXs +sSv +kll ioM ioM ioM ioM ioM -sKu +sSv chx chx -iXs +kll ioM ioM ioM @@ -54332,10 +53467,10 @@ ioM ioM ioM ioM -sKu +sSv chx chx -iXs +kll ioM ioM hVI @@ -54352,13 +53487,13 @@ sJu lqq mCp gTi -kHf -tcL +rOV +mcy nOz pVR nOz -jeL -fKm +owI +xID mCp gTi lqq @@ -54380,14 +53515,14 @@ wSU wSU wSU vBX -xNn -eBr +pxu +enn guz gcx okv gcx guz -jYn +wws pVD mKx mKx @@ -54402,12 +53537,12 @@ ipd rKy rft vAX -wyd -oby -oby -oby -oby -ftd +xpd +hjA +hjA +hjA +hjA +nte vAX rKy mdS @@ -54565,11 +53700,11 @@ nOz mCp gTi eTc -sfi -mWX -mWX -mWX -ifk +mrP +pbo +pbo +pbo +fcH eTc mCp gTi @@ -54599,7 +53734,7 @@ gcx okv gcx guz -jYn +wws wrR vdH eyv @@ -54736,8 +53871,8 @@ ioM ioM ioM ioM -sKu -iXs +sSv +kll ioM hVI fCr @@ -54811,8 +53946,8 @@ gcx okv gcx guz -bxA -cKU +eYW +hBK xiL iTJ tSm @@ -55016,8 +54151,8 @@ ppS hGn lit vBX -aje -vTI +alk +vCM guz gcx okv @@ -55229,14 +54364,14 @@ wSU wSU vBX kok -nJq +xxW guz gcx okv gcx guz -eQY -sVd +sMq +qqm xiL sFd nMp @@ -55441,32 +54576,32 @@ wSU wSU vBX bnA -bem +jtW guz pCH awL wSt guz -jYn +wws wrR mKx rft xiL iOX -pGy +gsx eYN eYN -ybx +uHv iOX xiL gmx rft kgY mxm -pGy +gsx eYN eYN -ybx +uHv jqM xiL rKy @@ -55653,33 +54788,33 @@ hGn lit tSY bnA -nJq +xxW guz guz guz guz guz -jYn +wws wrR mKx rft aYf -kle -mLm +vuq +dJc kat jVM -omN -nrd +cgo +hoz vAX rKy rft oeV -kle -mLm +vuq +dJc kat jVM -omN -nrd +cgo +hoz vAX rKy mAt @@ -55865,33 +55000,33 @@ wSU wSU vBX bnA -mOm -cZP -vov +aIT +dzh +xSj vBX -qLv -cZP -jRC +luR +dzh +qZz wrR vdH rft vAX -hWz +uyA bSM bSM bSM bSM -wYP +sQv vAX rKy rft lIH -hWz +uyA bSM bSM bSM bSM -vCm +tcd vAX rKy rft @@ -56079,31 +55214,31 @@ lNP bnA bnA eOI -aqj +osu fpN -bQj +kab oxU wrR wrR mKx rft vAX -wyd -oby -oby -oby -oby -ftd +xpd +hjA +hjA +hjA +hjA +nte vAX rKy rft iiz -wyd -oby -oby -oby -hKP -ftd +xpd +hjA +hjA +hjA +vce +nte vAX rKy rft @@ -56127,18 +55262,18 @@ voi voi xUr itN -swg -fQV -fQV -fyC -qOk -mKS -fyC -qOk -mKS -fQV -fQV -erT +rfI +rQt +rQt +eyB +pFE +ocW +eyB +pFE +ocW +rQt +rQt +grn twb chE kMU @@ -56339,7 +55474,7 @@ voi voi lwA uGT -bTo +gjm afk afk afk @@ -56350,7 +55485,7 @@ hkh afk afk afk -iWq +hfJ tPN rMo kTs @@ -56551,7 +55686,7 @@ hpd fXB fXB dCM -bTo +gjm afk afk afk @@ -56562,7 +55697,7 @@ pcu afk afk afk -iWq +hfJ tPN fmE dKX @@ -56654,8 +55789,8 @@ bFA rYY ePq mzS -lEp -wWW +vgK +rPM xXh xuQ gjz @@ -56763,7 +55898,7 @@ ubP ubP ubP dCM -bTo +gjm afk afk afk @@ -56774,7 +55909,7 @@ hkh afk afk afk -iWq +hfJ tPN mKo kTs @@ -56873,8 +56008,8 @@ xuQ tja tja hVI -ieu -ieu +dUm +dUm hVI hVI qEl @@ -56975,18 +56110,18 @@ ubP ubP ubP nqN -aKA -jlH -jlH -tWI -llQ -jKI -tWI -llQ -jKI -jlH -jlH -bUB +rcy +rhR +rhR +dfw +lJb +ngo +dfw +lJb +ngo +rhR +rhR +mtM twb ifP gfo @@ -57285,9 +56420,9 @@ xUn xUn xUn aFZ -fQV -fQV -fQV +rQt +rQt +rQt aFZ tQB tQB @@ -57690,7 +56825,7 @@ xLi cGa cer kpq -fMc +bpH qkt nEW ddL @@ -57709,9 +56844,9 @@ tja bLM jMh tQB -jlH -jlH -jlH +rhR +rhR +rhR tQB qrn qrn @@ -57902,7 +57037,7 @@ hae hae iRI kpq -oxp +tKh rHX tvi ddL @@ -57967,10 +57102,10 @@ tyj dtS bFr bis -fTn +kOM hXX hXX -byc +aYX bFr bFr bFr @@ -58428,7 +57563,7 @@ ngn wWs wWs gag -tCc +vor wWs wWs ihB @@ -58570,7 +57705,7 @@ tja yhs hVI kYi -aVO +elr xxX iAA aRt @@ -58741,11 +57876,11 @@ cer kpq wou xLi -hqG -lQL -qsE -qMi -uky +qfK +ndC +piV +hJV +kKh nmy luZ cer @@ -58953,12 +58088,12 @@ cer kpq mvp ddL -lXO +dMT nId ykO pCc -pxW -ioV +isI +tim mvp cer wun @@ -58991,8 +58126,8 @@ bLM gbv bLM fYa -voK -koY +kRl +mOc bLM hOG jQs @@ -59051,8 +58186,8 @@ uGY uGY uGY nqN -ksL -eip +kuQ +nKZ gpG ihB ohx @@ -59165,7 +58300,7 @@ cer kpq mvp ddL -ntH +rEr nMZ oHX pFP @@ -59263,8 +58398,8 @@ fdf rQd rOu twb -oZy -nfA +vJR +oNn gpG lkP ihB @@ -59377,12 +58512,12 @@ cer kpq aUA ddL -oIq +kPG nOw oXR pHh -oEu -cKB +tnx +rBE mvp cer kpq @@ -59475,8 +58610,8 @@ cME cME cME liA -nyS -scZ +uWk +qGW ceC bQW fiG @@ -59589,11 +58724,11 @@ cer kpq wou xLi -lIl -cEG -mvV -fno -byF +oYX +eor +mYz +tHp +emo swJ mvp cer @@ -59627,8 +58762,8 @@ bLM tja bLM fYa -cbF -eOy +pud +bCv bLM dOO uRF @@ -59840,7 +58975,7 @@ tja bLM fYa kCN -oXI +xig hko eUN pae @@ -59863,16 +58998,16 @@ fIq mEO oou aFZ -wIG -ugv -qOk -tIp -lml -hVS -lDC -qOk -nYT -vPM +blI +ifB +pFE +uFx +lud +mvt +axW +pFE +wOq +biz bQM tPN ecL @@ -59896,15 +59031,15 @@ mCp rHu rJu uzw -qjT -dRU -byh -byh -rzY -yiG -sag -sag -yiG +rjw +kXT +wat +wat +iHi +abJ +iBI +iBI +abJ ubP ubP ubP @@ -60052,7 +59187,7 @@ tja dTg qCE eYr -lbZ +raJ bLM dOO oTi @@ -60075,17 +59210,17 @@ lyJ nBt kwT tQB -tqP +jZF afk afk afk -xdt -tzN +xpF +gJv afk afk afk -rxL -fQV +pom +rQt tPN ecL cME @@ -60108,15 +59243,15 @@ eLu eLu kfW cME -qjT -wUL -bRP -fOl -mXC -bIV -sag -sag -bIV +rjw +btJ +lkb +oLE +oMW +vRA +iBI +iBI +vRA ubP nXX ubP @@ -60264,7 +59399,7 @@ tja dTg slh eYr -lbZ +raJ bLM dOO oTi @@ -60287,16 +59422,16 @@ mEO lLE xoi tQB -urJ +whc afk hkh afk -tCZ -urJ +deC +whc afk hkh afk -tCZ +deC pcu tPN jSE @@ -60320,15 +59455,15 @@ eLu cME cME cME -aXF -wUL -rKi -fOl -jso -qjT -dmi -rJH -qjT +wHu +btJ +qRa +oLE +blt +rjw +pGS +cas +rjw sOj uye ubP @@ -60476,7 +59611,7 @@ bLM dTg slh eYr -lbZ +raJ oeN dOO oTi @@ -60499,17 +59634,17 @@ mNB byY fUX tQB -mpB +pNp afk afk afk -eze -bHU +aWY +hyR afk afk afk -hxG -jlH +mxN +rhR twb twb twb @@ -60532,15 +59667,15 @@ uvF cME ljd cME -aXF -wUL -fOl -fOl -hgz -yiG -sag -sag -yiG +wHu +btJ +oLE +oLE +ger +abJ +iBI +iBI +abJ aUg ubP ubP @@ -60688,7 +59823,7 @@ ueX qjM qjM tis -eca +tFB xlk nfu kpH @@ -60708,19 +59843,19 @@ fgY vWe hVI hVI -erD +iDR wyl aFZ -xKA -xQC -llQ -viX -bsk -lSS -lcq -llQ -jaB -bsk +lHJ +uMt +lJb +mkr +uEl +atD +lOX +lJb +bjA +uEl bQM bQM kPz @@ -60744,15 +59879,15 @@ cME cME cME eLu -qjT -wUL -fOl -aXG -fRT -bIV -sag -sag -bIV +rjw +btJ +oLE +mlE +vza +vRA +iBI +iBI +vRA ubP ubP ubP @@ -60897,10 +60032,10 @@ tja ltd ueX aSS -gNx -tHF -tHF -gbO +wge +czx +czx +jKJ jQs afq uRF @@ -60920,7 +60055,7 @@ svW hVI hVI hVI -hSo +eGF hVI aFZ sKY @@ -60956,11 +60091,11 @@ cME cME cME eLu -qjT -wUL -fOl -qnu -qjT +rjw +btJ +oLE +skj +rjw ceC xGt xGt @@ -61073,11 +60208,11 @@ cer kpq wou xLi -hqG -qMi -phQ -tiM -uky +qfK +hJV +aQA +qrN +kKh bzU mvp cer @@ -61108,8 +60243,8 @@ otz tja tja fYa -voK -fQI +kRl +jDl bLM hkM dOO @@ -61168,11 +60303,11 @@ uvF cME cME cME -qjT -wUL -fOl -mXC -qjT +rjw +btJ +oLE +oMW +rjw jIw cRl sQC @@ -61285,12 +60420,12 @@ cer kpq mvp ddL -lXO +dMT nId ykO pCc -msd -ioV +ioN +tim mvp cer kpq @@ -61321,7 +60456,7 @@ tja mMh gFp ikL -fDv +gwt vBH bLM dOO @@ -61380,11 +60515,11 @@ eLu cYP qso gsN -qjT -wUL -fOl -mXC -isk +rjw +btJ +oLE +oMW +yaS yiL cZV wNG @@ -61497,7 +60632,7 @@ cer kpq mvp ddL -ntH +rEr nUr oHX pFP @@ -61592,11 +60727,11 @@ kqC kqC kqC kqC -qjT -rVt -pRh -aIH -qjT +rjw +oSn +hwN +eJy +rjw lEF tsN tsN @@ -61709,12 +60844,12 @@ cer kpq ajw ddL -oIq +kPG nOw oXR pHh -apO -cKB +fgT +rBE mvp cer pvF @@ -61804,11 +60939,11 @@ bjt kqC sfu jyF -qjT -sag -sag -sag -qjT +rjw +iBI +iBI +iBI +rjw xGt xGt xGt @@ -61833,7 +60968,7 @@ tir sCH ceC kIA -uid +qWe ubP pTj ubP @@ -61921,11 +61056,11 @@ cer kpq azZ xLi -lIl -wol -mvV -fno -byF +oYX +rGB +mYz +tHp +emo nmy luZ cer @@ -61956,8 +61091,8 @@ eCy cTE njm fYa -cbF -nvs +pud +tfy bLM ddB rcI @@ -62016,16 +61151,16 @@ bjt kqC qNF ctW -qjT -dRU -byh -byh -byh -eSX -xVL -xVL -xVL -ngX +rjw +kXT +wat +wat +wat +car +gOU +gOU +gOU +vFV xGt ucu ihB @@ -62169,7 +61304,7 @@ hVI hVI hVI yhR -qiK +rfy jQs afq tja @@ -62180,8 +61315,8 @@ aWI jQs jQs jQs -nRT -qNj +dul +wNo hVI vlK oWY @@ -62228,16 +61363,16 @@ kgN kqC ryJ end -qjT -wUL -sdw -fOl -oPK -ius -fOl -fOl -jzC -iUL +rjw +btJ +wbW +oLE +ufE +ugg +oLE +oLE +gmG +ksE xGt roF xWV @@ -62361,7 +61496,7 @@ mgh azZ azZ azZ -ohF +piC pcu tQB kZu @@ -62381,7 +61516,7 @@ kZV bLM hVI hVI -woh +oaD tja tja wCJ @@ -62392,8 +61527,8 @@ gjz tja tja tja -tnY -ciy +ovb +aFH hVI wNB oTi @@ -62440,16 +61575,16 @@ vds vds vds elO -hmp -wUL -fOl -fOl -hSc -fOl -sZG -fOl -srA -pMZ +nAs +btJ +oLE +oLE +hMj +oLE +dQe +oLE +ygk +rnE xGt cLC pjR @@ -62573,7 +61708,7 @@ uQT azZ azZ azZ -bTo +gjm pcu aFZ hUL @@ -62592,8 +61727,8 @@ bsR hGu bLM aif -rKa -rTV +uNh +oMI pWX bDJ rtP @@ -62604,7 +61739,7 @@ tja tja nMi tja -upr +sAg hVI hVI mMa @@ -62652,16 +61787,16 @@ xRI xRI xRI efW -hmp -eYa -fOl -anB -fOl -fOl -lyc -ius -iUL -cef +nAs +fcB +oLE +hlB +oLE +oLE +vYX +ugg +ksE +jTJ ceC sIh ihB @@ -62694,7 +61829,7 @@ uGY sEO sEO sEO -vpN +ctj sXt sXt sXt @@ -62785,7 +61920,7 @@ mvp azZ bQM bQM -bTo +gjm pcu aFZ wDK @@ -62805,7 +61940,7 @@ bLM njm hVI hVI -woh +oaD hYl tja tja @@ -62816,7 +61951,7 @@ ltd tja set tja -nyq +gvs bLJ bLJ bLJ @@ -62854,7 +61989,7 @@ sKY sKY iYw iYw -izh +uNB dHD xbM voO @@ -62864,15 +61999,15 @@ end kqC ryJ end -qjT -ecX -fOl -fOl -xBn -fOl -fOl -kns -iUL +rjw +lNf +oLE +oLE +elc +oLE +oLE +eNr +ksE xGt ucu ihB @@ -62886,7 +62021,7 @@ gag hCk tCH wBK -kGB +vQD ceC dBO dBO @@ -62997,7 +62132,7 @@ azZ azZ bQM bQM -bTo +gjm pcu aFZ hVI @@ -63017,7 +62152,7 @@ hVI hVI hVI hVI -woh +oaD tja tja tja @@ -63028,14 +62163,14 @@ cgx tja tja tja -vyv -nMz +dgg +wQF nQu wRz fqg fqg -eLX -edy +ivA +tMr nQu nQu suX @@ -63059,14 +62194,14 @@ aeI aeI nQu nQu -srp -hOQ +pYl +gTI fqg fqg fqg nQu -srp -bqD +pYl +shC cAJ xbM hTN @@ -63076,15 +62211,15 @@ tKk kqC rzp osQ -qjT -wUL -fOl -fOl -fOl -oPK -sdw -hmz -iUL +rjw +btJ +oLE +oLE +oLE +ufE +wbW +fxS +ksE xGt roF oDg @@ -63098,7 +62233,7 @@ gKg dFB hrB sYP -kGB +vQD uGY xLd ihB @@ -63209,7 +62344,7 @@ azZ azZ bQM bQM -bTo +gjm pcu aFZ chZ @@ -63227,9 +62362,9 @@ mEO mEO ddD hVI -lmn -fkH -roE +qlz +bnW +hoa tpZ jAF tpZ @@ -63288,15 +62423,15 @@ dpe kqC qLi dpe -qjT -wUL -fOl -lSf -fOl -uXV -fOl -ydw -pMZ +rjw +btJ +oLE +sRv +oLE +wam +oLE +mom +rnE xGt cLC mwK @@ -63310,7 +62445,7 @@ aIm aIm gag gag -kGB +vQD cCB ihB ubP @@ -63421,7 +62556,7 @@ azZ azZ azZ bQM -bTo +gjm pcu aFZ bRo @@ -63500,14 +62635,14 @@ kqC kqC kqC kqC -imx -cVI -fOl -fOl -bIV -fOl -fOl -iUL +mCF +sAF +oLE +oLE +vRA +oLE +oLE +ksE ceC ceC sIh @@ -63522,7 +62657,7 @@ ltQ ltQ uGY ltQ -ayo +eKa uGY eZQ kyZ @@ -63633,7 +62768,7 @@ azZ azZ azZ tuf -bTo +gjm pcu tQB kSd @@ -63712,14 +62847,14 @@ ioc kqC sfu iEG -qjT -wUL -fOl -fOl -bIV -cLI -fYI -iUL +rjw +btJ +oLE +oLE +vRA +cKH +joJ +ksE xGt bjo ihB @@ -63734,7 +62869,7 @@ fRq fRq uGY fRq -ygr +sWR xGt ihB ubP @@ -63876,14 +63011,14 @@ cgx tja tja tja -tjw -cYS +aJm +dar nQu pzL vDL eWf -qre -diL +lur +tok nQu nQu aeI @@ -63907,14 +63042,14 @@ aeI aeI nQu nQu -oTS -vLO +dYB +eZK eWf eWf eWf nQu -oTS -iox +dYB +bVm dHD xbM fHo @@ -63923,15 +63058,15 @@ ioc ioc kqC qNF -fNM -qjT -wUL -fOl -bIV -pdR -fOl -fOl -iUL +fKO +rjw +btJ +oLE +vRA +vZL +oLE +oLE +ksE xGt mEJ ihB @@ -63946,7 +63081,7 @@ gag gag gag gag -kGB +vQD xGt ihB ubP @@ -64037,9 +63172,9 @@ xLi dqX fEn fEn -oGy -oGy -cLy +mDC +mDC +gtD rHX dqX rHX @@ -64088,7 +63223,7 @@ tja hYl tja tja -mCR +jxS iYw egk sKY @@ -64126,7 +63261,7 @@ sKY sKY iYw iYw -izh +uNB dHD xbM fHo @@ -64136,14 +63271,14 @@ kgN kqC ryJ end -qjT -lMf -fOl -bIV -fOl -fOl -gyr -iUL +rjw +oTL +oLE +vRA +oLE +oLE +ejf +ksE xGt izN mDS @@ -64158,7 +63293,7 @@ gag gag gag gag -kGB +vQD xGt gwm ubP @@ -64251,7 +63386,7 @@ dqX dqX xLi xLi -idP +joB rHX dqX rHX @@ -64300,7 +63435,7 @@ tja tja tja tja -oOk +rzZ aFZ aFZ fPB @@ -64348,14 +63483,14 @@ vds vds msH elO -hmp -eYa -dDr -fOl -fOl -fOl -fOl -iUL +nAs +fcB +gQc +oLE +oLE +oLE +oLE +ksE ceC ceC nqN @@ -64368,9 +63503,9 @@ uGY uxv ceC ceC -aPr +wFs jyv -kaw +osS uGY ilr ubP @@ -64463,7 +63598,7 @@ mvp irD iMN oNu -aQY +pak rHX dqX rHX @@ -64512,7 +63647,7 @@ fCf jTo jbq tja -tFY +aoG aFZ aFZ fPB @@ -64560,17 +63695,17 @@ xRI xRI xRI efW -hmp -eYa -fOl -fOl -bIV -nfi -ouP -sCo -vrs -ngX -xoJ +nAs +fcB +oLE +oLE +vRA +osN +xdb +pZn +kIb +vFV +ipy kPz kPz kPz @@ -64675,7 +63810,7 @@ mvp sVS dwZ wsM -aQY +pak rHX dqX rHX @@ -64693,13 +63828,13 @@ dqX fEn mvp mvp -dvB -mpY -xCv -xCv -xCv -gHC -kHc +bCM +huZ +yin +yin +yin +fvn +tZE fbc bLM bLM @@ -64710,30 +63845,30 @@ aFZ aFZ bmE aFZ -bKt -bKt -bKt -idu -idu -lSo -lSo -lSo -lSo -lSo -idu -bKt -bKt -idu -idu -idu -idu -idu -idu -idu -idu -idu -fsj -fsj +sta +sta +sta +jmG +jmG +tOp +tOp +tOp +tOp +tOp +jmG +sta +sta +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +cKa +cKa rMT aeI aeI @@ -64772,17 +63907,17 @@ kgN kqC ryJ end -qjT -lMf -fOl -fOl -fOl -fOl -cRO -ted -fOl -iUL -xoJ +rjw +oTL +oLE +oLE +oLE +oLE +siW +bEm +oLE +ksE +ipy kPz bQM kPz @@ -64887,7 +64022,7 @@ mvp mvp bgD wsM -aQY +pak pjW dqX rHX @@ -64905,47 +64040,47 @@ beW fEn maA mvp -ckA -idu -aTt -aTt -aTt -idu -fer +dOf +jmG +mvl +mvl +mvl +jmG +utm byY byY byY byY -lSo -sBH -lUc -jBC -wGa -lSo -xMg -pYA -aPa -fsj -fsj -nmZ -xDY -nmZ -xDY -nmZ -cvT -xMg -wJs -wGa -gRs -fsj -rkg -nPn -fsj -fhJ -xDY -pJG -sDw -tVb +tOp +ezd +jjp +hVA +lFB +tOp +jWI +amZ +bsO +cKa +cKa +vUP +dVA +vUP +dVA +vUP +hqD +jWI +eow +lFB +aLX +cKa +bqu +rwm +cKa +fZc +dVA +rhf +nss +jYs cMD aeI aeI @@ -64984,17 +64119,17 @@ ioc kqC rzp ldz -qjT -mSF -bqp -bqp -bqp -bqp -bqp -bqp -bqp -pMZ -xoJ +rjw +hDF +fBA +fBA +fBA +fBA +fBA +fBA +fBA +rnE +ipy kPz kPz kPz @@ -65099,7 +64234,7 @@ mvp mvp twR oNu -aQY +pak rHX nDI rHX @@ -65117,47 +64252,47 @@ dqX fEn mvp mvp -ckA -mjt -jQt -yaB -aKK -aTt -eqJ +dOf +lIG +spR +kzR +qBI +mvl +guH byY -iEl -gBR -gBR -idu -kFn -xMg -wGa -wGa -lSo -wiO -rtC -xQp -fsj -mof -xDY -fhJ -xDY -dvF -xDY -cvT -bwF -gfP -vfA -gRs -cvT -hRo -mNX -fsj -ykU -xDY -pJG -nnD -tVb +eni +rRd +rRd +jmG +wUz +jWI +lFB +lFB +tOp +uqV +tVI +hBc +cKa +bRc +dVA +fZc +dVA +akM +dVA +hqD +uKK +mgz +rLG +aLX +hqD +kXk +gnY +cKa +ejM +dVA +rhf +sWX +jYs cMD jpW aeI @@ -65196,20 +64331,20 @@ ioc kqC qLi dpe -qjT -lTg -sag -lTg -qjT -qjT -dxe -dxe -dxe -qjT -suR -xoJ -xoJ -xoJ +rjw +okG +iBI +okG +rjw +rjw +dbI +dbI +dbI +rjw +hjg +ipy +ipy +ipy nqN xGt xGt @@ -65311,7 +64446,7 @@ xLi dqX xLi xLi -idP +joB rHX dqX rHX @@ -65329,47 +64464,47 @@ dqX dqX mvp mvp -gkv -fsj -nJF -uin -kXX -aTt -sKu +kMf +cKa +lUZ +xlp +poC +mvl +sSv chx -rDu -nRW +nwA +wdv hXN -idu -poR -xjF -vfA -ppr -lSo -hRo -csF -wdQ -fsj -mof -xDY -gNu -xDY -sji -xDY -fsj -ebh -hwJ -vfA -gRs -fsj -nDu -lSo -fsj -thB -xDY -pJG -gOC -fsj +jmG +xVw +bwk +rLG +dlj +tOp +kXk +amn +pxX +cKa +bRc +dVA +cYi +dVA +wqs +dVA +cKa +awU +jqN +rLG +aLX +cKa +kzh +tOp +cKa +sGX +dVA +rhf +avc +cKa xbc suX nQu @@ -65408,24 +64543,24 @@ ioc kqC kqC kqC -imx -wKa -vrs -ngX -qjT -ltC -aPw -aPw -aPw -wHN -qjT -dRU -byh -rzY -yiG -sag -sag -yiG +mCF +uJp +kIb +vFV +rjw +lsR +lZp +lZp +lZp +svN +rjw +kXT +wat +iHi +abJ +iBI +iBI +abJ goo goo goo @@ -65523,7 +64658,7 @@ phz kEZ phz xLi -jUa +cHi rHX dqX rHX @@ -65542,46 +64677,46 @@ mvp mvp hDm mvp -wha -cIu -cIu -cIu -aTt +rSr +cOF +cOF +cOF +mvl byY byY byY byY nFc -idu -mhe -mhe -vfA -bnT -idu -bKt -bKt -bKt -idu -fsj -nmZ -xDY -nmZ -xDY -nmZ -fsj -cTc -vQn -vfA -nmZ -kwQ -wJs -hqI -wJs -wJs -wGa -nmZ -nmZ -idu +jmG +kjt +kjt +rLG +djF +jmG +sta +sta +sta +jmG +cKa +vUP +dVA +vUP +dVA +vUP +cKa +tYz +hjB +rLG +vUP +lEd +eow +ulc +eow +eow +lFB +vUP +vUP +jmG egk iYw suX @@ -65620,24 +64755,24 @@ ioc kqC sfu jyF -qjT -wUL -sFG -jso -qjT -mwh -mpj -nbD -aPw -nhi -qjT -lMf -wat -mXC -bIV -sag -sag -bIV +rjw +btJ +xLx +blt +rjw +ubh +xFJ +eao +lZp +qXj +rjw +oTL +xAn +oMW +vRA +iBI +iBI +vRA fAf fAf nZB @@ -65754,46 +64889,46 @@ mvp mvp mvp mvp -idu -aTt -aTt -aTt -idu +jmG +mvl +mvl +mvl +jmG wfu byY byY byY hVI -idu -mhe -mhe -vfA -hWt -wpq -xMg -wJs -wGa -wpq -nmZ -xMg -wJs -wJs -wJs -wGa -uOb -wxP -aEI -vfA -nmZ -qqr -csF -csF -csF -csF -caf -nmZ -nmZ -idu +jmG +kjt +kjt +rLG +gYD +fSq +jWI +eow +lFB +fSq +vUP +jWI +eow +eow +eow +lFB +oNC +wyb +tIN +rLG +vUP +lcE +amn +amn +amn +amn +tPB +vUP +vUP +jmG bQM iYw sKY @@ -65832,24 +64967,24 @@ ioc kqC qNF eub -qjT -wUL -wat -mXC -qjT -jpB -nDg -qjT -jpB -nDg -qjT -wUL -wat -mXC -qjT -sag -sag -qjT +rjw +btJ +xAn +oMW +rjw +sIk +dzE +rjw +sIk +dzE +rjw +btJ +xAn +oMW +rjw +iBI +iBI +rjw nAm nAm fAf @@ -65958,66 +65093,66 @@ mvp xxU kpq jNi -ygs -ygs -kBX +lLN +lLN +qhh dqX loE eIx mvp mvp -tKm -nmZ -nmZ -nmZ -tKm +rjD +vUP +vUP +vUP +rjD byY byY byY byY byY -tKm -mhe -mhe -vfA -vfA -wpq -mhe -aDR -vfA -wpq -nmZ -wRx -gfP -gfP -gfP -vfA -lPz -mhe -rEe -vfA -fsj -nDu -lSo -fsj -nDu -lSo -fsj -xMg -wGa -idu +rjD +kjt +kjt +rLG +rLG +fSq +kjt +oZU +rLG +fSq +vUP +hFW +mgz +mgz +mgz +rLG +jHV +kjt +lpZ +rLG +cKa +kzh +tOp +cKa +kzh +tOp +cKa +jWI +lFB +jmG kPz -eHa +sYX pcu iYw sKY sKY iYw -imI +nGf oEH oEH oEH -vkt +rPs bLJ rcg xZN @@ -66044,37 +65179,37 @@ kgN kqC ryJ end -qjT -xfG -wat -mXC -mvh -aPw -aPw -vVg -lRe -aPw -mvh -wUL -wat -mXC -yiG -sag -sag -yiG +rjw +rgc +xAn +oMW +vfO +lZp +lZp +jmv +uLV +lZp +vfO +btJ +xAn +oMW +abJ +iBI +iBI +abJ fAf fAf nZB nZB nZB owp -uPA -uWQ +oEE +fII nZB ghz nZB -uPA -uWQ +oEE +fII nZB nZB fAf @@ -66172,64 +65307,64 @@ kpq mvp lIC kxl -swT +dKO fEn gDI agh mvp mvp -oHl -nmZ -nmZ -nmZ -oHl +wef +vUP +vUP +vUP +wef byY byY byY byY byY -oHl -hRo -hRo -caf -caf -wpq -hRo -csF -caf -wpq -nmZ -hRo -csF -csF -csF -caf -uOb -mhe -gfP -vfA -fsj -xMg -pjn -fsj -jAx -pjn -fsj -mhe -vfA -tyk -swg -fyC -qOk -sHO -erT +wef +kXk +kXk +tPB +tPB +fSq +kXk +amn +tPB +fSq +vUP +kXk +amn +amn +amn +tPB +oNC +kjt +mgz +rLG +cKa +jWI +oyy +cKa +drZ +oyy +cKa +kjt +rLG +uwk +rfI +eyB +pFE +mjW +grn kPz iYw -hre +iES wfw jRF bvp -iiY +tDK bLJ bLJ frv @@ -66256,37 +65391,37 @@ lvV vds vds elO -sag -wUL -wat -mXC -mvh -aPw -aPw -nbD -aPw -aPw -mvh -wUL -wat -mXC -bIV -sag -sag -bIV +iBI +btJ +xAn +oMW +vfO +lZp +lZp +eao +lZp +lZp +vfO +btJ +xAn +oMW +vRA +iBI +iBI +vRA fAf fAf nZB nZB nZB nZB -nKl -qfc +hgF +cNU nZB fAf nZB -nKl -qfc +hgF +cNU nZB nZB nZB @@ -66384,58 +65519,58 @@ kpq mvp mMP wsM -swT +dKO fEn fEn ciM mvp mvp -fsj -gfP -gfP -gfP -fsj -lSo -lSo -fsj -lSo -fsj -fsj -hRo -hRo -caf -caf -idu -idu -idu -idu -idu -fsj -nDu -lSo -fsj -nDu -lSo -fsj -cWn -gRY -vfA -fsj -aCP -nhm -fsj -aCP -cvg -fsj -mhe -vfA -tyk -daD +cKa +mgz +mgz +mgz +cKa +tOp +tOp +cKa +tOp +cKa +cKa +kXk +kXk +tPB +tPB +jmG +jmG +jmG +jmG +jmG +cKa +kzh +tOp +cKa +kzh +tOp +cKa +cIJ +lfX +rLG +cKa +iFB +dUx +cKa +iFB +trR +cKa +kjt +rLG +uwk +ryp afk afk afk -ghg -gef +xrw +rEk sKY qTe red @@ -66468,24 +65603,24 @@ eNa xRI xRI efW -sag -wUL -wat -mXC -qjT -fPW -nDg -qjT -jpB -nDg -qjT -wUL -wat -mXC -qjT -sag -sag -qjT +iBI +btJ +xAn +oMW +rjw +hAP +dzE +rjw +sIk +dzE +rjw +btJ +xAn +oMW +rjw +iBI +iBI +rjw goo goo fAf @@ -66596,57 +65731,57 @@ kpq hjp dsS dXN -swT +dKO fEn gDI agh mvp mvp -tKm -nmZ -nmZ -nmZ -tKm -xMg -wJs -wJs -wJs -wJs -myC -wJs -wJs -wJs -wJs -tnU -wJs -myC -wJs -wGa -fsj -xMg -pjn -fsj -hHb -xBL -fsj -oEY -gfP -vfA -mYA -fsj -fsj -fsj -fsj -fsj -fsj -mhe -vfA -tyk -urJ +rjD +vUP +vUP +vUP +rjD +jWI +eow +eow +eow +eow +owS +eow +eow +eow +eow +vqW +eow +owS +eow +lFB +cKa +jWI +oyy +cKa +siB +jSc +cKa +qya +mgz +rLG +hEs +cKa +cKa +cKa +cKa +cKa +cKa +kjt +rLG +uwk +whc afk hkh afk -tCZ +deC pcu sKY aso @@ -66656,11 +65791,11 @@ aso aso rtc idS -imI -sPt +nGf +rPs hys -imI -sPt +nGf +rPs sKY bce bce @@ -66670,7 +65805,7 @@ wzE dHD voV sxc -qZp +vMR xbM xbM xbM @@ -66680,24 +65815,24 @@ jlq kqC ryJ end -qjT -lMf -wat -jso -qjT -mwh -aPw -vVg -aPw -nhi -qjT -lMf -wat -mXC -yiG -sag -sag -yiG +rjw +oTL +xAn +blt +rjw +ubh +lZp +jmv +lZp +qXj +rjw +oTL +xAn +oMW +abJ +iBI +iBI +abJ fAf fAf nZB @@ -66806,60 +65941,60 @@ mvp cer kpq mvp -sxH -sxH -aaR +cia +cia +olB dqX pHi eFX mvp mvp -oHl -nmZ -nmZ -nmZ -oHl -mhe -gfP -gfP -bvl -gfP -gfP -gfP -gfP -gfP -gfP -gfP -gfP -gfP -bvl -vfA -fsj -aCP -nhm -fsj -aCP -nhm -fsj -dcD -gfP -vfA -fsj -rkg -nPn -fsj -rkg -nPn -fsj -mhe -vfA -tyk -mdJ +wef +vUP +vUP +vUP +wef +kjt +mgz +mgz +xAq +mgz +mgz +mgz +mgz +mgz +mgz +mgz +mgz +mgz +xAq +rLG +cKa +iFB +dUx +cKa +iFB +dUx +cKa +xnt +mgz +rLG +cKa +bqu +rwm +cKa +bqu +rwm +cKa +kjt +rLG +uwk +gbg afk afk afk -xMW -ssJ +sJX +sLF sKY cvc gPk @@ -66868,11 +66003,11 @@ sFY neY rtc fOi -fac -ehO +qEp +tdY hys -unF -ehO +mke +tdY sKY cAW bce @@ -66892,24 +66027,24 @@ rzp kqC rzp jln -qjT -kfn -wat -gRR -qjT -bgi -aPw -aPw -mpj -dgJ -qjT -wUL -wat -mXC -bIV -sag -sag -bIV +rjw +eQb +xAn +kgp +rjw +erU +lZp +lZp +xFJ +hrL +rjw +btJ +xAn +oMW +vRA +iBI +iBI +vRA nAm nAm nAm @@ -67026,51 +66161,51 @@ mvp mvp mvp mvp -fsj -aTt -aTt -aTt -fsj -hRo -csF -csF -hvA -gfP -cJh -csF -csF -csF -csF -csF -csF -hvA -gfP -fUb -fsj -fsj -fsj -fsj -fsj -fsj -fsj -xSu -csF -caf -fsj -rMQ -qKM -fsj -hRo -qKM -fsj -hRo -caf -tyk -aKA -tWI -llQ -eOF -bUB +cKa +mvl +mvl +mvl +cKa +kXk +amn +amn +rTZ +mgz +cCe +amn +amn +amn +amn +amn +amn +rTZ +mgz +bOx +cKa +cKa +cKa +cKa +cKa +cKa +cKa +nGV +amn +tPB +cKa +jnX +rhH +cKa +kXk +rhH +cKa +kXk +tPB +uwk +rcy +dfw +lJb +ozB +mtM kPz iYw nQu @@ -67104,20 +66239,20 @@ dHD kqC qLi jhN -qjT -fLj -wat -mXC -qjT -qjT -mvh -mvh -mvh -qjT -qjT -wUL -wat -mXC +rjw +rYy +xAn +oMW +rjw +rjw +vfO +vfO +vfO +rjw +rjw +btJ +xAn +oMW vMK goG goG @@ -67238,60 +66373,60 @@ mvp mvp mvp mvp -aTt -eXO -yaB -klD -aTt -nDx -nmZ -nmZ -mhe -gfP -fUb -jlE -tyk -tyk -tyk -tyk -jlE -poR -gfP -vfA -fsj -rkg -uPw -fsj -rkg -nPn -fsj -ybE -nmZ -nmZ -fsj -nDu -lSo -fsj -nDu -lSo -fsj -nmZ -nmZ -idu -idu +mvl +wSN +kzR +wSC +mvl +eSI +vUP +vUP +kjt +mgz +bOx +aSz +uwk +uwk +uwk +uwk +aSz +xVw +mgz +rLG +cKa +bqu +hJo +cKa +bqu +rwm +cKa +jGz +vUP +vUP +cKa +kzh +tOp +cKa +kzh +tOp +cKa +vUP +vUP +jmG +jmG mlC mlC mlC mlC ecM iYw -imI +nGf oEH oEH oEH -vkt +rPs bLJ -vCp +vgG iaa iaa tZO @@ -67299,37 +66434,37 @@ iaa iaa ecM mlC -eHX -eHX -eHX -eHX -gvb -bWX -xTw -xTw -hKI -xTw -xTw -xTw -hri -vpv -iZl -iZl -iZl -iZl -tSv +xxg +xxg +xxg +xxg +rzF +qJY +fBK +fBK +xel +fBK +fBK +fBK +wKi +jbg +umN +umN +umN +umN +rKd +xAn +pZn +atY +atY +wat wat -sCo -hkr -hkr -byh -byh -byh -qPl -hkr -ehq wat -mXC +qJl +atY +jXU +xAn +oMW goG dYq chg @@ -67450,47 +66585,47 @@ dqX rYw mvp dqX -aTt -iIY -uin -cIu -fsj -fsj -fsj -fsj -mhe -gfP -fIy -tyk -bQM -bQM -bQM -bQM -tyk -hRo -csF -caf -fsj -hRo -qKM -fsj -hRo -qKM -fsj -qqH -wJs -wJs -wJs -wJs -wJs -uPC -wJs -wJs -wJs -wJs -wJs -czv -aDX +mvl +fqI +xlp +cOF +cKa +cKa +cKa +cKa +kjt +mgz +qrU +uwk +bQM +bQM +bQM +bQM +uwk +kXk +amn +tPB +cKa +kXk +rhH +cKa +kXk +rhH +cKa +wqz +eow +eow +eow +eow +eow +tkZ +eow +eow +eow +eow +eow +rIr +nmi scS scS oPR @@ -67511,37 +66646,37 @@ oPR oPR jnQ oPR -iZl -ylI -ylI -ylI -ylI -ylI -xTw -xTw -xTw -xTw -kbp -xTw -ceX -hri -iZl -gqV -jAp -iZl -xDD -wat -wVD -wat -sFG -wat -wVD -wat -wat -wat -wat -wat -mXC +umN +lmC +lmC +lmC +lmC +lmC +fBK +fBK +fBK +fBK +bkQ +fBK +eVD +wKi +umN +rkp +iKy +umN +gqo +xAn +jbm +xAn +xLx +xAn +jbm +xAn +xAn +xAn +xAn +xAn +oMW goG xoR ioW @@ -67662,47 +66797,47 @@ fEn mvp mvp fEn -fsj -eBI -xoE -cIu -aTt -nmZ -nmZ -nmZ -mhe -gfP -fUb -jlE -tyk -tyk -tyk -tyk -jlE -qgR -nmZ -nmZ -fsj -nDu -lSo -fsj -nDu -lSo -fsj -poR -gfP -gfP -bvl -gfP -gfP -gfP -gfP -gfP -gfP -gfP -dRW -vfA -wpq +cKa +oOU +fyi +cOF +mvl +vUP +vUP +vUP +kjt +mgz +bOx +aSz +uwk +uwk +uwk +uwk +aSz +uBX +vUP +vUP +cKa +kzh +tOp +cKa +kzh +tOp +cKa +xVw +mgz +mgz +xAq +mgz +mgz +mgz +mgz +mgz +mgz +mgz +lFg +rLG +fSq oPR qBe exl @@ -67723,37 +66858,37 @@ qBe qBe qBe eFQ -iTR -ylI -ylI -ylI -omS -xTw -tmz -dJc -xTw -kFN -duE -xTw -xTw -ceX -iZl -ceX -omS -iZl -mSF -bqp -pex -bqp -bqp -bqp -bqp -bqp -gUl -bqp -bqp -bqp -fRT +wpO +lmC +lmC +lmC +duL +fBK +ygL +rZF +fBK +ogc +eja +fBK +fBK +eVD +umN +eVD +duL +umN +hDF +fBA +iXq +fBA +fBA +fBA +fBA +fBA +mKd +fBA +fBA +fBA +vza goG egd pYB @@ -67874,47 +67009,47 @@ fEn mvp mvp fEn -wha -cIu -cIu -cIu -wha -xMg -wJs -wJs -aiH -gfP -vfA -nmZ -xMg -wJs -wJs -wJs -wGa -uZo -xMg -wJs -wJs -wJs -wJs -wJs -wJs -wJs -wJs -aiH -gfP -oHl -gfP -sZh -csF -csF -csF -csF -csF -csF -csF -caf -wpq +rSr +cOF +cOF +cOF +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 +wef +mgz +cbY +amn +amn +amn +amn +amn +amn +amn +tPB +fSq wdl nOe qBe @@ -67935,34 +67070,34 @@ qBe qBe lFv eFQ -iTR -ylI -ylI -ylI -hri -hax -xTw -xTw -tmz -nZk -xTw -dJc -fcJ -iwl -iZl -kNj -exF -eHX -suR -suR -qjT -sag -sag -sag -sag -fTE -qjT -cef +wpO +lmC +lmC +lmC +wKi +kbh +fBK +fBK +ygL +jET +fBK +rZF +fYY +ffx +umN +qRi +elm +xxg +hjg +hjg +rjw +iBI +iBI +iBI +iBI +pvE +rjw +jTJ goG goG goG @@ -68086,47 +67221,47 @@ fEn mvp mvp fEn -fsj -fsj -fsj -fsj -fsj -mhe -gfP -cJh -csF -csF -caf -nmZ -hRo -csF -csF -csF -caf -nmZ -mhe -gfP -bvl -gfP -gfP -gfP -gfP -gfP -gfP -oHl -gfP -gfP -gfP -fUb -gbm -tyk -tyk -tyk -mjt -nmZ -ksg -nmZ -fsj +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 +wef +mgz +mgz +mgz +bOx +jpN +uwk +uwk +uwk +lIG +vUP +sHj +vUP +cKa oPR qBe qBe @@ -68147,34 +67282,34 @@ qBe qBe qBe oPR -iTR -ylI -ylI -ylI -ceX -pik -xTw -xTw -xTw -xTw -nZk -xTw -xTw -hzf -rtL -rtL -lbU -lcb -bQM -xoJ -ljM -dRU -byh -byh -byh -tHC -ocA -rfW +wpO +lmC +lmC +lmC +eVD +wWm +fBK +fBK +fBK +fBK +jET +fBK +fBK +xiZ +nUh +nUh +bhC +uTv +bQM +ipy +iCf +kXT +wat +wat +wat +rLJ +jvi +duF jTN xro fGW @@ -68291,54 +67426,54 @@ bQM lAh cAW cAW -idu -idu -idu -oHl -cil -oHl -cil -fsj -fsj -wEc -wGa -caK -gfP -gfP -fUb -fsj -nDu -lSo -fsj -nDu -lSo -fsj -nDu -lSo -vvo -poR -gfP -cJh -csF -csF -csF -csF -csF -csF -hvA -gfP -gfP -gfP -vfA -tyk +jmG +jmG +jmG +wef +lSj +wef +lSj +cKa +cKa +pRa +lFB +lpX +mgz +mgz +bOx +cKa +kzh +tOp +cKa +kzh +tOp +cKa +kzh +tOp +arn +xVw +mgz +cCe +amn +amn +amn +amn +amn +amn +rTZ +mgz +mgz +mgz +rLG +uwk bQM kPz bQM -idu -phM -fsj -fsj -fsj +jmG +hul +cKa +cKa +cKa hrz qBe qBe @@ -68355,38 +67490,38 @@ qBe qBe oPR oPR -hxj -wis -sGa -gNU -iZl -iZl -lYv -iZl -iZl -hri -xTw -xTw -nyG -xTw -fTc -dHf -dHf -dHf -dHf -dHf -omS -lcb +uRh +mlG +pUD +dIu +umN +umN +nIU +umN +umN +wKi +fBK +fBK +pHx +fBK +lNC +gos +gos +gos +gos +gos +duL +uTv kPz -xoJ -gTe -wUL -wVD -wat -wat -mXC -ocA -rfW +ipy +auS +btJ +jbm +xAn +xAn +oMW +jvi +duF fEH xsS tOM @@ -68503,54 +67638,54 @@ cAW cAW cAW cAW -idu -bQM -idu -nmZ -xMg -wJs -wGa -gfP -fsj -smn -vfA -tyk -mhe -gfP -vfA -fsj -xMg -pjn -fsj -yjy -pjn -fsj -lqp -pjn -fsj -mhe -gfP -fUb -fsj -fsj -bcG -kuK -fsj -idu -eDq -gfP -gfP -gfP -vfA -tyk +jmG +bQM +jmG +vUP +jWI +eow +lFB +mgz +cKa +dJh +rLG +uwk +kjt +mgz +rLG +cKa +jWI +oyy +cKa +bTr +oyy +cKa +kyU +oyy +cKa +kjt +mgz +bOx +cKa +cKa +wZt +jEY +cKa +jmG +gHh +mgz +mgz +mgz +rLG +uwk kPz kPz kPz -tyk -cIu -cIu -jcr -fpX +uwk +cOF +cOF +utw +lzm qBe qBe qBe @@ -68566,39 +67701,39 @@ qBe eXz qBe oPR -iZl -iZl -dAd -hbp -iZl -iZl -nEE -taF -taF -iZl -mFt -eBV -xTw -xTw -xTw -rEN -iZl -tQi -exF -iZl -tQi -exF -eHX -bQM -xoJ -aeV -wUL -aXG -tuT -naU -mXC -hSt -rfW +umN +umN +cee +yiG +umN +umN +rCq +xSw +xSw +umN +fLb +ayW +fBK +fBK +fBK +rYK +umN +cRB +elm +umN +cRB +elm +xxg +bQM +ipy +qSz +btJ +mlE +rwK +nAK +oMW +kpu +duF fAU tOM tOM @@ -68715,54 +67850,54 @@ cAW cAW cAW cAW -idu -idu -idu -nmZ -mhe -gfP -vfA -nmZ -fsj -aCP -nhm -tyk -mhe -gfP -vfA -fsj -aCP -nhm -fsj -aCP -nhm -fsj -rUV -ibZ -fsj -xax -gfP -vfA -fsj -wCY -rTs -dOQ -sbb -fsj -mhe -gfP -gfP -aLG -vfA -tyk +jmG +jmG +jmG +vUP +kjt +mgz +rLG +vUP +cKa +iFB +dUx +uwk +kjt +mgz +rLG +cKa +iFB +dUx +cKa +iFB +dUx +cKa +oMw +yhJ +cKa +uFW +mgz +rLG +cKa +uyC +dzB +wUv +aYg +cKa +kjt +mgz +mgz +kWx +rLG +uwk bQM kPz bQM -tyk -cIu -xoE -vLB -jiP +uwk +cOF +fyi +dXS +qva xbm smj qBe @@ -68777,40 +67912,40 @@ ccZ qBe qBe qBe -sGa -iZl -iZl -taF -nbY -iZl -iZl -iZl -oEC -jaR -vpD -xPo -xHg -dHf -pik -xTw -bWX -iZl -prc -dHO -iZl -prc -cgf -eHX +pUD +umN +umN +xSw +blG +umN +umN +umN +tVV +arl +eQs +kCT +opj +gos +wWm +fBK +qJY +umN +xBF +bIP +umN +xBF +mwP +xxg kPz -cef -sSS -wUL -mXC -fko -wUL -mXC -gST -cef +jTJ +vUl +btJ +oMW +pLE +btJ +oMW +uuG +jTJ gHn tOM tOM @@ -68852,12 +67987,12 @@ ckm wly bQM bQM -bTo +gjm pcu -iWq -bTo +hfJ +gjm pcu -iWq +hfJ bQM bQM bQM @@ -68929,52 +68064,52 @@ cAW cAW cAW bQM -tyk -nmZ -hRo -csF -caf -nmZ -mYA -fsj -fsj -fsj -gPD -pIy -uon -mYA -fsj -fsj -fsj -fsj -fsj -fsj -fsj -fsj -fsj -poR -gfP -vfA -fsj -trO -xwh -uLT -pMD -fsj -mhe -gfP -oHl -gfP -vfA -idu +uwk +vUP +kXk +amn +tPB +vUP +hEs +cKa +cKa +cKa +wdL +vAU +hCR +hEs +cKa +cKa +cKa +cKa +cKa +cKa +cKa +cKa +cKa +xVw +mgz +rLG +cKa +onW +pZp +xts +shh +cKa +kjt +mgz +wef +mgz +rLG +jmG bQM kPz bQM -tyk -wsq -xoE -rDp -fsj +uwk +jsu +fyi +haQ +cKa ntE smj wrT @@ -68989,40 +68124,40 @@ sQr qBe qBe qBe -vcu -qQM -wWT -prc -rtL -lbU -pPg -iZl -taF -pNl -iZl -iZl -iZl -iZl -hri -xTw -bWX -iZl -rrf -vLY -iZl -rrf -vLY -eHX -bQM -xoJ -fko -wUL -mXC -fko -wUL -mXC -fko -rfW +spI +ueD +umu +xBF +nUh +bhC +sKt +umN +xSw +tiX +umN +umN +umN +umN +wKi +fBK +qJY +umN +xpy +oeh +umN +xpy +oeh +xxg +bQM +ipy +pLE +btJ +oMW +pLE +btJ +oMW +pLE +duF mWR tOM tOM @@ -69061,18 +68196,18 @@ bQM kPz bQM bQM -dhi -qFE -qFE -fyC -qOk -pbV -fyC -qOk -pbV -qFE -qFE -lml +iIw +ylU +ylU +eyB +pFE +toG +eyB +pFE +toG +ylU +ylU +lud bQM bQM bQM @@ -69141,52 +68276,52 @@ cAW cAW cAW bQM -tyk -xMg -wJs -wGa -nmZ -nmZ -oHl -rkg -nPn -qmU -knQ -gfP -qec -fsj -rkg -nPn -fsj -rkg -nPn -fsj -rkg -nPn -fsj -mhe -gfP -vfA -fsj -iPA -fsj -trO -rTs -bcG -mhe -gfP -gfP -oHl -vfA -tyk +uwk +jWI +eow +lFB +vUP +vUP +wef +bqu +rwm +eDA +vsM +mgz +xBc +cKa +bqu +rwm +cKa +bqu +rwm +cKa +bqu +rwm +cKa +kjt +mgz +rLG +cKa +tjR +cKa +onW +dzB +wZt +kjt +mgz +mgz +wef +rLG +uwk bQM kPz bQM -idu -dGD -xoE -rOn -aTt +jmG +bZI +fyi +vqs +mvl ntE smj qof @@ -69194,47 +68329,47 @@ qBe qof qBe qof -sGa -gNU -oOg +pUD +dIu +nvZ bno bno bno bno -vrR -jOb -taF -hri -flo -bWX -pPg -vpD -taF -deY -iZl -tEU -cgf -iZl -hri -xTw -rEN -jGv -iZl -iZl -iZl -iZl -iZl -eHX +uFr +iRA +xSw +wKi +bAM +qJY +sKt +eQs +xSw +glD +umN +pVY +mwP +umN +wKi +fBK +rYK +hhX +umN +umN +umN +umN +umN +xxg kPz -xoJ -fko -wUL -mXC -fko -wUL -oCf -fko -rfW +ipy +pLE +btJ +oMW +pLE +btJ +naI +pLE +duF dLN dPm tOM @@ -69273,7 +68408,7 @@ bQM kPz bQM bQM -bTo +gjm afk afk afk @@ -69284,7 +68419,7 @@ hkh afk afk afk -iWq +hfJ bQM bQM bQM @@ -69352,53 +68487,53 @@ bce bce bce bce -tyk -tyk -mhe -gfP -vfA -uFO -nmZ -qmU -hRo -caf -oHl -mhe -gfP -dan -fsj -hRo -caf -fsj -hRo -caf -fsj -hRo -xIL -fsj -mhe -qOT -aVe -fsj -trO -gTG -pDJ -rTs -bcG -mhe -gfP -cUT -oHl -vfA -tyk +uwk +uwk +kjt +mgz +rLG +gBw +vUP +eDA +kXk +tPB +wef +kjt +mgz +xRY +cKa +kXk +tPB +cKa +kXk +tPB +cKa +kXk +ctI +cKa +kjt +gzu +kGo +cKa +onW +vBa +cMP +dzB +wZt +kjt +mgz +jMf +wef +rLG +uwk kPz kPz kPz -idu -cWB -ppf -cIu -rwg +jmG +wxW +jEK +cOF +jce ntE smj qBe @@ -69406,7 +68541,7 @@ qBe qBe qBe qBe -hSl +mRR ecM jVj gqU @@ -69414,39 +68549,39 @@ eac dPe mcJ uIL -iZl -iZl -mOr -xTw -bWX -pPg -iZl -iZl -iZl -iZl -qSW -exF -iZl -mOr -xTw -bWX -iZl -aFX -mgC -iZl -bDl -mgC -eHX -bQM -xoJ -fko -mSF -fRT -fko -mSF -fRT -fko -rfW +umN +umN +hjI +fBK +qJY +sKt +umN +umN +umN +umN +hCX +elm +umN +hjI +fBK +qJY +umN +nDu +tjh +umN +hHX +tjh +xxg +bQM +ipy +pLE +hDF +vza +pLE +hDF +vza +pLE +duF chg tOM tOM @@ -69485,7 +68620,7 @@ bQM kPz bQM bQM -bTo +gjm afk afk afk @@ -69496,7 +68631,7 @@ pcu afk afk afk -iWq +hfJ bQM bQM bQM @@ -69559,58 +68694,58 @@ bQM cAW bQM bce -swg -fQV -vBP -fQV -erT -tyk -dKh -hRo -csF -caf -nmZ -pBB -fsj -qmU -oHl -oHl -mqS -jnV -exT -fsj -nDu -lSo -fsj -nDu -lSo -fsj -nDu -lSo -fsj -poR -gfP -vfA -fsj -trO -pMD -fsj -trO -bcG -mhe -gfP -gDY -wHS -vfA -tyk +rfI +rQt +yjV +rQt +grn +uwk +wcC +kXk +amn +tPB +vUP +dFI +cKa +eDA +wef +wef +wlv +xWG +ngF +cKa +kzh +tOp +cKa +kzh +tOp +cKa +kzh +tOp +cKa +xVw +mgz +rLG +cKa +onW +shh +cKa +onW +wZt +kjt +mgz +bJn +aTM +rLG +uwk bQM kPz bQM -idu -nmx -kaq -wZL -aWu +jmG +txf +oZj +sfZ +uhm wdl iUS qof @@ -69618,7 +68753,7 @@ qBe qof qBe qof -pUo +oCf ecM vNd fWH @@ -69626,39 +68761,39 @@ fWH fWH fWH fWH -iZl -ioK -lqg -xTw -rEN -iZl -iZl -pHA -vCR -rtL -rtL -rtL -lbU -hri -xTw -bWX -iZl -ceX -gJy -iZl -ceX -gJy -eHX -suR -suR -qjT -mFi -mFi -qjT -mFi -mFi -qjT -cef +umN +mue +bbI +fBK +rYK +umN +umN +wyQ +eTa +nUh +nUh +nUh +bhC +wKi +fBK +qJY +umN +eVD +qFW +umN +eVD +qFW +xxg +hjg +hjg +rjw +ecd +ecd +rjw +ecd +ecd +rjw +jTJ vMK mGZ tOM @@ -69697,7 +68832,7 @@ bQM kPz bQM bQM -bTo +gjm afk afk afk @@ -69708,7 +68843,7 @@ hkh afk afk afk -iWq +hfJ bQM bQM bQM @@ -69771,66 +68906,66 @@ bQM cAW bQM bce -bTo +gjm afk afk afk -ghg -tyk -kPl -nmZ -xMg -wJs -wGa -nmZ -jPX -xMg -xXw -rsO -aiH -dgF -dKY -wJs -wJs -wGa -nmZ -wEc -rsO -wJs -wJs -wGa -nmZ -mhe -ikc -vfA -fsj -trO -rTs -gTG -pMD -fsj -mhe -gfP -oHl -gfP -fUb -idu -tyk -tyk -tyk -idu -aTt -aTt -aWu -fsj -dnj -wis +xrw +uwk +aoZ +vUP +jWI +eow +lFB +vUP +pDo +jWI +bXz +tiP +ufR +sNi +jna +eow +eow +lFB +vUP +pRa +tiP +eow +eow +lFB +vUP +kjt +jYM +rLG +cKa +onW +dzB +vBa +shh +cKa +kjt +mgz +wef +mgz +bOx +jmG +uwk +uwk +uwk +jmG +mvl +mvl +uhm +cKa +iGe +mlG qBe qBe qBe qBe oPR -hSl +mRR ecM bEX bEX @@ -69838,39 +68973,39 @@ izZ oPR oPR oPR -iZl -pnC -hri -xTw -bWX -wWT -ylI -prc -rtL -rtL -rtL -lbU -omS -hri -xTw -rEN -iZl -qSW -exF -iZl -qSW -exF -iZl -suR -egP -dCG -wat -lkR -glZ -wat -wat -egP -eiM +umN +pCQ +wKi +fBK +qJY +umu +lmC +xBF +nUh +nUh +nUh +bhC +duL +wKi +fBK +rYK +umN +hCX +elm +umN +hCX +elm +umN +hjg +aWR +hnq +xAn +iCN +qOq +xAn +xAn +aWR +tVp goG tOM tOM @@ -69909,18 +69044,18 @@ bzO bzO bzO bQM -aKA -jlH -jlH -tWI -llQ -jKI -tWI -llQ -jKI -jlH -jlH -bUB +rcy +rhR +rhR +dfw +lJb +ngo +dfw +lJb +ngo +rhR +rhR +mtM bQM bQM bQM @@ -69983,50 +69118,50 @@ bQM cAW bQM bce -ajx +jGK afk hkh afk -tCZ -tyk -eUd -nmZ -mhe -gfP -vfA -gfP -gfP -hRo -lzx -csF -csF -csF -csF -csF -csF -caf -wuY -hRo -tKI -lzx -csF -caf -nmZ -mhe -gfP -vfA -fsj -gsv -pDJ -rTs -hmX -mYA -mhe -gfP -gfP -oHl -vfA -tVb +deC +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 +cKa +okJ +cMP +dzB +lsZ +hEs +kjt +mgz +mgz +wef +rLG +jYs uJi fWH hdR @@ -70036,13 +69171,13 @@ fWH mBG sue wBB -dAd +cee ode ode ode ode ode -cry +xRa qBe qBe qBe @@ -70050,39 +69185,39 @@ wKm qBe qBe oPR -iZl -rcs -hri -xTw -bWX -taF -ylI -ceX -dHf -dHf -dHf -omS -lbU -gTs -xTw -bWX -ylI -prc -rtL -rtL -rtL -lbU -ylI -rfW -tuH -mAE -fnH -wat -glZ -wat -wat -mJb -kdl +umN +cRI +wKi +fBK +qJY +xSw +lmC +eVD +gos +gos +gos +duL +bhC +cHC +fBK +qJY +lmC +xBF +nUh +nUh +nUh +bhC +lmC +duF +kHx +rqd +mOI +xAn +qOq +xAn +xAn +xwc +csW goG tOM tOM @@ -70108,13 +69243,13 @@ gbf vEK mxQ mxQ -kGZ -sBW -sBW -sBW -sBW -sBW -sBW +enU +rDf +rDf +rDf +rDf +rDf +rDf bzO bzO bzO @@ -70124,12 +69259,12 @@ bQM bQM bQM bQM -aKA -jlH -bUB -aKA -jlH -bUB +rcy +rhR +mtM +rcy +rhR +mtM bQM bQM bQM @@ -70195,50 +69330,50 @@ bQM cAW bQM bce -bTo +gjm afk afk afk -xMW -tyk -eUd -nmZ -hRo -csF -caf -uvg -cLH +sJX +uwk +rce +vUP +kXk +amn +tPB +qqC +eov efl fDQ -cLH -gUT -oHl -oHl -kjQ -nmZ -nDx -oHl -oHl -lSo -fsj -nDu -lSo -fsj -poR -gfP -fUb -jlE -jlE -jlE -phM -jlE -jlE -xSu -csF -csF -csF -caf -tVb +eov +tzy +wef +wef +xgH +vUP +eSI +wef +wef +tOp +cKa +kzh +tOp +cKa +xVw +mgz +bOx +aSz +aSz +aSz +hul +aSz +aSz +nGV +amn +amn +amn +tPB +jYs fWH mEU aZL @@ -70262,39 +69397,39 @@ qBe qBe qBe oPR -iZl -ioK -fnM -xTw -rEN -iZl -iZl -ylI -ceX -dHf -dHf -dHf -omS -hri -xTw -bWX -ylI -ceX -dHf -dHf -dHf -omS -xgY -hZY -beC -myS -wat -wat -glZ -ajC -wat -egP -bOn +umN +mue +gIa +fBK +rYK +umN +umN +lmC +eVD +gos +gos +gos +duL +wKi +fBK +qJY +lmC +eVD +gos +gos +gos +duL +sDR +hBF +vcv +iLl +xAn +xAn +qOq +huG +xAn +aWR +fhS goG tOM tOM @@ -70319,8 +69454,8 @@ apu gbf vEK fFw -kGZ -fHI +enU +naj pYB eBS pYB @@ -70407,50 +69542,50 @@ bQM cAW bQM bce -aKA -jlH -eJQ -jlH -bUB -tyk -dQB -xMg -wJs -wGa -nmZ -gfP -cLH +rcy +rhR +sGS +rhR +mtM +uwk +iTr +jWI +eow +lFB +vUP +mgz +eov ihV uvS -cLH -esh -xNA -vCr -nmZ -bCV -nmZ -oHl -xMg -wGa -fsj -xMg -pjn -fsj -mhe -gfP -ngq -qwo -gMH -gVK -hgy -gVK -jlE -idu -idu -tyk -tyk -idu -idu +eov +gXI +qxx +jAW +vUP +tWs +vUP +wef +jWI +lFB +cKa +jWI +oyy +cKa +kjt +mgz +apg +qBw +cIa +sXe +wHV +sXe +aSz +jmG +jmG +uwk +uwk +jmG +jmG mEU bbn oPR @@ -70473,40 +69608,40 @@ qBe qBe qBe qBe -pUf -iZl -iZl -mOr -xTw -bWX -pPg -iZl -qSW -exF -iZl -qSW -exF -iZl -hri -xTw -rEN -iZl -qSW -exF -iZl -qSW -exF -iZl -suR -qjT -qjT -mFi -mFi -qjT -mFi -mFi -qjT -cef +lmJ +umN +umN +hjI +fBK +qJY +sKt +umN +hCX +elm +umN +hCX +elm +umN +wKi +fBK +rYK +umN +hCX +elm +umN +hCX +elm +umN +hjg +rjw +rjw +ecd +ecd +rjw +ecd +ecd +rjw +jTJ vMK pFW tOM @@ -70531,15 +69666,15 @@ epB gbf gbf fWy -vUZ -waN -sfW -sfW -sfW -sfW -sfW +gMl +dOc +vft +vft +vft +vft +vft qRW -mOE +mbU bzO tan tan @@ -70624,45 +69759,45 @@ bce bce bce bce -tyk -tyk -mhe -gfP -vfA -nmZ -nuf -cLH +uwk +uwk +kjt +mgz +rLG +vUP +cEg +eov jGs vRu -cLH -aCP -jQE -cvT -nNy -nmZ -jTa -cvT -aCP -nhm -fsj -aCP -gMD -fsj -mhe -iiK -ngq -qwo -qXA -gVK -hgy -gVK -kDh -pXF -bQM -bQM -bQM -bQM -tyk +eov +iFB +nVu +hqD +jiz +vUP +cfU +hqD +iFB +dUx +cKa +iFB +qBT +cKa +kjt +jii +apg +qBw +glj +sXe +wHV +sXe +odQ +nLO +bQM +bQM +bQM +bQM +uwk aZL oPR ldj @@ -70685,30 +69820,30 @@ mlC ecM okE qBe -vcu -qQM -wWT -hri -xTw -bWX -pPg -iZl -ceX -gJy -iZl -ceX -gJy -iZl -mOr -xTw -bWX -iZl -prc -cgf -iZl -prc -cgf -iZl +spI +ueD +umu +wKi +fBK +qJY +sKt +umN +eVD +qFW +umN +eVD +qFW +umN +hjI +fBK +qJY +umN +xBF +mwP +umN +xBF +mwP +umN rKs tOM wGA @@ -70742,9 +69877,9 @@ fOT nBw nvX nvX -wuz -fHI -hfd +qHl +naj +rQi fIW htt htt @@ -70837,44 +69972,44 @@ cAW cAW cAW bQM -tyk -hRo -csF -caf -nmZ -kPM -cLH +uwk +kXk +amn +tPB +vUP +kIO +eov dRO pvD -cLH -fsj -fsj -fsj -bMw -nmZ -pBB -mYA -fsj -fsj -fsj -fsj -fsj -fsj -sEw -iiK -ngq -qwo -qXA -gVK -hgy -gVK -aki -pXF +eov +cKa +cKa +cKa +mZy +vUP +dFI +hEs +cKa +cKa +cKa +cKa +cKa +cKa +apm +jii +apg +qBw +glj +sXe +wHV +sXe +vJh +nLO kPz kPz kPz kPz -tyk +uwk qBe rpt oPR @@ -70897,30 +70032,30 @@ kPz mlC qBe eUP -sGa -jOb -taF -ceX -ygC -omS -ylI -iZl -iZl -iZl -jGv -iZl -iZl -iZl -hri -xTw -bWX -iZl -rrf -vLY -iZl -rrf -vLY -iZl +pUD +iRA +xSw +eVD +eux +duL +lmC +umN +umN +umN +hhX +umN +umN +umN +wKi +fBK +qJY +umN +xpy +oeh +umN +xpy +oeh +umN lbz gLk gbf @@ -70956,7 +70091,7 @@ gbf gbf arT tOM -hfd +rQi vfM oEK lEy @@ -71049,44 +70184,44 @@ cAW cAW cAW bQM -tyk -nmZ -xMg -wJs -wGa -tPf -cLH +uwk +vUP +jWI +eow +lFB +dbh +eov doe cAW -cBv -xvr -cNJ -gMH -ahb -qwo -qwo -gMH -xvr -cNJ -gMH -xvr -cNJ -gMH -lyq -pvm -ngq -qwo -gMH -xas -hgy -gVK -iDc -pXF -bQM -bQM -bQM -bQM -tyk +gGn +fna +uTq +cIa +gzN +qBw +qBw +cIa +fna +uTq +cIa +fna +uTq +cIa +nVK +lTs +apg +qBw +cIa +dcv +wHV +sXe +lMi +nLO +bQM +bQM +bQM +bQM +uwk roQ vdW oPR @@ -71109,30 +70244,30 @@ bQM mlC eUP qBe -xIq -iZl -iZl -taF -nbY -iZl -iZl -iZl -sIi -xTw -xTw -qRz -xTw -xTw -hri -xTw -rEN -iZl -iZl -iZl -iZl -iZl -iZl -iZl +uFL +umN +umN +xSw +blG +umN +umN +umN +mKa +fBK +fBK +kgQ +fBK +fBK +wKi +fBK +rYK +umN +umN +umN +umN +umN +umN +umN mxQ tOM gbf @@ -71166,9 +70301,9 @@ fOT jzP ydK ydK -qzb -tdq -hfd +ope +dzq +rQi ucj bBA bBA @@ -71259,41 +70394,41 @@ cAW cAW cAW cAW -idu -idu -idu -rBh -mhe -vQn -vfA -ueE -cLH +jmG +jmG +jmG +lSq +kjt +hjB +rLG +taI +eov ivb cAW -cBv -qvR -bbt -gMH -loX -aff -qwo -gMH -qvR -vdR -gMH -qvR -vdR -gMH -lyq -iiK -ngq -gMH -gMH -gMH -anx -gMH -gMH -cbC +gGn +mVE +sJH +cIa +fLH +gCK +qBw +cIa +mVE +sEK +cIa +mVE +sEK +cIa +nVK +jii +apg +cIa +cIa +cIa +aNY +cIa +cIa +hCG vnr hxq hxq @@ -71314,37 +70449,37 @@ oPR qBe vtX dYo -gxS +uDF kPz kPz kPz -gxS -jLz -jLz -jLz -iZl -iZl -apj -nSa -eHX -iZl -jSx -qRz -cJN -pre -cVx -ylI -qRz -hgi -xTw -bWX -iZl -aFX -mgC -iZl -aFX -mgC -iZl +uDF +aCw +aCw +aCw +umN +umN +nkw +xVC +xxg +umN +pai +kgQ +tSl +diJ +ddt +lmC +kgQ +diF +fBK +qJY +umN +nDu +tjh +umN +nDu +tjh +umN hNj ijd gbf @@ -71379,15 +70514,15 @@ apu gbf gbf fFw -vUZ -tuX -vEi -vEi -vEi -vEi -vEi +gMl +sdG +cZv +cZv +cZv +cZv +cZv faD -oyO +okQ bzO tan tan @@ -71471,39 +70606,39 @@ cAW cAW cAW cAW -idu +jmG cAW -idu -nmZ -hRo -csF -caf -jnp -cLH +jmG +vUP +kXk +amn +tPB +mpR +eov hxJ qgd -cBv -nUP -ybk -gMH -kyl -qwo -fdg -gMH -nUP -ybk -gMH -nUP -ybk -gMH -sEw -iiK -xps -gMH -qwo -qwo -qwo -gMH +gGn +hZU +dZM +cIa +oDH +qBw +psG +cIa +hZU +dZM +cIa +hZU +dZM +cIa +apm +jii +xCR +cIa +qBw +qBw +qBw +cIa xRl cPz ixl @@ -71511,7 +70646,7 @@ kJz ixl bjf vNq -wAb +hsz oPR oPR qBe @@ -71519,44 +70654,44 @@ mlC kPz kPz kPz -gxS +uDF hdR oPR oPR qBe aZL -wNb -eAh -gxS -gxS -gxS -eAh -kTk -jLz -jLz -jLz -jhv -deL -cWF -deL -iZl -jSx -qRz -aHv -pre -aBa -ylI -eEK -hri -xTw -bWX -iZl -ceX -gJy -iZl -ceX -gJy -iZl +nGB +jjx +uDF +uDF +uDF +jjx +eLU +aCw +aCw +aCw +hNt +bNW +lny +bNW +umN +pai +kgQ +nkg +diJ +iuC +lmC +pnP +wKi +fBK +qJY +umN +eVD +qFW +umN +eVD +qFW +umN lbz hnh gbf @@ -71591,7 +70726,7 @@ apu gbf vEK fWy -lUv +xhV gbf pYB eBS @@ -71683,99 +70818,99 @@ cAW cAW cAW cAW -idu -idu -idu -idu -idu -idu -idu -cbC -cBv -cBv -cBv -cBv -qwo -hgy -qwo -qZH -qwo -qwo -ikg -bIf -nFa -rMa -ezj -oka -qwo -lyq -iiK -ngq -uEx -bIf -nFa -oka -uEx +jmG +jmG +jmG +jmG +jmG +jmG +jmG +hCG +gGn +gGn +gGn +gGn +qBw +wHV +qBw +ika +qBw +qBw +bjZ +fvx +aYR +aiv +kGd +meE +qBw +nVK +jii +apg +lZA +fvx +aYR +meE +lZA ixl ixl ghS hHH hHH ixl -bzf -jLz -cLp -cLp -lYf -gxS +qfR +aCw +gvy +gvy +isw +uDF bQM kPz bQM -gxS -wsA -cLp -cLp -jLz -jLz -jkl -jLz -kKp -jLz -jLz -jLz -jLz -jLz -vob -lYf -jLz -jLz -jLz -lCe -iZl -jSx -qRz -fdB -pre -hYT -pre -xTw -hri -xTw -rEN -iZl -qSW -exF -iZl -qSW -exF -iZl -iZl +uDF +flG +gvy +gvy +aCw +aCw +gbk +aCw +iCC +aCw +aCw +aCw +aCw +aCw +svS +isw +aCw +aCw +aCw +fjg +umN +pai +kgQ +tTm +diJ +aga +diJ +fBK +wKi +fBK +rYK +umN +hCX +elm +umN +hCX +elm +umN +umN pFW cTy fOT -wua -kKP -eqw +fse +esY +kJg nBw nvX nvX @@ -71803,15 +70938,15 @@ apu gbf gbf fFw -vUZ -waN -sfW -sfW -sfW -sfW -sfW +gMl +dOc +vft +vft +vft +vft +vft qRW -mOE +mbU bzO tan tan @@ -71895,93 +71030,93 @@ cAW cAW cAW cAW -idu +jmG cAW -idu +jmG cAW cAW cAW cAW -cbC -gMH -gMH -gMH -aRy -qwo -qwo -qwo -qwo -sJb -qwo -rHM -qvR -sgB -cwT -nAc -wJC -qwo -lyq -iiK -ngq -hgy -lyq -iiK -ngq -hgy +hCG +cIa +cIa +cIa +rpf +qBw +qBw +qBw +qBw +mIr +qBw +knb +mVE +bVO +gJM +gAD +hkH +qBw +nVK +jii +apg +wHV +nVK +jii +apg +wHV ixl ixl ixl ixl ixl gpr -oah -cLp -cLp -cLp -ali -eAh -gxS -gxS -gxS -eAh -jSY -cLp -cLp -jLz -jLz -jLz -jLz -jLz -jLz -jLz -jLz -jLz -jLz -qvJ -oSU -jLz -jLz -jLz -rIP -iZl -iZl -wuf -aBa -pei -ylI -ylI -xTw -hri -xTw -bWX -ylI -prc -rtL -rtL -rtL -lbU -ylI -fHv +nnr +gvy +gvy +gvy +lFK +jjx +uDF +uDF +uDF +jjx +cYY +gvy +gvy +aCw +aCw +aCw +aCw +aCw +aCw +aCw +aCw +aCw +aCw +rMw +tkh +aCw +aCw +aCw +jLe +umN +umN +sRJ +iuC +coj +lmC +lmC +fBK +wKi +fBK +qJY +lmC +xBF +nUh +nUh +nUh +bhC +lmC +ntv tOM gbf fOT @@ -72014,9 +71149,9 @@ fOT nBw nvX nvX -wuz -fHI -hfd +qHl +naj +rQi fIW htt htt @@ -72107,93 +71242,93 @@ cAW cAW cAW cAW -idu -idu -idu -idu -idu -idu -idu -cbC -gMH -gMH -gMH -gMH -qwo -qwo -qwo -xAL -hgy -hgy -hgy -hgy -hgy -duu -hgy -hgy -xAL -lyq -iiK -ngq -uEx -lyq -iiK -ngq -uEx +jmG +jmG +jmG +jmG +jmG +jmG +jmG +hCG +cIa +cIa +cIa +cIa +qBw +qBw +qBw +jfc +wHV +wHV +wHV +wHV +wHV +rPS +wHV +wHV +jfc +nVK +jii +apg +lZA +nVK +jii +apg +lZA ixl ixl ixl ixl ixl ixl -oah -cLp -cLp -cLp -wsA -rES -lYf -jLz -wsA -rES -lYf -cLp -cLp -vob -lYf -jLz -jLz -vob -lYf -jLz -jLz -jLz -jLz -tNQ -dGv -jLz -hyU -jLz -xCE -cGO -lUR -iml -lUR -ylI -wtf -ylI -xTw -ceX -dHf -omS -ylI -ceX -dHf -dHf -dHf -omS -ylI -fHv +nnr +gvy +gvy +gvy +flG +eLy +isw +aCw +flG +eLy +isw +gvy +gvy +svS +isw +aCw +aCw +svS +isw +aCw +aCw +aCw +aCw +hYs +uou +aCw +mrW +aCw +fWV +tHl +qCK +lIJ +qCK +lmC +idj +lmC +fBK +eVD +gos +duL +lmC +eVD +gos +gos +gos +duL +lmC +ntv tOM gbf rsR @@ -72228,7 +71363,7 @@ gbf gbf arT tOM -hfd +rQi vfM oEK lEy @@ -72326,86 +71461,86 @@ cAW cAW cAW cAW -cbC -gMH -gMH -gMH -aRy -bIf -nFa -oka -ckX -bIf -xEu -hgy -bIf -oka -xAL -bIf -oka -duu -lyq -iiK -ngq -hgy -qvR -nAc -bbt -hgy +hCG +cIa +cIa +cIa +rpf +fvx +aYR +meE +juV +fvx +clA +wHV +fvx +meE +jfc +fvx +meE +rPS +nVK +jii +apg +wHV +mVE +gAD +sJH +wHV ixl ixl ixl ixl ghS ixl -aPc -cVb -cLp -cLp -cLp -cLp -cLp -cLp -cLp -cLp -cLp -cLp -cLp -wsA -oSU -jLz -kKp -wsA -oSU -jLz -jLz -jLz -jLz -tNQ -jLz -jLz -jLz -hHk -jBX -rqi -taF -mhp -taF -taF -ylI -pre -xTw -taF -xTw -xTw -iZl -qSW -exF -iZl -iZl -lYv -iZl -iZl +jAP +aBX +gvy +gvy +gvy +gvy +gvy +gvy +gvy +gvy +gvy +gvy +gvy +flG +tkh +aCw +iCC +flG +tkh +aCw +aCw +aCw +aCw +hYs +aCw +aCw +aCw +oHi +qfh +sgt +xSw +sDw +xSw +xSw +lmC +diJ +fBK +xSw +fBK +fBK +umN +hCX +elm +umN +umN +nIU +umN +umN pFW gbf gbf @@ -72438,9 +71573,9 @@ fOT jzP ydK ydK -qzb -tdq -hfd +ope +dzq +rQi ucj bBA bBA @@ -72538,32 +71673,32 @@ cAW cAW cAW cAW -cbC -gMH -gMH -gMH -gMH -lyq -iiK -ngq -ckX -fRt -ejZ -ckX -aSU -ejZ -xAL -aSU -ejZ -hgy -lyq -iiK -ngq -gMH -qwo -qwo -qwo -gMH +hCG +cIa +cIa +cIa +cIa +nVK +jii +apg +juV +fRc +keb +juV +iXB +keb +jfc +iXB +keb +wHV +nVK +jii +apg +cIa +qBw +qBw +qBw +cIa xRl ixl ixl @@ -72571,48 +71706,48 @@ ixl ixl bjf vNq -qRy -cVb -oSU -lYf -sjv -mer -btL -plB -gJN -hsg -btL -dJf -jLz -jLz -sjv -gJN -gJN -wqI -vob -lYf -jLz -mwX -ohd -dHF -jLz -jLz -jLz -jLz -xeL -taF -dzM -taF -lUR -iml -taF -mhp -mhp -mhp -vnj -iZl -prc -cgf +kgu +aBX +tkh +isw +wRS +oCM +qpF +sqL +kjs +oPH +qpF +sUd +aCw +aCw +wRS +kjs +kjs +xql +svS +isw +aCw +kHH +fFv +uoH +aCw +aCw +aCw +aCw +oPN +xSw +aXC +xSw +qCK +lIJ +xSw +sDw +sDw +sDw +tZe +umN +xBF +mwP mxQ fCZ nZQ @@ -72651,15 +71786,15 @@ apu tOM tOM fFw -vUZ -tuX -vEi -vEi -vEi -vEi -vEi +gMl +sdG +cZv +cZv +cZv +cZv +cZv faD -oyO +okQ bzO tan tan @@ -72750,32 +71885,32 @@ cAW cAW cAW cAW -cbC -gMH -gMH -gMH -gMH -stx -iiK -ngq -ujx -gMH -gMH -gMH -gMH -gMH -gMH -gMH -gMH -gMH -sEw -iiK -ngq -cbC -pXF -pXF -pXF -cbC +hCG +cIa +cIa +cIa +cIa +iWX +jii +apg +asF +cIa +cIa +cIa +cIa +cIa +cIa +cIa +cIa +cIa +apm +jii +apg +hCG +nLO +nLO +nLO +hCG vnr ixl ixl @@ -72784,47 +71919,47 @@ ixl ixl vNq vNq -rlk -vXr -vXr -dDp +iUz +hXJ +hXJ +hJd vNq vNq vnr -gxS -gxS -eAh -hJm -vUJ -vUJ -ooc -eAh -nXL -fYg -dby -vMl -jLz -jLz -wsA -oSU -jLz -jLz -lUM -gKk -kHT -qRC -szv -aVn -gnm -pKC -ylI -mhp -mhp -mhp -vnj -iZl -rrf -vLY +uDF +uDF +jjx +pBj +hEv +hEv +qnL +jjx +nSx +gVc +xbo +qzZ +aCw +aCw +flG +tkh +aCw +aCw +ooO +faw +lux +wjH +cqW +ckS +voh +dtg +lmC +sDw +sDw +sDw +tZe +umN +xpy +oeh mxQ gRW ssO @@ -72863,7 +71998,7 @@ apu tOM aRk fFw -lUv +xhV gbf pYB eBS @@ -72962,28 +72097,28 @@ cAW cAW cAW cAW -cbC -gMH -xvr -jkM -gMH -hyL -iiK -mzm -gMH -xvr -cNJ -gMH -xvr -cNJ -gMH -xvr -hgC -gMH -lyq -iiK -ngq -pXF +hCG +cIa +fna +moQ +cIa +urw +jii +vwX +cIa +fna +uTq +cIa +fna +uTq +cIa +fna +aLC +cIa +nVK +jii +apg +nLO bQM kPz kPz @@ -73010,33 +72145,33 @@ ovq vyw bix uTb -eAh -nXL -wxt -wuD -jLz -jLz -jLz -jLz -jLz -nLv -jLz -jLz -gKk -cGO -fdn -xTw -hAu -cWh -xTw -oRL -xTw -xTw -rFo -xTw -iZl -iZl -iZl +jjx +nSx +gux +eio +aCw +aCw +aCw +aCw +aCw +lfx +aCw +aCw +faw +tHl +jYm +fBK +thz +suq +fBK +wFB +fBK +fBK +xdZ +fBK +umN +umN +umN mxQ tUs tUs @@ -73067,23 +72202,23 @@ hvF mxQ mxQ mxQ -fob -rxM +sDp +met gbf fOT apu tOM rbW voP -vUZ -waN -sfW -sfW -sfW -sfW -sfW +gMl +dOc +vft +vft +vft +vft +vft qRW -mOE +mbU bzO tan tan @@ -73174,28 +72309,28 @@ cAW cAW cAW cAW -cbC -gMH -qvR -uxh -gMH -lyq -iiK -ngq -gMH -qvR -gEg -gMH -qvR -bGE -gMH -qvR -sFQ -gMH -qvR -nAc -bbt -pXF +hCG +cIa +mVE +qRf +cIa +nVK +jii +apg +cIa +mVE +jWY +cIa +mVE +lzz +cIa +mVE +nlX +cIa +mVE +gAD +sJH +nLO bQM kPz kPz @@ -73222,33 +72357,33 @@ lOx oRg ixl uvn -eAh -nXL -iuf -sjA -sUW -jLz -vob -lYf -sUW -jLz -jLz -jLz -tiw -wAP -wAP -iZl -iZl -iZl -wAP -wAP -taF -nbY -wAP -wAP -wAP -gbS -jcI +jjx +nSx +ayG +laK +gRA +aCw +svS +isw +gRA +aCw +aCw +aCw +hQT +axz +axz +umN +umN +umN +axz +axz +xSw +blG +axz +axz +axz +bMG +anl ffZ tUs fgU @@ -73280,15 +72415,15 @@ mxQ pRx tOM xbp -lUv +xhV gbf fOT nBw nvX nvX -wuz -fHI -hfd +qHl +naj +rQi fIW htt htt @@ -73386,28 +72521,28 @@ cAW cAW cAW cAW -cbC -gMH -nUP -ybk -gMH -lyq -iiK -ngq -gMH -nUP -ybk -gMH -nUP -ybk -gMH -nUP -ybk -gMH -aQp -qwo -qwo -pXF +hCG +cIa +hZU +dZM +cIa +nVK +jii +apg +cIa +hZU +dZM +cIa +hZU +dZM +cIa +hZU +dZM +cIa +cIt +qBw +qBw +nLO bQM kPz kPz @@ -73434,33 +72569,33 @@ bix uPl dIh kGc -nXL -jFw -bPZ -nRl -jFb -sUW -wsA -vob -lYf -sUW -jLz -jLz -kiU -vhX -fHv -dgM -rtL -rtL -nFP -tOK -ylI -ylI -kKI -nem -poT -uAE -aTZ +nSx +cVV +oWC +ubx +qTt +gRA +flG +svS +isw +gRA +aCw +aCw +uud +wXQ +ntv +hqX +nUh +nUh +rQB +gdS +lmC +lmC +qxZ +lHH +sFH +rCt +xGd mxQ tUs kZy @@ -73489,10 +72624,10 @@ mxQ mxQ mxQ mxQ -uLr +pdq tUs -brl -kyh +nIJ +jSx gbf fOT gbf @@ -73500,7 +72635,7 @@ gbf gbf arT tOM -hfd +rQi vfM oEK lEy @@ -73598,28 +72733,28 @@ cAW cAW cAW cAW -cbC -gMH -bIf -nFa -nFa -nqg -iiK -pco -nFa -nFa -ezj -hgy -nFa -nFa -nFa -nFa -oka -qwo -bIf -nFa -oka -pXF +hCG +cIa +fvx +aYR +aYR +rEx +jii +deg +aYR +aYR +kGd +wHV +aYR +aYR +aYR +aYR +meE +qBw +fvx +aYR +meE +nLO bQM kPz kPz @@ -73646,33 +72781,33 @@ ovq ovq ovq uvn -nXL -nXL -nRl -pEK -nRl -ckD -sUW -wsA -oSU -lYf -jLz -jLz -jLz -iZl -iZl -iZl -dJY -mhp -nFP -kAB -ylI -ylI -frQ -iZl -mTH -keo -cvW +nSx +nSx +ubx +rGf +ubx +qUw +gRA +flG +tkh +isw +aCw +aCw +aCw +umN +umN +umN +fKX +sDw +rQB +eMN +lmC +lmC +sjZ +umN +huJ +caF +xKE mxQ cLu wBX @@ -73710,9 +72845,9 @@ fOT jzP ydK ydK -qzb -tdq -hfd +ope +dzq +rQi ucj bBA bBA @@ -73810,28 +72945,28 @@ cAW cAW cAW cAW -cbC -gMH -lyq -iiK -iiK -iiK -iiK -iiK -iiK -iiK -iiK -hgy -iiK -iiK -iiK -iiK -ngq -qwo -lyq -iiK -ngq -pXF +hCG +cIa +nVK +jii +jii +jii +jii +jii +jii +jii +jii +wHV +jii +jii +jii +jii +apg +qBw +nVK +jii +apg +nLO bQM kPz kPz @@ -73858,33 +72993,33 @@ kgG ujb ovq uvn -jFw -nXL -uIi -nRl -vDS -oSU -jLz -sUW -wsA -oSU -jLz -jLz -kiU -enm -fHv -dgM -rtL -rtL -wAP -wAP -taF -nbY -wAP -wAP -iZl -eed -iZl +cVV +nSx +nVE +ubx +uGL +tkh +aCw +gRA +flG +tkh +aCw +aCw +uud +mwu +ntv +hqX +nUh +nUh +axz +axz +xSw +blG +axz +axz +umN +pim +umN mxQ tUs mxQ @@ -73896,14 +73031,14 @@ gbf ekx tOM tOM -dXT -egz -fpg -nmM -aMr -hDS -egz -xBu +xYM +cfX +mKh +wMp +dRF +wsR +cfX +qUb tOM tOM beB @@ -73913,25 +73048,25 @@ tOM pYB mxQ mxQ -uSY +lbg tUs -qzb -rxM +ope +met uMN fOT apu gbf gbf fWy -vUZ -tuX -vEi -vEi -vEi -vEi -vEi +gMl +sdG +cZv +cZv +cZv +cZv +cZv faD -oyO +okQ bzO tan tan @@ -74022,28 +73157,28 @@ cAW cAW cAW cAW -cbC -gMH -fry -nAc -nAc -nAc -nAc -nAc -nAc -nAc -nAc -kVK -nAc -nAc -nAc -nAc -bbt -qwo -qvR -kCV -bbt -pXF +hCG +cIa +ndQ +gAD +gAD +gAD +gAD +gAD +gAD +gAD +gAD +ljc +gAD +gAD +gAD +gAD +sJH +qBw +mVE +ylr +sJH +nLO bQM kPz kPz @@ -74070,29 +73205,29 @@ oUg yfA ovq peP -nXL -nXL -qRv -lYf -sUW -jLz -vob -atV -nXL -hbO -jLz -jLz -jLz -iZl -iZl -iZl -xTw -mhp -iHd -vVx +nSx +nSx +xgC +isw +gRA +aCw +svS +dVu +nSx +nvx +aCw +aCw +aCw +umN +umN +umN +fBK +sDw +sqC +ghe qQb qQb -tlF +kBW hfT ecU iSg @@ -74106,18 +73241,18 @@ gbf tOM tOM tOM -tYD -egz -xkq -ndo -ndo -pfG -vis -ndo -ndo -tSL -egz -jOv +szn +cfX +vSn +fbn +fbn +cqZ +ckl +fbn +fbn +mqF +cfX +mDG tOM tOM tOM @@ -74128,14 +73263,14 @@ mxQ rQN tOM rTD -lUv +xhV gbf fOT apu gbf vEK fWy -lUv +xhV gbf pYB eBS @@ -74234,28 +73369,28 @@ cAW cAW cAW cAW -cbC -gMH -gMH -gMH -gMH -gWv -rdS -qwo -rdS -qwo -iiK -iiK -iiK -qwo -rdS -xAV -xAV -xAV -gMH -gMH -gMH -cbC +hCG +cIa +cIa +cIa +cIa +wsw +doc +qBw +doc +qBw +jii +jii +jii +qBw +doc +gtr +gtr +gtr +cIa +cIa +cIa +hCG bQM kPz kPz @@ -74283,29 +73418,29 @@ oRg vdN uvn uFC -cTm -wsA -vob -lYf -sUW -wsA -vob -dgw -nXL -hbO -jLz -kiU -vhX -fHv -dgM -rtL -rtL -fHv -kUR +qyM +flG +svS +isw +gRA +flG +svS +dhc +nSx +nvx +aCw +uud +wXQ +ntv +hqX +nUh +nUh +ntv +bcO sIj hkA -bDv -jCO +tCm +syM fOK iSg vTA @@ -74316,22 +73451,22 @@ pYB tOM gbf tOM -rko -egz -xkq -ndo -qTp -ndo -dki -suD -suD -edG -ndo -qTp -ndo -cBn -egz -sGg +pnn +cfX +vSn +fbn +qtp +fbn +inv +tEU +tEU +uow +fbn +qtp +fbn +nlT +cfX +bKT tOM gbf tOM @@ -74339,8 +73474,8 @@ pYB mxQ mxQ mxQ -sBW -kyh +rDf +jSx gbf fOT apu @@ -74445,27 +73580,27 @@ cAW cAW cAW cAW -cbC -cbC -gMH -gMH -gMH -jQQ -iiK -iiK -iiK -iiK -qwo -iiK -iiK -iiK -qwo -iiK -iiK -jkE -qwo -qwo -scK +hCG +hCG +cIa +cIa +cIa +pQc +jii +jii +jii +jii +qBw +jii +jii +jii +qBw +jii +jii +mns +qBw +qBw +tBP vNq vnr bQM @@ -74495,25 +73630,25 @@ oRg ovq uvn ovq -cTm -sUW -wsA -oSU -lYf -sUW -wsA -tfn -lYf -sUW -jLz -jLz -iZl -iZl -iZl -qBz -mhp -fHv -kUR +qyM +gRA +flG +tkh +isw +gRA +flG +qEC +isw +gRA +aCw +aCw +umN +umN +umN +sKr +sDw +ntv +bcO sIj hkA nZI @@ -74528,22 +73663,22 @@ eTr gbf ekx tOM -xpM -ndo -qTp -ndo -bpL -hot -tYX -suD -suD -tYX -qnf -dMb -ndo -qTp -ndo -vUZ +nYQ +fbn +qtp +fbn +tVY +rTY +sgI +tEU +tEU +sgI +blf +fDW +fbn +qtp +fbn +gMl tOM beB jMv @@ -74657,27 +73792,27 @@ cAW cAW cAW cAW -cbC -cbC -gMH -gMH -gMH -gMH -iiK -onY -onY -mjG -xOp -xOp -gRl -xOp -wMN -kei -iiK -iiK -qwo -qwo -scK +hCG +hCG +cIa +cIa +cIa +cIa +jii +rAw +rAw +xKP +niw +niw +oKn +niw +jfp +pho +jii +jii +qBw +qBw +tBP vNq vnr bQM @@ -74707,29 +73842,29 @@ oRg jUP uvn ovq -cTm -lYf -sUW -wsA -vob -atV -nXL -tpn -vob -lYf -sUW -kiU -wKh -fHv -dgM -rtL -rtL -fHv -kUR +qyM +isw +gRA +flG +svS +dVu +nSx +asf +svS +isw +gRA +uud +iIG +ntv +hqX +nUh +nUh +ntv +bcO sIj hkA -qTQ -jfT +fEt +eBH drd hEk myJ @@ -74739,24 +73874,24 @@ pYB tOM gbf tOM -tYD -xkq -qTp -kbO -mXM -aQm -xBS -tYX -suD -dDk -tYX -aHm -biN -wsK -coL -qTp -cBn -jOv +szn +vSn +qtp +vRk +gWA +bTC +aZA +sgI +tEU +voI +sgI +xct +emE +fXW +ldF +qtp +nlT +mDG tOM gbf tOM @@ -74869,27 +74004,27 @@ cAW cAW cAW cAW -cbC -cbC -cbC -cbC -iNh -qwo -iiK -onY -onY -fXj -ijE -fAW -ijE -ijE -gJP -oka -jkE -iiK -qwo -qwo -scK +hCG +hCG +hCG +hCG +pcN +qBw +jii +rAw +rAw +vsr +nmm +fXV +nmm +nmm +wJd +meE +mns +jii +qBw +qBw +tBP vNq vnr bQM @@ -74919,28 +74054,28 @@ oRg xHi uvn ovq -cTm -oSU -lYf -sUW -wsA -oSU -nnf -nXL -wAb -oSU -lYf -sUW -iZl -iZl -iZl -xTw -mhp -wAP -veW +qyM +tkh +isw +gRA +flG +tkh +nGO +nSx +hsz +tkh +isw +gRA +umN +umN +umN +fBK +sDw +axz +qsV vVN vVN -uYo +jQF rBF rBF nhY @@ -74951,24 +74086,24 @@ tOM gbf tOM tOM -xpM -ndo -ndo -mXM -tYX -tYX -hot -tYX -suD -suD -tYX -vYK -pzK -wPI -mIn -ndo -ndo -vUZ +nYQ +fbn +fbn +gWA +sgI +sgI +rTY +sgI +tEU +tEU +sgI +iYe +mqL +siy +nAV +fbn +fbn +gMl tOM tOM gbf @@ -75084,23 +74219,23 @@ cAW cAW bQM fwn -cbC -hbh -qwo -iiK -onY -hhZ -hkb -ijE -xzp -ijE -ijE -gJP -ngq -iiK -iiK -vnQ -gno +hCG +dVC +qBw +jii +rAw +vrH +tAE +nmm +pqz +nmm +nmm +wJd +apg +jii +jii +rkF +qfi vNq vNq vNq @@ -75131,24 +74266,24 @@ yfA ovq uvn vja -nXL -gpW -wsA -lYf -sUW -wsA -vob -lYf -sUW -wsA -vob -lYf -mbQ -uox -uox -prc -lbU -wAP +nSx +oQS +flG +isw +gRA +flG +svS +isw +gRA +flG +svS +isw +cfa +qwH +qwH +xBF +bhC +axz lmu sIj hkA @@ -75162,26 +74297,26 @@ gbf tOM gbf tOM -rko -xkq -qTp -bpL -hXw -tYX -tYX -tSI -lHT -suD -suD -ilx -jPD -jDr -ilx -biN -dMb -qTp -cBn -rxM +pnn +vSn +qtp +tVY +bxv +sgI +sgI +oox +lMV +tEU +tEU +vjR +doQ +upM +vjR +emE +fDW +qtp +nlT +met tOM gbf tOM @@ -75296,21 +74431,21 @@ cAW cAW tan geF -cbC -msG -qwo -iiK -onY -onY -okR -ijE -ntQ -ijE -ewi -gJP -bbt -iiK -oQy +hCG +qPL +qBw +jii +rAw +rAw +uLj +nmm +rru +nmm +djB +wJd +sJH +jii +uhA oUg oUg oUg @@ -75343,24 +74478,24 @@ uPl kHS iHB reZ -cTm -sUW -wsA -oSU -atV -nXL -wAb -oSU -lYf -sUW -wsA -oSU -mbQ -mhp -uox -ceX -omS -wAP +qyM +gRA +flG +tkh +dVu +nSx +hsz +tkh +isw +gRA +flG +tkh +cfa +sDw +qwH +eVD +duL +axz hcB sIj hkA @@ -75374,26 +74509,26 @@ gbf gbf tOM tOM -xpM -ndo -ndo -fvb -rrY -hot -wjc -esy -dUI -fml -suD -pzK -oUF -uPy -uUU -rrY -qnf -ndo -ndo -jLD +nYQ +fbn +fbn +vZe +dIp +rTY +tlj +tMW +pMr +ngg +tEU +mqL +taS +jEa +hPu +dIp +blf +fbn +fbn +vui tOM tOM gbf @@ -75508,21 +74643,21 @@ cAW cAW kPz cAW -cbC -pXF -cbC -iiK -dCi -mWj -xPF -ijE -ijE -ijE -ijE -gJP -qwo -iiK -iiK +hCG +nLO +hCG +jii +xCg +iFP +kiT +nmm +nmm +nmm +nmm +wJd +qBw +jii +jii oUg oUg oUg @@ -75555,24 +74690,24 @@ kvu ovq uvn uFC -cTm -lYf -sUW -wsA -vob -atV -nXL -wAb -fdl -pes -gpW -uXa -iZl -aPf -uox -jGv -iZl -wAP +qyM +isw +gRA +flG +svS +dVu +nSx +hsz +tad +gLq +oQS +vao +umN +cYj +qwH +hhX +umN +axz oaa sIj hkA @@ -75586,26 +74721,26 @@ fWy dxW gbf gbf -gSg -ndo -crI -tYX -tYX -tYX -ttc -dUI -veC -dLy -vOQ -dTR -tYX -pxo -tYX -tYX -tYX -xjR -ndo -aNz +vzu +fbn +qyq +sgI +sgI +sgI +eEC +pMr +saL +qCx +fEY +nxC +sgI +drk +sgI +sgI +sgI +ulN +fbn +ecj gbf gbf dxW @@ -75722,19 +74857,19 @@ bQM cAW cAW cAW -pXF -iiK -iiK -iiK -xNV -xWh -mJO -uui -ccl -eAk -sor -iiK -iiK +nLO +jii +jii +jii +jPM +oBC +jNl +vrp +mTa +bsm +wqY +jii +jii oUg kSh wPz @@ -75767,18 +74902,18 @@ uTt xZV uvn ovq -cTm -oSU -lYf -sUW -wsA -oSU -lYf -sUW -wsA -jth -sUW -sUW +qyM +tkh +isw +gRA +flG +tkh +isw +gRA +flG +xNJ +gRA +gRA iBr iBr iBr @@ -75798,26 +74933,26 @@ waQ pYB pYB pYB -ont -eTy -suD -suD -suD -suD -dLy -suD -suD -suD -suD -suD -suD -suD -cgF -suD -suD -suD -fON -uBV +cvf +xoh +tEU +tEU +tEU +tEU +qCx +tEU +tEU +tEU +tEU +tEU +tEU +tEU +hpX +tEU +tEU +tEU +oTx +cnU pYB pYB pYB @@ -75934,19 +75069,19 @@ tan cAW cAW cAW -cbC -iiK -iiK -iiK -jgo -aQZ -dBx -ecE -voT -xzp -sor -iiK -iiK +hCG +jii +jii +jii +mUd +ubQ +okF +fis +lUs +pqz +wqY +jii +jii mPW cpP aFK @@ -75979,18 +75114,18 @@ acO xFL pmC xFL -sUW -wsA -oSU -iny -oSU -sUW -sUW -qcI -sUW -aID -sUW -oAH +gRA +flG +tkh +ygS +tkh +gRA +gRA +wOG +gRA +cum +gRA +eZW iBr iBr iBr @@ -76010,26 +75145,26 @@ mkn pYB pYB pYB -aMr -mbe -suD -suD -fml -suD -suD -suD -suD -suD -suD -suD -suD -suD -suD -suD -suD -suD -iHt -nmM +dRF +qEt +tEU +tEU +ngg +tEU +tEU +tEU +tEU +tEU +tEU +tEU +tEU +tEU +tEU +tEU +tEU +tEU +aIG +wMp pYB pYB pYB @@ -76146,19 +75281,19 @@ eeI cAW cAW cAW -pXF -iiK -xlu -iiK -jgo -sBU -kcQ -uKJ -aXI -ijE -sor -tGc -iiK +nLO +jii +xCh +jii +mUd +hpz +hxM +fHK +iwT +nmm +wqY +pUG +jii puE hTf qGn @@ -76191,18 +75326,18 @@ oRg ovq lAE vja -nXL -wAb -oSU -sUW -nmq -pes -dGs -dGs -dGs -oyA -sUW -sUW +nSx +hsz +tkh +gRA +dJt +gLq +owc +owc +owc +iCU +gRA +gRA iBr qdf iBr @@ -76222,26 +75357,26 @@ fWy gbf dxW gbf -gSg -ndo -whb -tYX -tYX -tYX -utB -utB -ndo -iXB -suD -jCx -dIv -wtJ -tYX -tYX -tYX -xjR -ndo -dNc +vzu +fbn +xcz +sgI +sgI +sgI +ubo +ubo +fbn +hJu +tEU +tWz +duV +lAM +sgI +sgI +sgI +ulN +fbn +toN gbf dxW gbf @@ -76358,19 +75493,19 @@ kPz cAW cAW cAW -cbC -iiK -iiK -onY -xPF -gFF -cTg -ijE -ijE -gJP -qwo -iiK -hgy +hCG +jii +jii +rAw +kiT +wyU +ujs +nmm +nmm +wJd +qBw +jii +wHV puE cJv eqQ @@ -76403,18 +75538,18 @@ uVH xFL pmC xFL -vob -cxp -ibE -uLo -oSU -pes -lYd -uhW -xbf -dGs -oGZ -sUW +svS +ntx +kSe +leN +tkh +gLq +fOe +rez +xJn +owc +cRM +gRA bhX iBr xMO @@ -76434,26 +75569,26 @@ gbf gbf tOM tOM -xpM -ndo -ndo -xZL -qKr -suD -suD -fcR -tYX -suD -suD -qyX -pwb -mXM -mXM -lrK -cTo -ndo -ndo -vUZ +nYQ +fbn +fbn +fEv +uTw +tEU +tEU +nKf +sgI +tEU +tEU +hWG +qQy +gWA +gWA +khw +htT +fbn +fbn +gMl tOM tOM gbf @@ -76570,19 +75705,19 @@ emC cAW cAW cAW -pXF -iiK -onY -onY -fXj -ijE -ijE -fli -ijE -gJP -oka -hgy -iiK +nLO +jii +rAw +rAw +vsr +nmm +nmm +cYT +nmm +wJd +meE +wHV +jii qrz puE lzn @@ -76615,18 +75750,18 @@ oRg ovq uvn uZP -wsA -wsA -oSU -sUW -sUW -pes -nUG -eHx -xbf -dGs -tKU -nRl +flG +flG +tkh +gRA +gRA +gLq +bIR +gWq +xJn +owc +lbL +ubx iyc bhX iBr @@ -76646,26 +75781,26 @@ gbf tOM gbf tOM -rdt -rsQ -ndo -eSb -tYX -tYX -jvp -suD -tYX -suD -oAl -pmf -mXM -vYJ -tYX -hot -uVo -qTp -tlC -kyh +kWT +xbG +fbn +lWy +sgI +sgI +xqi +tEU +sgI +tEU +hyM +hXF +gWA +rkX +sgI +rTY +vGf +qtp +nhm +jSx tOM gbf tOM @@ -76782,19 +75917,19 @@ bQM cAW cAW cAW -cbC -iiK -onY -onY -kET -ijE -ijE -ijE -ijE -gJP -ngq -iiK -tGc +hCG +jii +rAw +rAw +gFN +nmm +nmm +nmm +nmm +wJd +apg +jii +pUG puE eqQ qGn @@ -76827,18 +75962,18 @@ lBE sNj erh ovq -sUW -cxp -ibE -sUW -sUW -pes -dNd -cAz -cAz -jdE -sUW -sUW +gRA +ntx +kSe +gRA +gRA +gLq +nyF +tOc +tOc +bgd +gRA +gRA bhX mhR bhX @@ -76859,24 +75994,24 @@ tOM gbf tOM tOM -xpM -ndo -ndo -buY -xHA -tYX -kby -pxo -suD -suD -tYX -mXM -tYX -tYX -vpm -ndo -ndo -vUZ +nYQ +fbn +fbn +xwm +gjr +sgI +fgq +drk +tEU +tEU +sgI +gWA +sgI +sgI +oLX +fbn +fbn +gMl tOM tOM gbf @@ -76994,19 +76129,19 @@ cAW bQM cAW cAW -pXF -iiK -onY -onY -nvZ -ijE -qkK -ijE -ijE -bvO -bbt -iiK -iiK +nLO +jii +rAw +rAw +srQ +nmm +sUX +nmm +nmm +nEN +sJH +jii +jii mPW vvM tet @@ -77040,16 +76175,16 @@ ovq uvn ovq ovq -wsA -oSU -sUW -emT -pes -dGs -tph -dGs -pes -gpW +flG +tkh +gRA +fXo +gLq +owc +mrG +owc +gLq +oQS lco oZx bhX @@ -77071,24 +76206,24 @@ pYB tOM gbf tOM -kTD -rsQ -ndo -buY -buY -tYX -suD -tYX -suD -suD -tYX -aHm -hot -vpm -vgT -qTp -tlC -jrO +qrB +xbG +fbn +xwm +xwm +sgI +tEU +sgI +tEU +tEU +sgI +xct +rTY +oLX +wYT +qtp +nhm +aFL tOM gbf tOM @@ -77206,19 +76341,19 @@ bce kPz bce cAW -cbC -iiK -onY -dCi -mjG -tZP -gyF -tcb -gyF -qGx -qwo -iiK -iiK +hCG +jii +rAw +xCg +xKP +spl +oNx +uuJ +oNx +jWy +qBw +jii +jii jqt pTU wPz @@ -77284,22 +76419,22 @@ eTr gbf rsR tOM -xpM -ndo -ndo -ndo -ljO -suD -gND -suD -suD -tYX -uqF -jBb -ndo -qTp -ndo -vUZ +nYQ +fbn +fbn +fbn +sHe +tEU +xlC +tEU +tEU +sgI +wdo +nEP +fbn +qtp +fbn +gMl tOM oEQ gbf @@ -77418,19 +76553,19 @@ cAW fiq cAW cAW -pXF -iiK -iiK -iiK -iiK -iiK -iiK -iiK -iiK -iiK -iiK -iiK -iiK +nLO +jii +jii +jii +jii +jii +jii +jii +jii +jii +jii +jii +jii oUg oUg oUg @@ -77496,22 +76631,22 @@ pYB tOM gbf tOM -rdt -jGC -rsQ -ndo -ndo -ndo -mcW -suD -suD -hHP -ndo -qTp -ndo -tlC -jGC -kyh +kWT +oBc +xbG +fbn +fbn +fbn +aLz +tEU +tEU +vcn +fbn +qtp +fbn +nhm +oBc +jSx tOM gbf tOM @@ -77630,19 +76765,19 @@ cAW fiq fiq tan -cbC -iiK -iiK -iiK -iiK -iiK -qwo -qwo -qwo -qwo -iiK -iiK -iiK +hCG +jii +jii +jii +jii +jii +qBw +qBw +qBw +qBw +jii +jii +jii oUg oUg oUg @@ -77710,18 +76845,18 @@ gbf tOM tOM tOM -kTD -jGC -rsQ -ndo -ndo -kPT -ljr -ndo -ndo -tlC -jGC -jrO +qrB +oBc +xbG +fbn +fbn +oQp +hXP +fbn +fbn +nhm +oBc +aFL tOM tOM tOM @@ -77842,19 +76977,19 @@ tan tan tan tan -cbC -cbC -pXF -cbC -pXF -cbC -hgy -aIN -hgy -aIN -cbC -cbC -cbC +hCG +hCG +nLO +hCG +nLO +hCG +wHV +kmL +wHV +kmL +hCG +hCG +hCG vnr vnr vnr @@ -77924,14 +77059,14 @@ gbf rsR tOM tOM -rdt -jGC -dOZ -uBV -ont -xcS -jGC -kyh +kWT +oBc +qOZ +cnU +cvf +qib +oBc +jSx tOM tOM oEQ @@ -78317,9 +77452,9 @@ uYi xDw cAW bQM -bTo +gjm pcu -sVv +ihA bQM rBF dzl @@ -78527,13 +77662,13 @@ bec uYi sDS xDw -dhi -fQV -fyC -qOk -sHO -fQV -erT +iIw +rQt +eyB +pFE +mjW +rQt +grn dzl mQV iBr @@ -78739,13 +77874,13 @@ mfF uYi lOy lRT -ajx +jGK afk afk hkh afk afk -iWq +hfJ dzl iBr iBr @@ -78951,13 +78086,13 @@ hXG uYi sgJ xDw -ajx +jGK afk afk pcu afk afk -iWq +hfJ dzl iBr iBr @@ -79163,13 +78298,13 @@ ncb uYi qhP xDw -ajx +jGK afk afk hkh afk afk -iWq +hfJ dzl ksY iBr @@ -79375,13 +78510,13 @@ cUd ncb sXP xDw -fdV -jlH -tWI -llQ -eOF -jlH -bUB +xtI +rhR +dfw +lJb +ozB +rhR +mtM rBF lwn iBr @@ -79589,9 +78724,9 @@ wBE xDw cAW bQM -bTo +gjm pcu -sVv +ihA bQM bQM rBF @@ -79999,14 +79134,14 @@ hir hir hir dOX -iIl +nCS cEb cEb cEb cEb cEb cEb -vBZ +dlg dOX sIJ dOX @@ -81520,10 +80655,10 @@ bQM cAW bzO bzO -ofA +teE axx axx -lbK +aDj bzO bzO bzO @@ -81731,12 +80866,12 @@ ogf ogf ogf tsc -kSD -sNQ +mJp +jEq aeo aeo -dPr -cUU +llf +mJp mvF kkU kkU @@ -83216,10 +82351,10 @@ scM scM scM scM -pFi +wzN qQl qQl -xte +vIH scM scM scM @@ -83428,10 +82563,10 @@ jZk akZ lOe lnK -uFs +pQm hqb hqb -nuX +xXP lnK vJL eZi @@ -83626,7 +82761,7 @@ nGZ hjW hjW nGZ -eVj +obQ sYB oTP qQl @@ -84231,25 +83366,25 @@ nGZ hjW hjW nGZ -oyk -wzK -wbL -rSN -mGN -prG -cpv +grz +gqC +vHk +ntW +aKs +wBV +tPR sjd cEb nFJ cEb cEb -hjC -iUO -iUO -iUO -iUO -iUO -wzT +qxW +oht +oht +oht +oht +oht +hxp bxy cUd cUd @@ -84262,7 +83397,7 @@ nGZ hjW hjW nGZ -fWs +kKy aic ckr qQl @@ -84443,7 +83578,7 @@ nGZ hjW hjW nGZ -vwx +lCG xeO xeO xeO @@ -84461,7 +83596,7 @@ xeO xfb yat xeO -eXY +eOQ nGZ nGZ rJW @@ -84655,7 +83790,7 @@ ntZ nGZ nGZ nGZ -vwx +lCG bym uKx uKx @@ -84673,18 +83808,18 @@ xeO cAU uyp xeO -vUf +esy nGZ lRT lRT -atl -aZD +utl +pYe lRT -atl -aZD +utl +pYe lRT -atl -aZD +utl +pYe lRT scM scM @@ -84692,9 +83827,9 @@ scM scM scM bQM -bTo +gjm pcu -iWq +hfJ bQM scM aOC @@ -84867,7 +84002,7 @@ lRT lRT lRT hTo -vwx +lCG lpl jVE vzn @@ -84885,7 +84020,7 @@ xeO mQB aTE xeO -aRv +uVM nGZ lRT lRT @@ -84904,9 +84039,9 @@ bQM bQM bQM bQM -bTo +gjm pcu -iWq +hfJ bQM scM eNv @@ -85079,7 +84214,7 @@ bQM bQM xDw oEN -vwx +lCG fSz lIv lIv @@ -85097,7 +84232,7 @@ xeO fCW myf xeO -tOP +dTQ nGZ xDw bQM @@ -85116,9 +84251,9 @@ bQM bQM bQM bQM -bTo +gjm pcu -iWq +hfJ bQM scM xdE @@ -85291,25 +84426,25 @@ bQM bQM lRT lRT -piw -tFA -tFA -tFA -tFA -tFA -uiV -tFA -tFA -tFA -tFA -tFA -tFA -jmr -tFA -tFA -tFA -tFA -nnG +niZ +otS +otS +otS +otS +otS +qgY +otS +otS +otS +otS +otS +otS +wXR +otS +otS +otS +otS +vgA lRT lRT bQM @@ -85325,18 +84460,18 @@ bQM bQM bQM bQM -swg -fQV -fQV -fyC -qOk -mKS -fyC -qOk -mKS -fQV -fQV -erT +rfI +rQt +rQt +eyB +pFE +ocW +eyB +pFE +ocW +rQt +rQt +grn bQM bQM bQM @@ -85537,7 +84672,7 @@ bQM bQM bQM bQM -bTo +gjm afk afk afk @@ -85548,7 +84683,7 @@ hkh afk afk afk -iWq +hfJ bQM bQM bQM @@ -85749,7 +84884,7 @@ bQM bQM bQM bQM -bTo +gjm afk afk afk @@ -85760,7 +84895,7 @@ pcu afk afk afk -iWq +hfJ bQM bQM bQM @@ -85961,7 +85096,7 @@ bQM bQM bQM bQM -bTo +gjm afk afk afk @@ -85972,7 +85107,7 @@ hkh afk afk afk -iWq +hfJ bQM bQM bQM @@ -86173,18 +85308,18 @@ bQM bQM bQM bQM -aKA -jlH -jlH -tWI -llQ -jKI -tWI -llQ -jKI -jlH -jlH -bUB +rcy +rhR +rhR +dfw +lJb +ngo +dfw +lJb +ngo +rhR +rhR +mtM bQM bQM bQM diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.podholder.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.podholder.dmm index 916fe313fb33..a2305e214b44 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.podholder.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.podholder.dmm @@ -114,12 +114,8 @@ }, /area/template_noop) "T" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth/east, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer_hull, /area/template_noop) diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm index ce8071106172..82ac4eede517 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm @@ -48,7 +48,7 @@ /turf/open/floor/wood, /area/template_noop) "cK" = ( -/obj/structure/platform_decoration, +/obj/structure/platform_decoration/metal/almayer, /turf/open/floor/prison/darkbrown2, /area/template_noop) "cU" = ( @@ -91,9 +91,7 @@ /turf/open/floor/prison/darkbrowncorners2/west, /area/template_noop) "fN" = ( -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/prison/floor_plate, /area/template_noop) "fX" = ( @@ -110,9 +108,7 @@ /turf/open/gm/river/pool, /area/template_noop) "hP" = ( -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/prison, /area/template_noop) "hY" = ( @@ -139,9 +135,7 @@ /turf/open/floor/prison/darkbrown2/east, /area/template_noop) "is" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/almayer/north, /turf/open/floor/prison/darkbrown2/southeast, /area/template_noop) "iC" = ( @@ -191,9 +185,7 @@ /turf/open/gm/river/pool, /area/template_noop) "kA" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/floor/prison/floor_plate, /area/template_noop) "lc" = ( @@ -213,9 +205,7 @@ /turf/open/floor/wood, /area/template_noop) "ly" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/almayer/west, /turf/open/floor/prison, /area/template_noop) "lS" = ( @@ -278,15 +268,6 @@ "ni" = ( /turf/closed/wall/prison, /area/template_noop) -"nC" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/prison, -/area/template_noop) "nS" = ( /obj/structure/prop/souto_land/pole, /turf/open/floor/wood, @@ -298,7 +279,7 @@ /turf/open/floor/wood, /area/template_noop) "ou" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/darkbrown2, /area/template_noop) "oL" = ( @@ -315,9 +296,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" }, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison/bright_clean2/southwest, /area/template_noop) "pG" = ( @@ -325,13 +304,11 @@ dir = 8; icon_state = "p_stair_ew_full_cap" }, -/obj/structure/platform/stair_cut, +/obj/structure/platform/metal/stair_cut/platform_left, /turf/open/floor/plating/prison, /area/template_noop) "pH" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/floor/prison/darkbrown2/west, /area/template_noop) "ql" = ( @@ -347,7 +324,7 @@ dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/plating/prison, /area/template_noop) "qG" = ( @@ -369,9 +346,7 @@ /turf/open/floor/wood, /area/template_noop) "ro" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison/floor_plate, /area/template_noop) "rp" = ( @@ -431,9 +406,7 @@ /turf/open/floor/wood, /area/template_noop) "ty" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/prison, /area/template_noop) "tz" = ( @@ -457,9 +430,7 @@ /turf/open/floor/wood, /area/template_noop) "uw" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/almayer/north, /turf/open/floor/prison/darkbrowncorners2/west, /area/template_noop) "vd" = ( @@ -476,9 +447,7 @@ /turf/open/floor/prison/darkbrown2/west, /area/template_noop) "vf" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/floor/prison/floor_plate, /area/template_noop) "vU" = ( @@ -540,9 +509,7 @@ /turf/open/floor/prison/darkbrown2/southeast, /area/template_noop) "wV" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 @@ -560,9 +527,7 @@ /turf/open/floor/prison/darkbrown2, /area/template_noop) "xS" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 @@ -578,9 +543,7 @@ dir = 4; icon_state = "p_stair_sn_full_cap" }, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/plating/prison, /area/template_noop) "zc" = ( @@ -588,7 +551,7 @@ dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/darkbrown2, /area/template_noop) "zR" = ( @@ -692,17 +655,15 @@ /turf/open/gm/river/pool, /area/template_noop) "DN" = ( -/obj/structure/platform_decoration, +/obj/structure/platform_decoration/metal/almayer, /turf/open/floor/prison/darkbrowncorners2, /area/template_noop) "DT" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/gm/river/pool, /area/template_noop) "Fj" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/almayer/west, /turf/open/floor/wood, /area/template_noop) "Fl" = ( @@ -794,15 +755,9 @@ /turf/open/floor/prison/darkbrown2/north, /area/template_noop) "Hn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, /turf/open/floor/prison/floor_plate, /area/template_noop) "HP" = ( @@ -904,9 +859,7 @@ /turf/open/floor/wood, /area/template_noop) "La" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /turf/open/gm/river/pool, /area/template_noop) "Ls" = ( @@ -948,29 +901,19 @@ /turf/open/floor/wood, /area/template_noop) "LW" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/almayer/west, /turf/open/floor/prison/darkbrown2/east, /area/template_noop) "Mn" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, /turf/open/floor/prison/floor_plate, /area/template_noop) "MS" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, /turf/open/floor/prison/floor_plate, /area/template_noop) "ND" = ( @@ -988,9 +931,7 @@ /turf/open/gm/river/pool, /area/template_noop) "PA" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/floor/prison/darkbrown2/northeast, /area/template_noop) "PR" = ( @@ -1076,9 +1017,7 @@ dir = 1; icon_state = "p_stair_sn_full_cap" }, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /obj/structure/prop/souto_land/pole, /obj/structure/prop/souto_land/pole{ dir = 4; @@ -1108,7 +1047,7 @@ dir = 8; icon_state = "p_stair_full" }, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/plating/prison, /area/template_noop) "Us" = ( @@ -1154,7 +1093,7 @@ /turf/open/floor/wood, /area/template_noop) "VV" = ( -/obj/structure/platform_decoration, +/obj/structure/platform_decoration/metal/almayer, /turf/open/floor/prison, /area/template_noop) "Wa" = ( @@ -1167,16 +1106,14 @@ /turf/open/floor/wood, /area/template_noop) "We" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/almayer/north, /turf/open/floor/prison, /area/template_noop) "Wh" = ( /turf/open/floor/prison/darkbrown2/north, /area/template_noop) "Wx" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /obj/item/trash/crushed_cup{ pixel_y = 13; pixel_x = 45 @@ -1184,9 +1121,7 @@ /turf/open/gm/river/pool, /area/template_noop) "WY" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/almayer/north, /turf/open/floor/prison/darkbrown2, /area/template_noop) "Xn" = ( @@ -1204,7 +1139,7 @@ /turf/open/gm/river/pool, /area/template_noop) "Xu" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/darkbrown2, /area/template_noop) @@ -1227,9 +1162,7 @@ dir = 8; icon_state = "p_stair_sn_full_cap" }, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /obj/structure/prop/souto_land/pole{ dir = 1 }, @@ -1244,7 +1177,7 @@ /turf/open/floor/prison/darkbrown2/east, /area/template_noop) "XX" = ( -/obj/structure/platform_decoration, +/obj/structure/platform_decoration/metal/almayer, /turf/open/floor/prison/floor_plate, /area/template_noop) "Yd" = ( @@ -1266,14 +1199,14 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/template_noop) "YG" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison, /area/template_noop) "YP" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" }, -/obj/structure/platform/stair_cut/alt, +/obj/structure/platform/metal/stair_cut/platform_right, /turf/open/floor/plating/prison, /area/template_noop) "Zr" = ( @@ -1281,7 +1214,7 @@ /turf/open/floor/wood, /area/template_noop) "ZB" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/floor_plate, /area/template_noop) @@ -1606,7 +1539,7 @@ rW nf rq Rs -nC +YP Rr Rr TS diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm index bba4398e4d95..1c48f127722b 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm @@ -1,8 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform/metal/kutjevo_smooth/west, /obj/item/stack/sheet/metal, /turf/open/space, /area/template_noop) @@ -33,9 +31,7 @@ /turf/open/floor/prison, /area/template_noop) "g" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, +/obj/structure/platform/metal/kutjevo_smooth/north, /obj/structure/barricade/handrail{ dir = 1; icon_state = "hr_kutjevo"; @@ -44,14 +40,12 @@ /turf/open/space, /area/template_noop) "h" = ( -/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/metal/kutjevo_smooth, /obj/item/stack/sheet/metal, /turf/open/space, /area/template_noop) "i" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/kutjevo/west, /turf/open/space, /area/template_noop) "j" = ( @@ -63,9 +57,7 @@ pixel_x = -9; icon_state = "scandinavian_head_m" }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/kutjevo/north, /turf/open/space/basic, /area/template_noop) "m" = ( @@ -84,23 +76,19 @@ /turf/open/floor/plating/prison, /area/template_noop) "s" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, +/obj/structure/platform/metal/kutjevo_smooth/east, /turf/open/space, /area/template_noop) "t" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, /turf/open/space, /area/template_noop) "u" = ( /turf/open/space, /area/template_noop) "v" = ( -/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/metal/kutjevo_smooth, /obj/item/book/manual/engineering_construction, /turf/open/space/basic, /area/template_noop) @@ -120,20 +108,16 @@ /turf/open/floor/prison/darkyellow2/west, /area/template_noop) "z" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, +/obj/structure/platform/metal/kutjevo_smooth/north, /obj/item/clothing/head/cardborg, /turf/open/space, /area/template_noop) "A" = ( -/obj/structure/platform_decoration/kutjevo, +/obj/structure/platform_decoration/metal/kutjevo, /turf/open/space/basic, /area/template_noop) "B" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/kutjevo/east, /turf/open/space, /area/template_noop) "D" = ( @@ -162,9 +146,7 @@ /turf/open/space, /area/template_noop) "I" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, +/obj/structure/platform/metal/kutjevo_smooth/east, /obj/effect/spawner/random/tool{ pixel_x = -8; pixel_y = 7 @@ -175,12 +157,8 @@ /turf/open/space, /area/template_noop) "J" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, /obj/item/stack/sheet/metal, /turf/open/space, /area/template_noop) @@ -188,30 +166,26 @@ /turf/open/floor/prison/darkyellow2/west, /area/template_noop) "M" = ( -/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/metal/kutjevo_smooth, /turf/open/space, /area/template_noop) "N" = ( /turf/open/floor/solarpanel, /area/template_noop) "O" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, /turf/open/space, /area/template_noop) "P" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform/metal/kutjevo_smooth/west, /turf/open/floor/almayer_hull, /area/template_noop) "Q" = ( /turf/open/auto_turf/sand/layer1, /area/template_noop) "R" = ( -/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/metal/kutjevo_smooth, /turf/open/space/basic, /area/template_noop) "S" = ( @@ -226,34 +200,24 @@ /turf/open/space, /area/template_noop) "V" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform/metal/kutjevo_smooth/west, /obj/item/circuitboard/solar_tracker, /turf/open/space, /area/template_noop) "W" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, +/obj/structure/platform/metal/kutjevo_smooth/east, /turf/open/floor/almayer_hull, /area/template_noop) "X" = ( /turf/open/floor/prison/darkyellow2/northwest, /area/template_noop) "Y" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, /turf/open/space, /area/template_noop) "Z" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, +/obj/structure/platform/metal/kutjevo_smooth/north, /turf/open/space, /area/template_noop) diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm index 8ec3365773a2..c57875f98318 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm @@ -38,9 +38,7 @@ dir = 4; icon_state = "p_stair_sn_full_cap" }, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/east, /turf/open/floor/plating/prison, /area/template_noop) "bN" = ( @@ -161,9 +159,7 @@ /turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "nR" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /obj/effect/decal/cleanable/blood/drip, /obj/structure/largecrate/random/barrel, /turf/open/floor/prison/whitegreen/north, @@ -332,9 +328,7 @@ /turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "ES" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft" }, @@ -363,12 +357,8 @@ /area/template_noop) "GI" = ( /obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer/east, /obj/structure/inflatable/door, /turf/open/floor/plating/prison, /area/template_noop) @@ -382,9 +372,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/template_noop) "Hq" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft" }, @@ -402,39 +390,29 @@ /turf/open/floor/prison/whitegreen/east, /area/template_noop) "IK" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.8 - }, +/obj/structure/platform/metal/almayer/north, /obj/structure/largecrate/random/barrel{ pixel_x = -8; - layer = 2.9 + layer = 3.1 }, /obj/structure/largecrate/random/barrel{ pixel_x = 13; - layer = 2.9 + layer = 3.1 }, /obj/structure/largecrate/random/barrel{ pixel_x = 3; - layer = 2.9; - pixel_y = -8 + pixel_y = -8; + layer = 3.1 }, /turf/open/floor/prison/whitegreen/north, /area/template_noop) "JJ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 4; - layer = 2.8 - }, +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/floor/prison/whitegreen/north, /area/template_noop) "JL" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/almayer/north, /obj/structure/inflatable, /turf/open/floor/prison/whitegreen, /area/template_noop) @@ -552,9 +530,7 @@ /obj/structure/machinery/shower{ pixel_y = 13 }, -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/plating/plating_catwalk/prison, /area/template_noop) "RG" = ( @@ -562,9 +538,7 @@ /turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "Sz" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/metal/almayer/north, /obj/structure/largecrate/random/barrel, /obj/structure/largecrate/random/barrel{ pixel_x = 16; @@ -581,9 +555,7 @@ /turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "TF" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/almayer/east, /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, @@ -615,9 +587,7 @@ /turf/open/floor/prison/whitegreen, /area/template_noop) "WP" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/almayer/west, /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, diff --git a/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm b/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm index 98b92955e2dd..694369ae8f0f 100644 --- a/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm +++ b/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm @@ -31,7 +31,7 @@ dir = 8; icon_state = "p_stair_full" }, -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "bl" = ( @@ -82,7 +82,7 @@ /turf/closed/wall/prison, /area/fiorina/station/security) "cI" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/security) "cZ" = ( @@ -338,7 +338,7 @@ /turf/open/floor/prison, /area/fiorina/lz/near_lzII) "nD" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /obj/effect/decal/cleanable/blood/gibs/xeno, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) @@ -951,7 +951,7 @@ /turf/open/floor/prison/redfull, /area/fiorina/station/security) "NL" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/security) "NN" = ( @@ -959,7 +959,7 @@ /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "Ox" = ( -/obj/structure/platform, +/obj/structure/platform/metal/almayer, /turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "OA" = ( @@ -1065,7 +1065,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" }, -/obj/structure/platform/stair_cut/alt, +/obj/structure/platform/metal/stair_cut/platform_right, /turf/open/floor/plating/prison, /area/fiorina/station/security) "Tn" = ( diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm index 1af361a387ba..42acb3b87cda 100644 --- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm +++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm @@ -51,10 +51,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) -"aam" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_lz2) "aan" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -76,34 +72,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"aap" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/stairs/perspective/ice{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_lz2) -"aaq" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_lz2) "aar" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) -"aas" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_lz2) "aat" = ( /obj/item/tool/shovel/snow{ pixel_y = 8 @@ -119,15 +91,6 @@ "aav" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/telecomm/lz1_north) -"aax" = ( -/obj/structure/prop/ice_colony/surveying_device{ - layer = 3.01; - pixel_x = -7; - pixel_y = 16 - }, -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_lz2) "aay" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/ice/layer0, @@ -159,38 +122,12 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"aaF" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_lz2) "aaG" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"aaH" = ( -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_lz2) -"aaI" = ( -/obj/structure/stairs/perspective/ice{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_lz2) "aaJ" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/flamer_tank{ @@ -205,13 +142,6 @@ /obj/item/tool/pickaxe/drill, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_colony_grounds) -"aaM" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_lz2) "aaN" = ( /obj/item/weapon/gun/flamer, /obj/structure/surface/rack, @@ -237,12 +167,6 @@ /obj/effect/spider/cocoon, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"aaT" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_lz2) "aaV" = ( /obj/effect/spider/stickyweb, /obj/effect/spider/cocoon{ @@ -250,10 +174,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"aaW" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_lz2) "aaX" = ( /obj/item/tool/warning_cone{ pixel_x = -12 @@ -298,64 +218,11 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"abf" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) -"abg" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/junkyard/cp_bar) "abh" = ( /turf/closed/shuttle/elevator{ dir = 9 }, /area/shiva/interior/colony/central) -"abi" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) -"abj" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) -"abk" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) -"abl" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "abm" = ( /obj/structure/target/alien{ desc = "Cope, seethe. Ledges are eternal. But alas, you are not." @@ -367,45 +234,9 @@ dir = 9 }, /area/shiva/interior/colony/research_hab) -"abo" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "abp" = ( /turf/closed/shuttle/elevator/gears, /area/shiva/interior/colony/research_hab) -"abq" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) -"abr" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) -"abs" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "abt" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ pixel_y = 16 @@ -612,12 +443,6 @@ /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"acn" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) "aco" = ( /obj/structure/stairs/perspective/ice{ icon_state = "p_stair_full" @@ -967,21 +792,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"aeG" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) -"aeH" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) "aeM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/rods{ @@ -1337,12 +1147,6 @@ /obj/structure/machinery/space_heater, /turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) -"ahh" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/colony/central) "ahl" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, @@ -2822,6 +2626,11 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"asp" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/shiva/exterior/cp_s_research) "ast" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 4; @@ -3076,16 +2885,6 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"aui" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "aut" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -3572,6 +3371,11 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) +"azA" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/asphalt/cement, +/area/shiva/interior/warehouse) "azB" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -3876,13 +3680,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"aDa" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/wood, -/area/shiva/interior/colony/botany) "aDm" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer1, @@ -4031,15 +3828,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) -"aED" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "aEH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -4069,14 +3857,6 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aFb" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/cp_lz2) -"aFc" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) "aFd" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -4654,15 +4434,6 @@ /obj/item/stool, /turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) -"aNy" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/shiva/interior/caves/cp_camp) "aNE" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/effect/decal/cleanable/blood/drip, @@ -4872,6 +4643,14 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva, /area/shiva/interior/bar) +"aRl" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/southwest_valley) "aRm" = ( /obj/structure/machinery/chem_dispenser/soda{ pixel_y = 7 @@ -4899,15 +4678,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) -"aRL" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "aRS" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -5512,12 +5282,6 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"aZh" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_lz2) "aZp" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/sink{ @@ -5685,31 +5449,20 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) -"bcE" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "bcJ" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; opacity = 0 }, /area/shiva/interior/aerodrome) -"bcV" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 +"bdx" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/gm/river, -/area/shiva/interior/warehouse/caves) +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/research_caves) "ben" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/telecomm/lz1_north) @@ -5822,6 +5575,10 @@ "bjv" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_colony_grounds) +"bjM" = ( +/obj/structure/platform/metal/shiva, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "bjP" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 @@ -5851,6 +5608,10 @@ /obj/structure/flora/pottedplant, /turf/open/floor/shiva/green/northwest, /area/shiva/interior/colony/botany) +"blT" = ( +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/cp_camp) "bme" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, @@ -5882,6 +5643,10 @@ /obj/effect/landmark/crap_item, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"bnz" = ( +/obj/structure/platform/metal/shiva/north, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/valley) "bnD" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer2, @@ -5914,6 +5679,13 @@ "bpH" = ( /turf/open/floor/shiva/red/southeast, /area/shiva/interior/colony/medseceng) +"bpR" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -8 + }, +/turf/open/floor/shiva, +/area/shiva/interior/aerodrome) "bqy" = ( /obj/structure/closet/firecloset, /turf/open/floor/shiva/redfull, @@ -5976,11 +5748,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/medseceng) -"bvb" = ( -/obj/structure/platform_decoration/strata, -/obj/structure/flora/bush/snow, +"buL" = ( +/obj/structure/platform/metal/shiva/east, /turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_lz2) +/area/shiva/exterior/southwest_valley) "bvC" = ( /obj/structure/surface/table, /obj/item/inflatable, @@ -6001,17 +5772,6 @@ /obj/item/stack/sheet/wood, /turf/open/floor/shiva/floor3, /area/shiva/interior/bar) -"bwk" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/plating, -/area/shiva/interior/aerodrome) "bws" = ( /obj/structure/surface/rack, /obj/item/fuel_cell, @@ -6070,12 +5830,6 @@ }, /turf/open/floor/shiva/north, /area/shiva/exterior/cp_colony_grounds) -"bzh" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "bzK" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer0, @@ -6104,12 +5858,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"bAX" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 - }, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "bBs" = ( /obj/item/reagent_container/food/drinks/cans/beer, /turf/open/floor/prison/kitchen, @@ -6132,6 +5880,13 @@ }, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) +"bDg" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/shiva/west, +/turf/open/floor/plating, +/area/shiva/interior/colony/central) "bDx" = ( /obj/item/reagent_container/food/drinks/flask/vacuumflask, /turf/open/floor/shiva, @@ -6145,6 +5900,11 @@ "bFg" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/cp_bar) +"bFx" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/caves/cp_camp) "bFC" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -6158,16 +5918,6 @@ }, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) -"bFS" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/plating, -/area/shiva/interior/aerodrome) "bGU" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -6198,16 +5948,6 @@ }, /turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) -"bHZ" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_lz2) "bIh" = ( /obj/item/device/motiondetector/hacked, /turf/open/floor/shiva, @@ -6219,6 +5959,10 @@ "bIV" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) +"bJd" = ( +/obj/structure/platform/metal/shiva/north, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/colony/central) "bJf" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -6256,6 +6000,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"bKM" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/cp_lz2) "bKV" = ( /turf/open/floor/wood, /area/shiva/interior/aerodrome) @@ -6319,6 +6067,14 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) +"bQn" = ( +/obj/structure/platform_decoration/metal/shiva/west, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) +"bQu" = ( +/obj/structure/platform/metal/shiva/west, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/southwest_valley) "bQv" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" @@ -6383,6 +6139,11 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"bUm" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/shiva/exterior/cp_lz2) "bUO" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, @@ -6558,6 +6319,10 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"ceb" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_lz2) "cex" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -6589,25 +6354,12 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"cgN" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/floor/plating, -/area/shiva/interior/colony/central) "cgQ" = ( /obj/item/device/taperecorder, /obj/item/clothing/glasses/sunglasses, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) -"cgR" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/junkyard/cp_bar) "chq" = ( /obj/item/device/analyzer/plant_analyzer, /turf/open/floor/shiva/north, @@ -6615,13 +6367,6 @@ "chU" = ( /turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) -"cid" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/exterior/cp_s_research) "cio" = ( /turf/open/floor/shiva/floor3, /area/shiva/interior/warehouse) @@ -6629,10 +6374,6 @@ /obj/structure/inflatable/popped, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/research_caves) -"cko" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) "ckH" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, @@ -6745,6 +6486,11 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"csa" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) "cse" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -6832,12 +6578,6 @@ "cxr" = ( /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"cxJ" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) "cyd" = ( /obj/structure/machinery/light/double{ dir = 1; @@ -6848,6 +6588,11 @@ }, /turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/botany) +"cyB" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "czf" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_1" @@ -7022,12 +6767,6 @@ /obj/structure/surface/table, /turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) -"cJC" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) "cKB" = ( /obj/structure/machinery/light/double, /turf/open/floor/shiva/yellowfull/west, @@ -7058,17 +6797,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"cLQ" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0; - pixel_x = -17; - pixel_y = -19 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "cMr" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer1, @@ -7121,12 +6849,6 @@ /obj/structure/machinery/medical_pod/bodyscanner, /turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) -"cQL" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/gm/river, -/area/shiva/exterior/valley) "cQW" = ( /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) @@ -7134,6 +6856,10 @@ /obj/structure/barricade/handrail/wire, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) +"cRp" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/ice/layer0, +/area/shiva/interior/caves/cp_camp) "cRq" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/ice/layer1, @@ -7204,6 +6930,16 @@ "cUS" = ( /turf/open/floor/shiva/greencorners, /area/shiva/interior/colony/botany) +"cVf" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) +"cVk" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/central) "cVy" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -7255,6 +6991,11 @@ /obj/structure/machinery/microwave, /turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) +"cXE" = ( +/obj/structure/platform_decoration/stone/strata/east, +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) "cXM" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -7272,15 +7013,6 @@ /obj/structure/prop/ice_colony/surveying_device, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"cXU" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/shiva/exterior/cp_s_research) "cYa" = ( /turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) @@ -7364,6 +7096,11 @@ "daD" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) +"daO" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) "daY" = ( /obj/structure/stairs/perspective/ice{ dir = 1; @@ -7411,6 +7148,13 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"dcM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/shiva/east, +/turf/open/floor/plating, +/area/shiva/interior/aerodrome) "dcV" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/thirteenloko{ @@ -7418,15 +7162,6 @@ }, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"ddF" = ( -/obj/structure/prop/ice_colony/flamingo{ - dir = 1 - }, -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/southwest_valley) "dex" = ( /obj/structure/machinery/photocopier, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -7440,6 +7175,12 @@ icon_state = "stan3" }, /area/shiva/interior/aerodrome) +"dfh" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "dgb" = ( /obj/structure/closet/toolcloset, /turf/open/floor/shiva/yellow/west, @@ -7460,15 +7201,10 @@ /obj/vehicle/train/cargo/engine, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/cp_bar) -"dij" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/exterior/valley) +"dhM" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/junkyard/cp_bar) "diL" = ( /obj/structure/machinery/light/double{ dir = 1; @@ -7551,17 +7287,16 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"dmv" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/southwest_valley) "dnj" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) +"dno" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "dnv" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 5 @@ -7613,11 +7348,6 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"dro" = ( -/obj/structure/platform/strata, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_s_research) "drM" = ( /obj/effect/spawner/random/toolbox, /obj/structure/surface/rack, @@ -7636,6 +7366,11 @@ /obj/structure/bed/chair/office/dark, /turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) +"dti" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "dtq" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/botany) @@ -7666,6 +7401,15 @@ /obj/item/reagent_container/food/drinks/bottle/rum, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"dui" = ( +/obj/structure/platform_decoration/stone/strata/north, +/obj/item/lightstick/red/variant/planted{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) "dun" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/colonist, @@ -7685,6 +7429,10 @@ /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/southwest_valley) +"dvD" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_lz2) "dwf" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, @@ -7700,6 +7448,11 @@ /obj/item/clothing/mask/rebreather, /turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) +"dws" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "dwQ" = ( /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) @@ -7848,6 +7601,10 @@ /obj/item/device/flashlight, /turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) +"dLs" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) "dMo" = ( /obj/structure/closet/toolcloset, /turf/open/floor/shiva/floor3, @@ -7858,15 +7615,6 @@ }, /turf/open/floor/strata/floor3/east, /area/shiva/interior/colony/central) -"dOn" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/shiva/exterior/valley) "dOo" = ( /obj/structure/machinery/door_control/brbutton{ id = "nlz_shutters"; @@ -7944,6 +7692,11 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) +"dVT" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "dWp" = ( /turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/colony/medseceng) @@ -8065,15 +7818,6 @@ /obj/item/lightstick/red/spoke/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"ecg" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/obj/structure/prop/ice_colony/flamingo{ - dir = 9 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/southwest_valley) "ecj" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/right_spiders) @@ -8109,12 +7853,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"eeD" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/cp_camp) "efD" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/snow/layer1, @@ -8227,12 +7965,21 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/botany) +"eoh" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/lz1_valley) "eom" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) +"eou" = ( +/obj/structure/platform_decoration/stone/strata, +/obj/structure/flora/bush/snow, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_lz2) "eoG" = ( /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor/shiva/green/southeast, @@ -8261,16 +8008,6 @@ }, /turf/open/floor/shiva/snow_mat/north, /area/shiva/exterior/cp_lz2) -"eqm" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "hangar_ice_2"; - pixel_y = 28 - }, -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/southwest_valley) "eqD" = ( /obj/structure/machinery/light/double{ dir = 8; @@ -8295,6 +8032,11 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"erm" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_lz2) "esf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -8343,6 +8085,10 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) +"ewH" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/ice/layer0, +/area/shiva/interior/caves/cp_camp) "exm" = ( /obj/structure/closet/secure_closet/medical3{ req_access = null @@ -8355,6 +8101,11 @@ "exX" = ( /turf/open/floor/shiva/bluefull/west, /area/shiva/interior/warehouse) +"eyK" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata/north, +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) "eAZ" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) @@ -8399,6 +8150,10 @@ /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"eDs" = ( +/obj/structure/platform/metal/shiva/west, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/southwest_valley) "eET" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) @@ -8428,13 +8183,6 @@ /obj/item/tool/warning_cone, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) -"eGq" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "eGs" = ( /obj/item/frame/bucket_sensor, /turf/open/floor/shiva, @@ -8524,12 +8272,6 @@ /obj/item/tool/kitchen/knife/butcher, /turf/open/floor/prison/kitchen, /area/shiva/interior/bar) -"eOF" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/plating, -/area/shiva/interior/colony/central) "eOG" = ( /obj/structure/closet/secure_closet/guncabinet, /obj/structure/machinery/light/double{ @@ -8585,6 +8327,14 @@ /obj/item/ammo_magazine/rifle/boltaction, /turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) +"eRA" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "hangar_ice_2"; + pixel_y = 28 + }, +/obj/structure/platform/metal/shiva/east, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/southwest_valley) "eRE" = ( /obj/item/tool/wirecutters, /turf/open/auto_turf/snow/layer1, @@ -8616,6 +8366,12 @@ /obj/item/lightstick/red/spoke/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"eTU" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "eTV" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_2" @@ -8718,6 +8474,10 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_lz2) +"faW" = ( +/obj/structure/platform_decoration/metal/shiva, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/valley) "fbf" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/effect/decal/cleanable/dirt, @@ -8739,10 +8499,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) -"fcx" = ( -/obj/item/weapon/baseballbat/metal, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/aerodrome) "fcy" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -8774,10 +8530,6 @@ }, /turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) -"feQ" = ( -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/exterior/valley) "feR" = ( /obj/structure/machinery/light/double, /turf/open/floor/shiva/yellow, @@ -8841,6 +8593,10 @@ /obj/item/tool/wrench, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) +"fhC" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/lz1_valley) "fir" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/shiva/multi_tiles, @@ -8934,23 +8690,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"fmo" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) -"fna" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/item/lightstick/red/variant/planted{ - pixel_x = -7; - pixel_y = -5 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/southwest_valley) "fnw" = ( /obj/structure/stairs/perspective/ice{ dir = 1; @@ -8961,20 +8700,27 @@ "fnx" = ( /turf/open/floor/shiva/multi_tiles/west, /area/shiva/exterior/cp_lz2) +"fnC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4-8" + }, +/obj/structure/platform/metal/shiva, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/exterior/junkyard/fortbiceps) "fnG" = ( /obj/structure/barricade/snow{ dir = 1 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) +"fnT" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "foa" = ( /obj/item/storage/toolbox/electrical, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"foc" = ( -/obj/structure/platform_decoration/shiva/catwalk, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/valley) "fof" = ( /obj/structure/prop/invuln{ desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; @@ -9017,6 +8763,11 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) +"fsv" = ( +/obj/structure/platform_decoration/stone/strata/north, +/obj/structure/platform_decoration/stone/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "ftm" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/shiva/north, @@ -9040,6 +8791,11 @@ }, /turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) +"fup" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "fuz" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -9152,16 +8908,14 @@ /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"fDZ" = ( +/obj/structure/platform/metal/shiva/west, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/southwest_valley) "fEf" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/shiva/red/southeast, /area/shiva/interior/colony/medseceng) -"fEl" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) "fEC" = ( /obj/structure/window/framed/shiva, /turf/open/floor/shiva, @@ -9251,6 +9005,14 @@ /obj/item/stack/sheet/metal, /turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) +"fHX" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/shiva/east, +/turf/open/floor/plating, +/area/shiva/interior/colony/central) "fIz" = ( /obj/structure/closet/secure_closet/engineering_electrical, /obj/item/circuitboard/apc, @@ -9288,6 +9050,10 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) +"fKd" = ( +/obj/structure/platform_decoration/metal/shiva/west, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/southwest_valley) "fKx" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/shiva/greenfull, @@ -9314,12 +9080,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/shiva/interior/bar) -"fKR" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/southwest_valley) "fKT" = ( /obj/structure/surface/table, /obj/item/storage/box/bodybags, @@ -9376,15 +9136,6 @@ /obj/structure/bed/chair/office/dark, /turf/open/floor/carpet, /area/shiva/interior/colony/medseceng) -"fNf" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/gm/river, -/area/shiva/interior/warehouse/caves) "fNE" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, @@ -9399,6 +9150,10 @@ /obj/item/ammo_magazine/rifle/boltaction, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) +"fPh" = ( +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/exterior/valley) "fPA" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/structure/closet/cabinet, @@ -9410,6 +9165,10 @@ /obj/effect/landmark/crap_item, /turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) +"fPO" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/ice/layer0, +/area/shiva/interior/caves/s_lz2) "fQX" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) @@ -9583,6 +9342,11 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) +"gcH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/rifle/m41a/corporate/no_lock, +/turf/open/asphalt/cement, +/area/shiva/interior/warehouse) "gcK" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -9637,6 +9401,10 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/shiva/wred/northwest, /area/shiva/interior/colony/medseceng) +"gfm" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/lz1_valley) "ggh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt{ @@ -9702,12 +9470,6 @@ "gkv" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"gkG" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_colony_grounds) "gkK" = ( /obj/structure/machinery/landinglight/ds2/delaythree, /turf/open/floor/shiva/floor3, @@ -9743,6 +9505,14 @@ "goj" = ( /turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) +"gom" = ( +/obj/structure/platform/metal/shiva/north, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/plating, +/area/shiva/interior/aerodrome) "goS" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_2" @@ -9764,6 +9534,11 @@ /obj/structure/largecrate/random/case, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) +"gpq" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/exterior/cp_lz2) "gpz" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/research_caves) @@ -9813,10 +9588,6 @@ /obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) -"gso" = ( -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/cp_camp) "gss" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/junkyard) @@ -9832,6 +9603,11 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) +"gsV" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "gtp" = ( /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/ice/layer1, @@ -9880,6 +9656,10 @@ "gvz" = ( /turf/open/floor/chapel, /area/shiva/interior/colony/central) +"gvA" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_lz2) "gvT" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_4" @@ -9921,6 +9701,11 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"gzo" = ( +/obj/item/lightstick/red/variant/planted, +/obj/structure/platform/metal/shiva/west, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/aerodrome) "gzp" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, @@ -9970,22 +9755,10 @@ /obj/item/device/flashlight, /turf/open/floor/shiva/yellow/southeast, /area/shiva/interior/garage) -"gCW" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_colony_grounds) "gDz" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/shiva/snow_mat, /area/shiva/interior/colony/botany) -"gDH" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/southwest_valley) "gEk" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent4"; @@ -10126,6 +9899,10 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/botany) +"gLk" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/lz1_valley) "gLu" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/shiva/red, @@ -10152,12 +9929,6 @@ "gNF" = ( /turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/central) -"gNJ" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) "gNM" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -10214,16 +9985,6 @@ dir = 10 }, /area/shiva/interior/aerodrome) -"gQK" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) "gQL" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/darkred, @@ -10236,6 +9997,14 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"gQV" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_lz2) "gRx" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -10274,18 +10043,16 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) +"gSa" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) "gSb" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) -"gSe" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -8 - }, -/turf/open/floor/shiva, -/area/shiva/interior/aerodrome) "gSG" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/landmark/objective_landmark/close, @@ -10320,6 +10087,10 @@ dir = 9 }, /area/shiva/interior/aerodrome) +"gUU" = ( +/obj/structure/platform_decoration/metal/shiva/north, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "gVh" = ( /obj/structure/window/framed/shiva, /turf/open/floor/shiva/north, @@ -10405,10 +10176,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva/north, /area/shiva/interior/colony/central) -"hbo" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "hbu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/flour{ @@ -10439,6 +10206,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) +"hdZ" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_lz2) "hfm" = ( /obj/item/paper/research_notes/good, /turf/open/floor/shiva/floor3, @@ -10454,6 +10225,10 @@ /obj/structure/surface/table, /turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) +"hgF" = ( +/obj/structure/platform_decoration/metal/shiva/east, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_colony_grounds) "hgI" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, @@ -10464,18 +10239,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) -"hhT" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) -"hic" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) "hif" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -10489,13 +10252,11 @@ /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"hip" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/shiva/interior/warehouse/caves) +"hjs" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "hju" = ( /turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/botany) @@ -10503,6 +10264,10 @@ /obj/item/stack/sheet/metal, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) +"hkw" = ( +/obj/structure/platform/metal/shiva/east, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "hkC" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, @@ -10601,16 +10366,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"hpn" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/colony/central) "hpN" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 @@ -10655,6 +10410,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/shiva/wred/southeast, /area/shiva/interior/colony/medseceng) +"hsu" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "hsw" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/circuitboard, @@ -10736,6 +10496,13 @@ }, /turf/open/floor/shiva/north, /area/shiva/interior/colony/central) +"hwN" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/wood, +/area/shiva/interior/colony/botany) "hxf" = ( /obj/structure/surface/table, /turf/open/floor/shiva/radiator_tile, @@ -10885,25 +10652,6 @@ /obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_rook, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"hDW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shiva/interior/aerodrome) -"hEa" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shiva/interior/colony/medseceng) "hEx" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -10924,6 +10672,16 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"hET" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform_decoration/stone/strata/north, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + pixel_x = -10; + pixel_y = 10 + }, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/caves/cp_camp) "hFj" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/fortbiceps) @@ -11196,6 +10954,11 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"hWo" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "hWK" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -11289,12 +11052,6 @@ }, /turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) -"idR" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "iek" = ( /obj/structure/prop/souto_land/streamer{ dir = 9 @@ -11324,6 +11081,10 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) +"ifA" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/lz1_valley) "ifI" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/wood, @@ -11379,6 +11140,14 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"iip" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/shiva/west, +/turf/open/floor/plating, +/area/shiva/interior/aerodrome) "iiy" = ( /obj/item/stool{ pixel_x = 4; @@ -11386,6 +11155,11 @@ }, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) +"iiB" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "iji" = ( /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/corpsespawner/wygoon, @@ -11406,13 +11180,6 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"ijE" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) "ijP" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -11539,12 +11306,9 @@ /obj/item/reagent_container/food/snacks/cheeseburger, /turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) -"irT" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, +"iry" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) "isr" = ( /obj/structure/bed/chair/office/light{ @@ -11618,13 +11382,11 @@ /obj/structure/dispenser, /turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/medseceng) -"iuX" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/obj/structure/largecrate/random/mini/med, -/turf/open/floor/shiva/north, -/area/shiva/exterior/lz2_fortress) +"ivj" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/cp_camp) "ivl" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -11645,15 +11407,6 @@ }, /turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) -"ivE" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) "ivS" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, @@ -11807,16 +11560,6 @@ /obj/item/weapon/ice_axe/red, /turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/botany) -"iDW" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/floor/plating, -/area/shiva/interior/aerodrome) "iEi" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -11838,6 +11581,14 @@ }, /turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/botany) +"iHK" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/obj/structure/barricade/handrail/wire{ + layer = 3.5 + }, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/caves/cp_camp) "iHN" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/shiva/green/east, @@ -11919,6 +11670,12 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) +"iNH" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "iNS" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -11992,6 +11749,11 @@ /obj/item/tool/surgery/scalpel, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) +"iSm" = ( +/obj/structure/platform/metal/shiva/north, +/obj/structure/platform/metal/shiva/east, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/colony/central) "iTQ" = ( /obj/structure/girder, /turf/open/floor/plating, @@ -12002,6 +11764,12 @@ }, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) +"iUm" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "iVj" = ( /turf/open/floor/shiva/snow_mat/east, /area/shiva/exterior/cp_lz2) @@ -12045,6 +11813,10 @@ }, /turf/open/floor/prison/kitchen, /area/shiva/interior/bar) +"iWE" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_lz2) "iWO" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/shiva/bluefull, @@ -12153,6 +11925,10 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) +"iZl" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/ice/layer0, +/area/shiva/interior/caves/s_lz2) "iZF" = ( /obj/effect/landmark/crap_item, /turf/open/floor/shiva/north, @@ -12186,18 +11962,16 @@ "jbK" = ( /turf/open/floor/plating, /area/shiva/exterior/valley) -"jbY" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/cp_lz2) "jcv" = ( /obj/structure/surface/table, /obj/item/clothing/suit/armor/hos, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) +"jdS" = ( +/obj/structure/platform/metal/shiva/east, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_colony_grounds) "jeg" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -12259,12 +12033,6 @@ }, /turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) -"jjX" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) "jkH" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -12292,12 +12060,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/bar) -"jlY" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/cp_camp) "jmq" = ( /turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/central) @@ -12328,10 +12090,6 @@ /obj/structure/machinery/computer/prisoner, /turf/open/floor/shiva/red/northwest, /area/shiva/interior/colony/medseceng) -"joF" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/s_lz2) "jph" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -12355,10 +12113,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"jqx" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) "jqT" = ( /obj/structure/closet/firecloset, /obj/item/explosive/grenade/high_explosive/pmc, @@ -12374,12 +12128,25 @@ "jru" = ( /turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/n_admin) +"jrI" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) "jrR" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"jrU" = ( +/obj/item/ammo_magazine/flamer_tank, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "jsn" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, @@ -12403,13 +12170,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"jvz" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "jvT" = ( /obj/structure/machinery/light/double{ dir = 4; @@ -12571,12 +12331,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) -"jHg" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "jIF" = ( /obj/structure/machinery/light/double, /turf/open/floor/shiva/green/southwest, @@ -12584,13 +12338,6 @@ "jIK" = ( /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/n_admin) -"jIP" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "jIR" = ( /turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/s_admin) @@ -12601,16 +12348,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/valley) -"jJv" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "jJZ" = ( /obj/structure/largecrate/random/mini/small_case/b{ pixel_x = -5; @@ -12706,15 +12443,6 @@ "jPj" = ( /turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/bar) -"jPo" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "jPU" = ( /obj/structure/filingcabinet{ pixel_x = 8; @@ -12762,17 +12490,6 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/s_lz2) -"jQW" = ( -/obj/structure/platform_decoration/strata, -/obj/item/lightstick/variant/planted, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_lz2) -"jRa" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/shiva/interior/colony/botany) "jRI" = ( /obj/structure/ice/thin/single{ opacity = 1; @@ -12797,13 +12514,6 @@ }, /turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) -"jTl" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) "jTT" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -12822,12 +12532,11 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"jUM" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, +"jUT" = ( +/obj/structure/platform_decoration/stone/strata, +/obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/southwest_valley) +/area/shiva/exterior/cp_lz2) "jVi" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/snow/layer2, @@ -12845,6 +12554,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) +"jWC" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/lz1_valley) "jWL" = ( /obj/structure/machinery/light/double{ dir = 1; @@ -12880,6 +12593,10 @@ /obj/item/tool/wirecutters/clippers, /turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) +"kaj" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/cp_lz2) "kap" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1 @@ -13014,6 +12731,11 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"kfO" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) "kfW" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -13062,6 +12784,10 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/wood, /area/shiva/interior/colony/botany) +"kih" = ( +/obj/structure/platform/metal/shiva/north, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/southwest_valley) "kiv" = ( /obj/structure/machinery/landinglight/ds2, /turf/open/floor/shiva/north, @@ -13082,6 +12808,11 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/s_lz2) +"kiI" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "kiS" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -13104,6 +12835,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) +"klE" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/shiva/interior/caves/cp_camp) "klF" = ( /obj/structure/bed/chair{ dir = 4 @@ -13170,6 +12906,10 @@ /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) +"kqq" = ( +/obj/structure/platform_decoration/metal/shiva/east, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/southwest_valley) "kqs" = ( /turf/open/floor/shiva/radiator_tile2, /area/shiva/interior/colony/central) @@ -13207,6 +12947,10 @@ /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) +"ksd" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/caves/cp_camp) "ksu" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_x = -32 @@ -13304,6 +13048,10 @@ /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"kwW" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/lz1_valley) "kxb" = ( /obj/structure/machinery/light/double, /turf/open/floor/shiva/multi_tiles/west, @@ -13407,6 +13155,11 @@ "kAT" = ( /turf/open/floor/shiva/yellow/west, /area/shiva/interior/garage) +"kAX" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/shiva/interior/caves/cp_camp) "kBo" = ( /obj/structure/prop/ice_colony/poly_kevlon_roll{ pixel_y = 21 @@ -13420,6 +13173,11 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) +"kBJ" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/exterior/cp_lz2) "kCK" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" @@ -13434,6 +13192,11 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"kDz" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/caves/cp_camp) "kDJ" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -13487,12 +13250,6 @@ /obj/effect/landmark/static_comms/net_one, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"kGH" = ( -/obj/structure/machinery/optable, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/plating, -/area/shiva/interior/colony/central) "kGW" = ( /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer2, @@ -13510,6 +13267,10 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/floor3, /area/shiva/interior/caves/cp_camp) +"kIo" = ( +/obj/structure/platform/metal/shiva/north, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/southwest_valley) "kIq" = ( /obj/structure/bed/chair, /turf/open/floor/shiva/multi_tiles, @@ -13525,6 +13286,10 @@ }, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) +"kIO" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/lz1_valley) "kJi" = ( /obj/structure/closet/crate/hydroponics, /obj/item/reagent_container/glass/watertank, @@ -13605,6 +13370,12 @@ "kLM" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) +"kLR" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) "kMg" = ( /turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) @@ -13723,6 +13494,10 @@ }, /turf/open/floor/chapel, /area/shiva/interior/colony/central) +"kRL" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "kRR" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, @@ -13741,15 +13516,10 @@ /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"kSO" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/interior/caves/cp_camp) +"kSv" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/junkyard/cp_bar) "kTd" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/colony/research_hab) @@ -13841,6 +13611,11 @@ /obj/vehicle/train/cargo/engine, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/southwest_valley) +"kXS" = ( +/obj/structure/platform/stone/strata, +/obj/item/lightstick/variant/planted, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_lz2) "kZj" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -13986,6 +13761,10 @@ /obj/structure/surface/rack, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) +"lhf" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/s_lz2) "lhP" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "pink_trim" @@ -14029,6 +13808,15 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"lmA" = ( +/obj/structure/platform/metal/shiva/north, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/plating, +/area/shiva/interior/aerodrome) "lmL" = ( /turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/botany) @@ -14191,6 +13979,10 @@ }, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) +"luW" = ( +/obj/item/weapon/baseballbat/metal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "lvj" = ( /obj/structure/machinery/landinglight/ds2, /turf/open/floor/shiva/floor3, @@ -14293,12 +14085,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"lCB" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) "lDv" = ( /obj/structure/machinery/computer/crew, /turf/open/floor/shiva/wred/southeast, @@ -14343,12 +14129,6 @@ "lGq" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/medseceng) -"lGC" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "lGT" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -14437,6 +14217,10 @@ /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"lKG" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/caves/cp_camp) "lKJ" = ( /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/shiva/bluefull, @@ -14588,12 +14372,6 @@ /obj/item/trash/plate, /turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) -"lVF" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/colony/central) "lWr" = ( /obj/structure/barricade/handrail/strata, /obj/structure/surface/table, @@ -14801,12 +14579,6 @@ /obj/item/weapon/ice_axe, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"mfc" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) "mfe" = ( /obj/item/frame/firstaid_arm_assembly, /turf/open/floor/shiva/redfull/west, @@ -14833,6 +14605,12 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) +"mgQ" = ( +/obj/structure/machinery/optable, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/plating, +/area/shiva/interior/colony/central) "mgT" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -14924,14 +14702,6 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"mpE" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/multi_tiles/north, -/area/shiva/interior/colony/research_hab) "mpI" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, @@ -15036,6 +14806,12 @@ /obj/structure/flora/bush/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"mwv" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/caves/cp_camp) "mwE" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/junkyard) @@ -15136,15 +14912,6 @@ }, /turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) -"mCG" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) "mCQ" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 1; @@ -15207,6 +14974,13 @@ }, /turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) +"mFU" = ( +/obj/structure/platform/metal/shiva, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4-8" + }, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/exterior/junkyard/fortbiceps) "mGk" = ( /obj/item/tool/shovel/snow, /obj/item/storage/fancy/cigarettes/arcturian_ace{ @@ -15265,6 +15039,11 @@ }, /turf/open/floor/shiva/green/north, /area/shiva/interior/colony/botany) +"mIu" = ( +/obj/structure/platform_decoration/stone/strata/east, +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "mIx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/snow/layer1, @@ -15360,12 +15139,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"mMw" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/southwest_valley) "mME" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -15382,10 +15155,10 @@ "mMK" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"mNs" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +"mND" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "mNK" = ( /obj/structure/dispenser, /turf/open/floor/shiva/north, @@ -15394,12 +15167,6 @@ /obj/structure/machinery/light/double, /turf/open/floor/shiva/yellow, /area/shiva/interior/colony/research_hab) -"mOv" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/lz1_valley) "mOY" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/shiva, @@ -15421,15 +15188,13 @@ }, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) +"mQE" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "mQL" = ( /turf/open/floor/darkgreen2/northwest, /area/shiva/interior/colony/botany) -"mRa" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) "mRc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -15443,12 +15208,6 @@ /obj/structure/surface/rack, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"mRo" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "mRv" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer2, @@ -15456,6 +15215,10 @@ "mRU" = ( /turf/open/floor/shiva/yellowcorners/west, /area/shiva/interior/colony/research_hab) +"mRZ" = ( +/obj/structure/platform_decoration/metal/shiva/east, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "mSv" = ( /obj/item/tool/shovel/spade{ pixel_x = -3; @@ -15466,6 +15229,10 @@ "mSR" = ( /turf/open/floor/shiva/bluecorners, /area/shiva/interior/colony/central) +"mTy" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/caves/cp_camp) "mTK" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/shiva/floor3, @@ -15581,15 +15348,11 @@ }, /turf/open/floor/shiva/green/east, /area/shiva/interior/colony/botany) -"naG" = ( -/obj/item/ammo_magazine/flamer_tank, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/north, -/area/shiva/interior/colony/central) +"nav" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/exterior/cp_s_research) "naN" = ( /obj/structure/airlock_assembly, /turf/open/floor/plating, @@ -15713,6 +15476,10 @@ }, /turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/n_admin) +"nhS" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) "nig" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "pink_trim" @@ -15733,12 +15500,10 @@ /obj/structure/machinery/space_heater, /turf/open/floor/shiva/floor3, /area/shiva/interior/aux_power) -"niL" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +"njf" = ( +/obj/structure/platform/metal/shiva, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard/fortbiceps) "njg" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -15750,16 +15515,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"nlx" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "nlG" = ( /obj/structure/machinery/landinglight/ds2/spoke, /obj/structure/machinery/landinglight/ds2/delaytwo{ @@ -15790,11 +15545,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"nmU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/rifle/m41a/corporate/no_lock, -/turf/open/asphalt/cement, -/area/shiva/interior/warehouse) "nmY" = ( /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/snow/layer1, @@ -15838,10 +15588,6 @@ "nqu" = ( /turf/open/floor/shiva/snow_mat/north, /area/shiva/interior/colony/central) -"nqK" = ( -/obj/structure/platform/shiva/catwalk, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) "nrf" = ( /obj/structure/machinery/reagentgrinder{ pixel_y = 12 @@ -15889,12 +15635,6 @@ "ntJ" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"nud" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_lz2) "nur" = ( /obj/structure/barricade/metal{ dir = 1; @@ -15913,18 +15653,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"nvu" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) "nvS" = ( /turf/open/floor/shiva/snow_mat/west, /area/shiva/exterior/cp_colony_grounds) @@ -15943,17 +15671,6 @@ /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"nxt" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/item/lightstick/red/variant/planted{ - pixel_x = -7; - pixel_y = -5 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) "nxA" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -15964,13 +15681,6 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"nyS" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) "nzf" = ( /obj/structure/surface/table, /obj/structure/noticeboard{ @@ -16001,6 +15711,10 @@ /obj/structure/largecrate/random/case/small, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"nzU" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_lz2) "nAl" = ( /obj/item/tool/crowbar, /turf/open/auto_turf/snow/layer3, @@ -16119,13 +15833,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"nIA" = ( -/obj/item/lightstick/red/variant/planted, -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/aerodrome) "nIB" = ( /obj/structure/surface/table, /obj/item/device/taperecorder, @@ -16138,6 +15845,10 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) +"nJt" = ( +/obj/structure/platform/metal/shiva/east, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/southwest_valley) "nJu" = ( /obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/shiva/yellow, @@ -16159,12 +15870,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) -"nKM" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/southwest_valley) "nKO" = ( /obj/structure/machinery/light/double, /turf/open/floor/shiva/radiator_tile, @@ -16173,6 +15878,13 @@ /obj/structure/machinery/photocopier, /turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) +"nMc" = ( +/obj/structure/platform/stone/strata, +/obj/structure/barricade/handrail/wire{ + layer = 3.5 + }, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/caves/cp_camp) "nMk" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp{ @@ -16184,12 +15896,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"nMR" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) "nMZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, @@ -16224,32 +15930,15 @@ "nOd" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/s_admin) -"nOi" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_colony_grounds) +"nOe" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "nOB" = ( /obj/item/stack/sheet/metal, /turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) -"nOK" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/exterior/cp_s_research) -"nPb" = ( -/obj/structure/prop/ice_colony/soil_net, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_lz2) "nPH" = ( /obj/structure/machinery/microwave{ pixel_y = 6 @@ -16266,6 +15955,12 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) +"nRq" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/shiva/interior/colony/botany) "nRy" = ( /obj/structure/window/reinforced/tinted{ dir = 8 @@ -16310,12 +16005,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"nUk" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) "nUn" = ( /obj/structure/bed/chair{ dir = 8 @@ -16330,11 +16019,6 @@ /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"nUM" = ( -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva, -/area/shiva/interior/aerodrome) "nVn" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -16397,6 +16081,18 @@ /obj/structure/machinery/light/double, /turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) +"oar" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/junkyard/cp_bar) +"oaG" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) "oaH" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/shiva/floor3, @@ -16421,6 +16117,14 @@ /obj/item/device/flashlight, /turf/open/floor/wood, /area/shiva/interior/aerodrome) +"obw" = ( +/obj/structure/stairs/perspective/ice{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_lz2) "obH" = ( /obj/item/device/camera{ pixel_x = 6; @@ -16485,12 +16189,6 @@ /obj/effect/decal/cleanable/blood/gibs/xeno, /turf/open/floor/shiva/green, /area/shiva/interior/colony/botany) -"ofl" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) "ofw" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard) @@ -16569,6 +16267,13 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"ojj" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "ojU" = ( /obj/structure/fence, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -16600,6 +16305,17 @@ /obj/structure/machinery/photocopier, /turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) +"omy" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"omI" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/exterior/valley) "onc" = ( /obj/structure/girder/displaced, /turf/open/floor/plating, @@ -16648,12 +16364,6 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"oqH" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) "oqQ" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 @@ -16682,12 +16392,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"orv" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/southwest_valley) "osh" = ( /turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) @@ -16725,6 +16429,17 @@ }, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) +"oux" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) +"ouJ" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/shiva/exterior/cp_s_research) "ouS" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 15; @@ -16773,12 +16488,6 @@ }, /turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) -"owB" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_colony_grounds) "owD" = ( /obj/structure/filingcabinet, /turf/open/floor/shiva/floor3, @@ -16793,6 +16502,10 @@ /obj/structure/machinery/power/apc/power/south, /turf/open/floor/plating, /area/shiva/exterior/telecomm/lz2_northeast) +"oxD" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/lz1_valley) "oxP" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer3, @@ -16801,10 +16514,6 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) -"oyw" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_lz2) "oAo" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; @@ -16866,13 +16575,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"oFl" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/interior/warehouse/caves) "oFG" = ( /obj/structure/machinery/body_scanconsole, /turf/open/floor/shiva/wred/northeast, @@ -16960,6 +16662,10 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/shiva/interior/colony/botany) +"oLp" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "oLr" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -16967,12 +16673,6 @@ }, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) -"oLu" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "oMG" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -17033,15 +16733,11 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/valley) -"oSj" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/yellow/north, -/area/shiva/interior/garage) +"oSv" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/shiva/exterior/cp_s_research) "oSU" = ( /obj/structure/machinery/disposal, /turf/open/floor/shiva/north, @@ -17066,11 +16762,6 @@ }, /turf/open/floor/shiva/bluefull/west, /area/shiva/interior/warehouse) -"oWA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/asphalt/cement, -/area/shiva/interior/warehouse) "oWG" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber{ icon_state = "psiphon:1" @@ -17082,6 +16773,10 @@ /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/prison/kitchen, /area/shiva/interior/bar) +"oXk" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_lz2) "oXz" = ( /obj/structure/bed/chair/comfy/blue{ dir = 8 @@ -17116,13 +16811,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"oZq" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) "oZs" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -17206,12 +16894,6 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"pey" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/s_lz2) "peQ" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/floor/shiva/bluefull, @@ -17258,12 +16940,10 @@ "pgu" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/telecomm/lz2_southeast) -"pgQ" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_lz2) +"piV" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/lz1_valley) "piW" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/shiva/north, @@ -17290,10 +16970,6 @@ /obj/structure/machinery/light/double, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) -"pkT" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) "plm" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -17336,21 +17012,17 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"poz" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) "ppb" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"ppu" = ( +/obj/structure/prop/ice_colony/soil_net, +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_lz2) "ppI" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/shiva/floor3, @@ -17367,26 +17039,10 @@ "pqj" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/valley) -"pqq" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/s_lz2) "prb" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/shiva/yellow/north, /area/shiva/interior/garage) -"prO" = ( -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/research_caves) "prU" = ( /obj/structure/machinery/light/double{ dir = 8; @@ -17425,6 +17081,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/research_caves) +"ptp" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) "ptr" = ( /turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/research_hab) @@ -17545,12 +17205,10 @@ "pzJ" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/exterior/cp_colony_grounds) -"pAx" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/valley) +"pzU" = ( +/obj/structure/platform_decoration/metal/shiva/west, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_colony_grounds) "pAE" = ( /obj/structure/machinery/light/double{ dir = 8; @@ -17644,6 +17302,12 @@ /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"pEc" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "pEe" = ( /obj/structure/closet/bodybag, /obj/structure/machinery/light/double{ @@ -17683,12 +17347,6 @@ /obj/structure/machinery/light/double, /turf/open/floor/shiva/north, /area/shiva/interior/garage) -"pFg" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "pFt" = ( /turf/open/floor/shiva/red, /area/shiva/interior/colony/medseceng) @@ -17722,12 +17380,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_s_research) -"pGL" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/cp_lz2) "pHd" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer1, @@ -17737,6 +17389,10 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/red/southwest, /area/shiva/interior/colony/medseceng) +"pHX" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "pId" = ( /obj/structure/machinery/computer/cameras/telescreen{ name = "Interrogation Telescreen"; @@ -17748,6 +17404,12 @@ }, /turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) +"pIC" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) "pIK" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" @@ -17813,11 +17475,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"pKJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/asphalt/cement, -/area/shiva/interior/warehouse) "pKP" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp/green{ @@ -17938,6 +17595,15 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) +"pPR" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "pQt" = ( /obj/item/stack/sheet/metal, /turf/open/floor/shiva/wredfull, @@ -17952,13 +17618,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"pRM" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/structure/platform_decoration/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) "pRU" = ( /obj/item/stack/cable_coil/white, /turf/open/auto_turf/ice/layer1, @@ -18062,6 +17721,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/valley) +"pZo" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_lz2) "pZB" = ( /obj/structure/largecrate/random/mini/ammo{ pixel_x = 3 @@ -18112,15 +17775,6 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/shiva/yellow, /area/shiva/interior/colony/medseceng) -"qdh" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) "qdH" = ( /turf/closed/wall/shiva/prefabricated/blue, /area/shiva/exterior/junkyard/cp_bar) @@ -18134,6 +17788,11 @@ }, /turf/open/floor/shiva/red/north, /area/shiva/interior/colony/central) +"qes" = ( +/obj/structure/platform_decoration/stone/strata, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "qeH" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/shiva/red/north, @@ -18158,6 +17817,14 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/garage) +"qfs" = ( +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood{ + pixel_x = 8; + pixel_y = 10 + }, +/turf/open/floor/shiva, +/area/shiva/interior/aerodrome) "qfR" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer2, @@ -18219,6 +17886,11 @@ /obj/structure/barricade/handrail/wire, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_s_research) +"qjl" = ( +/obj/item/lightstick/red/variant/planted, +/obj/structure/platform/metal/shiva/east, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/aerodrome) "qjY" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer0, @@ -18242,12 +17914,6 @@ "qkC" = ( /turf/open/shuttle/elevator, /area/shiva/interior/aerodrome) -"qkF" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "qkI" = ( /obj/structure/machinery/landinglight/ds1/spoke, /turf/open/auto_turf/snow/layer0, @@ -18499,13 +18165,6 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) -"qBM" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/cp_camp) "qCa" = ( /obj/structure/bed/chair{ dir = 4 @@ -18533,15 +18192,6 @@ /obj/structure/barricade/metal, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) -"qCW" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/interior/caves/research_caves) "qDg" = ( /obj/structure/bed/chair{ dir = 8 @@ -18567,6 +18217,11 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) +"qDV" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/shiva/exterior/valley) "qEt" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, @@ -18590,21 +18245,10 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) -"qEQ" = ( -/obj/structure/platform/strata, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) "qFx" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/telecomm/lz1_north) -"qFN" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/prison/kitchen, -/area/shiva/interior/bar) "qGq" = ( /obj/item/frame/bucket_sensor, /turf/open/floor/shiva/wredfull, @@ -18680,13 +18324,6 @@ }, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) -"qNB" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/exterior/cp_lz2) "qNK" = ( /obj/structure/surface/table, /obj/item/reagent_container/glass/beaker/cryopredmix{ @@ -18733,10 +18370,6 @@ /obj/structure/barricade/metal/wired, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) -"qRl" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/s_lz2) "qRo" = ( /obj/structure/closet/secure_closet/medical3{ req_access = null @@ -18858,6 +18491,11 @@ "qXS" = ( /turf/open/floor/shiva, /area/shiva/interior/bar) +"qYf" = ( +/obj/structure/platform/metal/shiva/west, +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "qYp" = ( /obj/structure/machinery/microwave{ pixel_y = 6 @@ -18980,10 +18618,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/southwest_valley) -"rfi" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_lz2) "rfU" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -19084,12 +18718,11 @@ /obj/structure/flora/pottedplant, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"rnB" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_colony_grounds) +"rnJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/asphalt/cement, +/area/shiva/interior/warehouse) "rov" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -19142,6 +18775,10 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"rsk" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/caves/cp_camp) "rti" = ( /obj/structure/surface/table, /obj/item/tool/pen/blue{ @@ -19163,6 +18800,24 @@ /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"ruw" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/ice/layer0, +/area/shiva/interior/caves/cp_camp) +"rvk" = ( +/obj/structure/platform_decoration/stone/strata/north, +/obj/structure/platform_decoration/stone/strata, +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) +"rwr" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/obj/structure/barricade/handrail/wire{ + layer = 3.5 + }, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/caves/cp_camp) "rwQ" = ( /obj/structure/bedsheetbin, /turf/open/floor/shiva/multi_tiles/north, @@ -19192,25 +18847,11 @@ /obj/structure/machinery/light/double, /turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) -"ryN" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/southwest_valley) "ryZ" = ( /obj/structure/surface/table, /obj/item/tool/pickaxe/plasmacutter, /turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/aux_power) -"rzw" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) "rzz" = ( /obj/structure/flora/pottedplant, /turf/open/floor/shiva/green/southeast, @@ -19251,15 +18892,14 @@ "rAH" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) -"rBk" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 +"rBn" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/stairs/perspective/ice{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/gm/river, -/area/shiva/interior/warehouse/caves) +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_lz2) "rBr" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/shiva/north, @@ -19325,11 +18965,9 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) -"rJI" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/gm/river, +"rJl" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) "rKk" = ( /turf/open/auto_turf/snow/layer0, @@ -19348,12 +18986,6 @@ /obj/structure/machinery/computer3/powermonitor, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"rLu" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) "rLD" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -19430,6 +19062,11 @@ }, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/shiva/interior/aerodrome) +"rQW" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) "rRb" = ( /obj/structure/surface/rack, /obj/item/weapon/ice_axe, @@ -19529,6 +19166,16 @@ }, /turf/open/floor/plating/icefloor/warnplate/west, /area/shiva/exterior/junkyard/fortbiceps) +"rVZ" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) +"rWf" = ( +/obj/structure/platform/stone/strata, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) "rWj" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/ice/layer1, @@ -19565,6 +19212,11 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) +"rXg" = ( +/obj/structure/platform/metal/shiva/north, +/obj/item/lightstick/red/spoke/planted, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_colony_grounds) "rXn" = ( /turf/closed/shuttle/elevator{ dir = 5 @@ -19584,6 +19236,11 @@ /obj/effect/landmark/railgun_camera_pos, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) +"rXD" = ( +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva, +/area/shiva/interior/aerodrome) "rYj" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer4, @@ -19756,6 +19413,10 @@ }, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) +"siv" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/lz1_valley) "siD" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -19781,6 +19442,11 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/southwest_valley) +"skg" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/lz1_valley) "skl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/snow/layer0, @@ -19802,6 +19468,17 @@ /obj/structure/machinery/light/double, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"skI" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/lz1_valley) +"skR" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/shiva/west, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) "slj" = ( /turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) @@ -19859,6 +19536,11 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) +"spM" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/lz1_valley) "sqy" = ( /obj/item/wrapping_paper, /obj/structure/surface/table/reinforced/prison, @@ -19874,12 +19556,6 @@ "ssf" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/central) -"stv" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/cp_lz2) "stN" = ( /turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) @@ -19909,6 +19585,10 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) +"svd" = ( +/obj/structure/platform/metal/shiva/east, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/colony/central) "swF" = ( /obj/structure/machinery/firealarm{ dir = 8; @@ -20000,6 +19680,10 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) +"sBn" = ( +/obj/structure/platform/metal/shiva, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/valley) "sBH" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -20209,6 +19893,14 @@ /obj/structure/inflatable, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/research_caves) +"sLl" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_lz2) "sLs" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" @@ -20236,10 +19928,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) -"sNv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/floor3, -/area/shiva/interior/colony/central) "sNX" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/shiva, @@ -20253,12 +19941,6 @@ /obj/structure/surface/table, /turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/medseceng) -"sON" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/southwest_valley) "sPn" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox{ @@ -20393,35 +20075,36 @@ /obj/item/clothing/shoes/snow, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) +"sZo" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_lz2) "sZx" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) -"tad" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/interior/warehouse/caves) "taq" = ( /obj/item/tool/kitchen/rollingpin, /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/kitchen, /area/shiva/interior/bar) +"tbj" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/telecomm/lz2_southeast) "tbR" = ( /obj/structure/surface/table, /obj/item/folder/red, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) +"tcd" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/s_lz2) "tcp" = ( /obj/structure/barricade/snow{ dir = 8 @@ -20454,12 +20137,6 @@ }, /turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) -"tdG" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "tdR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -20475,13 +20152,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"tes" = ( -/obj/structure/platform/strata, -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "tez" = ( /obj/structure/barricade/snow{ dir = 1 @@ -20547,6 +20217,11 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"tka" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) "tkb" = ( /obj/structure/surface/table, /obj/item/tool/pen/blue, @@ -20567,15 +20242,6 @@ /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"tlr" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/interior/warehouse/caves) "tlB" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) @@ -20591,6 +20257,11 @@ /obj/structure/closet/toolcloset, /turf/open/floor/shiva/north, /area/shiva/interior/garage) +"tmt" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_lz2) "tmI" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -20682,6 +20353,11 @@ }, /turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/research_hab) +"tqE" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/shiva/exterior/cp_lz2) "tqL" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/shiva/north, @@ -20731,13 +20407,6 @@ }, /turf/open/floor/plating, /area/shiva/exterior/valley) -"tuz" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/structure/platform_decoration/strata, -/turf/open/gm/river, -/area/shiva/interior/warehouse/caves) "tuA" = ( /obj/structure/largecrate/random/mini/chest{ pixel_x = -6; @@ -20797,6 +20466,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"tyj" = ( +/obj/structure/platform/metal/shiva/north, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "tyI" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -20841,18 +20514,10 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/southwest_valley) -"tBB" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/junkyard/cp_bar) "tCi" = ( /obj/item/stack/cable_coil/cut, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"tDb" = ( -/obj/structure/platform/shiva/catwalk, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) "tDg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -20868,13 +20533,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"tDr" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/obj/item/lightstick/red/spoke/planted, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_colony_grounds) +"tEg" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "tEl" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, @@ -20890,13 +20552,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"tFd" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/warehouse/caves) "tFk" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -20910,16 +20565,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"tFy" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/warehouse/caves) "tGs" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -20971,6 +20616,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"tJk" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/caves/cp_camp) "tJn" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 @@ -21006,38 +20655,25 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"tKV" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/telecomm/lz2_southeast) +"tLl" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "tLz" = ( /obj/structure/machinery/space_heater, /turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"tLC" = ( -/obj/item/lightstick/red/variant/planted, -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/aerodrome) -"tLP" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/colony/central) "tLW" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"tMd" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/shiva/exterior/cp_lz2) "tMv" = ( /obj/effect/sentry_landmark/lz_2/top_right, /turf/open/floor/shiva/floor3, @@ -21103,12 +20739,6 @@ }, /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) -"tOX" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/southwest_valley) "tPs" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -21123,14 +20753,6 @@ /obj/structure/largecrate/random, /turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts/no2) -"tPB" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/layer4, -/area/shiva/interior/caves/cp_camp) -"tPJ" = ( -/obj/structure/platform/shiva/catwalk, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard/fortbiceps) "tQn" = ( /obj/structure/barricade/handrail/wire, /turf/open/auto_turf/snow/layer2, @@ -21243,12 +20865,22 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"tUt" = ( +/obj/structure/platform/stone/strata, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "tUN" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz2-southwest" }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) +"tVJ" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/cp_camp) "tVZ" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" @@ -21368,6 +21000,14 @@ }, /turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) +"ubY" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) +"ucj" = ( +/obj/structure/platform_decoration/metal/shiva/east, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "ucn" = ( /obj/structure/largecrate/random/mini/med{ layer = 3.01; @@ -21576,24 +21216,10 @@ /obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/southwest_valley) -"ulD" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2-4-8" - }, -/obj/structure/platform/shiva/catwalk, -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/exterior/junkyard/fortbiceps) "ulI" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"ulZ" = ( -/obj/structure/platform/shiva/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "1-2-4-8" - }, -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/exterior/junkyard/fortbiceps) "umj" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/ash, @@ -21611,6 +21237,18 @@ }, /turf/open/floor/shiva/north, /area/shiva/exterior/cp_colony_grounds) +"umI" = ( +/obj/structure/platform_decoration/stone/strata/north, +/obj/item/lightstick/red/variant/planted{ + pixel_x = -7; + pixel_y = -5 + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/southwest_valley) +"uny" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/cp_lz2) "uot" = ( /obj/structure/largecrate/random/case, /obj/structure/machinery/light/double{ @@ -21662,6 +21300,10 @@ "uqb" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"uqx" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/ice/layer0, +/area/shiva/interior/caves/s_lz2) "uqS" = ( /obj/structure/machinery/space_heater, /turf/open/floor/shiva/redfull/west, @@ -21707,13 +21349,6 @@ /obj/structure/bed/chair/comfy/beige, /turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) -"uuC" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/exterior/valley) "uuN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/shiva, @@ -21847,11 +21482,6 @@ }, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) -"uEo" = ( -/obj/structure/platform/strata, -/obj/item/lightstick/variant/planted, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_lz2) "uEx" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -21894,12 +21524,6 @@ "uGq" = ( /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"uGs" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/southwest_valley) "uGw" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/medium, @@ -21993,16 +21617,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"uKm" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shiva/interior/colony/central) "uKo" = ( /obj/structure/surface/table, /obj/item/ashtray/plastic, @@ -22046,20 +21660,6 @@ "uKZ" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/aerodrome) -"uLf" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0; - pixel_x = -10; - pixel_y = 10 - }, -/turf/open/gm/river/no_overlay, -/area/shiva/interior/caves/cp_camp) "uLn" = ( /obj/structure/closet/secure_closet/medical1{ req_access_txt = "100" @@ -22124,15 +21724,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"uQy" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/floor/plating, -/area/shiva/interior/colony/medseceng) "uQA" = ( /obj/structure/machinery/firealarm{ dir = 8; @@ -22209,6 +21800,15 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/southwest_valley) +"uUY" = ( +/obj/structure/prop/ice_colony/surveying_device{ + layer = 3.01; + pixel_x = -7; + pixel_y = 16 + }, +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_lz2) "uVa" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -22239,6 +21839,10 @@ }, /turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) +"uWH" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/gm/river, +/area/shiva/exterior/valley) "uXQ" = ( /turf/open/floor/shiva/yellow, /area/shiva/interior/colony/medseceng) @@ -22367,11 +21971,6 @@ /obj/structure/machinery/light/double, /turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) -"veu" = ( -/obj/structure/platform_decoration/strata, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) "vey" = ( /turf/open/floor/shiva/red/northeast, /area/shiva/interior/colony/medseceng) @@ -22385,10 +21984,6 @@ "vfd" = ( /turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/central) -"vgR" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/layer4, -/area/shiva/interior/caves/cp_camp) "vhp" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, @@ -22412,12 +22007,6 @@ /obj/structure/machinery/space_heater, /turf/open/floor/shiva/north, /area/shiva/interior/garage) -"vip" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) "viy" = ( /obj/structure/machinery/disposal, /turf/open/floor/shiva/north, @@ -22458,12 +22047,6 @@ /obj/structure/largecrate/random, /turf/open/floor/shiva/floor3, /area/shiva/interior/valley_huts) -"vlh" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/cp_camp) "vlD" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/ice/layer1, @@ -22471,10 +22054,6 @@ "vmy" = ( /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) -"vnc" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) "vno" = ( /obj/structure/closet/secure_closet/chemical{ req_access_txt = "100" @@ -22540,10 +22119,6 @@ "vqq" = ( /turf/open/floor/shiva/radiator_tile, /area/shiva/interior/colony/central) -"vqw" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_lz2) "vqT" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer2, @@ -22646,6 +22221,13 @@ /obj/structure/bed/roller, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"vzu" = ( +/obj/structure/platform/metal/shiva/north, +/obj/structure/prop/ice_colony/flamingo{ + dir = 9 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/southwest_valley) "vzy" = ( /obj/structure/machinery/light/double, /obj/structure/noticeboard{ @@ -22689,13 +22271,6 @@ "vAT" = ( /turf/open/floor/shiva/green/northeast, /area/shiva/interior/colony/botany) -"vAU" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/warehouse/caves) "vBg" = ( /obj/structure/curtain/black, /turf/open/floor/plating, @@ -22816,10 +22391,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"vIJ" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) "vIL" = ( /obj/item/stack/rods, /turf/open/floor/shiva/bluefull, @@ -22837,6 +22408,11 @@ "vKx" = ( /turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) +"vMK" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/shiva/exterior/valley) "vMX" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer0, @@ -22868,18 +22444,13 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) +"vOZ" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_lz2) "vPr" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/warehouse/caves) -"vPK" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/shiva/exterior/cp_lz2) "vPR" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -22894,13 +22465,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/cp_colony_grounds) -"vRM" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/exterior/cp_lz2) "vRW" = ( /obj/effect/decal/warning_stripes{ icon_state = "N-corner" @@ -23004,12 +22568,10 @@ /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) -"vZS" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/lz1_valley) +"vZo" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/caves/s_lz2) "wag" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/n_admin) @@ -23083,12 +22645,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"wfW" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/s_lz2) "wgp" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ dir = 1; @@ -23198,6 +22754,11 @@ "wme" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/southwest_valley) +"wmS" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "wnK" = ( /turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) @@ -23220,6 +22781,10 @@ }, /turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) +"wpx" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_lz2) "wpG" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Colony Security Checkpoint" @@ -23252,9 +22817,17 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"wtf" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "wtC" = ( /turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/n_admin) +"wtF" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/caves/cp_camp) "wui" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -23267,6 +22840,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"wuy" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "wvd" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 8; @@ -23342,6 +22919,10 @@ /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) +"wyi" = ( +/obj/structure/platform_decoration/metal/shiva/west, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "wAr" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/ice/layer1, @@ -23401,12 +22982,6 @@ }, /turf/open/floor/prison/kitchen, /area/shiva/interior/bar) -"wCX" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/s_lz2) "wFa" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -23549,6 +23124,10 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"wQk" = ( +/obj/structure/platform_decoration/metal/shiva/east, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/southwest_valley) "wQr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" @@ -23643,12 +23222,6 @@ }, /turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) -"wVJ" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) "wWu" = ( /turf/open/floor/shiva/wred/northwest, /area/shiva/interior/colony/medseceng) @@ -23740,6 +23313,10 @@ }, /turf/open/floor/shiva/north, /area/shiva/exterior/cp_colony_grounds) +"xcy" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/gm/river, +/area/shiva/interior/caves/cp_camp) "xcE" = ( /obj/structure/inflatable/popped, /turf/open/floor/shiva/multi_tiles, @@ -23754,13 +23331,6 @@ /obj/structure/machinery/power/reactor/colony, /turf/open/floor/shiva/north, /area/shiva/interior/garage) -"xdo" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/exterior/valley) "xdT" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, @@ -23780,6 +23350,10 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"xfy" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) "xgc" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_s_research) @@ -23789,6 +23363,12 @@ "xha" = ( /turf/open/floor/plating, /area/shiva/interior/colony/central) +"xhb" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/caves/cp_camp) "xhn" = ( /obj/structure/prop/souto_land{ desc = "Someone has crudely rendered a face and the word 'souto'"; @@ -23811,10 +23391,19 @@ /obj/structure/machinery/vending/cola/research, /turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) +"xiW" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/caves/cp_camp) "xiY" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"xjg" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/shiva/exterior/valley) "xkf" = ( /obj/structure/machinery/light/double{ dir = 4; @@ -23855,6 +23444,13 @@ }, /turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) +"xov" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 1 + }, +/obj/structure/platform_decoration/metal/shiva/west, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/southwest_valley) "xpd" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer2, @@ -23889,26 +23485,14 @@ /obj/item/tool/warning_cone, /turf/open/floor/shiva/north, /area/shiva/interior/colony/central) -"xtc" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/cp_camp) "xtI" = ( /obj/structure/bed/chair/comfy/beige, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"xui" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/exterior/cp_lz2) +"xtT" = ( +/obj/structure/platform/metal/shiva/west, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_colony_grounds) "xun" = ( /obj/structure/tunnel, /turf/open/auto_turf/ice/layer1, @@ -23997,6 +23581,14 @@ }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) +"xzJ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/shiva/east, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) "xzK" = ( /obj/structure/filingcabinet/security, /obj/structure/machinery/alarm{ @@ -24024,6 +23616,14 @@ "xAS" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"xAU" = ( +/obj/structure/platform/metal/shiva/east, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/colony/central) "xBb" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_2" @@ -24034,6 +23634,10 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"xBj" = ( +/obj/structure/platform/metal/shiva/east, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_colony_grounds) "xBo" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, @@ -24113,12 +23717,6 @@ }, /turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) -"xFM" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/caves/cp_camp) "xFN" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz2-south-gate" @@ -24162,13 +23760,6 @@ }, /turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) -"xLy" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/exterior/cp_s_research) "xMs" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -24223,6 +23814,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) +"xQs" = ( +/obj/structure/platform/metal/shiva/west, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "xQJ" = ( /turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) @@ -24409,14 +24004,6 @@ }, /turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) -"yhi" = ( -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood{ - pixel_x = 8; - pixel_y = 10 - }, -/turf/open/floor/shiva, -/area/shiva/interior/aerodrome) "yhA" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer1, @@ -24436,6 +24023,15 @@ /obj/structure/powerloader_wreckage, /turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) +"yiW" = ( +/obj/structure/platform_decoration/stone/strata/west, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + pixel_x = -17; + pixel_y = -19 + }, +/turf/open/gm/river/no_overlay, +/area/shiva/interior/caves/cp_camp) "yjh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/plate{ @@ -24485,6 +24081,10 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"ylL" = ( +/obj/structure/platform/metal/shiva/west, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "ylO" = ( /obj/structure/machinery/colony_floodlight_switch{ pixel_y = 32 @@ -26093,10 +25693,10 @@ mev cQW rbA aDM -cko -rLu -rLu -nMR +skI +fhC +fhC +ifA uqb uqb uqb @@ -26152,9 +25752,9 @@ mKr mKr aac aac -acn -acn -acn +ylL +ylL +ylL aac aac aac @@ -26255,10 +25855,10 @@ lLv cQW rbA uqb -mNs +gLk xMz slO -ofl +piV uqb uqb aDM @@ -26410,17 +26010,17 @@ puZ slO slO slO -poz -hhT +skg +kIO puZ bCr cTU iOp qza -mNs +gLk slO slO -ofl +piV uqb xvb kGW @@ -26471,9 +26071,9 @@ lYf lYf aac aac -iuX -acn -acn +qYf +ylL +ylL aac aac mFm @@ -26569,20 +26169,20 @@ puZ puZ puZ puZ -vZS -vZS -niL -hic +jWC +jWC +kwW +gfm aDM uqb uqb uqb uqb mfa -jqx +eoh slO -ivE -oqH +spM +oxD uqb aDM kLM @@ -26741,9 +26341,9 @@ qza kLM hXX kLM -mOv -niL -hic +siv +kwW +gfm kLM uqb uqb @@ -27535,8 +27135,8 @@ xAS dgG oRH oRH -rzw -nUk +wuy +tEg xMz xMz uqb @@ -27697,7 +27297,7 @@ oRH oRH xAS kRq -aFc +mQE wMh xMz xMz @@ -27859,7 +27459,7 @@ xAS oRH xAS xAS -mfc +fnT xMz xMz aDM @@ -28135,8 +27735,8 @@ lnR lnR lnR lnR -pqq -wCX +uqx +vZo cOq gmS eET @@ -28298,7 +27898,7 @@ lnR lnR lnR lnR -wfW +iZl eET eET eET @@ -28942,7 +28542,7 @@ kOV kOV eni kOV -aam +nzU ugl fEU bmv @@ -29104,8 +28704,8 @@ lop kOV kOV eni -aaT -bHZ +ceb +sLl fEU fEU fEU @@ -29619,8 +29219,8 @@ laz tlB tlB yjM -kSO -qBM +klE +ivj tlB tlB xAS @@ -29752,8 +29352,8 @@ vYm vYm kOV eni -aaW -aap +wpx +rBn fEU fEU eET @@ -29781,8 +29381,8 @@ obH tlB tlB cQY -rJI -gso +xcy +blT tlB tlB tlB @@ -29914,18 +29514,18 @@ vYm ntc eni kOV -uEo +kXS fEU eET fEU fEU eET eET -joF -pqq -pqq -pey -xFM +fPO +uqx +uqx +tcd +tLl aFO aFO xAS @@ -29943,8 +29543,8 @@ pWn tlB tTc cQY -aNy -xtc +kAX +tVJ tlB wMh wMh @@ -30076,18 +29676,18 @@ vYm ntc eni kOV -rfi +pZo lnR fEU tTi bmv fEU fEU -qRl +lhf lnR lnR lnR -fEl +nhS wMh aaA aFO @@ -30245,7 +29845,7 @@ fEU tTi fEU fEU -qRl +lhf lnR lnR myR @@ -30407,7 +30007,7 @@ fEU fEU tTi fEU -qRl +lhf lnR lnR jQS @@ -30569,7 +30169,7 @@ fEU tTi fEU fEU -qRl +lhf lnR lnR eal @@ -30731,7 +30331,7 @@ fEU fEU tTi fEU -qRl +lhf lnR lnR lnR @@ -30740,7 +30340,7 @@ lnR tlB tlB tlB -vIJ +pHX pcY pcY pcY @@ -30902,13 +30502,13 @@ pcY pcY jmW wMh -pkT +cVf pcY pcY -aED -jHg -jHg -bcE +bFx +wtF +wtF +rwr mbt mbt abt @@ -31064,15 +30664,15 @@ pcY pcY jmW ntJ -vnc +ewH pcY pcY -pFg +rsk fVw cxr -idR -jHg -aui +lKG +wtF +iHK gXW mbt abw @@ -31223,20 +30823,20 @@ toD lnR lnR pcY -fEl +nhS wMh ntJ -vnc +ewH pcY pcY -aRL -lGC -tdG +kDz +ksd +rJl fVw cxr -idR -jHg -aui +lKG +wtF +iHK ecz tlB tlB @@ -31383,22 +30983,22 @@ eni eni toD eni -aFc +mQE pcY -vlh +mTy wMh wMh -pkT +cVf pcY -aeG -aeH +ruw +cRp ntJ -aRL -lGC -lGC -lGC -cLQ -tes +kDz +ksd +ksd +ksd +yiW +nMc sPo wMh tze @@ -31545,23 +31145,23 @@ ntc ntc ntc xAS -mfc -cJC -cxJ +fnT +ubY +jrI jmW wMh -eeD -jlY -aeH +tJk +xiW +cRp ntJ ntJ ntJ ntJ ntJ wMh -aRL -uLf -nlx +kDz +hET +mwv wMh tlB tlB @@ -31723,7 +31323,7 @@ wMh ntJ wMh wMh -jJv +xhb afY tlB tTc @@ -31789,8 +31389,8 @@ kAw kAw kAw kAw -fNf -oFl +eyK +csa puZ puZ puZ @@ -31951,8 +31551,8 @@ nZA nZA kAw kAw -rBk -hip +gSa +kfO puZ puZ puZ @@ -32175,11 +31775,11 @@ mMK kOV kOV toD -aax -aaF -aaF -jbY -stv +uUY +dvD +dvD +kaj +bKM pWf pWf pWf @@ -32337,11 +31937,11 @@ kOV kOV toD toD -rfi +pZo sUE sUE wAr -pGL +uny mMK pWf pWf @@ -32499,11 +32099,11 @@ kOV kOV toD toD -rfi +pZo sUE pgu sUE -pgQ +gvA kOV mMK pWf @@ -32657,15 +32257,15 @@ mMK kOV eni kOV -oyw +hdZ toD toD toD -vqw -tKV +oXk +tbj sUE alJ -nPb +ppu aij mMK pWf @@ -32729,11 +32329,11 @@ pvv pvv gqe uji -eqm -dmv -sON -dmv -gDH +eRA +nJt +buL +nJt +fKd tSq aJt hbY @@ -32819,7 +32419,7 @@ mMK eni kOV kOV -aam +nzU toD toD mMK @@ -32829,8 +32429,8 @@ nmt lTr nUq kOV -aFb -nud +iry +iWE pWf pWf pWf @@ -32884,7 +32484,7 @@ fRg fRg oYH uKZ -bFS +gom ail ail ail @@ -32895,7 +32495,7 @@ iMA iMA iMA uKZ -uGs +kIo dKD pHd hbY @@ -32980,18 +32580,18 @@ eni kOV kOV kOV -bvb -aas +eou +sZo toD mMK ntc -jQW +jUT toD eYH eYH -oyw -nud -aaM +hdZ +iWE +erm toD pWf pWf @@ -33045,11 +32645,11 @@ nUa bKV bKV bKV -iDW -bzh +iip +ucj fRg fRg -fcx +luW fRg aKS fRg @@ -33057,7 +32657,7 @@ ohq mKB cLq iMA -jUM +kih vou aJt hbY @@ -33140,20 +32740,20 @@ ntc eni lop kOV -oyw -nud -aas +hdZ +iWE +sZo toD toD kOV -oyw -aas +hdZ +sZo toD kOV mMK -aam -xui -vRM +nzU +bUm +gpq toD toD pWf @@ -33210,8 +32810,8 @@ bKV bsC pvv pvv -gSe -nUM +bpR +rXD pvv pvv pvv @@ -33219,7 +32819,7 @@ pvv fRg xQa iMA -jUM +kih qDh aJt hbY @@ -33230,8 +32830,8 @@ exX alW arW anJ -pKJ -nmU +azA +gcH rdS axJ dQq @@ -33302,20 +32902,20 @@ ntc kOV eni kOV -aam +nzU toD toD toD eni axe -aam +nzU toD toD eni mMK -aam -vPK -irT +nzU +tqE +kBJ kOV kOV kOV @@ -33381,7 +32981,7 @@ pvv fRg uKZ uKZ -ecg +vzu aJt aJt hbY @@ -33410,8 +33010,8 @@ nZA nZA kAw kAw -fNf -oFl +eyK +csa puZ puZ puZ @@ -33469,13 +33069,13 @@ toD mCj toD kOV -aFb -aaM +iry +erm toD jCk eni -aaW -aaM +wpx +erm toD toD aMD @@ -33531,8 +33131,8 @@ ocB bKV bKV bKV -hDW -bAX +dcM +wyi fRg fRg fRg @@ -33542,8 +33142,8 @@ pvv khz fRg iMA -nIA -tOX +gzo +kqq aJt hbY hbY @@ -33572,8 +33172,8 @@ kAw kAw kAw kAw -rBk -hip +gSa +kfO puZ puZ puZ @@ -33630,13 +33230,13 @@ ntc toD toD toD -aFb -aas +iry +sZo toD toD eni lnH -aam +nzU toD toD kOV @@ -33694,7 +33294,7 @@ fRg fRg oYH uKZ -bwk +lmA cex cex cex @@ -33792,13 +33392,13 @@ ntc toD toD eni -aam +nzU toD toD toD -oyw -nud -aaM +hdZ +iWE +erm toD toD kOV @@ -33954,11 +33554,11 @@ eni toD toD eni -aam +nzU toD eni nUq -aam +nzU aaG toD toD @@ -34028,8 +33628,8 @@ fRg dZN fRg iMA -tLC -ddF +qjl +xov aJt hbY aJt @@ -34113,15 +33713,15 @@ mMK kOV eni toD -aaW +wpx toD nUq -aam +nzU toD toD toD -aaT -aaH +ceb +gQV toD toD vYm @@ -34191,7 +33791,7 @@ iMA iMA uKZ uKZ -uGs +kIo aJt hbY hbY @@ -34275,11 +33875,11 @@ eni mMK kOV kOV -aam +nzU toD toD -aZh -aaq +vOZ +tmt toD mCj toD @@ -34353,7 +33953,7 @@ ftr obb vHX iMA -uGs +kIo aJt hbY hbY @@ -34437,15 +34037,15 @@ kOV eni kOV kOV -aZh -aaq +vOZ +tmt toD mMK -aam +nzU toD toD -aaW -aaI +wpx +obw toD vYm vYm @@ -34515,7 +34115,7 @@ bKV krm iXx iMA -uGs +kIo qDh aJt hbY @@ -34600,13 +34200,13 @@ kOV kOV kOV mMK -aZh +vOZ pWf pWf pWf pWf mMK -aam +nzU toD toD kOV @@ -34677,7 +34277,7 @@ iMA iMA iMA uKZ -uGs +kIo qDh aJt hbY @@ -34805,7 +34405,7 @@ pcY pcY wMh xAS -tPB +dLs wMh wMh ntJ @@ -34824,7 +34424,7 @@ pvv kJw pvv pvv -yhi +qfs pvv pvv sYh @@ -34835,11 +34435,11 @@ pvv eGs fRg uji -fKR -orv -nKM -nKM -mMw +fDZ +bQu +eDs +eDs +wQk aJt hbY hbY @@ -34852,7 +34452,7 @@ anG axJ axJ ggh -oWA +rnJ owe axJ rdS @@ -34967,7 +34567,7 @@ pcY jmW wMh aFO -tPB +dLs wMh wMh wMh @@ -35129,7 +34729,7 @@ pcY jmW wMh nuy -vgR +ptp wMh ntJ ntJ @@ -35299,7 +34899,7 @@ jmW wMh ntJ wMh -fEl +nhS wMh hBq lRJ @@ -35461,7 +35061,7 @@ jmW jmW wMh wMh -fEl +nhS upK hBq hBq @@ -36794,14 +36394,14 @@ kLk sax sax sax -bcV -oFl +tka +csa kAw kAw kAw hrk -bcV -tFd +tka +daO hrk hrk kAw @@ -36956,15 +36556,15 @@ qcn xpd sax sax -rBk -vAU +gSa +rQW kAw kAw kAw -tad -tlr -tuz -tFy +pIC +cXE +rvk +kLR hrk kAw nZA @@ -37124,8 +36724,8 @@ kAw kAw kAw acl -rBk -vAU +gSa +rQW hrk kAw nZA @@ -37601,7 +37201,7 @@ hbY hbY hbY hbY -ryN +aRl hrk kAw qgP @@ -37762,7 +37362,7 @@ hbY hbY hbY aJt -fna +umI daY kAw vPr @@ -38845,8 +38445,8 @@ vYm ntc eni toD -xui -qNB +bUm +tMd toD mMK kOV @@ -39007,8 +38607,8 @@ vYm ntc eni toD -vPK -irT +tqE +kBJ toD kOV kOV @@ -39800,8 +39400,8 @@ gjY gjY bJF tFk -aDa -jRa +hwN +nRq rBH hYT ejt @@ -41374,7 +40974,7 @@ dkC axz axz axz -ahh +bJd fyC aEY aEY @@ -41519,7 +41119,7 @@ puZ (106,1,1) = {" aad axz -jTl +ojj dEH dHg eKY @@ -41536,7 +41136,7 @@ jqY qrz qxv tSt -ahh +bJd aEY aEY aEY @@ -41698,7 +41298,7 @@ jqY qrz nfe lWr -ahh +bJd aEY aEY aEY @@ -41860,14 +41460,14 @@ jqY qrz qrz tSt -tLP -lVF -hpn -lVF -lVF -lVF -lVF -lVF +iSm +svd +xAU +svd +svd +svd +svd +svd aad lKJ jqY @@ -42658,7 +42258,7 @@ beQ beQ ffj axz -naG +jrU aAg pTG jqY @@ -43470,7 +43070,7 @@ bfc qrz anE anE -sNv +oLp jqY jqY ndR @@ -45193,7 +44793,7 @@ sFu tnu kPZ gTe -qFN +omy baW tnu ofw @@ -45389,10 +44989,10 @@ sGR cXk sod sod -tPJ -ulD -ulZ -ulZ +njf +fnC +mFU +mFU lgN puZ puZ @@ -45590,8 +45190,8 @@ xha bBB axz wTP -eOF -eOF +cVk +cVk xha xha vBg @@ -45752,7 +45352,7 @@ xha csu axz mru -kGH +mgQ hTk nCx gPN @@ -46416,8 +46016,8 @@ axz ndR jqY rAF -nOi -rnB +xBj +pzU sYu sYu eOM @@ -46510,8 +46110,8 @@ tHd kop kyD tHd -veu -oZq +qes +iiB ijm cIV cIV @@ -46579,7 +46179,7 @@ jqY jqY qrz vph -tDr +rXg sYu sYu sYu @@ -46672,14 +46272,14 @@ kop tHd kyD tHd -qEQ +tUt jrg bJj gpz bJj jrg -qCW -ijE +gsV +cyB jrg jrg aaZ @@ -46740,8 +46340,8 @@ axz ndR jqY pEs -cgN -gkG +bDg +hgF sYu sYu sYu @@ -46834,14 +46434,14 @@ xgc boW boW boW -dro +rWf jrg osE osE bJj bJj -qdh -fmo +kiI +dno jrg jrg bJj @@ -46996,8 +46596,8 @@ boW boW boW xgc -nxt -prO +dui +bdx bJj osE gpz @@ -47226,8 +46826,8 @@ axz ndR jqY pEs -uKm -rnB +fHX +pzU sYu sYu sYu @@ -47389,7 +46989,7 @@ jqY jqY qrz vph -tDr +rXg lwo sYu sYu @@ -47421,7 +47021,7 @@ arX arX tVZ ktd -oSj +pPR ver ver ver @@ -47550,8 +47150,8 @@ axz ndR jqY rAF -gCW -gkG +xtT +hgF lwo sYu lwo @@ -47654,8 +47254,8 @@ bJj bJj bJj srJ -qCW -nyS +gsV +nOe osE bJj gpz @@ -47810,15 +47410,15 @@ fbS qfR jrg jrg -qCW -ijE +gsV +cyB bJj bJj bJj -nvu -mCG -pRM -gQK +eTU +mIu +fsv +iUm osE bJj gpz @@ -47972,14 +47572,14 @@ sEC jrg jrg jrg -qdh -fmo +kiI +dno bJj bJj bJj osE -qdh -fmo +kiI +dno osE osE bJj @@ -48913,8 +48513,8 @@ bFg ukp qiy sQX -cXU -cid +oSv +nav pLf pLf asz @@ -49075,8 +48675,8 @@ peb ukp qiy wvd -nOK -xLy +asp +ouJ pLf pLf asz @@ -49231,7 +48831,7 @@ bsV bsV gJo gJo -abg +dhM aMl rYj pLf @@ -49393,7 +48993,7 @@ bsV gJo qbF gJo -abg +dhM gJo rYj asz @@ -49547,7 +49147,7 @@ bFg cZk cZk xvA -cgR +kSv gJo qbF qbF @@ -49709,7 +49309,7 @@ bFg fUZ cZk cZk -tBB +oar gJo bFg qdH @@ -49871,7 +49471,7 @@ bFg cZk xvA xvA -tBB +oar gJo bFg qdH @@ -54086,8 +53686,8 @@ iMb fQX mIL ndK -dij -uuC +qDV +vMK mIL mIL mIL @@ -54248,8 +53848,8 @@ iMb mIL mIL ndK -cQL -feQ +uWH +fPh oQl gaz mIL @@ -54410,8 +54010,8 @@ iMb mIL mIL ndK -dOn -xdo +xjg +omI nKD mIL mIL @@ -55042,11 +54642,11 @@ oQl oQl jAL iMb -foc -jjX -jjX -jjX -vip +faW +hkw +hkw +hkw +bQn iMb pqj pqj @@ -55204,11 +54804,11 @@ iMb iMb iMb iMb -nqK +bjM vRW cwU wQr -pAx +bnz pqj pqj iMb @@ -55366,7 +54966,7 @@ iMb iMb jAL jAL -nqK +bjM kxN ttN mgt @@ -55528,7 +55128,7 @@ jAL jAL jAL jAL -nqK +bjM kxN jbK mgt @@ -55690,11 +55290,11 @@ iMb jAL jAL iMb -tDb +sBn qXx laL cWG -gNJ +tyj pqj iMb iMb @@ -55852,11 +55452,11 @@ iMb iMb iMb aiz -mRa -lCB -lCB -lCB -wVJ +gUU +xQs +xQs +xQs +mRZ iMb iMb iMb @@ -55980,8 +55580,8 @@ agh pfg pfg kiS -owB -rnB +jdS +pzU sYu sYu sYu @@ -56143,7 +55743,7 @@ agh agh agh iWg -tDr +rXg sYu sYu sYu @@ -56304,8 +55904,8 @@ agh agh agh agh -uQy -gkG +skR +hgF sYu sYu sYu @@ -56628,8 +56228,8 @@ agh agh agh agh -hEa -rnB +xzJ +pzU sYu sYu eOM @@ -56791,7 +56391,7 @@ agh agh agh iWg -tDr +rXg sYu lwo lwo @@ -58337,7 +57937,7 @@ iQe nlt chU kyu -mpE +oaG rZt chU rZt @@ -58770,13 +58370,13 @@ puZ puZ puZ puZ -abf -qkF -qkF -qkF -qkF -qkF -jvz +hjs +xfy +xfy +xfy +xfy +xfy +dws puZ puZ puZ @@ -58932,13 +58532,13 @@ puZ puZ puZ puZ -mRo -abf -qkF -qkF -qkF -eGq -hbo +kRL +hjs +xfy +xfy +xfy +rVZ +wtf puZ puZ puZ @@ -59094,13 +58694,13 @@ puZ puZ puZ puZ -mRo -mRo -abi -abl -abq -hbo -hbo +kRL +kRL +dfh +dti +pEc +wtf +wtf puZ puZ puZ @@ -59256,13 +58856,13 @@ puZ puZ puZ puZ -mRo -mRo -abj +kRL +kRL +dVT abm -abr -hbo -hbo +hWo +wtf +wtf puZ puZ puZ @@ -59418,13 +59018,13 @@ puZ puZ puZ puZ -mRo -mRo -abk -abo -abs -hbo -hbo +kRL +kRL +oux +hsu +iNH +wtf +wtf puZ puZ puZ @@ -59580,13 +59180,13 @@ puZ puZ puZ puZ -mRo -jPo -oLu -oLu -oLu -jIP -hbo +kRL +wmS +mND +mND +mND +fup +wtf puZ puZ puZ @@ -59742,13 +59342,13 @@ puZ puZ puZ puZ -jPo -oLu -oLu -oLu -oLu -oLu -jIP +wmS +mND +mND +mND +mND +mND +fup puZ puZ puZ diff --git a/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm b/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm index 6f9f55d9467d..a52bd9780983 100644 --- a/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm +++ b/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm @@ -28,12 +28,8 @@ /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/left_spiders) "dS" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, /turf/open/gm/river, /area/shiva/interior/caves/left_spiders) "fd" = ( @@ -88,10 +84,8 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/left_spiders) "kW" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, /turf/open/gm/river, /area/shiva/interior/caves/left_spiders) "lz" = ( @@ -268,12 +262,8 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/left_spiders) "Kx" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, /turf/open/gm/river, /area/shiva/interior/caves/left_spiders) "MY" = ( @@ -341,10 +331,8 @@ /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/left_spiders) "VT" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, /obj/structure/prop/ice_colony/dense/planter_box/hydro{ density = 0; pixel_x = -16; diff --git a/maps/map_files/Kutjevo/Kutjevo.dmm b/maps/map_files/Kutjevo/Kutjevo.dmm index dd111dd4465b..42197ba4d425 100644 --- a/maps/map_files/Kutjevo/Kutjevo.dmm +++ b/maps/map_files/Kutjevo/Kutjevo.dmm @@ -5,12 +5,12 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"aaN" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland) +"aax" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "aaT" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -37,6 +37,10 @@ /obj/structure/inflatable/popped, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) +"abZ" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/foremans_office) "acn" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" @@ -69,13 +73,15 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"afS" = ( -/obj/structure/monorail, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) +"aeE" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_N_East) +"agl" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/largecrate/random, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "agG" = ( /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/foremans_office) @@ -99,6 +105,18 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"ahE" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"aiJ" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "akH" = ( /obj/item/weapon/gun/rifle/mar40/carbine, /turf/open/floor/kutjevo/multi_tiles, @@ -123,6 +141,10 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"alG" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/interior/colony_central) "alL" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -133,12 +155,13 @@ /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"amu" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"amB" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 }, -/turf/closed/wall/kutjevo/colony/reinforced, -/area/kutjevo/interior/complex/med/operating) +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_bridge) "amL" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibleg" @@ -164,13 +187,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) -"anE" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/item/stack/sandbags/large_stack, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) "anF" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -30 @@ -183,27 +199,9 @@ "aog" = ( /turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/exterior/runoff_dunes) -"aoh" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_N_East) "aor" = ( /turf/open/floor/kutjevo/colors/orange/edge/northeast, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"aoJ" = ( -/obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_ew_full_cap_butt" - }, -/obj/structure/platform/stair_cut/alt{ - icon_state = "kutjevo_platform_sm_stair_alt" - }, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/colony_South/power2) "apr" = ( /obj/structure/bed/chair, /turf/open/auto_turf/sand/layer1, @@ -211,20 +209,14 @@ "apD" = ( /turf/open/gm/river/desert/shallow_corner/east, /area/kutjevo/exterior/lz_river) +"aqc" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland/south) "aqC" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/operating) -"aqI" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - name = "\improper Kutjevo Dam Storm Shutters" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached, -/area/kutjevo/interior/power) "aqO" = ( /obj/structure/machinery/light{ dir = 8 @@ -235,13 +227,6 @@ /obj/item/prop/alien/hugger, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_pad) -"arr" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "arA" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer1, @@ -283,16 +268,6 @@ /obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) -"atn" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_ew_half_cap" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_dunes) "atz" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -303,6 +278,14 @@ /obj/item/stack/rods, /turf/open/floor/kutjevo/colors/purple/edge/west, /area/kutjevo/interior/construction) +"atL" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/river/desert/shallow, +/area/kutjevo/interior/construction) "atQ" = ( /obj/item/tank/emergency_oxygen/engi, /turf/open/floor/kutjevo/colors/orange, @@ -311,16 +294,6 @@ /obj/structure/machinery/light, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/colony_South/power2) -"aul" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/colony_north) -"auz" = ( -/obj/effect/sentry_landmark/lz_1/top_right, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_dunes) "avf" = ( /obj/structure/machinery/light{ dir = 4 @@ -346,6 +319,10 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) +"awH" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/operating) "awJ" = ( /obj/structure/bed/chair, /turf/open/floor/kutjevo/tan/grey_edge/east, @@ -371,20 +348,27 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) +"ayc" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/desert/desert_shore/desert_shore1, +/area/kutjevo/exterior/runoff_river) "ayB" = ( /obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med/cells) +"ayT" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/cells) "azb" = ( /obj/structure/machinery/chem_dispenser/soda/beer{ icon_state = "dispenser" }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/construction) -"aze" = ( -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon7_0, -/area/kutjevo/interior/construction) "azo" = ( /obj/structure/largecrate/random/case/small, /obj/structure/sign/nosmoking_1{ @@ -414,6 +398,11 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan/inner_corner, /area/kutjevo/interior/complex/med/auto_doc) +"aCd" = ( +/obj/structure/platform_decoration/stone/kutjevo, +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "aCn" = ( /obj/structure/sign/safety/hazard{ pixel_x = -32 @@ -428,21 +417,32 @@ "aCD" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/triage) +"aCY" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) +"aDW" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/scrubland/south) +"aEl" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) +"aEC" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) "aEU" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"aEZ" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation/icon0_8, -/area/kutjevo/interior/construction) "aFc" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/barricade/handrail/kutjevo{ @@ -475,6 +475,17 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) +"aGR" = ( +/obj/structure/bed/sofa/vert/grey/bot{ + pixel_y = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/floor/mech_bay_recharge_floor, +/area/kutjevo/interior/power) "aHb" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -488,12 +499,31 @@ "aHl" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) +"aHq" = ( +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) +"aHB" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/complex_border/med_rec) "aHC" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) +"aHI" = ( +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_dunes) "aHW" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/power) @@ -519,15 +549,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) -"aJU" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "aKg" = ( /obj/structure/tunnel, /turf/open/auto_turf/sand/layer0, @@ -562,19 +583,23 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"aOj" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/scrubland) +"aOM" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/colony_central) +"aPi" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/river/desert/shallow, +/area/kutjevo/exterior/runoff_river) "aPA" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"aQd" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "aQw" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer0, @@ -589,14 +614,6 @@ "aRu" = ( /turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/exterior/lz_dunes) -"aRB" = ( -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/west, -/area/kutjevo/interior/colony_South/power2) "aRS" = ( /obj/structure/bed{ can_buckle = 0; @@ -608,6 +625,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) +"aRZ" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/west, +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_central) "aSu" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer1, @@ -628,6 +651,11 @@ }, /turf/open/gm/dirt2, /area/kutjevo/exterior/complex_border/med_park) +"aVR" = ( +/obj/structure/platform/stone/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/oob) "aWt" = ( /turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/lz_river) @@ -652,6 +680,13 @@ /obj/item/stack/rods, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"aZD" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/runoff_dunes) "baC" = ( /obj/effect/spawner/random/toolbox{ pixel_x = -2; @@ -659,21 +694,6 @@ }, /turf/open/gm/dirtgrassborder2/wall3, /area/kutjevo/exterior/complex_border/med_park) -"baL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "bbc" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, @@ -686,25 +706,10 @@ "bbW" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/foremans_office) -"bcb" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) "bcl" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/botany) -"bcG" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/coagulation/icon8_8, -/area/kutjevo/interior/construction) "bcO" = ( /obj/item/stack/rods, /turf/open/floor/plating/kutjevo, @@ -726,12 +731,10 @@ /obj/item/card/id/silver/cl, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"beo" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/colony_South/power2) +"bel" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/closed/wall/kutjevo/colony/reinforced, +/area/kutjevo/interior/complex/med/operating) "bex" = ( /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/med/auto_doc) @@ -749,15 +752,23 @@ "bfg" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/power/comms) -"bhg" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 +"bgN" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/oob) +"bhC" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_central) +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/colony_north) "bhH" = ( /obj/structure/machinery/chem_master, /turf/open/floor/kutjevo/colors/red/tile, @@ -805,13 +816,6 @@ "bkR" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"blY" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/cells) "bmk" = ( /obj/structure/machinery/light{ dir = 1 @@ -833,12 +837,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) -"bng" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/operating) "bny" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/sand/layer1, @@ -846,16 +844,6 @@ "bnF" = ( /turf/open/desert/desert_shore/shore_corner2/east, /area/kutjevo/exterior/runoff_bridge) -"bnK" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) "bnQ" = ( /turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/complex/botany) @@ -865,12 +853,31 @@ }, /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/power) +"boi" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) +"bom" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/west, +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/platform/stone/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/colony_central) "boR" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) "bpj" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) +"bpC" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "bpT" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -909,15 +916,6 @@ /obj/structure/tunnel, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"bsw" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/colony_South/power2) "bsP" = ( /obj/item/device/flash, /turf/open/floor/kutjevo/tan, @@ -936,6 +934,14 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"buJ" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland/south) +"bvO" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "bvT" = ( /obj/structure/machinery/light{ dir = 1 @@ -946,13 +952,10 @@ /obj/structure/prop/dam/truck/cargo, /turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/Northwest_Colony) -"bwT" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_edge/west, -/area/kutjevo/exterior/runoff_river) +"bxD" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) "byl" = ( /obj/structure/blocker/invisible_wall, /obj/structure/window/framed/kutjevo/reinforced/hull, @@ -1005,6 +1008,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) +"bCr" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/runoff_dunes) "bDg" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/kutjevo/multi_tiles/southwest, @@ -1024,6 +1031,10 @@ /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) +"bDA" = ( +/obj/structure/platform/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/stonyfields) "bDG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -1054,6 +1065,14 @@ "bEt" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_pad) +"bEu" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/kutjevo, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power/comms) "bEH" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_north) @@ -1061,25 +1080,6 @@ /obj/structure/machinery/recharge_station, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"bFh" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_central) -"bFz" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/interior/oob) "bGg" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" @@ -1101,6 +1101,12 @@ "bGD" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/lz_dunes) +"bGS" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "bGV" = ( /obj/structure/bed/chair{ dir = 8 @@ -1118,6 +1124,14 @@ "bHA" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power/comms) +"bIq" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_half_cap" + }, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) "bIL" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/auto_turf/sand/layer1, @@ -1128,12 +1142,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"bJc" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/colony_central) "bJe" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/sand/layer0, @@ -1161,12 +1169,6 @@ "bKH" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"bKJ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/complex_border/med_rec) "bKO" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer2, @@ -1181,10 +1183,18 @@ }, /turf/open/floor/mech_bay_recharge_floor, /area/kutjevo/interior/colony_central/mine_elevator) +"bLW" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/colony_South/power2) "bMu" = ( /obj/structure/bed/sofa/south/grey, /turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) +"bNk" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "bNG" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer0, @@ -1205,11 +1215,6 @@ /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, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/foremans_office) "bPV" = ( /obj/item/tool/wirecutters/clippers, /turf/open/floor/kutjevo/tan, @@ -1228,12 +1233,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) -"bQY" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) +"bQJ" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/interior/oob) "bRl" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ @@ -1241,6 +1246,10 @@ }, /turf/open/floor/kutjevo/colors/orange/edge/east, /area/kutjevo/interior/foremans_office) +"bRy" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "bRF" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand/layer0, @@ -1251,16 +1260,6 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) -"bSV" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/runoff_dunes) -"bTa" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) "bTt" = ( /obj/structure/bed/chair{ dir = 4 @@ -1310,6 +1309,11 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) +"bWz" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "bWA" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" @@ -1334,10 +1338,24 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany) -"caj" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_dunes) +"bXA" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/gm/river/desert/deep/covered, +/area/kutjevo/interior/colony_central) +"bZm" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) +"bZM" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/colony_South/power2) "cal" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/kutjevo/colors/purple/edge/west, @@ -1357,13 +1375,15 @@ "cbg" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) -"cbv" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "cbz" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_north) +"cbG" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/platform/metal/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/runoff_dunes) "ccs" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 @@ -1373,6 +1393,11 @@ "ccu" = ( /turf/open/floor/kutjevo/tan/grey_inner_edge/west, /area/kutjevo/interior/complex/med) +"cdz" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "cdE" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -1382,12 +1407,9 @@ }, /turf/open/floor/kutjevo/colors/purple/inner_corner/east, /area/kutjevo/interior/construction) -"cek" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/runoff_dunes) +"cen" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/scrubland/south) "cey" = ( /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/kutjevo/tan, @@ -1402,6 +1424,10 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"cgp" = ( +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/scrubland) "cgE" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer0, @@ -1424,16 +1450,19 @@ /obj/item/prop/alien/hugger, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"ciD" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) +"ciB" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power) "ciR" = ( /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"cjA" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/open/mars_cave/mars_cave_7, +/area/kutjevo/exterior/scrubland) "cjC" = ( /obj/structure/bed/chair{ dir = 4 @@ -1443,12 +1472,6 @@ "cjO" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/med) -"ckC" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/mars_cave/mars_cave_10, -/area/kutjevo/exterior/scrubland) "ckF" = ( /obj/structure/blocker/invisible_wall, /turf/open/desert/desert_shore/desert_shore1/east, @@ -1456,6 +1479,15 @@ "clo" = ( /turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/runoff_dunes) +"clp" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "cmG" = ( /turf/open/floor/kutjevo/colors/cyan/edge/east, /area/kutjevo/interior/complex/med/triage) @@ -1469,6 +1501,10 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) +"coa" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) "cou" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/kutjevo/multi_tiles, @@ -1515,6 +1551,17 @@ }, /turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany) +"cpq" = ( +/obj/structure/bed/sofa/vert/grey/bot{ + pixel_y = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/floor/mech_bay_recharge_floor, +/area/kutjevo/interior/power) "cpD" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" @@ -1535,6 +1582,12 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/tan/multi_tiles/east, /area/kutjevo/interior/complex/botany/east) +"cql" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "cqX" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -1557,6 +1610,12 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) +"csx" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "csE" = ( /obj/structure/girder, /turf/open/auto_turf/sand/layer0, @@ -1581,18 +1640,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"ctS" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/complex_border/med_rec) "ctV" = ( /obj/structure/barricade/handrail/kutjevo{ dir = 4 @@ -1604,16 +1651,10 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/oob) -"cun" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/lz_river) -"cuF" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) +"cuG" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland/south) "cvj" = ( /obj/structure/bed/chair{ dir = 1 @@ -1629,6 +1670,10 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/Northwest_Colony) +"cvU" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "cvV" = ( /obj/item/weapon/gun/rifle/mar40, /turf/open/floor/kutjevo/multi_tiles, @@ -1668,12 +1713,6 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/kutjevo/colors/purple/inner_corner/north, /area/kutjevo/interior/construction) -"cBi" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/scrubland/south) "cBq" = ( /obj/structure/flora/bush/ausbushes/ausbush{ icon_state = "pointybush_2"; @@ -1722,13 +1761,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"cEo" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/bed/roller, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) "cEq" = ( /turf/open/gm/dirt2, /area/kutjevo/exterior/complex_border/med_park) @@ -1740,19 +1772,14 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/botany) +"cFp" = ( +/obj/effect/sentry_landmark/lz_1/bottom_right, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_dunes) "cFJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany/east_tech) -"cFT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "cFY" = ( /obj/item/stool, /obj/item/frame/firstaid_arm_assembly, @@ -1768,14 +1795,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"cGz" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/complex_border/med_park) "cHb" = ( /obj/structure/filtration/machine_32x64/indestructible{ bound_height = 32; @@ -1783,44 +1802,25 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"cIE" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/colors, -/area/kutjevo/interior/power/comms) -"cIZ" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_ew_full_cap_butt" - }, -/obj/structure/platform/stair_cut{ - icon_state = "kutjevo_platform_sm_stair" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/purple, -/area/kutjevo/interior/complex/med/locks) +"cIj" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_river) "cJn" = ( /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) +"cJt" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power) +"cJP" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_central) "cKi" = ( /turf/open/gm/river/desert/shallow_edge/west, /area/kutjevo/exterior/runoff_dunes) -"cKH" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_dunes) -"cKI" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/prop/dam/crane/cargo{ - layer = 3.3 - }, -/turf/open/asphalt/cement_sunbleached, -/area/kutjevo/interior/power) "cKY" = ( /obj/structure/prop/brazier/frame/full/campfire, /obj/item/tool/match/paper{ @@ -1843,25 +1843,10 @@ "cLQ" = ( /turf/open/mars_cave/mars_cave_7, /area/kutjevo/exterior/lz_dunes) -"cMc" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) "cMv" = ( /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, /area/kutjevo/interior/complex/med/operating) -"cMC" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_central) "cMI" = ( /obj/structure/barricade/handrail/kutjevo{ dir = 4 @@ -1870,12 +1855,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) -"cMJ" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/runoff_river) "cNE" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "distribution" @@ -1888,6 +1867,10 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"cOk" = ( +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "cOt" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_dunes) @@ -1918,14 +1901,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"cQt" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "cQz" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/green/tile, @@ -1941,28 +1916,31 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"cRw" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + name = "\improper Kutjevo Dam Storm Shutters" + }, +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/interior/power) +"cRy" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/lz_river) "cRI" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/runoff_river) -"cRO" = ( -/obj/structure/monorail, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/colony_central/mine_elevator) "cSb" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibhead" }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"cSz" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/foremans_office) +"cSj" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_bridge) "cSJ" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -1977,16 +1955,6 @@ "cTz" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"cTG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "cTW" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -2012,6 +1980,10 @@ "cUm" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"cUo" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "cUq" = ( /obj/structure/closet/firecloset/full{ desc = "It's a storage unit for fire-fighting supplies. The sequence -4-- is carved into the corner." @@ -2019,12 +1991,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"cUI" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) "cVD" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, @@ -2055,12 +2021,6 @@ "cWV" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/lz_dunes) -"cWX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/cells) "cXA" = ( /obj/structure/flora/bush/ausbushes/ppflowers{ icon_state = "lavendergrass_1" @@ -2146,10 +2106,10 @@ "dcC" = ( /turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/spring) -"ddi" = ( -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) +"dcK" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/cells) "ddk" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -2161,26 +2121,17 @@ /obj/structure/flora/grass/desert/lightgrass_11, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_river) -"ddx" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) -"ddH" = ( -/obj/structure/platform/kutjevo{ - dir = 1 +"ddZ" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) -"ddU" = ( -/obj/structure/platform/kutjevo, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland/south) +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "deo" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -2196,6 +2147,9 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"deM" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/scrubland/south) "dfa" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/lz_river) @@ -2203,6 +2157,11 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) +"dfC" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/oob) "dfY" = ( /turf/open/gm/river/desert/shallow_edge/southeast, /area/kutjevo/exterior/lz_river) @@ -2220,10 +2179,11 @@ "dgx" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/med/locks) -"dhm" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) +"dgB" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/barricade/wooden, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/runoff_bridge) "dht" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/Northwest_Colony) @@ -2255,47 +2215,41 @@ }, /turf/open/gm/dirtgrassborder2, /area/kutjevo/exterior/complex_border/med_park) +"diY" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) "dkE" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) "dkW" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"dkY" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/colony_north) +"dlR" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/colors, +/area/kutjevo/interior/power/comms) "dlT" = ( /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) -"dml" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +"dmp" = ( +/turf/open/gm/river/desert/shallow, +/area/kutjevo/exterior/scrubland/south) "dmy" = ( /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/lz_pad) "dnd" = ( /turf/open/gm/river/desert/shallow_edge/west, /area/kutjevo/exterior/spring) -"dnl" = ( -/obj/structure/platform/kutjevo/rock, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland) "dnF" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany/east_tech) -"dnM" = ( -/obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_ew_full_cap_butt" - }, -/obj/structure/platform/stair_cut/alt{ - icon_state = "kutjevo_platform_sm_stair_alt" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/purple, -/area/kutjevo/interior/complex/med/locks) "dnR" = ( /obj/structure/machinery/light{ dir = 1 @@ -2305,12 +2259,6 @@ "dob" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/lz_river) -"dox" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/northwest, -/area/kutjevo/exterior/runoff_river) "dpt" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 @@ -2321,36 +2269,32 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/kutjevo/tan, /area/kutjevo/exterior/lz_pad) +"dqa" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_dunes) "dql" = ( /obj/structure/prop/dam/wide_boulder/boulder1, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"dqp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/southwest, -/area/kutjevo/exterior/runoff_bridge) -"dqH" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/platform/kutjevo/smooth, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "dqK" = ( /obj/structure/flora/grass/desert/lightgrass_1, /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) +"drg" = ( +/obj/structure/platform/stone/kutjevo, +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_N_East) +"drR" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/colony_South/power2) "dsi" = ( /turf/open/floor/coagulation/icon7_0, /area/kutjevo/exterior/scrubland) -"dsp" = ( -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/scrubland/south) "dsN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -2368,16 +2312,6 @@ "dte" = ( /turf/open/gm/river/desert/shallow_edge/west, /area/kutjevo/exterior/runoff_river) -"dtM" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "dtV" = ( /obj/structure/machinery/blackbox_recorder, /obj/item/prop/almayer/flight_recorder/colony{ @@ -2386,10 +2320,10 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"dut" = ( -/obj/effect/sentry_landmark/lz_1/top_left, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_dunes) +"duf" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "duu" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ name = "\improper South Power Shutters" @@ -2449,16 +2383,14 @@ }, /turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/runoff_river) +"dyA" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland) "dyB" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) -"dyU" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_corner/east, -/area/kutjevo/exterior/lz_river) "dyW" = ( /turf/open/desert/desert_shore/shore_edge1/west, /area/kutjevo/exterior/lz_pad) @@ -2466,16 +2398,6 @@ /obj/item/storage/briefcase, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"dzm" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/complex_border/med_park) "dzD" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -2520,18 +2442,6 @@ /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) -"dCG" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/flora/bush/ausbushes/reedbush, -/obj/structure/flora/bush/ausbushes/grassybush, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow, -/area/kutjevo/interior/construction) "dCP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/kutjevo/tan/alt_edge, @@ -2552,15 +2462,36 @@ "dDL" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/lz_pad) +"dDT" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/platform_decoration/stone/kutjevo/north, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/oob) "dEI" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) +"dEO" = ( +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/stonyfields) "dFc" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/Northwest_Colony) +"dFh" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/purple, +/area/kutjevo/interior/complex/med/locks) "dFk" = ( /turf/open/mars_cave/mars_cave_7, /area/kutjevo/exterior/scrubland) @@ -2568,12 +2499,10 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"dFV" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, +"dGb" = ( +/obj/structure/platform/stone/kutjevo/north, /turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) +/area/kutjevo/exterior/lz_dunes) "dGi" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -2584,13 +2513,6 @@ /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/operating) -"dGy" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/runoff_river) "dHj" = ( /obj/structure/machinery/door_control/brbutton/alt{ health = null; @@ -2630,13 +2552,16 @@ /obj/effect/spawner/random/tool, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"dJh" = ( +/obj/item/tool/wrench, +/obj/item/prop/alien/hugger, +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/Northwest_Colony) "dJk" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"dJs" = ( -/turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/scrubland/south) "dJT" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -2652,12 +2577,6 @@ "dKu" = ( /turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/runoff_river) -"dKz" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation/icon0_5, -/area/kutjevo/interior/colony_north) "dKO" = ( /obj/structure/bed/chair{ dir = 4 @@ -2680,17 +2599,6 @@ "dNc" = ( /turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/runoff_river) -"dNg" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) -"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" = ( /turf/open/gm/river/desert/shallow_corner/north, /area/kutjevo/exterior/spring) @@ -2698,18 +2606,21 @@ /obj/structure/barricade/deployable, /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) +"dOS" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_dunes) "dOU" = ( /obj/structure/flora/bush/ausbushes/reedbush{ pixel_y = 14 }, /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/lz_pad) -"dQq" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) +"dQr" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "dQs" = ( /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/complex/med/locks) @@ -2724,10 +2635,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"dQY" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/power/comms) "dRj" = ( /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/exterior/runoff_bridge) @@ -2768,29 +2675,14 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/cyan/inner_corner, /area/kutjevo/interior/complex/med/operating) -"dTM" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/runoff_river) "dUc" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/spring) -"dUy" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "dUE" = ( /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"dUP" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/largecrate/random, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/colony_South/power2) "dUQ" = ( /obj/item/stack/sandbags/large_stack, /turf/open/auto_turf/sand/layer1, @@ -2808,6 +2700,10 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"dWj" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland/south) "dWB" = ( /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, @@ -2846,25 +2742,23 @@ /obj/structure/girder/displaced, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) +"dXT" = ( +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) +"dYi" = ( +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/platform/stone/kutjevo, +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) +"dYs" = ( +/obj/structure/platform/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_dunes) "dYB" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"eaB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/colony_South/power2) -"eaR" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/runoff_dunes) "eaT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer1, @@ -2875,32 +2769,10 @@ "ebB" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"ebP" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/interior/oob) -"ebZ" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, +"ecJ" = ( +/obj/structure/platform_decoration/stone/kutjevo/north, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_dunes) -"ecA" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler/walk_past{ - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/auto_doc) +/area/kutjevo/exterior/scrubland) "ecO" = ( /obj/structure/machinery/light, /turf/open/gm/river/desert/deep/toxic, @@ -2911,19 +2783,18 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"edn" = ( -/obj/structure/platform/kutjevo, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/foremans_office) +"edt" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/colony_central) +"edM" = ( +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "eem" = ( /turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/runoff_bridge) -"eeP" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/closed/wall/kutjevo/colony, -/area/kutjevo/interior/complex/botany) "efr" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/tan/multi_tiles/southeast, @@ -2940,6 +2811,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) +"efU" = ( +/obj/structure/platform_decoration/stone/kutjevo, +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/scrubland) "efW" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c200, @@ -2951,21 +2827,10 @@ }, /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) -"egu" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist/kutjevo/burst, -/turf/open/floor/kutjevo/colors/cyan/edge/west, -/area/kutjevo/interior/complex/med/operating) -"egx" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/auto_doc) +"egJ" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/construction) "egL" = ( /obj/structure/bed, /obj/structure/window/reinforced{ @@ -2994,6 +2859,11 @@ "egZ" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/botany) +"ehq" = ( +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_central) "ehC" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/kutjevo/colors/cyan, @@ -3009,6 +2879,9 @@ }, /turf/open/floor/kutjevo/colors/purple/inner_corner, /area/kutjevo/interior/construction) +"eiG" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power/comms) "eiX" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 8 @@ -3065,16 +2938,10 @@ /obj/item/weapon/gun/revolver/cmb, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"emU" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) +"emq" = ( +/obj/effect/sentry_landmark/lz_1/top_left, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_dunes) "enK" = ( /obj/structure/window{ dir = 1 @@ -3083,32 +2950,10 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"eoc" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_sn_full_cap"; - pixel_y = 16 - }, -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/colony_South/power2) "eoA" = ( /obj/structure/machinery/chem_dispenser/medbay, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) -"epb" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.05 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) "epd" = ( /obj/item/reagent_container/food/drinks/cans/thirteenloko, /turf/open/auto_turf/sand/layer1, @@ -3129,6 +2974,10 @@ "epR" = ( /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"epU" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/floor/coagulation/icon7_0, +/area/kutjevo/interior/colony_north) "epV" = ( /obj/structure/machinery/light{ dir = 4 @@ -3149,22 +2998,6 @@ /obj/item/defenses/handheld/tesla_coil, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"erv" = ( -/obj/structure/platform/kutjevo, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_central) -"erE" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/closed/wall/kutjevo/colony, -/area/kutjevo/exterior/runoff_bridge) -"erH" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/stonyfields) "erX" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer0, @@ -3212,6 +3045,11 @@ /obj/item/prop/helmetgarb/spent_buckshot, /turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"euz" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/floor/coagulation/icon0_8, +/area/kutjevo/interior/construction) "euI" = ( /obj/item/clipboard, /turf/open/floor/kutjevo/multi_tiles/southwest, @@ -3245,6 +3083,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) +"ewX" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/gm/river/desert/shallow, +/area/kutjevo/exterior/runoff_river) "exj" = ( /obj/structure/flora/bush/ausbushes/reedbush, /obj/structure/flora/bush/ausbushes/reedbush{ @@ -3253,10 +3095,10 @@ }, /turf/open/desert/desert_shore/shore_edge1/west, /area/kutjevo/exterior/runoff_bridge) -"exu" = ( -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/floor/kutjevo/tan/alt_edge/north, -/area/kutjevo/exterior/lz_pad) +"ext" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) "exD" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/bed{ @@ -3280,12 +3122,9 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"eyy" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/colony_north) +"eyP" = ( +/turf/closed/wall/kutjevo/colony/reinforced, +/area/kutjevo/exterior/scrubland/south) "eyU" = ( /turf/open/gm/river/desert/shallow_corner/north, /area/kutjevo/exterior/lz_river) @@ -3307,6 +3146,10 @@ /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power/comms) +"eAA" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/exterior/lz_pad) "eAC" = ( /obj/structure/closet/secure_closet/medical2, /obj/structure/machinery/light{ @@ -3319,16 +3162,6 @@ /obj/item/ammo_magazine/rifle/mar40/extended, /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) -"eAS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "kutjevo_medlock_pan"; - name = "\improper Medical North Shutters" - }, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/interior/complex/med/auto_doc) "eBH" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, @@ -3337,6 +3170,10 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/lz_pad) +"eBY" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/runoff_river) "eCB" = ( /obj/structure/machinery/vending/cigarette/colony, /obj/structure/machinery/light{ @@ -3358,6 +3195,10 @@ /obj/item/paper/crumpled/bloody, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) +"eCI" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/interior/colony_central) "eCY" = ( /obj/structure/machinery/cryo_cell, /turf/open/floor/kutjevo/grey/plate, @@ -3366,21 +3207,11 @@ /obj/structure/blocker/invisible_wall, /turf/open/desert/desert_shore/shore_edge1/east, /area/kutjevo/interior/oob/dev_room) -"eDS" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland/south) "eEb" = ( /obj/structure/flora/grass/tallgrass/desert, /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) -"eFf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/colony_South/power2) "eFy" = ( /turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/lz_pad) @@ -3389,12 +3220,6 @@ /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 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/colony_South/power2) "eGa" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ @@ -3403,6 +3228,14 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) +"eGt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 9 + }, +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/floor/kutjevo/colors/red/tile, +/area/kutjevo/interior/complex/med/operating) "eGL" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/auto_turf/sand/layer1, @@ -3421,12 +3254,6 @@ /obj/item/stack/rods, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"eJg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/complex/botany) "eJi" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep/toxic, @@ -3445,14 +3272,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"eLT" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/runoff_dunes) "eMC" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/complex_border/botany_medical_cave) @@ -3471,26 +3290,9 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"eNK" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_sn_full_cap"; - pixel_y = 16 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "eOc" = ( /turf/open/floor/kutjevo/colors/orange/edge/northwest, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"eOt" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "eOy" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, @@ -3508,25 +3310,14 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"ePn" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "disinfection"; - layer = 3.5 - }, -/obj/structure/platform/kutjevo{ - dir = 8 +"ePr" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_full_cap_butt" }, -/obj/structure/platform/kutjevo, -/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, /turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/runoff_dunes) -"ePq" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon8_0, -/area/kutjevo/interior/colony_north) +/area/kutjevo/exterior/construction) "ePx" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) @@ -3564,15 +3355,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_river) -"eRN" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) "eRU" = ( /obj/structure/machinery/body_scanconsole, /turf/open/floor/kutjevo/colors/cyan, @@ -3612,9 +3394,6 @@ /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"eTY" = ( -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) "eUA" = ( /turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/construction) @@ -3623,6 +3402,10 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/exterior/lz_pad) +"eUX" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/scrubland/south) "eVv" = ( /obj/structure/machinery/light{ dir = 1 @@ -3661,30 +3444,14 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power/comms) -"eZw" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/stonyfields) "eZP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"eZS" = ( -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) "eZT" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) -"eZV" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland) "fbG" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -3706,27 +3473,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_river) -"fcJ" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/colony_South/power2) -"fdr" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) -"fdF" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) "fdH" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/auto_turf/sand/layer0, @@ -3759,12 +3505,6 @@ /obj/item/clothing/head/welding, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"feU" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_dunes) "feY" = ( /obj/structure/window_frame/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -3773,10 +3513,6 @@ /obj/item/stack/rods, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"ffu" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/power/comms) "ffv" = ( /obj/structure/surface/table/almayer, /obj/item/device/defibrillator, @@ -3802,6 +3538,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) +"fgI" = ( +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "fgJ" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/stonyfields) @@ -3826,18 +3565,10 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/triage) -"fjp" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_N_East) -"fjF" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/complex_border/botany_medical_cave) +"fjm" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) "fjX" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -3845,26 +3576,15 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"fkK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 9 - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/colors/red/tile, -/area/kutjevo/interior/complex/med/operating) -"fkP" = ( -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep, -/area/kutjevo/exterior/lz_river) -"fll" = ( -/obj/structure/platform/kutjevo/rock, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) "flp" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) +"fly" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_corner, +/area/kutjevo/interior/oob) "flP" = ( /obj/structure/blocker/invisible_wall, /obj/structure/blocker/invisible_wall, @@ -3882,6 +3602,10 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) +"fmx" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/gm/river/desert/shallow, +/area/kutjevo/exterior/runoff_river) "fmN" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/exterior/lz_pad) @@ -3921,12 +3645,6 @@ "fpJ" = ( /turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/complex/med/locks) -"fpM" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/colony_central) "fpO" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) @@ -3941,23 +3659,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) -"fqR" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/oob/dev_room) -"frj" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_ew_full_cap_butt" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/complex/med/cells) "frx" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony/reinforced, @@ -3978,18 +3679,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east) -"ftY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) -"fui" = ( -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/scrubland/south) "fuz" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/power) @@ -3997,6 +3686,10 @@ /obj/structure/surface/rack, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"fwA" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_river) "fwF" = ( /turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/colony_central) @@ -4033,27 +3726,33 @@ /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/interior/oob) +"fAL" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/west, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/oob) "fAT" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany/east_tech) -"fBL" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, +"fBb" = ( +/obj/structure/platform/metal/kutjevo, /turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/scrubland/south) -"fCu" = ( -/obj/effect/sentry_landmark/lz_1/top_left, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_dunes) -"fDY" = ( -/obj/structure/platform/kutjevo/smooth/stair_plate, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 +/area/kutjevo/interior/colony_central) +"fCz" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/colony_South/power2) +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) +"fDy" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_river) "fEu" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras, @@ -4101,44 +3800,30 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"fIm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, +"fIh" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_dunes) +"fIx" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/cells) -"fKf" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - name = "\improper Kutjevo Dam Storm Shutters" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 + dir = 8 }, -/turf/open/asphalt/cement_sunbleached, -/area/kutjevo/interior/power) +/turf/open/floor/kutjevo/colors/green, +/area/kutjevo/interior/complex/botany) +"fIz" = ( +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) +"fJm" = ( +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_dunes) "fKD" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood/gibs/xeno, /turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"fKJ" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 8 - }, -/obj/structure/machinery/light, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/strata/multi_tiles/west, -/area/kutjevo/interior/complex/med/operating) "fKL" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffeecup{ @@ -4152,12 +3837,10 @@ /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 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_central) +"fLq" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "fMd" = ( /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor/kutjevo/tan, @@ -4168,43 +3851,28 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"fNc" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) +"fME" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_central) "fNe" = ( /obj/effect/landmark/nightmare{ insert_tag = "cleaningprog_botany" }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"fNo" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/desert/desert_shore/shore_corner2, -/area/kutjevo/exterior/runoff_river) +"fOt" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/item/device/radio, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "fOO" = ( /obj/structure/flora/grass/desert{ icon_state = "heavygrass_6" }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"fOU" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/oob/dev_room) -"fPH" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) "fQg" = ( /turf/open/gm/dirtgrassborder2/west, /area/kutjevo/exterior/complex_border/med_park) @@ -4235,12 +3903,6 @@ }, /turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/power/comms) -"fQJ" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland/south) "fRu" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer0, @@ -4255,13 +3917,10 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"fRZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) +"fSk" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/scrubland/south) "fSm" = ( /obj/structure/sink{ dir = 4; @@ -4272,17 +3931,25 @@ /obj/item/roller, /turf/open/floor/kutjevo/colors/cyan/edge/east, /area/kutjevo/interior/complex/med/operating) +"fSG" = ( +/obj/structure/filtration/machine_96x96/indestructible{ + icon_state = "disinfection"; + layer = 3.5 + }, +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/platform/metal/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/runoff_dunes) "fSK" = ( /obj/structure/surface/table/gamblingtable, /obj/item/toy/handcard/aceofspades, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_pad) -"fSU" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, +"fSL" = ( +/obj/structure/platform_decoration/stone/kutjevo, /turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland/south) +/area/kutjevo/exterior/lz_dunes) "fTk" = ( /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) @@ -4299,12 +3966,32 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) +"fUw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) +"fUC" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/colony_central) "fUL" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) +"fUS" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/complex_border/med_rec) "fVm" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper, @@ -4314,6 +4001,10 @@ /obj/structure/largecrate/random/secure, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) +"fVH" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/gm/river/desert/shallow, +/area/kutjevo/exterior/runoff_bridge) "fWl" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/grey/plate, @@ -4350,12 +4041,14 @@ "fYI" = ( /turf/open/gm/river/desert/shallow_corner/east, /area/kutjevo/exterior/runoff_river) -"fZT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow_edge/southeast, -/area/kutjevo/exterior/runoff_bridge) +"fZy" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) +"gbm" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/gm/river/desert/shallow_corner/west, +/area/kutjevo/exterior/lz_river) "gbv" = ( /turf/closed/wall/kutjevo/rock/border, /area/kutjevo/exterior/runoff_dunes) @@ -4373,27 +4066,16 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"gcB" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/stonyfields) +"gcw" = ( +/obj/structure/monorail, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/colony_central/mine_elevator) "gdb" = ( /obj/structure/blocker/invisible_wall, /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/kutjevo/interior/oob) -"gde" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "gdX" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -4410,13 +4092,11 @@ /obj/structure/surface/table/gamblingtable, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"gfK" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, +"geQ" = ( +/obj/structure/platform/metal/kutjevo/west, /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/interior/oob/dev_room) +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) "ggC" = ( /obj/structure/fence, /turf/open/floor/almayer/research/containment/floor2, @@ -4446,21 +4126,14 @@ /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"giZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 - }, -/obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_ew_full_cap_butt" - }, -/obj/structure/platform/stair_cut/alt{ - icon_state = "kutjevo_platform_sm_stair_alt" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/construction) "gjK" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/auto_doc) +"gkL" = ( +/obj/structure/platform/stone/kutjevo, +/obj/structure/platform/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/scrubland) "gkU" = ( /obj/structure/bed/chair{ dir = 4 @@ -4532,6 +4205,11 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/triage) +"gpL" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/machinery/light, +/turf/open/gm/river/desert/deep/covered, +/area/kutjevo/interior/colony_South/power2) "gqQ" = ( /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/colors/green, @@ -4554,6 +4232,12 @@ }, /turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/spring) +"gsp" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/power) "gsq" = ( /obj/structure/filingcabinet, /obj/structure/window/reinforced/tinted{ @@ -4566,29 +4250,16 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan/inner_corner/north, /area/kutjevo/interior/complex/med) -"gtg" = ( -/obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) "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, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/power) -"gtL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +"gts" = ( +/obj/structure/platform/stone/kutjevo, +/obj/structure/platform/stone/kutjevo/west, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, +/turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) "gvO" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -4610,20 +4281,22 @@ }, /turf/open/floor/kutjevo/tan/alt_edge/west, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"gwC" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) "gwY" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med) -"gxs" = ( -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/exterior/scrubland/south) +"gxb" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/purple, +/area/kutjevo/interior/complex/med/locks) +"gxB" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "gxD" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -4642,20 +4315,14 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) +"gyW" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/gm/river/desert/shallow_corner/east, +/area/kutjevo/exterior/lz_river) "gzb" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/Northwest_Colony) -"gzv" = ( -/obj/structure/platform/kutjevo, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) -"gzI" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/stonyfields) "gAt" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -4664,12 +4331,6 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"gAu" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "gAM" = ( /turf/open/floor/kutjevo/tan/alt_edge/west, /area/kutjevo/exterior/lz_dunes) @@ -4776,20 +4437,26 @@ /obj/item/stack/sheet/metal, /turf/open/floor/kutjevo/tan/alt_edge/west, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"gFz" = ( +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/scrubland/south) "gFA" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/spring) +"gGp" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/scrubland) +"gGz" = ( +/obj/structure/platform_decoration/stone/kutjevo, +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "gHh" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"gHm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "gHp" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen/engi, @@ -4822,6 +4489,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) +"gKN" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/auto_doc) "gKY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -4872,12 +4543,6 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"gPW" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_dunes) "gQp" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -4914,12 +4579,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"gSA" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/lz_dunes) "gTl" = ( /obj/structure/machinery/light{ dir = 1 @@ -4947,23 +4606,10 @@ /obj/structure/surface/rack, /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/lz_pad) -"gUa" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/gm/river/desert/deep/covered, -/area/kutjevo/interior/complex/med/operating) "gUs" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) -"gUQ" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/complex_border/med_rec) "gUS" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/med/locks) @@ -5008,12 +4654,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"gYa" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) "gYr" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_magazine/shotgun/buckshot{ @@ -5034,13 +4674,20 @@ /obj/structure/bed/chair, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"han" = ( -/obj/structure/platform_decoration/kutjevo/rock{ +"gZB" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -8 + }, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/oob) +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 8 + }, +/obj/structure/machinery/light, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) "haz" = ( /obj/item/storage/donut_box, /turf/open/floor/kutjevo/tan, @@ -5067,25 +4714,13 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"hds" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_central) "hdF" = ( /turf/open/floor/plating/kutjevo/platingdmg1, /area/kutjevo/interior/complex/botany/east_tech) -"hdQ" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power) -"heL" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) +"hdP" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power/comms) "hfo" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer1, @@ -5114,6 +4749,10 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) +"hiI" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland/south) "hiM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand/layer1, @@ -5129,6 +4768,10 @@ /obj/item/weapon/gun/revolver/cmb, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/power/comms) +"hlR" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/colony_South/power2) "hma" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/tan, @@ -5146,16 +4789,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_pad) -"hnE" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "hnI" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 @@ -5180,16 +4813,25 @@ "hoK" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"hoW" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/oob) +"hpk" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/interior/complex/med/locks) +"hpy" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/complex_border/med_rec) "hpB" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/exterior/construction) +"hpU" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/stonyfields) +"hqi" = ( +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/scrubland) "hqN" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -5201,12 +4843,6 @@ }, /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/triage) -"hqO" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/runoff_dunes) "hrv" = ( /obj/structure/sign/safety/medical{ pixel_x = 32 @@ -5244,6 +4880,16 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"htF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 + }, +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/construction) "htP" = ( /obj/structure/machinery/light{ dir = 8 @@ -5258,6 +4904,10 @@ /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) +"huJ" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/botany) "huR" = ( /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/Northwest_Colony) @@ -5270,16 +4920,21 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) +"hvr" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_dunes) +"hvN" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/construction) +"hwb" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/runoff_bridge) "hwf" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) -"hws" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "hwA" = ( /turf/open/floor/plating/kutjevo/platingdmg3, /area/kutjevo/interior/complex/botany/east_tech) @@ -5312,10 +4967,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) -"hzG" = ( -/obj/structure/platform_decoration/kutjevo/rock, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_dunes) "hzN" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/lz_pad) @@ -5326,6 +4977,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/oob/dev_room) +"hBn" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_central) "hBt" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ name = "\improper North Power Shutters" @@ -5429,6 +5084,10 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"hFk" = ( +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/stonyfields) "hFH" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -5436,6 +5095,10 @@ }, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) +"hFN" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/scrubland) "hGB" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -5462,26 +5125,6 @@ /obj/item/storage/fancy/cigarettes/lucky_strikes, /turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) -"hKE" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/runoff_dunes) -"hLi" = ( -/obj/structure/platform/kutjevo, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) -"hLH" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/stonyfields) "hMi" = ( /obj/structure/machinery/power/port_gen/pacman{ desc = "A portable generator for emergency backup power. A set of numbers have been crudely etched into the side. The sequence reads --2-." @@ -5515,12 +5158,6 @@ "hQj" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"hQl" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/construction) "hQS" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/oob/dev_room) @@ -5532,6 +5169,12 @@ /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) +"hRO" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "hSo" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -5551,18 +5194,17 @@ /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 - }, -/obj/structure/platform/kutjevo, -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "disinfection"; - layer = 3.5 - }, +"hTb" = ( +/obj/structure/filtration/coagulation_arm, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, /obj/structure/blocker/invisible_wall, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/complex_border/med_park) +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) +"hTF" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) "hUk" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_north) @@ -5580,6 +5222,10 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) +"hVt" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/complex_border/botany_medical_cave) "hVQ" = ( /obj/structure/machinery/light{ dir = 8 @@ -5610,30 +5256,18 @@ /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/Northwest_Dorms) +"hXJ" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "hXP" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) -"hYp" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_central) "hYE" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) -"hYS" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = -10; - pixel_y = 10 - }, -/turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/runoff_river) "hZq" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 10; @@ -5656,6 +5290,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) +"ibV" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) "ich" = ( /turf/closed/wall/kutjevo/rock/border, /area/kutjevo/exterior/lz_dunes) @@ -5664,13 +5302,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/med/locks) -"iem" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/oob) "ieA" = ( /obj/item/tool/weldingtool, /turf/open/floor/kutjevo/tan/alt_edge/northeast, @@ -5698,12 +5329,6 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"igT" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/med/cells) "iin" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/Northwest_Colony) @@ -5718,9 +5343,23 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) +"ikk" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/mars_cave/mars_cave_10, +/area/kutjevo/exterior/scrubland) "ikW" = ( /turf/open/floor/kutjevo/colors/purple/edge/east, /area/kutjevo/interior/construction) +"ikZ" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/gm/river/desert/deep/covered, +/area/kutjevo/interior/complex/med/operating) +"ilc" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) "imG" = ( /obj/structure/bed/sofa/vert/white/top{ pixel_y = 17 @@ -5728,6 +5367,10 @@ /obj/structure/bed/sofa/vert/white, /turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/med) +"inc" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/complex_border/med_rec) "inR" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -5738,6 +5381,19 @@ /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/shallow_edge/west, /area/kutjevo/interior/oob) +"ioh" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_sn_full_cap"; + pixel_y = 16 + }, +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/colony_South/power2) "ips" = ( /obj/item/bodybag/tarp/reactive, /turf/open/floor/kutjevo/multi_tiles, @@ -5750,6 +5406,12 @@ /obj/structure/machinery/cm_vending/sorted/medical/blood, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) +"ipD" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_central) "iqw" = ( /obj/structure/surface/table/almayer, /obj/item/toy/handcard/aceofspades, @@ -5769,13 +5431,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"ird" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/darkred, -/area/kutjevo/interior/oob) "irK" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -5787,6 +5442,11 @@ /obj/structure/surface/rack, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"itr" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) "iub" = ( /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/tan, @@ -5807,12 +5467,6 @@ /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) -"iwD" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/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, @@ -5834,12 +5488,14 @@ "iyd" = ( /turf/open/floor/kutjevo/colors/cyan/inner_corner/north, /area/kutjevo/interior/complex/med/operating) -"iyz" = ( -/turf/closed/wall/kutjevo/rock, -/area/kutjevo/exterior/scrubland/south) "iyP" = ( /turf/open/floor/coagulation/icon7_8_2, /area/kutjevo/exterior/scrubland) +"izD" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "izS" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/cyan/inner_corner/east, @@ -5863,21 +5519,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"iCh" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/colony_north) "iCl" = ( /obj/structure/machinery/light{ dir = 8 @@ -5889,14 +5530,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/alt_inner_edge/west, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"iCG" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/darkred, -/area/kutjevo/interior/power) "iCQ" = ( /obj/structure/flora/grass/desert/lightgrass_9, /obj/effect/decal/cleanable/blood/oil, @@ -5911,24 +5544,6 @@ /obj/item/tool/pickaxe, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany/east_tech) -"iGS" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_dunes) -"iHk" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) -"iHw" = ( -/obj/structure/platform/kutjevo, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/interior/colony_central) "iHO" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -5937,22 +5552,6 @@ /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"iIz" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) -"iIT" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/coagulation/icon8_3, -/area/kutjevo/interior/construction) -"iJo" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "iJq" = ( /turf/open/desert/desert_shore/shore_corner2/north, /area/kutjevo/exterior/runoff_dunes) @@ -5963,15 +5562,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/med/locks) -"iKf" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation/icon0_8, -/area/kutjevo/interior/colony_north) "iKE" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/accessory/armband/hydro, @@ -5983,21 +5573,14 @@ }, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/stonyfields) -"iLE" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "disinfection"; - layer = 3.5 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) "iLF" = ( /obj/item/ammo_magazine/rifle/mar40/extended, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"iLQ" = ( +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/lz_pad) "iLU" = ( /obj/structure/machinery/vending/cigarette/colony, /obj/structure/sign/poster{ @@ -6005,6 +5588,15 @@ }, /turf/open/floor/kutjevo/colors/purple/inner_corner/north, /area/kutjevo/interior/construction) +"iMA" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "iMR" = ( /turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/colony_central) @@ -6038,6 +5630,10 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) +"iRG" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "iSn" = ( /obj/structure/largecrate/random/secure, /obj/structure/machinery/light{ @@ -6059,6 +5655,22 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"iTd" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/complex/med/locks) "iTg" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -6067,13 +5679,6 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/auto_doc) -"iTK" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/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, @@ -6095,12 +5700,6 @@ /obj/item/reagent_container/food/drinks/jar, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"iVD" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/foremans_office) "iWa" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/colors/cyan, @@ -6128,17 +5727,15 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South/power2) +"iWU" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) "iXh" = ( /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) -"iXj" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "iXz" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -6176,6 +5773,10 @@ }, /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/spring) +"jar" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) "jav" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/item/ammo_box/magazine/nailgun, @@ -6186,6 +5787,10 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) +"jbM" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "jcd" = ( /obj/structure/bed/chair{ dir = 4 @@ -6198,6 +5803,11 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/tan/alt_edge/northwest, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"jcH" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/interior/oob/dev_room) "jcI" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/telecomm/lz1_south) @@ -6205,23 +5815,17 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) -"jcX" = ( -/obj/structure/platform/kutjevo, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/complex_border/med_park) +"jdu" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/scrubland/south) "jec" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/Northwest_Dorms) -"jeO" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/colony_South/power2) +"jez" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/cells) "jfs" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, @@ -6276,6 +5880,10 @@ "jhS" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/oob) +"jiy" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_dunes) "jiz" = ( /obj/structure/sign/safety/hazard{ pixel_x = -32 @@ -6309,6 +5917,12 @@ /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) +"jmH" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/power) "jmP" = ( /obj/structure/machinery/power/reactor/colony, /turf/open/floor/kutjevo/colors/orange, @@ -6349,12 +5963,6 @@ "jnV" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/Northwest_Dorms) -"jnY" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/runoff_river) "jog" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/sand/layer1, @@ -6391,26 +5999,16 @@ "jqt" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/lz_dunes) -"jqy" = ( -/obj/structure/platform/kutjevo/rock{ +"jqT" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/mars_cave/mars_cave_7, -/area/kutjevo/exterior/scrubland) +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/colony_South/power2) "jrk" = ( /turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/complex/botany) -"jrs" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) "jrJ" = ( /obj/item/stack/sheet/wood, /obj/effect/landmark/objective_landmark/science, @@ -6420,12 +6018,15 @@ /obj/structure/inflatable/popped, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) -"jsS" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) +"jsi" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/interior/oob) +"jsk" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/interior/colony_north) "jtl" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/auto_turf/sand/layer1, @@ -6457,20 +6058,6 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/exterior/lz_pad) -"juH" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "kutjevo_platform_sm_stair" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_bridge) "juO" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -6478,6 +6065,10 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"juW" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/cells) "juY" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -6491,25 +6082,16 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"jvt" = ( -/turf/open/desert/desert_shore/desert_shore1, -/area/kutjevo/exterior/scrubland/south) -"jvQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/gm/river/desert/deep/covered, -/area/kutjevo/interior/complex/med/operating) "jwx" = ( /turf/open/floor/kutjevo/tan/grey_inner_edge/north, /area/kutjevo/interior/complex/med) "jwA" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central) +"jwJ" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/colony_central) "jwM" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/kutjevo/colors/orange, @@ -6566,28 +6148,44 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan/inner_corner/east, /area/kutjevo/interior/complex/med) +"jAw" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/colony_South/power2) "jBe" = ( /obj/structure/closet/firecloset/full, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"jBJ" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/oob/dev_room) +"jBj" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/colony_north) "jBX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) +"jCK" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/gm/river/desert/shallow, +/area/kutjevo/exterior/runoff_bridge) "jCL" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) +"jDZ" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.05 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "jEh" = ( /turf/open/floor/plating/kutjevo/panelscorched, /area/kutjevo/interior/complex/Northwest_Dorms) @@ -6607,13 +6205,6 @@ "jFf" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/telecomm/lz2_south) -"jFk" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "jFB" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -6637,28 +6228,10 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"jIt" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/colony_central) "jIN" = ( /obj/structure/flora/grass/desert/lightgrass_11, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"jIR" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/green, -/area/kutjevo/interior/complex/botany) "jJe" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -6669,15 +6242,15 @@ /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) +"jJn" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland) "jJo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio, /turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) -"jKc" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/asphalt/cement_sunbleached, -/area/kutjevo/interior/power) "jKm" = ( /turf/open/floor/kutjevo/tan/alt_edge/east, /area/kutjevo/interior/colony_central) @@ -6687,6 +6260,22 @@ "jKN" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) +"jMo" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/machinery/recharge_station, +/turf/open/floor/kutjevo/colors, +/area/kutjevo/interior/power/comms) +"jNH" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/colony_north) "jOe" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4-8" @@ -6704,13 +6293,14 @@ }, /turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"jPb" = ( -/obj/structure/monorail, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) +"jOK" = ( +/obj/effect/sentry_landmark/lz_1/top_right, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_dunes) +"jPr" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/interior/complex/med/locks) "jPt" = ( /obj/structure/bed/chair{ dir = 4 @@ -6720,6 +6310,16 @@ "jPD" = ( /turf/open/floor/kutjevo/tan/grey_edge, /area/kutjevo/interior/complex/Northwest_Dorms) +"jPM" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/purple, +/area/kutjevo/interior/complex/med/locks) "jPW" = ( /obj/structure/machinery/light, /obj/structure/machinery/camera/autoname{ @@ -6771,12 +6371,11 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"jWM" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/coagulation/icon8_3, -/area/kutjevo/interior/colony_north) +"jWO" = ( +/obj/structure/prop/dam/boulder/boulder3, +/obj/structure/platform/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_dunes) "jXo" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -6789,6 +6388,10 @@ "jYS" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) +"jZL" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) "jZT" = ( /turf/open/floor/kutjevo/colors/cyan/edge/west, /area/kutjevo/interior/complex/med/triage) @@ -6798,10 +6401,13 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/botany) -"kbg" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep/toxic, +"kaZ" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) "kbL" = ( /obj/effect/decal/cleanable/blood/oil, @@ -6822,12 +6428,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"kcX" = ( -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/power/comms) -"kdf" = ( -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/scrubland/south) "kdK" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_4" @@ -6837,13 +6437,6 @@ "kdY" = ( /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/power) -"kec" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/oob) "keM" = ( /obj/item/stack/rods, /obj/structure/barricade/deployable{ @@ -6874,10 +6467,10 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"kgt" = ( -/obj/structure/platform/kutjevo, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/colony_north) +"kfG" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/gm/river/desert/shallow, +/area/kutjevo/exterior/runoff_river) "kgx" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, @@ -6917,21 +6510,17 @@ "kjk" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/colony_central) -"kjo" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/scrubland/south) "kkB" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"kkC" = ( -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon7_0, -/area/kutjevo/interior/colony_north) "kkH" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med/operating) +"kle" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/foremans_office) "kls" = ( /obj/structure/surface/table/almayer, /obj/item/storage/surgical_tray, @@ -6960,6 +6549,10 @@ }, /turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med) +"klY" = ( +/obj/structure/platform/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "kma" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, @@ -6984,10 +6577,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"knP" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_river) "koX" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -7005,6 +6594,13 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) +"kpC" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/cells) "kpK" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -7018,14 +6614,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_bridge) -"kqA" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/machinery/smartfridge/chemistry, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/kutjevo/colors/cyan/tile, -/area/kutjevo/interior/complex/med/operating) "kqE" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/tan/grey_edge/southeast, @@ -7034,16 +6622,6 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"ksb" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power) "ksl" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/auto_turf/sand/layer1, @@ -7052,10 +6630,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"ksL" = ( -/obj/effect/sentry_landmark/lz_1/top_right, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_dunes) "ksN" = ( /obj/item/prop/helmetgarb/spent_buckshot, /turf/open/floor/kutjevo/tan, @@ -7073,12 +6647,14 @@ "ktq" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med/locks) -"ktP" = ( -/obj/structure/platform/kutjevo{ - dir = 8 +"ktU" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) "kut" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -7096,15 +6672,10 @@ /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 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_central) +"kvi" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland) "kvt" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -7121,12 +6692,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_central) -"kvS" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/stonyfields) "kvU" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/lz_dunes) @@ -7164,17 +6729,22 @@ }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/botany) +"kyu" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/oob) "kzJ" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"kzZ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/interior/complex/med/locks) "kAb" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -7194,6 +6764,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/construction) +"kAE" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/complex_border/med_rec) "kAW" = ( /obj/structure/machinery/light{ dir = 4 @@ -7222,6 +6796,11 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"kCQ" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/colony_central) "kDl" = ( /obj/structure/bed/chair/office/light, /obj/effect/landmark/survivor_spawner, @@ -7235,15 +6814,17 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) -"kDs" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 +"kDt" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/sign/safety/medical{ + pixel_x = 32 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "kutjevo_medlock_pan"; + name = "\improper Medical North Shutters" }, -/turf/open/gm/river/desert/deep/covered, -/area/kutjevo/exterior/scrubland) +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/interior/complex/med/auto_doc) "kDD" = ( /obj/item/stack/sheet/wood, /obj/structure/machinery/vending/snack/packaged{ @@ -7257,6 +6838,16 @@ "kEh" = ( /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/spring) +"kEt" = ( +/obj/structure/platform/metal/kutjevo_smooth/stair_plate, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) +"kED" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/largecrate/random, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/colony_South/power2) "kEG" = ( /obj/structure/sign/poster{ pixel_y = -32 @@ -7264,6 +6855,24 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) +"kFi" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/colony_north) +"kFv" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"kFx" = ( +/obj/structure/platform/stone/kutjevo, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "kFF" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -7313,6 +6922,10 @@ /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) +"kJK" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/runoff_dunes) "kKb" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -7341,6 +6954,13 @@ /obj/item/explosive/plastic, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) +"kLO" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/complex_border/med_rec) "kMx" = ( /turf/open/floor/coagulation/icon7_8_2, /area/kutjevo/interior/power/comms) @@ -7361,16 +6981,6 @@ "kNq" = ( /turf/open/gm/river/desert/shallow_edge/southwest, /area/kutjevo/exterior/lz_river) -"kNx" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/complex_border/med_park) "kOo" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -7378,20 +6988,30 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/locks) -"kOD" = ( -/obj/structure/platform/stair_cut{ - icon_state = "kutjevo_platform_sm_stair" - }, +"kOM" = ( /obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_ew_full_cap_butt" + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/colony_South/power2) +"kOR" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/runoff_dunes) "kPa" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central/mine_elevator) +"kPb" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland) "kPw" = ( /obj/effect/landmark/nightmare{ insert_tag = "trappedmonke_andclown" @@ -7425,47 +7045,31 @@ "kQD" = ( /turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/spring) -"kQU" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/colony_central) "kRM" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/complex_border/botany_medical_cave) +"kSd" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) "kSh" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/complex/botany/east) -"kSo" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1/east, -/area/kutjevo/interior/oob/dev_room) "kSy" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/kutjevo/tan/grey_edge/southwest, /area/kutjevo/interior/complex/Northwest_Dorms) -"kSB" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/colony_north) "kSH" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/complex_border/med_rec) -"kTX" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ +"kUb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ dir = 4 }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_central) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "kUX" = ( /obj/structure/machinery/light, /obj/item/stack/sheet/wood, @@ -7502,18 +7106,31 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"kWp" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/floor/kutjevo/colors, +/area/kutjevo/interior/power/comms) +"kWs" = ( +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "kWX" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/lz_pad) +"kXJ" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_central) "kYb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/atmospipes, /turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) -"kZm" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/runoff_river) +"kYg" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/interior/oob) "kZt" = ( /obj/structure/sign/safety/hazard{ pixel_x = 32 @@ -7539,12 +7156,6 @@ /obj/item/ammo_magazine/rifle/mar40, /turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/power/comms) -"laf" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland) "lah" = ( /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/power_pt2_electric_boogaloo) @@ -7552,13 +7163,6 @@ /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) -"lbu" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/item/device/defibrillator, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) "lbF" = ( /obj/structure/bed, /turf/open/floor/kutjevo/grey/plate, @@ -7578,15 +7182,10 @@ "lcS" = ( /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/med/pano) -"ldM" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/cells) +"ldL" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "ldU" = ( /obj/structure/inflatable{ opacity = 1 @@ -7597,6 +7196,10 @@ /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/complex/med/locks) +"lfi" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "lfm" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan, @@ -7606,41 +7209,42 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/kutjevo, /area/kutjevo/interior/oob/dev_room) +"lgo" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/floor/coagulation/icon0_8, +/area/kutjevo/interior/colony_north) "lgJ" = ( /obj/item/reagent_container/glass/bucket, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"lgL" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_sn_full_cap"; - pixel_y = 16 - }, -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 +"lhs" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" }, /turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/colony_South/power2) -"lhu" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/item/device/radio, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +/area/kutjevo/exterior/complex_border/med_rec) +"lhU" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/med/cells) "lhY" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"liK" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "lkp" = ( /obj/structure/machinery/light{ dir = 8 @@ -7679,11 +7283,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/interior/oob/dev_room) -"loe" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/oob) "lok" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib4" @@ -7709,6 +7308,10 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) +"lpm" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/colony_central) "lpD" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/research/containment/floor2, @@ -7725,14 +7328,11 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) -"lqG" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power/comms) +"lrj" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_N_East) "lrx" = ( /turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/lz_dunes) @@ -7742,12 +7342,19 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) +"lrJ" = ( +/obj/structure/platform/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/runoff_dunes) "lrO" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/oob) +"lrQ" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/scrubland/south) "lsg" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand/layer0, @@ -7820,30 +7427,34 @@ }, /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/triage) -"lyG" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/colony_South/power2) +"lyF" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) "lyJ" = ( /turf/open/floor/coagulation/icon0_5, /area/kutjevo/exterior/scrubland) -"lzb" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/east, -/area/kutjevo/interior/power/comms) "lzD" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/lz_pad) +"lAb" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/construction) "lAn" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"lAw" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland/south) "lAI" = ( /turf/open/floor/plating/kutjevo, /area/shuttle/drop1/kutjevo) @@ -7854,16 +7465,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"lBm" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) "lBP" = ( /obj/structure/window/framed/kutjevo/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -7871,12 +7472,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"lCa" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "lCu" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -7885,14 +7480,6 @@ /obj/effect/landmark/yautja_teleport, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"lCH" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/oob) "lDi" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/purple, @@ -7903,13 +7490,6 @@ "lEA" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_central) -"lEB" = ( -/obj/structure/platform_decoration/kutjevo/rock, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "lFq" = ( /obj/structure/filtration/machine_32x64/indestructible{ bound_height = 32; @@ -7923,40 +7503,33 @@ /obj/item/device/radio, /turf/open/floor/carpet, /area/kutjevo/interior/oob) +"lFJ" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_river) "lGj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"lGm" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/stonyfields) "lHs" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"lIB" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/oob) "lIM" = ( /obj/structure/bed/chair/office/light, /turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/foremans_office) +"lJE" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/runoff_dunes) "lKk" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_pad) -"lKR" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/colors/purple/edge/east, -/area/kutjevo/interior/construction) "lKV" = ( /turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/runoff_river) @@ -7969,6 +7542,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) +"lLq" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_dunes) "lLC" = ( /obj/structure/sign/safety/hazard{ pixel_x = -32 @@ -7988,6 +7565,12 @@ }, /turf/open/floor/kutjevo/colors/purple/edge/west, /area/kutjevo/interior/construction) +"lLS" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/gm/river/desert/deep/covered, +/area/kutjevo/interior/complex/med/operating) "lMr" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -8008,10 +7591,6 @@ /obj/structure/closet/crate/secure/ammo, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"lMS" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/interior/complex/med/locks) "lNl" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 @@ -8031,10 +7610,19 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"lNH" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/power) "lOr" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/kutjevo/tan/alt_inner_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"lOx" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/closed/wall/kutjevo/rock, +/area/kutjevo/exterior/runoff_dunes) "lOK" = ( /obj/structure/machinery/photocopier, /turf/open/floor/kutjevo/colors/red, @@ -8042,9 +7630,17 @@ "lPR" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/construction) +"lRk" = ( +/obj/effect/sentry_landmark/lz_1/bottom_left, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/lz_dunes) "lRy" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/Northwest_Colony) +"lRB" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/exterior/Northwest_Colony) "lRV" = ( /obj/structure/machinery/light, /obj/structure/stairs/perspective/kutjevo{ @@ -8065,6 +7661,11 @@ }, /turf/open/floor/kutjevo/colors/cyan/edge, /area/kutjevo/interior/complex/med/operating) +"lSS" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/oob) "lSX" = ( /obj/structure/machinery/light{ dir = 1 @@ -8074,24 +7675,18 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"lTr" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/auto_doc) +"lTu" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_central) "lUg" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) -"lUq" = ( -/obj/effect/sentry_landmark/lz_1/bottom_left, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_dunes) -"lUM" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, +"lVg" = ( +/obj/structure/platform_decoration/stone/kutjevo/north, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_corner, +/turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) "lVo" = ( /obj/structure/barricade/wooden{ @@ -8116,19 +7711,17 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) -"lVZ" = ( -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/exterior/runoff_dunes) -"lXe" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 +"lWT" = ( +/obj/structure/bed/sofa/vert/grey/bot{ + pixel_y = 4 }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/interior/oob) +/obj/structure/barricade/handrail/strata, +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/floor/mech_bay_recharge_floor, +/area/kutjevo/interior/colony_central/mine_elevator) "lXN" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/telecomm/lz1_south) @@ -8155,12 +7748,6 @@ /obj/structure/tunnel, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"lZZ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/construction) "mao" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/auto_turf/sand/layer0, @@ -8176,10 +7763,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"mbh" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1/north, -/area/kutjevo/exterior/scrubland/south) "mbp" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -8188,6 +7771,11 @@ /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"mbN" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/item/device/defibrillator, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) "mbR" = ( /obj/structure/closet/crate/trashcart, /turf/open/auto_turf/sand/layer1, @@ -8261,13 +7849,6 @@ /obj/structure/prop/dam/truck/mining, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"mfY" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon0_0, -/area/kutjevo/interior/colony_north) "mgn" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/telecomm/lz2_south) @@ -8277,12 +7858,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/botany) -"mhd" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_central) "mhf" = ( /obj/structure/barricade/handrail/kutjevo{ dir = 4 @@ -8291,29 +7866,23 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/colony_South/power2) -"mhj" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/complex_border/botany_medical_cave) +"mhu" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/oob) "mhJ" = ( /turf/open/mars_cave/mars_cave_10, /area/kutjevo/exterior/lz_dunes) -"mhN" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) "mhY" = ( /obj/item/device/camera, /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) +"miP" = ( +/obj/structure/platform/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/runoff_river) "mjd" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/auto_turf/sand/layer0, @@ -8340,13 +7909,6 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"mkO" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/largecrate/random, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "mkU" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras{ @@ -8354,6 +7916,21 @@ }, /turf/open/floor/kutjevo/colors/orange/edge/west, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"mli" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/kutjevo/colors/cyan/tile, +/area/kutjevo/interior/complex/med/cells) +"mll" = ( +/obj/structure/platform_decoration/stone/kutjevo, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/stonyfields) +"mmh" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/kutjevo/colors/cyan/tile, +/area/kutjevo/interior/complex/med/cells) "mmH" = ( /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors/orange, @@ -8361,13 +7938,19 @@ "mnk" = ( /turf/open/desert/desert_shore/shore_edge1/west, /area/kutjevo/exterior/lz_dunes) -"mnn" = ( -/obj/structure/platform/kutjevo{ - dir = 1 +"mnm" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_full_cap_butt" }, -/obj/structure/blocker/invisible_wall, +/obj/structure/platform_decoration/metal/kutjevo/north, /turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/complex_border/med_park) +/area/kutjevo/interior/complex/med/cells) +"mnD" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "mnT" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) @@ -8396,11 +7979,10 @@ }, /turf/open/floor/kutjevo/colors/purple/inner_corner/west, /area/kutjevo/interior/construction) -"msF" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/interior/power/comms) +"mrY" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "msK" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) @@ -8427,38 +8009,15 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"mtS" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_river) -"muG" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) "mvt" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) -"mvv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/cells) -"mvB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/colony_South/power2) +"mvz" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/interior/oob/dev_room) "mvM" = ( /obj/structure/closet/emcloset, /obj/effect/landmark/objective_landmark/medium, @@ -8472,14 +8031,6 @@ /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) -"mwV" = ( -/obj/structure/machinery/disposal, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/complex/med/operating) "mxB" = ( /turf/closed/wall/kutjevo/rock/border, /area/kutjevo/interior/oob) @@ -8487,15 +8038,20 @@ /obj/item/frame/rack, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) +"myf" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/colony_South/power2) "myk" = ( /turf/open/gm/river/desert/shallow_edge/east, /area/kutjevo/exterior/spring) -"mzn" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) +"mzo" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_river) "mzS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/medical/splint, @@ -8506,6 +8062,11 @@ /obj/item/storage/pill_bottle/dexalin/skillless, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med) +"mzW" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/complex_border/botany_medical_cave) "mAb" = ( /turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/lz_pad) @@ -8573,32 +8134,10 @@ /obj/effect/decal/cleanable/blood/gibs/down, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"mDa" = ( -/obj/structure/platform_decoration/kutjevo/rock, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/stonyfields) -"mDl" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) "mDm" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"mDu" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) "mDz" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -8613,13 +8152,6 @@ /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{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/runoff_bridge) "mDL" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -8632,13 +8164,6 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"mDN" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/scrubland) "mEb" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/floor/kutjevo/plate, @@ -8647,39 +8172,14 @@ /obj/item/stack/cable_coil/random, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"mFd" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/north, +"mGu" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/floor/kutjevo/tan/alt_edge/east, /area/kutjevo/interior/colony_central) -"mFf" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland/south) -"mGb" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) "mGE" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"mGJ" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_ew_half_cap" - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) "mGL" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft" @@ -8694,12 +8194,6 @@ }, /turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/med/locks) -"mHo" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/power/comms) "mHJ" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med) @@ -8713,21 +8207,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/construction) -"mIr" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland) "mIs" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"mIA" = ( -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/scrubland/south) "mIB" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 8; @@ -8807,6 +8292,11 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power/comms) +"mOh" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/bed/roller, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) "mOO" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/wrapped/barcardine{ @@ -8815,13 +8305,14 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"mPt" = ( -/obj/structure/machinery/colony_floodlight, -/obj/structure/platform/kutjevo{ - dir = 1 +"mPI" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/complex/med/triage) +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) "mPL" = ( /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/auto_turf/sand/layer1, @@ -8833,15 +8324,18 @@ "mQl" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/lz_river) +"mQt" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/runoff_dunes) +"mRO" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "mRP" = ( /turf/open/floor/kutjevo/colors/purple/inner_corner/west, /area/kutjevo/interior/construction) -"mSd" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/runoff_river) "mSm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer0, @@ -8857,12 +8351,6 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"mSM" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) "mTf" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer1, @@ -8871,32 +8359,18 @@ /obj/structure/largecrate/random, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) +"mUS" = ( +/obj/structure/platform/stone/kutjevo, +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) "mVr" = ( /turf/open/gm/river/desert/shallow_corner/west, /area/kutjevo/exterior/lz_river) -"mVC" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "cryocell2deval" - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/med/cells) "mWA" = ( /obj/structure/machinery/autolathe/full, /turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) -"mWO" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/interior/colony_central) -"mXZ" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/runoff_dunes) "mYj" = ( /turf/open/floor/coagulation/icon0_8, /area/kutjevo/exterior/scrubland) @@ -8912,6 +8386,11 @@ /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"mZo" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) "mZt" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, @@ -8925,13 +8404,17 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) +"naw" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/auto_doc) "naK" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/oob) -"nba" = ( -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_pad) "nbp" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer0, @@ -8939,12 +8422,6 @@ "nbu" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east_tech) -"nbH" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/runoff_river) "nbR" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_central) @@ -8981,31 +8458,13 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/triage) -"ngp" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "ngK" = ( /turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/colony_South/power2) -"ngX" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_ew_full_cap_butt" - }, -/obj/structure/platform/stair_cut{ - icon_state = "kutjevo_platform_sm_stair" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/construction) -"nhl" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 - }, +"ngQ" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) +/area/kutjevo/interior/colony_central) "nhT" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibleg" @@ -9016,6 +8475,11 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_river) +"niK" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/platform/metal/kutjevo/north, +/turf/open/gm/river/desert/shallow, +/area/kutjevo/exterior/runoff_river) "niP" = ( /obj/structure/tunnel, /turf/open/auto_turf/sand/layer0, @@ -9030,12 +8494,6 @@ /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east) -"njY" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/stonyfields) "nkV" = ( /obj/item/device/flashlight/on, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -9056,14 +8514,6 @@ "nlA" = ( /turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/exterior/construction) -"nlT" = ( -/obj/structure/platform/kutjevo, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_central) -"nlY" = ( -/obj/effect/sentry_landmark/lz_1/bottom_left, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/lz_dunes) "nmw" = ( /obj/structure/surface/table/almayer, /obj/item/paper/janitor, @@ -9119,10 +8569,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"nrD" = ( -/obj/structure/platform/kutjevo, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) "nsa" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor/kutjevo/colors/orange, @@ -9153,6 +8599,16 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/botany) +"ntr" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/obj/structure/platform_decoration/stone/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) +"nty" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/gm/river/desert/deep/covered, +/area/kutjevo/interior/complex/med/operating) "ntz" = ( /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/grey/plate, @@ -9161,36 +8617,21 @@ /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; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/purple, -/area/kutjevo/interior/complex/med/locks) -"nux" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/operating) -"nuA" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, +"nui" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, /obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, /turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/complex_border/med_rec) +/area/kutjevo/exterior/runoff_dunes) +"num" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/lz_dunes) +"nuP" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/platform/metal/kutjevo, +/turf/open/floor/coagulation/icon8_0, +/area/kutjevo/interior/colony_north) "nvd" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "kutjevo_hydlock_west"; @@ -9218,36 +8659,34 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) +"nxs" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/platform/metal/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) +"nxN" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_dunes) "nyp" = ( /obj/structure/machinery/power/apc/no_power/north, /obj/item/clothing/suit/armor/vest/security, /turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/operating) -"nyv" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, +"nyA" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/floor/coagulation/icon8_3, +/area/kutjevo/interior/construction) +"nyF" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/river/red, +/area/kutjevo/interior/oob) +"nzv" = ( +/obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland) -"nyY" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_N_East) -"nzB" = ( -/obj/structure/bed/sofa/vert/grey/bot{ - pixel_y = 4 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/kutjevo/interior/colony_central/mine_elevator) +/area/kutjevo/exterior/scrubland/south) "nzP" = ( /obj/structure/cable/heavyduty{ icon_state = "1-8" @@ -9276,6 +8715,18 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"nBb" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/pill_bottle/tramadol/skillless, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) "nCt" = ( /obj/structure/machinery/computer/card{ dir = 4 @@ -9321,12 +8772,24 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med/cells) -"nDT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 +"nEr" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) +"nEY" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/kutjevo/colors/cyan/inner_corner, +/area/kutjevo/interior/complex/med/operating) +"nEZ" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_full_cap_butt" }, -/turf/open/asphalt/cement_sunbleached, -/area/kutjevo/exterior/scrubland) +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) "nFM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -9360,19 +8823,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central/mine_elevator) -"nHO" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/interior/colony_central) -"nHU" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/darkred, -/area/kutjevo/interior/oob) "nHV" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ @@ -9385,6 +8835,12 @@ /obj/item/stack/sandbags_empty, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) +"nIs" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/scrubland/south) "nIA" = ( /obj/item/device/flashlight/lamp/tripod/grey, /obj/structure/machinery/light, @@ -9410,9 +8866,6 @@ }, /turf/open/floor/kutjevo/colors/orange/edge/west, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"nJC" = ( -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/scrubland/south) "nJY" = ( /obj/structure/machinery/light{ dir = 4 @@ -9425,15 +8878,14 @@ "nKh" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east) +"nKm" = ( +/obj/structure/monorail, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) "nKs" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/telecomm/lz2_north) -"nKO" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) "nLc" = ( /turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/complex/botany) @@ -9449,6 +8901,15 @@ }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) +"nLJ" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_sn_full_cap"; + pixel_y = 16 + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "nLM" = ( /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/tiles, @@ -9481,16 +8942,14 @@ "nLT" = ( /turf/open/desert/desert_shore/shore_corner2/east, /area/kutjevo/exterior/lz_river) +"nMg" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/closed/wall/kutjevo/colony, +/area/kutjevo/exterior/runoff_bridge) "nMz" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"nMA" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) "nOx" = ( /obj/structure/sign/safety/hazard{ pixel_x = 32 @@ -9510,16 +8969,6 @@ "nPf" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_South/power2) -"nPl" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_central) "nPq" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -9533,6 +8982,11 @@ "nPA" = ( /turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/colony_central) +"nPG" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/turf/open/floor/coagulation/icon8_8, +/area/kutjevo/interior/colony_north) "nPO" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/kutjevo/colors/cyan, @@ -9540,13 +8994,6 @@ "nPX" = ( /turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/spring) -"nQc" = ( -/obj/structure/platform_decoration/kutjevo/rock, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) "nQo" = ( /turf/open/gm/river/desert/shallow_edge/west, /area/kutjevo/exterior/lz_river) @@ -9554,18 +9001,11 @@ /obj/item/ammo_magazine/rifle/mar40, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) -"nQy" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/coagulation/icon7_8_2, -/area/kutjevo/interior/construction) -"nRd" = ( -/obj/item/tool/wrench, -/obj/item/prop/alien/hugger, -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/Northwest_Colony) +"nQI" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/gm/river/desert/deep/covered, +/area/kutjevo/exterior/scrubland) "nRk" = ( /obj/structure/machinery/computer/card{ dir = 4 @@ -9576,12 +9016,6 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med) -"nRE" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/cells) "nRY" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/almayer/research/containment/floor2, @@ -9604,6 +9038,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/botany/east_tech) +"nVD" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/stonyfields) "nVF" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/tan, @@ -9612,15 +9050,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) -"nWo" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/scrubland/south) "nWu" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -9631,6 +9060,14 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) +"nWN" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/runoff_dunes) "nXr" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/construction) @@ -9659,6 +9096,14 @@ /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"nZp" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/complex_border/med_rec) "nZv" = ( /obj/structure/machinery/light{ dir = 8 @@ -9703,17 +9148,6 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"ocd" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/colony_South/power2) "oce" = ( /turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/exterior/runoff_river) @@ -9730,6 +9164,15 @@ "oeE" = ( /turf/open/mars_cave/mars_cave_11, /area/kutjevo/exterior/scrubland) +"oeU" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_sn_full_cap"; + pixel_y = 16 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "ofn" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/auto_turf/sand/layer1, @@ -9749,6 +9192,10 @@ }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/power) +"ofX" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/exterior/scrubland) "ogf" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/barricade/handrail/kutjevo{ @@ -9761,9 +9208,18 @@ "ogo" = ( /turf/open/floor/kutjevo/colors/cyan/edge/north, /area/kutjevo/interior/complex/med/operating) +"ogt" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) "ogG" = ( /turf/open/floor/kutjevo/multi_tiles/west, /area/kutjevo/interior/complex/med/operating) +"ohG" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/foremans_office) "oii" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -9774,22 +9230,19 @@ "oiJ" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) +"oja" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/cells) "ojH" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"okh" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_one_access = null - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/foremans_office) "okv" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/colony_South/power2) @@ -9840,15 +9293,30 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) -"omA" = ( +"olR" = ( /obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_ew_full_cap_butt" + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/platform/stair_cut/alt{ - icon_state = "kutjevo_platform_sm_stair_alt" +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/colony_South/power2) +"olU" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) +"omR" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_dunes) +"onb" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, +/obj/structure/platform/metal/kutjevo_smooth/east, /turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/runoff_dunes) +/area/kutjevo/interior/complex/med/cells) "onk" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -9869,6 +9337,10 @@ /obj/item/stack/sheet/metal/large_stack, /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"ooW" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "opz" = ( /obj/structure/surface/table/almayer, /obj/item/device/tracker, @@ -9877,6 +9349,10 @@ "opQ" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"oqb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "oqd" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors, @@ -9894,6 +9370,10 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/lz_dunes) +"orf" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "oru" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -9916,13 +9396,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/oob/dev_room) -"otc" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/complex/med) "oum" = ( /obj/item/storage/toolbox/antag, /turf/open/floor/kutjevo/multi_tiles, @@ -9931,6 +9404,10 @@ /obj/structure/barricade/wooden, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/lz_pad) +"oup" = ( +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) "ouR" = ( /obj/structure/blocker/invisible_wall, /obj/structure/xenoautopsy/tank/larva, @@ -9942,11 +9419,6 @@ /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"ovm" = ( -/obj/structure/platform/kutjevo, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/runoff_dunes) "ovv" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/light{ @@ -9973,6 +9445,10 @@ /obj/item/device/flashlight, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) +"owt" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/colony_South/power2) "oww" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -9985,27 +9461,21 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"owK" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/runoff_river) "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/southwest, -/area/kutjevo/exterior/lz_river) "ozq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/power/comms) -"ozs" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors, -/area/kutjevo/interior/power/comms) "ozB" = ( /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/colors/green, @@ -10029,6 +9499,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"oCO" = ( +/obj/structure/platform/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/runoff_river) "oDe" = ( /obj/structure/closet/emcloset, /obj/structure/machinery/light{ @@ -10045,6 +9519,15 @@ /obj/structure/machinery/constructable_frame, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"oEQ" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) "oET" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -10065,25 +9548,6 @@ /obj/structure/machinery/computer/cameras, /turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"oGw" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/machinery/light, -/turf/open/gm/river/desert/deep/covered, -/area/kutjevo/interior/colony_South/power2) -"oGC" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/runoff_river) -"oIb" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/complex/med/cells) "oIq" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/kutjevo, @@ -10105,15 +9569,33 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east_tech) +"oJv" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) "oJE" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/exterior/lz_pad) +"oJQ" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/colony_north) "oJV" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"oKn" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "oKx" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/lz_pad) @@ -10121,6 +9603,11 @@ /obj/item/storage/toolbox/electrical, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) +"oKX" = ( +/obj/structure/platform/stone/kutjevo/west, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/oob/dev_room) "oLs" = ( /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand/layer0, @@ -10148,6 +9635,11 @@ "oMZ" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/foremans_office) +"oNe" = ( +/obj/structure/monorail, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/colony_central/mine_elevator) "oNE" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer0, @@ -10180,10 +9672,6 @@ /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/west, -/area/kutjevo/exterior/lz_river) "oPb" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, @@ -10215,22 +9703,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/operating) -"oRw" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "oRE" = ( /turf/open/floor/kutjevo/tan/grey_edge/west, /area/kutjevo/interior/complex/med/auto_doc) -"oRM" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/colony_South/power2) "oRZ" = ( /obj/structure/machinery/autodoc_console, /obj/structure/machinery/light, @@ -10246,6 +9721,13 @@ }, /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) +"oSQ" = ( +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/scrubland/south) +"oSU" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/exterior/lz_river) "oTF" = ( /obj/structure/sign/prop3, /turf/closed/wall/kutjevo/colony/reinforced/hull, @@ -10261,6 +9743,10 @@ "oUP" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/construction) +"oVt" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/operating) "oVO" = ( /obj/structure/machinery/light{ dir = 8 @@ -10274,12 +9760,11 @@ "oVX" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) -"oWo" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, -/area/kutjevo/interior/complex/med/operating) +"oWU" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/platform/metal/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "oXb" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -10287,10 +9772,23 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"oXv" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "oXH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) +"oYs" = ( +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_N_East) +"oYz" = ( +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_N_East) "oYQ" = ( /obj/structure/blocker/invisible_wall, /obj/structure/surface/table/reinforced/prison, @@ -10298,12 +9796,6 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/carpet, /area/kutjevo/interior/oob) -"oZD" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/colony_north) "oZE" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -10318,6 +9810,14 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) +"paf" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/closed/wall/kutjevo/colony, +/area/kutjevo/interior/complex/botany) +"pbk" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) "pbP" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/tan/alt_inner_edge/west, @@ -10328,6 +9828,11 @@ "pbY" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/complex/med) +"pcd" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "pci" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/telecomm/lz2_south) @@ -10340,14 +9845,6 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"peQ" = ( -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/exterior/runoff_river) "pfe" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/tan, @@ -10364,15 +9861,14 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) +"pfw" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/runoff_river) "pfz" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/complex_border/med_rec) -"pfC" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation/icon0_5, -/area/kutjevo/interior/construction) "pfK" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -10380,20 +9876,10 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"pfR" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/stonyfields) "pgl" = ( /obj/item/device/analyzer/plant_analyzer, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"phg" = ( -/obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/asphalt/cement_sunbleached, -/area/kutjevo/exterior/lz_pad) "phv" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -10420,6 +9906,11 @@ }, /turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) +"phX" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "pih" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/multi_tiles, @@ -10427,10 +9918,6 @@ "pio" = ( /turf/open/floor/kutjevo/tan/alt_inner_edge/west, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"piq" = ( -/obj/structure/platform/kutjevo/rock, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_dunes) "piA" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/sand/layer0, @@ -10453,13 +9940,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river/desert/shallow_edge/east, /area/kutjevo/exterior/lz_river) -"pkg" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon8_0, -/area/kutjevo/interior/construction) "pks" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/coagulation/icon8_6, @@ -10477,6 +9957,12 @@ "plf" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/runoff_bridge) +"plM" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland/south) "plQ" = ( /turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany/east) @@ -10503,6 +9989,18 @@ }, /turf/open/gm/river/desert/shallow_edge/southeast, /area/kutjevo/exterior/spring) +"pmE" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) +"pmP" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/stonyfields) "pmR" = ( /obj/structure/largecrate/supply/supplies/flares, /turf/open/auto_turf/sand/layer1, @@ -10517,24 +10015,14 @@ /obj/item/storage/belt/shotgun, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"pof" = ( -/obj/structure/platform/kutjevo, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/colony_central) -"pom" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_N_East) "poF" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"poJ" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "poZ" = ( /obj/item/stool{ pixel_y = 8 @@ -10558,26 +10046,28 @@ "pqs" = ( /turf/open/mars_cave/mars_cave_23, /area/kutjevo/exterior/scrubland) -"prv" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 +"prd" = ( +/obj/structure/platform_decoration/stone/kutjevo/north, +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_central) +"pre" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 14 }, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) +/turf/open/desert/desert_shore/desert_shore1, +/area/kutjevo/exterior/scrubland/south) +"prD" = ( +/obj/structure/platform_decoration/stone/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "prJ" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) -"prU" = ( -/obj/structure/bed/chair, -/obj/structure/platform/kutjevo{ - dir = 1 - }, +"prQ" = ( +/obj/structure/platform/stone/kutjevo/north, /turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/runoff_dunes) +/area/kutjevo/exterior/scrubland) "psu" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, @@ -10599,22 +10089,23 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"ptF" = ( +/obj/structure/bed/sofa/vert/grey/bot{ + pixel_y = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/floor/mech_bay_recharge_floor, +/area/kutjevo/interior/colony_central/mine_elevator) "ptH" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) -"ptR" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) -"ptS" = ( -/obj/structure/platform/kutjevo/rock, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/scrubland) "ptY" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) @@ -10624,12 +10115,6 @@ }, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) -"pvk" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland) "pvL" = ( /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..."; @@ -10648,19 +10133,12 @@ "pxb" = ( /turf/open/floor/kutjevo/colors/orange/edge/southeast, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"pxB" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/colony_South) +"pxl" = ( +/obj/structure/platform/stone/kutjevo, +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "pyp" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/power) @@ -10696,22 +10174,24 @@ /obj/structure/bed/chair, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"pAu" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/runoff_river) -"pBi" = ( -/obj/structure/platform/kutjevo, +"pAz" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/complex_border/med_rec) +"pAG" = ( +/obj/structure/platform/stone/kutjevo/north, /turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) +/area/kutjevo/exterior/stonyfields) "pBJ" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) +"pBN" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) "pBV" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -10724,6 +10204,17 @@ /obj/structure/machinery/vending/snack, /turf/open/floor/kutjevo/colors/purple/inner_corner/north, /area/kutjevo/interior/construction) +"pCP" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.05 + }, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/colony_South/power2) "pCS" = ( /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) @@ -10751,40 +10242,15 @@ "pEg" = ( /turf/open/mars_cave/mars_cave_5, /area/kutjevo/exterior/scrubland) -"pEt" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_central) "pEJ" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"pFZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached, -/area/kutjevo/interior/power) "pGc" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central/mine_elevator) -"pGv" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "kutjevo_medlock_pan"; - name = "\improper Medical North Shutters" - }, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/interior/complex/med/auto_doc) "pGO" = ( /obj/item/storage/briefcase, /turf/open/floor/kutjevo/colors/cyan/inner_corner/north, @@ -10809,21 +10275,6 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"pId" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/colony_north) "pIE" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_30"; @@ -10835,12 +10286,20 @@ /obj/item/prop/helmetgarb/spent_buckshot, /turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/exterior/runoff_bridge) +"pIU" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "pJa" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/botany) +"pJe" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "pJt" = ( /obj/structure/machinery/light{ dir = 8 @@ -10879,6 +10338,10 @@ /obj/item/clothing/suit/armor/vest/security, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) +"pLI" = ( +/obj/structure/platform_decoration/stone/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_central) "pLN" = ( /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/tan/alt_inner_edge/north, @@ -10898,28 +10361,14 @@ /obj/structure/window_frame/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"pNM" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/complex/med/locks) "pNW" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) +"pOc" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_river) "pOi" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -10944,24 +10393,13 @@ "pPJ" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/lz_dunes) -"pQN" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) -"pRb" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ +"pQE" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_central) +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "pRI" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -10977,15 +10415,18 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/colony_South/power2) +"pSi" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/obj/structure/platform/metal/kutjevo/east, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) "pSs" = ( /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) -"pSz" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_dunes) "pSK" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -10997,12 +10438,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med) -"pTI" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/stonyfields) "pUB" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -11010,16 +10445,16 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/lz_pad) -"pVd" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_dunes) "pVi" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_N_East) +"pVq" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "pVt" = ( /obj/structure/bed/roller, /obj/structure/machinery/light{ @@ -11031,12 +10466,6 @@ /obj/structure/tunnel, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_river) -"pWe" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "pWg" = ( /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors/red/tile, @@ -11056,11 +10485,14 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"pZx" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/window/framed/kutjevo/reinforced, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/complex/botany) +"pYX" = ( +/obj/structure/machinery/disposal, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/complex/med/operating) "pZJ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -11081,6 +10513,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/desert/desert_shore/shore_corner2/north, /area/kutjevo/interior/oob/dev_room) +"qcf" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/foremans_office) "qcE" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -11100,6 +10536,12 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/colors/orange/edge/north, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"qfT" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "qgr" = ( /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/colors, @@ -11136,29 +10578,36 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) -"qid" = ( -/obj/structure/bed/sofa/vert/grey/bot{ - pixel_y = 4 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/kutjevo/interior/power) "qjz" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) +"qjS" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "kutjevo_medlock_pan"; + name = "\improper Medical North Shutters" + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/interior/complex/med/auto_doc) +"qka" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/stonyfields) "qkj" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"qkP" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/construction) "qmR" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South) @@ -11174,15 +10623,23 @@ "qnU" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/exterior/lz_dunes) -"qog" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/runoff_river) "qoL" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/construction) +"qoQ" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/turf/open/floor/kutjevo/colors/green, +/area/kutjevo/interior/complex/botany) +"qpg" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist/kutjevo/burst, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med/operating) "qpi" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -11240,20 +10697,6 @@ }, /turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) -"qrl" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt{ - icon_state = "kutjevo_platform_sm_stair_alt" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_bridge) "qru" = ( /turf/open/mars_cave/mars_cave_11, /area/kutjevo/exterior/lz_dunes) @@ -11281,6 +10724,16 @@ "quW" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central/mine_elevator) +"qve" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/platform/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/complex/med/triage) +"qvF" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "qwg" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep/toxic, @@ -11302,15 +10755,6 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qyD" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "qyS" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -11333,31 +10777,10 @@ "qzY" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/lz_river) -"qAk" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/kutjevo/tan/multi_tiles/north, -/area/kutjevo/interior/power/comms) "qAP" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/river/red_pool, /area/kutjevo/interior/oob) -"qBa" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/runoff_dunes) -"qBz" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/oob) "qBN" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/triage) @@ -11376,6 +10799,10 @@ }, /turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/colony_South/power2) +"qDt" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/auto_doc) "qDu" = ( /obj/item/trash/kepler, /turf/open/auto_turf/sand/layer0, @@ -11383,6 +10810,14 @@ "qDH" = ( /turf/open/floor/kutjevo/tan/alt_edge/east, /area/kutjevo/exterior/lz_pad) +"qDQ" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/largecrate/random/barrel, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "qEq" = ( /turf/open/floor/kutjevo/tan/alt_inner_edge/east, /area/kutjevo/interior/complex/Northwest_Flight_Control) @@ -11396,6 +10831,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) +"qEG" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/colony_north) "qFh" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 4 @@ -11405,10 +10844,6 @@ "qFU" = ( /turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/runoff_dunes) -"qGa" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "qGx" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) @@ -11442,32 +10877,19 @@ /obj/effect/spawner/random/tool, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"qIn" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/scrubland) "qIN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck, /obj/item/device/flashlight/lamp, /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) -"qIV" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/colony_South/power2) "qJx" = ( /turf/open/floor/kutjevo/colors/orange/edge/southwest, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"qJS" = ( -/obj/effect/sentry_landmark/lz_1/bottom_right, +"qJZ" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, /turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_dunes) +/area/kutjevo/exterior/scrubland) "qKm" = ( /obj/structure/machinery/disposal, /obj/effect/decal/medical_decals{ @@ -11475,22 +10897,10 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"qKp" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/scrubland/south) -"qLa" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) -"qLS" = ( -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/scrubland/south) +"qKn" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "qLV" = ( /obj/structure/tunnel, /turf/open/auto_turf/sand/layer0, @@ -11501,17 +10911,6 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qNo" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) -"qNS" = ( -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/Northwest_Colony) "qOw" = ( /turf/open/gm/river/desert/shallow_edge/southeast, /area/kutjevo/exterior/runoff_river) @@ -11521,12 +10920,6 @@ }, /turf/open/floor/kutjevo/multi_tiles/north, /area/kutjevo/interior/complex/med/auto_doc) -"qOJ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/interior/complex/med/locks) "qOM" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/kutjevo/colors/purple/edge/northeast, @@ -11569,12 +10962,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east) -"qRR" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_dunes) "qSy" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/kutjevo/colors/green, @@ -11585,12 +10972,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_pad) -"qTN" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) "qUC" = ( /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/orange, @@ -11626,20 +11007,14 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/runoff_river) -"qVZ" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "distribution" - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) "qXd" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"qXB" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/colony_central) "qYn" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -11647,16 +11022,25 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"qZo" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/platform/metal/kutjevo, +/obj/structure/filtration/machine_96x96/indestructible{ + icon_state = "disinfection"; + layer = 3.5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/complex_border/med_park) +"qZD" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/platform/metal/kutjevo, +/turf/open/floor/coagulation/icon0_0, +/area/kutjevo/interior/construction) "qZO" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"raA" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) "raN" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/runoff_bridge) @@ -11678,6 +11062,11 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/lz_pad) +"rdX" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/oob) "rej" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/auto_turf/sand/layer0, @@ -11693,20 +11082,10 @@ "rfH" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_N_East) -"rfZ" = ( -/obj/structure/platform/kutjevo/rock, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "rgv" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"rgw" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_river) "rgQ" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -11717,12 +11096,6 @@ "rhK" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/operating) -"rhZ" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/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, @@ -11736,6 +11109,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/oob/dev_room) +"riH" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) "riI" = ( /obj/structure/machinery/door_control/brbutton/alt{ health = null; @@ -11762,30 +11139,15 @@ /obj/item/stack/sheet/wood/small_stack, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"rjS" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/red, -/area/kutjevo/interior/oob) +"rkd" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_central) "rkt" = ( /obj/structure/flora/grass/desert/lightgrass_9, /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) -"rky" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep/covered, -/area/kutjevo/interior/colony_central) "rkO" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/machinery/light, @@ -11807,13 +11169,6 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_pad) -"rmo" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) "rmt" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_central) @@ -11831,6 +11186,13 @@ "rno" = ( /turf/open/mars_cave/mars_cave_10, /area/kutjevo/exterior/scrubland) +"rnt" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/obj/effect/decal/medical_decals{ + icon_state = "cryocell2deval" + }, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/med/cells) "rnA" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/gm/dirtgrassborder2/north, @@ -11842,15 +11204,10 @@ "rob" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) -"roc" = ( -/obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_ew_full_cap_butt" - }, -/obj/structure/platform/stair_cut/alt{ - icon_state = "kutjevo_platform_sm_stair_alt" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/scrubland) +"roO" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "roS" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_bridge) @@ -11860,6 +11217,12 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"rqA" = ( +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) "rqD" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/blood/gibs/limb, @@ -11868,6 +11231,13 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"rqL" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/complex/med/cells) "rst" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer0, @@ -11876,26 +11246,33 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) -"rsV" = ( -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/scrubland/south) "rte" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/stonyfields) -"ruM" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"rua" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_half_cap" }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland) -"rvt" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/largecrate/supply/medicine/blood, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/kutjevo/colors/cyan/tile, +/area/kutjevo/interior/complex/med/cells) +"ruz" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "distribution" }, -/turf/open/floor/kutjevo/multi_tiles/southeast, +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"ruP" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/oob) "rvA" = ( /obj/structure/girder, /turf/open/floor/kutjevo/grey/plate, @@ -11910,6 +11287,12 @@ /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"rwg" = ( +/obj/structure/blocker/invisible_wall, +/obj/item/toy/inflatable_duck, +/obj/structure/platform/metal/kutjevo, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "rwj" = ( /obj/structure/window/framed/kutjevo/reinforced/hull, /turf/open/floor/plating/kutjevo, @@ -11953,32 +11336,20 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"rzb" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "rzc" = ( /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/runoff_dunes) "rzh" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/oob) -"rzq" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_South) "rzE" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/runoff_river) +"rzP" = ( +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/runoff_dunes) "rzT" = ( /obj/structure/bed{ can_buckle = 0; @@ -11998,25 +11369,6 @@ /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/spring) -"rDO" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/triage) -"rEo" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/construction) "rEs" = ( /turf/open/floor/plating/kutjevo/platingdmg1, /area/kutjevo/interior/complex/Northwest_Dorms) @@ -12041,6 +11393,11 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_central) +"rGh" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/kutjevo/colors/cyan/tile, +/area/kutjevo/interior/complex/med/cells) "rGm" = ( /obj/structure/machinery/space_heater, /turf/open/floor/kutjevo/colors/purple, @@ -12049,6 +11406,11 @@ /obj/structure/prop/dam/truck/cargo, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) +"rHt" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/window/framed/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/complex/botany) "rHy" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/lz_dunes) @@ -12076,6 +11438,11 @@ /obj/item/storage/backpack/lightpack, /turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) +"rIq" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo/north, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "rID" = ( /obj/structure/machinery/shower{ dir = 1; @@ -12089,6 +11456,9 @@ "rIL" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany/east_tech) +"rJl" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/kutjevo/exterior/scrubland/south) "rJU" = ( /turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/runoff_dunes) @@ -12128,15 +11498,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) -"rMZ" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/colony_central) "rNg" = ( /turf/open/desert/desert_shore/shore_corner2/east, /area/kutjevo/exterior/runoff_river) @@ -12144,12 +11505,10 @@ /obj/item/ammo_magazine/revolver/cmb, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"rOd" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) +"rOR" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/floor/coagulation/icon8_3, +/area/kutjevo/interior/colony_north) "rPq" = ( /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/kutjevo/multi_tiles, @@ -12177,12 +11536,6 @@ }, /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) -"rRL" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/coagulation/icon7_8_2, -/area/kutjevo/interior/colony_north) "rSg" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/floor/kutjevo/colors/green, @@ -12196,16 +11549,6 @@ "rSU" = ( /turf/open/floor/kutjevo/tan/alt_edge/west, /area/kutjevo/exterior/lz_pad) -"rTi" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland) -"rTv" = ( -/obj/structure/platform_decoration/kutjevo/rock, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_central) "rTF" = ( /turf/open/floor/kutjevo/tan/grey_edge/southwest, /area/kutjevo/interior/construction) @@ -12233,6 +11576,14 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/botany_medical_cave) +"rUv" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/desert/desert_shore/shore_corner2, +/area/kutjevo/exterior/runoff_river) +"rUD" = ( +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland) "rUE" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -12256,31 +11607,46 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) +"rVi" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/oob) +"rVI" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/colony_north) "rWK" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) +"rWP" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/cells) "rWY" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/kutjevo/tan/alt_edge/southeast, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"rXe" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/runoff_dunes) "rXj" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/pizza, /turf/open/floor/kutjevo/colors/purple/inner_corner/north, /area/kutjevo/interior/construction) +"rXS" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/complex/med) "rYc" = ( /obj/item/toy/handcard/uno_reverse_yellow, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"rYn" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/scrubland/south) "rYs" = ( /obj/structure/blocker/invisible_wall, /turf/open/desert/desert_shore/desert_shore1/north, @@ -12292,20 +11658,13 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"rYM" = ( -/obj/structure/platform/kutjevo, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/oob) "rYS" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/complex/botany) -"rZd" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, +"rYV" = ( +/obj/structure/platform_decoration/metal/kutjevo, /turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) +/area/kutjevo/exterior/lz_dunes) "rZV" = ( /obj/item/tool/wirecutters/clippers, /turf/open/floor/kutjevo/multi_tiles/west, @@ -12313,12 +11672,6 @@ "rZW" = ( /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"sal" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/interior/colony_central) "saK" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/kutjevo/multi_tiles, @@ -12329,27 +11682,18 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"sbg" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) "sbz" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"sbF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" +"sbI" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -10; + pixel_y = 10 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) +/turf/open/gm/river/desert/shallow, +/area/kutjevo/exterior/runoff_river) "sbX" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_river) @@ -12384,15 +11728,6 @@ "sef" = ( /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) -"sfz" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) "sgc" = ( /turf/open/floor/kutjevo/tan/alt_edge/southeast, /area/kutjevo/interior/complex/Northwest_Flight_Control) @@ -12456,20 +11791,6 @@ "slF" = ( /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/med/locks) -"slP" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/colony_South/power2) -"smo" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/complex_border/med_rec) "smF" = ( /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?"; @@ -12487,6 +11808,10 @@ }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/med) +"snc" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_river) "snd" = ( /obj/structure/prop/almayer/ship_memorial{ desc = "Kutjevo Refinery, a map by Triiodine. Special thanks to Tobinerd and all the playtesters that made this possible."; @@ -12502,6 +11827,10 @@ "snr" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"snz" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) "snP" = ( /obj/structure/flora/bush/ausbushes/grassybush{ pixel_x = 5; @@ -12515,26 +11844,17 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"soF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland) +"soy" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/scrubland/south) +"soz" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/colony_central) "soL" = ( /obj/item/stack/sheet/wood/small_stack, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/spring) -"soP" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/gm/river/desert/deep/covered, -/area/kutjevo/interior/complex/med/operating) "soQ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lady_finger, @@ -12545,16 +11865,16 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) -"sqr" = ( -/obj/structure/platform/kutjevo, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/scrubland/south) "sqP" = ( /obj/structure/sign/safety/hazard{ pixel_x = 32 }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) +"sqX" = ( +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "sre" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/medium, @@ -12575,12 +11895,6 @@ /obj/item/tool/wirecutters/clippers, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) -"stj" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/closed/wall/kutjevo/rock, -/area/kutjevo/exterior/runoff_dunes) "str" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" @@ -12590,24 +11904,17 @@ "stt" = ( /turf/open/floor/kutjevo/colors/orange/edge/west, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"svp" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, +"stz" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) -"svB" = ( -/obj/structure/platform_decoration/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/scrubland) -"swl" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland/south) +"swe" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/platform/metal/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/complex_border/med_park) "swq" = ( /obj/item/stack/sheet/metal, /turf/open/floor/kutjevo/tan, @@ -12619,37 +11926,23 @@ "sxy" = ( /turf/open/gm/river/desert/shallow_edge/northwest, /area/kutjevo/exterior/runoff_river) -"sxZ" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/pill_bottle/kelotane/skillless, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, -/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) +"szg" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/obj/structure/platform_decoration/stone/kutjevo/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) +"szl" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland) "szC" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"szF" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) "szJ" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand/layer1, @@ -12709,18 +12002,26 @@ "sCG" = ( /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) +"sDe" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + layer = 3 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "sDG" = ( /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/lz_river) -"sEf" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/complex_border/med_rec) "sEG" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/exterior/construction) +"sFD" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/kutjevo/exterior/scrubland/south) +"sFF" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_north) "sFL" = ( /obj/structure/machinery/light, /obj/structure/bed/chair{ @@ -12758,6 +12059,11 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"sHG" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/obj/item/stack/sandbags/large_stack, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) "sHQ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand/layer1, @@ -12769,12 +12075,27 @@ /obj/structure/barricade/wooden, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/locks) +"sIG" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/scrubland) "sJj" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/med/pano) +"sJm" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/machinery/vending/cigarette/colony{ + layer = 3 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "sJM" = ( /obj/structure/closet, /obj/item/clothing/head/helmet/marine/veteran/kutjevo, @@ -12794,11 +12115,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) -"sKN" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/cells) "sLf" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds2/delayone, @@ -12830,6 +12146,10 @@ /obj/structure/machinery/power/smes/buildable/charged, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"sNy" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/interior/complex/med/locks) "sNZ" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_N_East) @@ -12849,10 +12169,11 @@ "sOJ" = ( /turf/open/gm/river/desert/shallow_corner, /area/kutjevo/exterior/lz_river) -"sPp" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/gm/river/desert/deep/covered, -/area/kutjevo/interior/colony_South/power2) +"sPb" = ( +/obj/structure/bed/chair, +/obj/structure/platform/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/runoff_dunes) "sPE" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power/comms) @@ -12892,12 +12213,6 @@ /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"sTB" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/runoff_dunes) "sTC" = ( /obj/item/ammo_magazine/rifle/mar40/extended, /turf/open/floor/almayer/research/containment/floor2, @@ -12906,12 +12221,6 @@ /obj/structure/lattice, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"sUo" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/complex_border/med_rec) "sUs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/river/desert/deep/covered, @@ -12920,18 +12229,19 @@ /obj/structure/machinery/landinglight/ds2/delaythree, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_pad) +"sUu" = ( +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland) "sUC" = ( /obj/structure/blocker/invisible_wall, /obj/structure/filtration/coagulation_arm, /turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) -"sVc" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) +"sVd" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "sVx" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/complex/botany) @@ -12961,12 +12271,6 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/lz_pad) -"sXc" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_4" - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) "sXj" = ( /obj/structure/largecrate/random/case/small, /obj/effect/spawner/random/toolbox{ @@ -12985,12 +12289,6 @@ "sYd" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"sYo" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) "sYA" = ( /obj/structure/machinery/portable_atmospherics/hydroponics{ draw_warnings = 0; @@ -12998,16 +12296,16 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"sYV" = ( -/obj/structure/blocker/invisible_wall, -/obj/item/toy/inflatable_duck, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) "sZz" = ( /obj/effect/landmark/corpsespawner/colonist/kutjevo, /turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/exterior/runoff_bridge) +"sZI" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "sZO" = ( /obj/structure/machinery/light, /obj/effect/landmark/objective_landmark/science, @@ -13017,7 +12315,7 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/colony_central) -"sZZ" = ( +"tac" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 }, @@ -13049,19 +12347,10 @@ /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"tdT" = ( -/obj/structure/platform/kutjevo, +"tdQ" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, /turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) -"tdZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/cyan/tile, -/area/kutjevo/interior/complex/med/cells) +/area/kutjevo/exterior/scrubland) "ten" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/colors/cyan/edge/north, @@ -13076,6 +12365,14 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) +"teZ" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_bridge) "tfv" = ( /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/colors/orange/edge, @@ -13086,10 +12383,19 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) +"tfL" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/platform/metal/kutjevo, +/turf/open/floor/coagulation/icon8_0, +/area/kutjevo/interior/construction) "tgl" = ( /obj/item/weapon/gun/revolver/cmb, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"tgC" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_central) "tgO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -13107,6 +12413,11 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/operating) +"the" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/complex_border/med_park) "thu" = ( /obj/structure/machinery/light{ dir = 8 @@ -13124,22 +12435,14 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/scrubland) -"tiJ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) +"tit" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "tiL" = ( /obj/item/prop/alien/hugger, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) -"tiO" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/scrubland) "tiW" = ( /obj/item/prop/helmetgarb/spent_buckshot, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -13155,12 +12458,6 @@ "tjS" = ( /turf/open/desert/desert_shore/shore_corner2/north, /area/kutjevo/exterior/lz_river) -"tjZ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/colony_north) "tka" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/auto_turf/sand/layer0, @@ -13247,16 +12544,16 @@ "tqE" = ( /turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany/east_tech) -"trC" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/oob) +"tqF" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/runoff_river) +"tqN" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland/south) "trU" = ( /obj/structure/machinery/shower{ name = "automatic sprinkler"; @@ -13267,6 +12564,12 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob) +"tsr" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/west, +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "tsK" = ( /obj/effect/spawner/random/toolbox{ pixel_x = -2; @@ -13284,21 +12587,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) -"tuW" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/power) "tvb" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/colors/cyan/inner_corner/west, /area/kutjevo/interior/complex/med/operating) -"tvJ" = ( -/obj/structure/platform_decoration/kutjevo/rock, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "twn" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -13309,16 +12601,18 @@ "twq" = ( /turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/runoff_dunes) -"txe" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars_cave/mars_cave_23, -/area/kutjevo/exterior/scrubland) +"twY" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "txH" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) +"txS" = ( +/obj/effect/sentry_landmark/lz_1/bottom_left, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_dunes) "tye" = ( /obj/structure/flora/bush/ausbushes/ppflowers{ icon_state = "sparsegrass_2" @@ -13329,6 +12623,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_north) +"tyr" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) "tyJ" = ( /obj/structure/bed/chair/office/light, /turf/open/floor/kutjevo/grey/plate, @@ -13348,6 +12646,10 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) +"tzY" = ( +/obj/effect/sentry_landmark/lz_1/top_right, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_dunes) "tAQ" = ( /obj/structure/closet/firecloset/full, /obj/effect/landmark/objective_landmark/far, @@ -13416,17 +12718,12 @@ /obj/item/fuel_cell, /turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/power) -"tEK" = ( -/obj/structure/bed/sofa/vert/grey/bot{ - pixel_y = 4 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/mech_bay_recharge_floor, -/area/kutjevo/interior/power) +"tEB" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/west, +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_N_East) "tFe" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange/edge, @@ -13465,6 +12762,14 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/lz_pad) +"tGQ" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/colony_South/power2) "tHh" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_pad) @@ -13507,16 +12812,12 @@ /obj/structure/bed/sofa/vert/white, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/auto_doc) +"tKH" = ( +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/scrubland/south) "tKY" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) -"tLD" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation/icon0_0, -/area/kutjevo/interior/construction) "tLO" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/tan, @@ -13570,24 +12871,16 @@ /obj/item/stack/sheet/metal/med_small_stack, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"tQi" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_dunes) +"tQl" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/power/comms) "tQB" = ( /turf/open/desert/desert_shore/shore_edge1/west, /area/kutjevo/exterior/runoff_dunes) -"tQO" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_ew_full_cap_butt" - }, -/obj/structure/platform/stair_cut{ - icon_state = "kutjevo_platform_sm_stair" - }, -/turf/open/floor/plating/kutjevo, +"tRi" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) "tRp" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -13596,16 +12889,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"tRG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - icon_state = "kutjevo_platform_sm_stair" - }, -/obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_ew_full_cap_butt" - }, -/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, @@ -13615,6 +12898,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South) +"tTf" = ( +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/exterior/lz_pad) "tTi" = ( /obj/structure/blocker/invisible_wall, /obj/structure/filingcabinet, @@ -13632,6 +12919,22 @@ "tUz" = ( /turf/open/gm/river/desert/shallow_edge/east, /area/kutjevo/exterior/lz_river) +"tVg" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_sn_full_cap"; + pixel_y = 16 + }, +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/colony_South/power2) "tVs" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/almayer/research/containment/floor2, @@ -13673,14 +12976,6 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/tan/alt_inner_edge/east, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"uam" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/oob) "uaz" = ( /turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/spring) @@ -13696,6 +12991,10 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"ubI" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/runoff_river) "ubR" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -13703,14 +13002,10 @@ "ubV" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_river) -"udm" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_dunes) -"ueJ" = ( -/obj/structure/platform/kutjevo/rock, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_N_East) +"uew" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/interior/complex/med/locks) "ueM" = ( /turf/open/desert/desert_shore/shore_corner2/east, /area/kutjevo/exterior/spring) @@ -13808,12 +13103,6 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"ujG" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/scrubland) "ujT" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -13821,34 +13110,38 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) -"ukd" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) "ukN" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) +"ulc" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/platform/metal/kutjevo, +/turf/open/floor/coagulation/icon0_0, +/area/kutjevo/interior/colony_north) "ulo" = ( /obj/item/bodybag/tarp/reactive, /obj/item/bodybag/tarp/reactive, /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) -"ult" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/runoff_bridge) +"ulq" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/complex_border/med_park) "ulJ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/Northwest_Colony) +"ulS" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "ulV" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/kutjevo/colors/green, @@ -13865,22 +13158,22 @@ /obj/item/trash/cigbutt/bcigbutt, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central) -"umQ" = ( -/turf/open/desert/desert_shore/shore_edge1/west, -/area/kutjevo/exterior/scrubland/south) -"una" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) "unr" = ( /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/colony_South/power2) +"uog" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) +"uon" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/interior/oob) "uoz" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/oob/dev_room) @@ -13900,38 +13193,16 @@ /obj/structure/bed/chair/office/light, /turf/open/floor/kutjevo/colors/cyan/edge/west, /area/kutjevo/interior/complex/med) -"uqL" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/lz_river) "uqR" = ( /obj/structure/machinery/light, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) -"uqW" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/alt_edge/east, -/area/kutjevo/interior/colony_central) "uri" = ( /obj/structure/flora/bush/ausbushes/ppflowers{ icon_state = "fullgrass_3" }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"urm" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/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, @@ -13944,15 +13215,6 @@ /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"usc" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/coagulation/icon8_8, -/area/kutjevo/interior/colony_north) "usd" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 @@ -13964,12 +13226,24 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"usz" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + name = "\improper Kutjevo Dam Storm Shutters" + }, +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/interior/power) "usP" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) +"usX" = ( +/obj/structure/platform/stone/kutjevo/north, +/turf/open/mars_cave/mars_cave_23, +/area/kutjevo/exterior/scrubland) "utY" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony, @@ -13979,50 +13253,34 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) +"uwj" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/turf/open/floor/coagulation/icon8_8, +/area/kutjevo/interior/construction) "uwD" = ( /obj/item/clothing/mask/cigarette/pipe/cobpipe, /turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/complex/botany) -"uwY" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/oob) +"uwI" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_central) +"uxf" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/interior/construction) "uxA" = ( /obj/structure/prop/dam/truck, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"uze" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/runoff_river) "uzp" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/Northwest_Dorms) -"uzq" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) "uzJ" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/spring) -"uAh" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) "uAz" = ( /obj/structure/fence, /turf/open/auto_turf/sand/layer1, @@ -14066,14 +13324,6 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"uCR" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) "uDm" = ( /obj/structure/surface/table/gamblingtable, /obj/effect/landmark/objective_landmark/science, @@ -14083,12 +13333,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/interior/oob/dev_room) -"uEi" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/complex_border/med_rec) "uEk" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/surgery, @@ -14109,22 +13353,9 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/tan/alt_edge/north, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"uEY" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/north, -/area/kutjevo/exterior/complex_border/med_rec) "uGd" = ( /turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/exterior/lz_river) -"uGB" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1/north, -/area/kutjevo/interior/oob) "uGN" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, @@ -14139,6 +13370,17 @@ "uHP" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"uHR" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) +"uHZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "uIg" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "kutjevo_medlock_west"; @@ -14186,6 +13428,10 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/auto_doc) +"uKT" = ( +/obj/structure/platform/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) "uKW" = ( /obj/structure/machinery/light{ dir = 1 @@ -14221,38 +13467,10 @@ /obj/structure/closet/crate/secure/ammo, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"uNC" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/colors/cyan/inner_corner, -/area/kutjevo/interior/complex/med/operating) -"uNI" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/oob) -"uNJ" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) "uNW" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"uNZ" = ( -/obj/structure/machinery/colony_floodlight, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_dunes) "uOe" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ explo_proof = 1 @@ -14265,15 +13483,13 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) -"uPu" = ( -/obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_ew_full_cap_butt" - }, -/obj/structure/platform/stair_cut/alt{ - icon_state = "kutjevo_platform_sm_stair_alt" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) +"uPt" = ( +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "uPE" = ( /obj/structure/bed/sofa/vert/grey/top, /obj/structure/barricade/handrail/strata{ @@ -14325,13 +13541,11 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/med/auto_doc) -"uRP" = ( -/obj/structure/prop/dam/boulder/boulder3, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_dunes) +"uRH" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/cells) "uSr" = ( /obj/item/stack/cable_coil/random, /turf/open/floor/plating/kutjevo, @@ -14348,17 +13562,6 @@ /obj/item/clothing/suit/armor/vest/security, /turf/open/floor/kutjevo/tan/grey_edge, /area/kutjevo/interior/complex/med) -"uTn" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_sn_full_cap"; - pixel_y = 16 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles/southeast, -/area/kutjevo/interior/power) "uTo" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = -28 @@ -14369,12 +13572,10 @@ /obj/structure/largecrate, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/exterior/lz_pad) -"uWk" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, +"uVc" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_corner2/west, +/turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) "uWu" = ( /obj/effect/spawner/random/toolbox{ @@ -14383,6 +13584,10 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) +"uWT" = ( +/obj/effect/sentry_landmark/lz_1/bottom_right, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_dunes) "uXM" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light{ @@ -14400,6 +13605,10 @@ }, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_river) +"uYB" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/exterior/scrubland) "uZa" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light{ @@ -14407,13 +13616,18 @@ }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"uZT" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, +"uZG" = ( +/obj/structure/platform/metal/kutjevo, /obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/oob) +"uZM" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo/west, +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/platform/stone/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/colony_South) "vaa" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/kutjevo/multi_tiles/southwest, @@ -14441,17 +13655,6 @@ /obj/structure/prop/dam/wide_boulder/boulder1, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"vbm" = ( -/obj/structure/bed/sofa/vert/grey/bot{ - pixel_y = 4 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/mech_bay_recharge_floor, -/area/kutjevo/interior/colony_central/mine_elevator) "vbA" = ( /turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/runoff_dunes) @@ -14468,36 +13671,35 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) +"vcO" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) "vcT" = ( /turf/open/desert/desert_shore/shore_edge1/north, /area/kutjevo/exterior/lz_river) -"vcW" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/colony_central) -"vcY" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) -"vdl" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/orange, +"vdp" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/asphalt/cement_sunbleached, /area/kutjevo/interior/power) "vdv" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_S_East) +"vdC" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/stairs/perspective/kutjevo{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) +"vdD" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/colony_South/power2) "vdH" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/kutjevo/colors/red, @@ -14553,12 +13755,6 @@ "vfr" = ( /turf/open/floor/kutjevo/colors/purple/edge/north, /area/kutjevo/interior/construction) -"vfZ" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/runoff_river) "vgw" = ( /turf/open/floor/kutjevo/colors/cyan/edge/east, /area/kutjevo/interior/complex/med) @@ -14580,19 +13776,14 @@ /obj/structure/flora/grass/desert/lightgrass_11, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/spring) -"vhQ" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_dunes) -"via" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) "vin" = ( /turf/open/floor/coagulation/icon2_0, /area/kutjevo/exterior/lz_river) +"viE" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo/north, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/oob) "viU" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) @@ -14600,18 +13791,15 @@ /obj/structure/bed/chair, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) +"vkr" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "vkK" = ( /turf/open/gm/river/desert/shallow_edge/northeast, /area/kutjevo/exterior/runoff_dunes) -"vkV" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, -/area/kutjevo/interior/complex/botany/east_tech) "vlg" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -14634,16 +13822,36 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/desert/desert_shore/shore_corner2/north, /area/kutjevo/exterior/runoff_river) -"vmH" = ( -/obj/structure/monorail, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/colony_central/mine_elevator) "vmJ" = ( /turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/complex/med) +"vmN" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/gm/river/desert/deep/covered, +/area/kutjevo/interior/colony_South/power2) +"vnq" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/purple, +/area/kutjevo/interior/complex/med/locks) +"vnv" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_full_cap_butt" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/colony_South/power2) +"vnM" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/complex_border/med_park) "vnO" = ( /obj/structure/bed/chair{ dir = 8 @@ -14659,23 +13867,19 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"vpq" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/exterior/scrubland) "vqQ" = ( /obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/telecomm/lz2_south) -"vre" = ( -/obj/structure/platform/kutjevo{ - dir = 8 +"vqS" = ( +/obj/structure/filtration/machine_96x96/indestructible{ + icon_state = "disinfection"; + layer = 3.5 }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/kutjevo/colors, -/area/kutjevo/interior/power/comms) +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) "vrB" = ( /obj/structure/machinery/floodlight, /turf/open/floor/kutjevo/tan, @@ -14684,12 +13888,6 @@ /obj/structure/bed/stool, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"vsq" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/purple/edge/east, -/area/kutjevo/interior/construction) "vsP" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_N_East) @@ -14708,10 +13906,18 @@ "vuo" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"vvE" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) +"vuv" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) +"vvM" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/prop/dam/crane/cargo{ + layer = 3.3 + }, +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/interior/power) "vxe" = ( /turf/open/floor/kutjevo/tan/alt_edge/west, /area/kutjevo/interior/colony_South) @@ -14720,36 +13926,15 @@ /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"vys" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/runoff_bridge) +"vxV" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/complex_border/med_park) "vzy" = ( /obj/structure/tunnel, /turf/open/gm/dirtgrassborder2, /area/kutjevo/exterior/complex_border/med_park) -"vzC" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/complex_border/med_rec) -"vAL" = ( -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/exterior/Northwest_Colony) "vBr" = ( /obj/structure/prop/dam/gravestone{ icon_state = "gravestone2" @@ -14764,22 +13949,6 @@ /obj/item/reagent_container/food/snacks/applecakeslice, /turf/open/floor/kutjevo/tan/grey_edge/west, /area/kutjevo/interior/complex/Northwest_Dorms) -"vCT" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/red_pool, -/area/kutjevo/interior/power) -"vDi" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/kutjevo/exterior/scrubland) "vDu" = ( /obj/structure/bed/chair{ pixel_y = 8 @@ -14801,17 +13970,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"vDR" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.05 - }, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/colony_South/power2) "vDS" = ( /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) @@ -14836,15 +13994,6 @@ /obj/item/tool/wirecutters, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"vFc" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/complex_border/med_rec) "vFg" = ( /obj/structure/window/framed/kutjevo/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer, @@ -14854,26 +14003,10 @@ /obj/item/weapon/gun/rifle/mar40, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) -"vFV" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power) "vGf" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"vGx" = ( -/obj/structure/filtration/coagulation_arm, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep/toxic, -/area/kutjevo/interior/oob) "vHf" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/sodawater{ @@ -14890,12 +14023,14 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/kutjevo/tan/multi_tiles/east, /area/kutjevo/interior/complex/botany/east) -"vHG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 +"vHB" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null }, -/turf/open/desert/desert_shore/shore_corner2/west, -/area/kutjevo/exterior/runoff_river) +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/foremans_office) "vHL" = ( /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) @@ -14930,15 +14065,10 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"vKQ" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) +"vKF" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/gm/river/desert/shallow, +/area/kutjevo/exterior/runoff_river) "vKV" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/mask/cigarette/weed{ @@ -14970,6 +14100,11 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med/pano) +"vMd" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/foremans_office) "vMf" = ( /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/colors/purple, @@ -14978,6 +14113,15 @@ /obj/structure/fence, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) +"vMP" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power) +"vMT" = ( +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "vNt" = ( /obj/structure/bed/sofa/vert/white/top{ pixel_y = 17 @@ -14991,12 +14135,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) -"vOt" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/foremans_office) "vOC" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/multi_tiles, @@ -15026,13 +14164,10 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"vRH" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo/rock, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) +"vSB" = ( +/obj/structure/platform/stone/kutjevo/west, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/scrubland) "vSE" = ( /obj/structure/cargo_container/grant/right, /turf/open/floor/kutjevo/colors/orange, @@ -15041,24 +14176,23 @@ /obj/structure/machinery/autolathe/full, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"vSW" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/cyan/tile, -/area/kutjevo/interior/complex/med/cells) "vTc" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"vTe" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1/east, +"vTO" = ( +/obj/structure/monorail, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) +"vUi" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"vUI" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/desert/desert_shore/desert_shore1/west, /area/kutjevo/exterior/runoff_river) -"vTp" = ( -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/floor/kutjevo/tan/alt_edge/west, -/area/kutjevo/exterior/lz_pad) "vVr" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_S_East) @@ -15066,12 +14200,10 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"vXd" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/edge/east, -/area/kutjevo/interior/construction) +"vWj" = ( +/obj/effect/sentry_landmark/lz_1/top_left, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_dunes) "vXo" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -15095,9 +14227,6 @@ /obj/structure/bed/chair/office/dark, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/colony_South/power2) -"vYC" = ( -/turf/open/desert/desert_shore/desert_shore1/east, -/area/kutjevo/exterior/scrubland/south) "vYD" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/colors/cyan, @@ -15115,6 +14244,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) +"vYL" = ( +/obj/structure/platform/stone/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_dunes) "vYQ" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "distribution-damaged" @@ -15126,37 +14259,21 @@ /obj/structure/machinery/recharge_station, /turf/open/floor/kutjevo/multi_tiles/southwest, /area/kutjevo/interior/colony_South/power2) -"wae" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) "wax" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/exterior/lz_pad) -"waP" = ( -/obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_ew_full_cap_butt" - }, -/obj/structure/platform/stair_cut/alt{ - icon_state = "kutjevo_platform_sm_stair_alt" - }, -/turf/open/floor/kutjevo/colors/green, -/area/kutjevo/interior/complex/botany) -"waW" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) +"waY" = ( +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/exterior/runoff_dunes) "wbE" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) +"wbH" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/closed/wall/kutjevo/rock, +/area/kutjevo/exterior/runoff_bridge) "wbV" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/exterior/runoff_dunes) @@ -15213,21 +14330,13 @@ "wgK" = ( /turf/open/floor/coagulation/icon8_0, /area/kutjevo/exterior/scrubland) -"wgT" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/lz_dunes) -"wix" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 +"whj" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/triage) "wiC" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/sand/layer0, @@ -15237,17 +14346,15 @@ /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"wjI" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/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) +"wkl" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "wkw" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, @@ -15258,10 +14365,31 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) +"wkG" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) +"wkS" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_ew_half_cap" + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_dunes) "wlg" = ( /obj/structure/surface/rack, /turf/open/floor/kutjevo/tan, /area/kutjevo/exterior/lz_pad) +"wlk" = ( +/obj/structure/platform_decoration/stone/kutjevo/west, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/oob/dev_room) +"wlp" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/power/comms) "wlq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/engineering_construction, @@ -15301,9 +14429,10 @@ }, /turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/complex/Northwest_Dorms) -"wph" = ( +"wot" = ( +/obj/structure/platform/metal/kutjevo, /turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland/south) +/area/kutjevo/interior/colony_north) "wpq" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/shallow, @@ -15326,28 +14455,25 @@ /obj/structure/bed/chair, /turf/open/gm/dirtgrassborder2/east, /area/kutjevo/exterior/complex_border/med_park) -"wqU" = ( -/turf/closed/wall/kutjevo/colony/reinforced, -/area/kutjevo/exterior/scrubland/south) "wrk" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_pad) +"wrm" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "wrO" = ( /turf/open/gm/river/desert/shallow_edge/north, /area/kutjevo/exterior/spring) "wrV" = ( /turf/open/desert/desert_shore/desert_shore1/east, /area/kutjevo/exterior/spring) -"wsf" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/interior/oob) "wsk" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -15378,13 +14504,6 @@ /obj/structure/largecrate/random/case, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"wuy" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/runoff_river) "wuH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand/layer1, @@ -15443,12 +14562,10 @@ /obj/item/stack/cable_coil/random, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"wwq" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/north, -/area/kutjevo/exterior/runoff_river) +"wwl" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "wwQ" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -15465,6 +14582,12 @@ /obj/item/tool/crowbar, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"wyq" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "wyy" = ( /obj/structure/machinery/light{ dir = 1 @@ -15478,6 +14601,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"wzY" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland) "wAo" = ( /obj/structure/surface/table/gamblingtable, /obj/item/toy/deck/uno, @@ -15486,33 +14613,20 @@ "wAp" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/construction) -"wAq" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/interior/complex/med/locks) -"wAF" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/construction) "wBt" = ( /obj/structure/machinery/colony_floodlight{ pixel_y = 10 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_river) -"wCe" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/botany) +"wBI" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland) +"wBO" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/scrubland) "wCJ" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, @@ -15543,12 +14657,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/foremans_office) -"wEh" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge/northeast, -/area/kutjevo/exterior/runoff_river) "wEU" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -15580,10 +14688,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"wJy" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) "wJZ" = ( /obj/structure/flora/grass/desert/lightgrass_4, /obj/structure/blocker/invisible_wall, @@ -15607,25 +14711,26 @@ /obj/effect/landmark/corpsespawner/colonist/kutjevo, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"wLB" = ( -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 +"wLH" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 10; + icon_state = "p_stair_full" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) -"wMr" = ( -/obj/effect/sentry_landmark/lz_1/bottom_right, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_dunes) +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_bridge) "wMw" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"wMS" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland/south) "wNh" = ( /obj/structure/machinery/power/apc/no_power/north, /obj/structure/machinery/light{ @@ -15659,12 +14764,25 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"wQZ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"wQg" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" }, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/oob) +"wRj" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_river) +"wSk" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, /turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_north) +/area/kutjevo/exterior/scrubland) "wSw" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/colors/red/tile, @@ -15675,6 +14793,11 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) +"wTk" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/runoff_dunes) "wTr" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -15683,6 +14806,14 @@ "wTt" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) +"wTB" = ( +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_ew_full_cap_butt" + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) "wUa" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer1, @@ -15698,6 +14829,12 @@ /obj/item/stack/cable_coil/random, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) +"wVK" = ( +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/scrubland/south) +"wWa" = ( +/turf/closed/wall/kutjevo/rock, +/area/kutjevo/exterior/scrubland/south) "wWk" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -15705,15 +14842,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power/comms) -"wWq" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_bridge) "wWy" = ( /turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/complex/med) @@ -15749,6 +14877,13 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) +"wYf" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/colony_South/power2) "wYp" = ( /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) @@ -15756,6 +14891,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) +"wYS" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/oob) "wZo" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -15785,6 +14925,10 @@ /obj/item/explosive/plastic, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) +"xbM" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/power/comms) "xca" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/kutjevo/tan/alt_inner_edge/north, @@ -15808,14 +14952,22 @@ /obj/item/clothing/accessory/storage/black_vest, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) -"xeG" = ( -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/lz_pad) +"xeY" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/interior/power) "xfW" = ( /obj/item/reagent_container/glass/bucket, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) +"xgk" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) "xgl" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med/operating) @@ -15831,6 +14983,12 @@ }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/botany) +"xie" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland/south) "xjf" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -15842,19 +15000,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles/north, /area/kutjevo/interior/power/comms) -"xjg" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = 5; - pixel_y = -12 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1/west, -/area/kutjevo/exterior/lz_river) "xjY" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/power) @@ -15887,16 +15032,10 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"xms" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt{ - icon_state = "kutjevo_platform_sm_stair_alt" - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/runoff_bridge) +"xmQ" = ( +/obj/structure/platform_decoration/stone/kutjevo, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/scrubland) "xnk" = ( /obj/item/ammo_magazine/rifle/mar40, /turf/open/floor/kutjevo/tan/multi_tiles/north, @@ -15929,6 +15068,11 @@ "xoV" = ( /turf/open/desert/desert_shore/shore_corner2/east, /area/kutjevo/exterior/runoff_dunes) +"xpa" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/power) "xpd" = ( /obj/structure/largecrate/guns/merc, /turf/open/auto_turf/sand/layer0, @@ -15946,12 +15090,25 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) +"xqK" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "xqM" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"xqQ" = ( +/obj/structure/platform/stone/kutjevo, +/obj/structure/platform/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_central) "xqV" = ( /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand/layer1, @@ -15989,14 +15146,14 @@ /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_pad) -"xti" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) +"xty" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/runoff_river) +"xtz" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/operating) "xtN" = ( /obj/structure/bed/chair{ dir = 4 @@ -16046,15 +15203,6 @@ /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"xyx" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/purple, -/area/kutjevo/interior/complex/med/locks) "xyF" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/grey/plate, @@ -16083,14 +15231,6 @@ }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/lz_pad) -"xBb" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/runoff_dunes) "xBm" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/Northwest_Colony) @@ -16146,12 +15286,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"xIk" = ( -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 14 - }, -/turf/open/desert/desert_shore/desert_shore1, -/area/kutjevo/exterior/scrubland/south) "xIo" = ( /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/auto_turf/sand/layer0, @@ -16167,6 +15301,14 @@ /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/auto_doc) +"xKz" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_central) +"xLW" = ( +/obj/structure/platform_decoration/stone/kutjevo/east, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_dunes) "xMm" = ( /obj/structure/largecrate/machine/autodoc, /turf/open/auto_turf/sand/layer2, @@ -16187,14 +15329,6 @@ "xNG" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/telecomm/lz1_south) -"xOx" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/kutjevo/multi_tiles/southwest, -/area/kutjevo/interior/colony_South/power2) "xOU" = ( /obj/structure/sign/safety/hazard{ pixel_x = -32 @@ -16209,12 +15343,16 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) -"xOZ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland/south) +"xPn" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/exterior/runoff_dunes) +"xPw" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/construction) "xPU" = ( /obj/effect/landmark/nightmare{ insert_tag = "communications" @@ -16239,23 +15377,10 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"xRx" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/cyan/tile, -/area/kutjevo/interior/complex/med/cells) "xRY" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) -"xSn" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/closed/wall/kutjevo/rock, -/area/kutjevo/exterior/runoff_bridge) "xSX" = ( /obj/structure/machinery/light{ dir = 1 @@ -16271,21 +15396,23 @@ /obj/item/stack/sheet/metal/small_stack, /turf/open/floor/kutjevo/colors/orange/edge/west, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"xVt" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/stairs/perspective/kutjevo{ - dir = 9; - icon_state = "p_stair_full" +"xUG" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) -"xVM" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_N_East) +/obj/item/storage/pill_bottle/kelotane/skillless, +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/kutjevo/grey/plate, +/area/kutjevo/interior/complex/med/operating) +"xVy" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/Northwest_Colony) "xVZ" = ( /turf/open/floor/kutjevo/tan/multi_tiles/west, /area/kutjevo/interior/colony_South/power2) @@ -16308,12 +15435,11 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"xYs" = ( -/obj/structure/platform_decoration/kutjevo/rock, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/scrubland) -"xYt" = ( -/turf/open/desert/desert_shore/shore_edge1, +"xYD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland/south) "xYR" = ( /obj/item/stack/sheet/wood, @@ -16349,6 +15475,14 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) +"xZR" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/machinery/smartfridge/chemistry, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/kutjevo/colors/cyan/tile, +/area/kutjevo/interior/complex/med/operating) "xZT" = ( /obj/effect/spawner/random/tool, /turf/open/auto_turf/sand/layer0, @@ -16356,16 +15490,6 @@ "yah" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/botany/east_tech) -"yas" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_ew_full_cap_butt" - }, -/obj/structure/platform/stair_cut{ - icon_state = "kutjevo_platform_sm_stair" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power) "yaE" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 @@ -16405,10 +15529,22 @@ "ycN" = ( /turf/open/floor/kutjevo/tan/multi_tiles/east, /area/kutjevo/interior/complex/botany) -"ydh" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/desert/shallow_edge/east, -/area/kutjevo/exterior/runoff_river) +"ydQ" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) +"yeD" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_bridge) "yeY" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/orange, @@ -16419,6 +15555,10 @@ "yfo" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central) +"yfH" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/floor/coagulation/icon7_0, +/area/kutjevo/interior/construction) "ygh" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/visible{ @@ -16474,18 +15614,6 @@ "yir" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/botany/east) -"yiX" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_ew_half_cap" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/largecrate/supply/medicine/blood, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/kutjevo/colors/cyan/tile, -/area/kutjevo/interior/complex/med/cells) "yjF" = ( /turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/runoff_bridge) @@ -16502,12 +15630,6 @@ /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"ykE" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/cells) "ykL" = ( /obj/structure/largecrate/random, /turf/open/floor/kutjevo/multi_tiles/east, @@ -16517,28 +15639,11 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"ylf" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/exterior/complex_border/med_rec) -"ylh" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/pill_bottle/tramadol/skillless, -/obj/structure/platform/kutjevo/smooth, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/multi_tiles/west, -/area/kutjevo/interior/complex/med/operating) +"yln" = ( +/obj/structure/platform/stone/kutjevo/east, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/oob/dev_room) "ymc" = ( /obj/structure/machinery/shower{ name = "automatic sprinkler"; @@ -16823,9 +15928,9 @@ dxF dxF dxF mxB -svp +rVi fQB -loe +aVR mxB dxF dxF @@ -16990,9 +16095,9 @@ dxF dxF dxF mxB -svp +rVi fQB -loe +aVR mxB dxF dxF @@ -17157,9 +16262,9 @@ dxF dxF dxF mxB -svp +rVi fQB -loe +aVR mxB dxF dxF @@ -17324,9 +16429,9 @@ dxF dxF mxB mxB -svp +rVi fQB -loe +aVR mxB dxF dxF @@ -17490,10 +16595,10 @@ dxF dxF dxF mxB -trC -kec +fAL +dfC fQB -loe +aVR mxB dxF dxF @@ -17657,10 +16762,10 @@ dxF dxF dxF mxB -svp +rVi fQB fQB -loe +aVR mxB mxB dxF @@ -17824,11 +16929,11 @@ ibm dxF dxF mxB -svp +rVi fQB fQB -hoW -lCH +lVg +gts mxB dxF dxF @@ -17991,11 +17096,11 @@ hMi dxF dxF mxB -svp +rVi fQB fQB fQB -loe +aVR mxB mxB dxF @@ -18158,12 +17263,12 @@ ibm dxF dxF mxB -svp +rVi fQB fQB fQB -hoW -lCH +lVg +gts mxB dxF dxF @@ -18325,12 +17430,12 @@ ibm lfG dxF mxB -lUM +fly fQB fQB fQB fQB -loe +aVR mxB dxF dxF @@ -18492,12 +17597,12 @@ kie ibm nPs osB -bFz +kYg ppM fQB fQB fQB -loe +aVR mxB dxF dxF @@ -18659,12 +17764,12 @@ uDP nPs ibm osB -uWk +uon aHg acN ppM fQB -loe +aVR mxB dxF dxF @@ -18825,13 +17930,13 @@ lmK oFs nPs nPs -fqR -kSo +oKX +mvz ckF bDW fAF fQB -loe +aVR mxB dxF dxF @@ -18935,7 +18040,7 @@ kWX kWX lKk lKk -phg +eAA dmy jGF bEt @@ -18992,13 +18097,13 @@ ibm nPs osB rkt -jBJ -fOU +yln +wlk ibm rYs fAF fQB -uam +dDT jhS jhS jhS @@ -19160,12 +18265,12 @@ osB dxF dxF mxB -gfK +jcH eQK qaY fAF fQB -rYM +uZG sBH kVJ prJ @@ -19327,12 +18432,12 @@ dxF dxF dxF mxB -uGB +jsi mCo iob lYI fQB -rYM +uZG sBH kVJ wGH @@ -19437,14 +18542,14 @@ lzD dBj dmy dmy -phg +eAA lKk lKk -gtg +aiJ lKk lKk lKk -eZS +edM lKk lKk lKk @@ -19494,12 +18599,12 @@ dxF dxF dxF mxB -lXe -wsf +bQJ +ruP fQB fQB fQB -rYM +uZG sBH kVJ wGH @@ -19662,11 +18767,11 @@ dxF dxF mxB mxB -ebP -han +bgN +uVc fQB fQB -rYM +uZG sBH kVJ wGH @@ -19830,10 +18935,10 @@ dxF dxF mxB mxB -svp +rVi fQB fQB -qBz +lSS jhS jhS jhS @@ -19997,11 +19102,11 @@ dxF dxF dxF mxB -svp +rVi fQB fQB fQB -loe +aVR mxB dxF prJ @@ -20164,11 +19269,11 @@ dxF dxF dxF mxB -svp +rVi fQB fQB fQB -loe +aVR mxB mxB dxF @@ -20280,7 +19385,7 @@ fmN fmN fmN jGF -exu +iLQ lKk mAb ggC @@ -20331,11 +19436,11 @@ dxF dxF dxF mxB -svp +rVi fQB fQB fQB -loe +aVR mxB dxF dxF @@ -20998,14 +20103,14 @@ dxF mxB bff oqw -mHo -ozs -lzb -lzb -lzb -lzb -lzb -vre +tQl +kWp +hdP +hdP +hdP +hdP +hdP +jMo tlN dxF dxF @@ -21114,7 +20219,7 @@ lKk lKk lKk lKk -eZS +edM lKk cpD mAb @@ -21172,7 +20277,7 @@ boR boR boR boR -msF +ogt tlN dxF dxF @@ -21682,10 +20787,10 @@ prJ prJ vei wGH -hzG -qRR -qRR -vhQ +fSL +dYs +dYs +hvr prJ vei wGH @@ -21819,9 +20924,9 @@ dxF dxF dxF dxF -mbh -rsV -xYt +fSk +lrQ +sFD dxF tlN cnb @@ -21844,15 +20949,15 @@ kMP pmu qzd ubV -dut +emq vei vei prJ prJ -piq +vYL mhJ qGJ -tQi +dGb vei wGH vei @@ -21879,7 +20984,7 @@ qZO wGH uQJ wGH -nlY +lRk wGH wGH wGH @@ -21919,7 +21024,7 @@ rSU rSU lKk rSU -vTp +tTf lKk rSU rSU @@ -21986,10 +21091,10 @@ dxF dxF dxF dxF -dsp -dJs -xIk -wph +jdu +dmp +pre +wVK tlN uKW moL @@ -22003,7 +21108,7 @@ kMP qGQ aAe kMP -qAk +fLq kMP kMP kMP @@ -22016,10 +21121,10 @@ wGH prJ prJ prJ -piq +vYL cLQ qru -tQi +dGb wGH vei prJ @@ -22083,13 +21188,13 @@ lKk tHh lKk lKk -xeG +cOk lKk lKk lKk lKk lKk -nba +sqX lKk lKk tHh @@ -22153,10 +21258,10 @@ dxF dxF dxF dxF -gxs -kjo -umQ -wph +cen +dWj +soy +wVK fFH rwX boR @@ -22183,10 +21288,10 @@ prJ prJ prJ wGH -piq +vYL ich -wgT -gSA +dOS +num wGH wGH jqt @@ -22198,7 +21303,7 @@ jqt vei vei wGH -wMr +uWT wGH prJ prJ @@ -22206,10 +21311,10 @@ wGH wGH wGH wGH -lUq +txS wGH wGH -lUq +txS wGH wGH vei @@ -22320,10 +21425,10 @@ dxF dxF dxF dxF -eTY -eTY -eTY -eTY +fgI +fgI +fgI +fgI xjf aAe kMP @@ -22347,12 +21452,12 @@ dfa eRE prJ prJ -dut +emq vei vei -gPW -iGS -ebZ +aHI +fJm +xLW wGH wGH wGH @@ -22485,12 +21590,12 @@ dxF dxF dxF dxF -wph -wph -eTY -eTY -eTY -eTY +wVK +wVK +fgI +fgI +fgI +fgI qGQ bNN pPn @@ -22517,7 +21622,7 @@ prJ vei vei vei -fCu +vWj vei wGH wGH @@ -22535,7 +21640,7 @@ wGH szJ wGH wGH -qJS +cFp prJ prJ prJ @@ -22651,13 +21756,13 @@ dxF dxF dxF dxF -wph -wph -eTY -eTY -qLS -eTY -eTY +wVK +wVK +fgI +fgI +tKH +fgI +fgI nOx gTy boR @@ -22707,7 +21812,7 @@ prJ prJ prJ prJ -qJS +cFp prJ prJ wGH @@ -22818,13 +21923,13 @@ dxF dxF dxF dxF -wph -wph -eTY -eTY -wph -eTY -wph +wVK +wVK +fgI +fgI +wVK +fgI +wVK tlN bmk moL @@ -22855,7 +21960,7 @@ vei prJ prJ wGH -ksL +tzY prJ wGH wGH @@ -22890,9 +21995,9 @@ eWP hQj hQj hWX -qid -jPb -jPb +cpq +vTO +vTO lVS wZP "} @@ -22985,13 +22090,13 @@ dxF dxF dxF dxF -wph -qLS -eTY -eTY -wph -wph -wph +wVK +tKH +fgI +fgI +wVK +wVK +wVK tlN tWM tWM @@ -23024,7 +22129,7 @@ prJ wGH wGH prJ -auz +jOK prJ prJ wGH @@ -23057,9 +22162,9 @@ hQj pHv hQj aFr -tEK -afS -afS +aGR +nKm +nKm lVS wZP "} @@ -23152,13 +22257,13 @@ dxF dxF dxF dxF -wph -eTY -eTY -wph -wph -iyz -wph +wVK +fgI +fgI +wVK +wVK +wWa +wVK tlN tWM tWM @@ -23206,14 +22311,14 @@ wGH jqt jqt jqt -caj -uNZ -cKH +jiy +dqa +nxN prJ prJ prJ -udm -uNZ +rYV +dqa jqt jqt pyp @@ -23317,15 +22422,15 @@ dxF dxF dxF dxF -swl -mFf -wph -eTY -wph -wph -wph -wph -wph +hiI +plM +wVK +fgI +wVK +wVK +wVK +wVK +wVK tlN tWM tWM @@ -23375,11 +22480,11 @@ jqt pyp pyp pyp -uPu +vcO vYI vYI vYI -uCR +xgk pyp pyp pyp @@ -23484,15 +22589,15 @@ dxF dxF dxF dxF -swl -mFf -wph -eTY -wph -wph -iyz -iyz -iyz +hiI +plM +wVK +fgI +wVK +wVK +wWa +wWa +wWa tlN tWM tWM @@ -23523,7 +22628,7 @@ wGH jqt jqt wGH -auz +jOK wGH wGH wGH @@ -23551,18 +22656,18 @@ aHW aHW aHW pXf -vCT -iCG +gsp +jmH aHW evZ hQj evZ aHW -dtM -arr -uNI -nHU -nHU +hRO +vuv +wYS +mhu +mhu "} (43,1,1) = {" ybY @@ -23651,15 +22756,15 @@ dxF dxF dxF dxF -swl -mFf -wph -wph -wph -eTY -iyz -iyz -iyz +hiI +plM +wVK +wVK +wVK +fgI +wWa +wWa +wWa tlN tlN tlN @@ -23704,7 +22809,7 @@ azO azO azO azO -cun +diY pyp pyp nXX @@ -23715,17 +22820,17 @@ hQj hQj dAB rwj -muG -muG -qVZ -tuW -gtE +geQ +geQ +ruz +pcd +lNH byl evZ kdY evZ byl -iXj +rIq qAP gWo mNl @@ -23817,16 +22922,16 @@ dxF dxF dxF dxF -sbg -sbg -qKp -wph -qLS -qLS -wph -eTY -qLS -iyz +csx +csx +nIs +wVK +tKH +tKH +wVK +fgI +tKH +wWa tlN tlN tlN @@ -23841,7 +22946,7 @@ tlN tlN scu lkP -ffu +xbM adX tlN tlN @@ -23871,7 +22976,7 @@ gWd gWd iSN nQo -ozl +cRy vin pBV hQj @@ -23886,13 +22991,13 @@ wMw wMw wMw eJi -kbg +cdz byl evZ hQj evZ byl -iXj +rIq qwg eKr qAP @@ -23984,26 +23089,26 @@ hrz hrz dxF dxF -qLS -qLS -wph -eTY -wph -wph -wph -wph -eTY -qLS +tKH +tKH +wVK +fgI +wVK +wVK +wVK +wVK +fgI +tKH bfg bfg -qLS +tKH dSQ wWk mOe mOe mOe mOe -lqG +bEu tlN vlt boR @@ -24012,8 +23117,8 @@ hnZ boR ezX kMx -xjg -uqL +pSi +coa azO azO azO @@ -24038,7 +23143,7 @@ gWd gWd dTp sOJ -oOO +gbm vin pBV hQj @@ -24049,17 +23154,17 @@ hQj hQj mcA rwj -uZT -uZT -uZT -fdF -kbg +mZo +mZo +mZo +izD +cdz byl evZ kdY evZ byl -iem +viE qAP qAP mNl @@ -24148,29 +23253,29 @@ hrz hrz hrz hrz -qLS -qLS -wph -eTY -wph -wph -wph -wph -wph -wph -wph -wph -eTY -wph -wph -eTY -eTY -eTY -eTY -qLS -eTY -eTY -gzv +tKH +tKH +wVK +fgI +wVK +wVK +wVK +wVK +wVK +wVK +wVK +wVK +fgI +wVK +wVK +fgI +fgI +fgI +fgI +tKH +fgI +fgI +roO ezX mZE lkP @@ -24179,7 +23284,7 @@ tXm mZE ezX kMx -kdf +gFz cNE nQo nQo @@ -24205,7 +23310,7 @@ xpk xpk aWt uGd -fkP +oSU vin pyp wNh @@ -24219,14 +23324,14 @@ aHW aHW aHW pXf -sVc -kbg +bZm +cdz aHW awa fRI uqR aHW -iXj +rIq qwg mNl mNl @@ -24315,39 +23420,39 @@ hrz hrz hrz hrz -qLS -qLS -nMA -wph -wph -wph -wph -wph -wph -wph -wph -wph -eTY -eTY -eTY -eTY -eTY -eTY -wph -wph -wph -eTY -gzv +tKH +tKH +xie +wVK +wVK +wVK +wVK +wVK +wVK +wVK +wVK +wVK +fgI +fgI +fgI +fgI +fgI +fgI +wVK +wVK +wVK +fgI +roO ezX mZE tXm -dQY +wlp tXm lac tlN kMx -kdf -dsp +gFz +jdu sDG sDG sDG @@ -24372,7 +23477,7 @@ sCA ddq mqu uGd -fkP +oSU vin pBV vOC @@ -24383,17 +23488,17 @@ kdY kdY tEj rwj -muG -muG -qVZ -tuW -kbg +geQ +geQ +ruz +pcd +cdz byl sTC kdY pvL byl -iXj +rIq qwg sUC eKr @@ -24441,7 +23546,7 @@ sVF dXL qxc hrz -nRd +dJh hrz hrz iin @@ -24481,30 +23586,30 @@ hrz hrz sVF hrz -wph -eTY -eTY -wph -wph -wph -wph -qLS -eTY -eTY -eTY -wph -eTY -eTY -eTY -eTY -eTY -eTY -wph -qLS -qLS -eTY -eTY -gzv +wVK +fgI +fgI +wVK +wVK +wVK +wVK +tKH +fgI +fgI +fgI +wVK +fgI +fgI +fgI +fgI +fgI +fgI +wVK +tKH +tKH +fgI +fgI +roO ezX aCo tXm @@ -24513,9 +23618,9 @@ esi mZE ezX kMx -kdf -kdf -mIA +gFz +gFz +deM tUz pjH tUz @@ -24539,7 +23644,7 @@ azO azO tjS uGd -fkP +oSU vin pBV xGI @@ -24554,13 +23659,13 @@ wMw wMw wMw bVB -kbg +cdz byl vFv hQj evZ byl -iXj +rIq qwg qwg flP @@ -24611,12 +23716,12 @@ hrz hrz hrz hrz -qNS +xVy huR huR huR lRy -vAL +lRB dht dht dht @@ -24647,42 +23752,42 @@ dxF hrz sVF hrz -wph -wph -qLS -eTY -eTY -wph -wph -qLS -eTY -wph -eTY -eTY -eTY -wph -wph -eTY -wph -wph -wph -iyz -iyz -eTY -eTY -eTY -ddU +wVK +wVK +tKH +fgI +fgI +wVK +wVK +tKH +fgI +wVK +fgI +fgI +fgI +wVK +wVK +fgI +wVK +wVK +wVK +wWa +wWa +fgI +fgI +fgI +lAw tlN vlt lsy -kcX -kcX -cIE +eiG +eiG +dlR ezX kMx -nWo -cBi -vYC +tqN +cuG +buJ xpk xpk xpk @@ -24706,7 +23811,7 @@ gWd gWd iSN eyU -dyU +gyW pyp pyp sNp @@ -24717,17 +23822,17 @@ bbL xjY raV rwj -uZT -uZT -uZT -fdF -sYV +mZo +mZo +mZo +izD +rwg byl evZ kdY sTC byl -iXj +rIq qwg flP mNl @@ -24812,33 +23917,33 @@ dxF dxF dxF sVF -qLS -wph -eTY -qLS -eTY -wph -wph -eTY -wph -qLS -wph -wph -fui -rsV -xYt -via -iyz -wph -iyz -iyz -iyz -iyz -iyz -eTY -eTY -eTY -sqr +tKH +wVK +fgI +tKH +fgI +wVK +wVK +fgI +wVK +tKH +wVK +wVK +rYn +lrQ +sFD +nzv +wWa +wVK +wWa +wWa +wWa +wWa +wWa +fgI +fgI +fgI +eUX tlN tlN ezX @@ -24847,9 +23952,9 @@ ezX tlN tlN tlN -wqU -eTY -wph +eyP +fgI +wVK cTz goT goT @@ -24878,27 +23983,27 @@ pyp pyp pyp pyp -yas +nEZ ddk ddk ddk -iHk +aEC aHW aHW aHW pXf -prv -gwC +bGS +liK aHW evZ cvV evZ aHW -rjS -ird -ird -ird -ird +nyF +rdX +rdX +rdX +rdX "} (51,1,1) = {" ybY @@ -24979,44 +24084,44 @@ dxF dxF kIn kIn -qLS -wph -eTY -wph -wph -iyz -iyz -eTY -wph -eTY -wph -iyz -dsp -dJs -jvt -bTa -iyz -iyz -iyz -iyz -iyz -iyz -iyz -iyz -eTY -eTY -fBL -fSU -ktP -ktP -ktP -ktP -ktP -xOZ -eTY -eTY -eTY -eTY +tKH +wVK +fgI +wVK +wVK +wWa +wWa +fgI +wVK +fgI +wVK +wWa +jdu +dmp +rJl +fZy +wWa +wWa +wWa +wWa +wWa +wWa +wWa +wWa +fgI +fgI +aDW +aqc +ldL +ldL +ldL +ldL +ldL +aQd +fgI +fgI +fgI +fgI ePx soe gCb @@ -25044,12 +24149,12 @@ xpk tQB ePx pBV -ksb -vdl +kaZ +cJt xzY xzY xzY -hdQ +vMP xHm cvm aHW @@ -25147,43 +24252,43 @@ kIn sYd aSu sYd -eTY -eTY -wph -wph -iyz -eTY -wph -wph -qLS -iyz -iyz -gxs -kjo -umQ -iyz -iyz -iyz -iyz -iyz -iyz -iyz -iyz -iyz -qLS -eTY -wph -eTY -eTY -eTY -eTY -eTY -eTY -eTY -eTY -eTY -eTY -eTY +fgI +fgI +wVK +wVK +wWa +fgI +wVK +wVK +tKH +wWa +wWa +cen +dWj +soy +wWa +wWa +wWa +wWa +wWa +wWa +wWa +wWa +wWa +tKH +fgI +wVK +fgI +fgI +fgI +fgI +fgI +fgI +fgI +fgI +fgI +fgI +fgI cTz cTz cTz @@ -25216,7 +24321,7 @@ xzY oum hQj psz -xVt +vdC xHm cvm fRI @@ -25315,42 +24420,42 @@ bXl sYd sYd sYd -eTY -eTY -wph -wph -wph -wph -eTY -qLS -wph -iyz -iyz -iyz -iyz -iyz -iyz -iyz -iyz -iyz -swl -swl -mFf -qLS -eTY -eTY -eTY -wph -wph -wph -wph -wph -wph -wph -wph -wph -eTY -wph +fgI +fgI +wVK +wVK +wVK +wVK +fgI +tKH +wVK +wWa +wWa +wWa +wWa +wWa +wWa +wWa +wWa +wWa +hiI +hiI +plM +tKH +fgI +fgI +fgI +wVK +wVK +wVK +wVK +wVK +wVK +wVK +wVK +wVK +fgI +wVK cTz cTz cTz @@ -25383,8 +24488,8 @@ xzY hQj hQj hQj -jrs -uTn +fCz +nLJ dzD hQj hQj @@ -25483,41 +24588,41 @@ sYd sYd sYd sYd -eTY -eTY -wph -wph -wph -qLS -eTY -wph -iyz -iyz -iyz -iyz -iyz -iyz -iyz -swl -swl -sbg -sbg -nhl -eTY -eTY -eTY -eTY -eTY -wph -wph -wph -wph -wph -wph -eTY -eTY -wph -wph +fgI +fgI +wVK +wVK +wVK +tKH +fgI +wVK +wWa +wWa +wWa +wWa +wWa +wWa +wWa +hiI +hiI +csx +csx +sZI +fgI +fgI +fgI +fgI +fgI +wVK +wVK +wVK +wVK +wVK +wVK +fgI +fgI +wVK +wVK ePx cTz cTz @@ -25633,9 +24738,9 @@ tMI hSC kIn bXl -tvJ -wix -nyv +prD +klY +jJn sYd sYd sYd @@ -25650,41 +24755,41 @@ bXl bXl sYd bXl -eTY -eTY -eTY -eTY -wph -wph -qLS -qLS -wph -iyz -iyz -iyz -iyz -iyz -wJy -swl -dNg -wph -eTY -eTY -eTY -eTY -eTY -eTY -wph -wph -wph -wph -wph -wph -wph -eTY -wph -wph -wph +fgI +fgI +fgI +fgI +wVK +wVK +tKH +tKH +wVK +wWa +wWa +wWa +wWa +wWa +tit +hiI +wyq +wVK +fgI +fgI +fgI +fgI +fgI +fgI +wVK +wVK +wVK +wVK +wVK +wVK +wVK +fgI +wVK +wVK +wVK ePx cTz ePx @@ -25717,8 +24822,8 @@ xXe hQj hQj wnt -mDl -eNK +ktU +oeU dzD pHv avX @@ -25800,9 +24905,9 @@ sYd sYd bXl bXl -dnl +rUD wei -gAu +olU bXl sYd bXl @@ -25818,41 +24923,41 @@ bXl bXl bEp bEp -qLS -wph -eTY -wph -wph -wph -qLS -wph -wph -iyz -iyz -iyz -iyz -swl -wJy -sZZ -eTY -eTY -eTY -eTY -eTY -eTY -wph -iyz -wph -wph -wph -eTY -eTY -cTz -iyz -iyz -iyz -iyz -iyz +tKH +wVK +fgI +wVK +wVK +wVK +tKH +wVK +wVK +wWa +wWa +wWa +wWa +hiI +tit +tac +fgI +fgI +fgI +fgI +fgI +fgI +wVK +wWa +wVK +wVK +wVK +fgI +fgI +cTz +wWa +wWa +wWa +wWa +wWa xXI cTz ePx @@ -25884,7 +24989,7 @@ xzY hQj hQj hQj -waW +oJv xHm cvm hQj @@ -25967,9 +25072,9 @@ kIn bXl bXl bXl -rTi -rZd -laf +ecJ +kWs +kPb sYd kIn sYd @@ -25977,49 +25082,49 @@ mfd kIn bXl sYd -tvJ -wix -nyv +prD +klY +jJn kIn bXl bEp bEp bEp -qLS -eTY -wph -wph -wph -wph -eTY -wph -wph -wph -iyz -iyz -sbg -fQJ -nhl -eTY -eTY -eTY -wph -eTY -wph -iyz -iyz -iyz -iyz -iyz -wqU -nJC -lVZ +tKH +fgI +wVK +wVK +wVK +wVK +fgI +wVK +wVK +wVK +wWa +wWa +csx +xYD +sZI +fgI +fgI +fgI +wVK +fgI +wVK +wWa +wWa +wWa +wWa +wWa +eyP +oSQ +waY wbV -wqU -iyz -iyz -iyz -iyz +eyP +wWa +wWa +wWa +wWa niT ePx ePx @@ -26051,14 +25156,14 @@ xzY hQj hQj hQj -uAh +wkG xHm cvm hQj hQj hQj -ftY -iLE +lyF +vqS loI eWP akH @@ -26133,9 +25238,9 @@ kIn oLs bXl bXl -tvJ -wix -nyv +prD +klY +jJn sYd kIn kIn @@ -26144,49 +25249,49 @@ bXl bXl sYd sYd -dnl +rUD wei -gAu +olU sYd kIn bEp bEp bEp bEp -wph -eTY -wph -wph -wph -eTY -wph -qLS -eTY -wph -wph -wph -eTY -eTY -eTY -eTY -eTY -eTY -wph -iyz -iyz -iyz -iyz -iyz -iyz -iyz +wVK +fgI +wVK +wVK +wVK +fgI +wVK +tKH +fgI +wVK +wVK +wVK +fgI +fgI +fgI +fgI +fgI +fgI +wVK +wWa +wWa +wWa +wWa +wWa +wWa +wWa cTz cTz cTz ePx ePx -iyz -iyz -iyz +wWa +wWa +wWa niT ePx cTz @@ -26218,14 +25323,14 @@ xzY gcl hQj hQj -jsS -tiJ -vFV +pBN +ext +ciB cGf hQj hQj -qTN -mGb +bxD +ilc nHV qHT hQj @@ -26300,9 +25405,9 @@ bXl lsg bXl dUE -rfZ +aHq wei -gAu +olU bXl kIn kIn @@ -26311,9 +25416,9 @@ bXl bXl sYd bXl -rTi -rZd -laf +ecJ +kWs +kPb kIn sYd bXl @@ -26321,39 +25426,39 @@ bEp bEp kIn bXl -eTY -eTY -wph -eTY -eTY -eTY -wph -wph -qLS -qLS -eTY -eTY -eTY -eTY -qLS -wph -wph -iyz -iyz -iyz -iyz -iyz -iyz -iyz -iyz +fgI +fgI +wVK +fgI +fgI +fgI +wVK +wVK +tKH +tKH +fgI +fgI +fgI +fgI +tKH +wVK +wVK +wWa +wWa +wWa +wWa +wWa +wWa +wWa +wWa ePx cTz ePx hii cTz -iyz -iyz -iyz +wWa +wWa +wWa gCb cTz ePx @@ -26387,12 +25492,12 @@ xzY xzY xHY xzY -hdQ +vMP yeY iUD xzY -eRN -qNo +nEr +xpa wwg cGf fRI @@ -26467,9 +25572,9 @@ bXl bXl kIn bXl -rTi -rZd -laf +ecJ +kWs +kPb bXl bXl sYd @@ -26489,29 +25594,29 @@ kIn bXl sYd bXl -wph -eTY -eTY -eTY -wph -eTY -qLS -eTY -eTY -eTY -eTY -eTY -qLS -qLS +wVK +fgI +fgI +fgI +wVK +fgI +tKH +fgI +fgI +fgI +fgI +fgI +tKH +tKH jhS jhS jhS -iyz -iyz +wWa +wWa ePx ePx -iyz -iyz +wWa +wWa ePx cTz cTz @@ -26519,7 +25624,7 @@ cTz ePx hii ePx -feU +fIh ePx ePx ePx @@ -26549,12 +25654,12 @@ ePZ boa ePZ cvm -yas -szF +nEZ +mPI spd -yas -cMc -rvt +nEZ +oEQ +pQE xzY hQj xzY @@ -26657,36 +25762,36 @@ sYd sYd sYd bXl -wph -wph -wph -eTY -sXc -eTY -eTY -eTY -eTY -eTY -qLS -qLS -wph +wVK +wVK +wVK +fgI +pVq +fgI +fgI +fgI +fgI +fgI +tKH +tKH +wVK jhS naK jhS jhS -prU +sPb cTz cTz ePx -iyz +wWa cTz ePx cTz cTz cTz cTz -sTB -pSz +rzP +omR cTz cTz cTz @@ -26716,11 +25821,11 @@ pyp pyp pyp vbV -pFZ -jKc +vdp +xeY uma -pFZ -jKc +vdp +xeY pyp xzY hQj @@ -26811,9 +25916,9 @@ bXl sYd bXl bXl -tvJ -wix -nyv +prD +klY +jJn bXl bXl bXl @@ -26824,24 +25929,24 @@ sYd bXl bXl bXl -wph -wph -eTY -eTY -eTY -eTY -eTY -wae -gYa -dQq -wph -qLS +wVK +wVK +fgI +fgI +fgI +fgI +fgI +uHZ +kUb +cql +wVK +tKH jhS jhS iSw jhS jhS -pVd +lLq cTz huv ePx @@ -26883,11 +25988,11 @@ ePx pyp pyp pyp -pFZ -jKc +vdp +xeY rmG -pFZ -cKI +vdp +vvM pBV xzY hQj @@ -26972,15 +26077,15 @@ sYd sYd bXl sYd -xYs -wix -lEB -wix -wix -nyv -dnl +xmQ +klY +aCd +klY +klY +jJn +rUD wei -vpq +hFN kIn bXl bEp @@ -26991,24 +26096,24 @@ bXl bXl bXl bXl -eTY -iyz -eTY -eTY -eTY -eTY -eTY -vvE -swl -dNg -wph -wph +fgI +wWa +fgI +fgI +fgI +fgI +fgI +oqb +hiI +wyq +wVK +wVK uSG oOs naK oOs uSG -prU +sPb ePx ePx ePx @@ -27035,14 +26140,14 @@ cTz cTz cTz gnY -eaR -ePn +xPn +fSG gnY cTz mZt gnY -eaR -ePn +xPn +fSG gnY cTz cTz @@ -27050,11 +26155,11 @@ ePx goT goT pyp -pFZ -jKc +vdp +xeY xgV -pFZ -jKc +vdp +xeY pBV xzY hQj @@ -27135,21 +26240,21 @@ sYd vGf sYd sYd -ciD +orf sYd bXl sYd -rfZ +aHq mIg -mDN +gkL wei wei -mIr -rTi -rZd -laf +prQ +ecJ +kWs +kPb sYd -xYs +xmQ bEp bEp bXl @@ -27158,24 +26263,24 @@ bEp bEp bXl sYd -iyz -iyz -qLS -eTY -eTY -eTY -eTY -vvE -iyz -dNg -wph -qLS +wWa +wWa +tKH +fgI +fgI +fgI +fgI +oqb +wWa +wyq +wVK +tKH uSG trU uRm rID uSG -mXZ +mQt ePx ePx cTz @@ -27186,8 +26291,8 @@ cTz cTz cTz cTz -rXe -cek +lrJ +bCr cTz cTz cTz @@ -27202,14 +26307,14 @@ cTz aIF cTz gnY -hKE -ovm +kOR +wTk gnY cTz cTz gnY -hKE -ovm +kOR +wTk gnY cTz cTz @@ -27217,11 +26322,11 @@ ePx goT goT pyp -fKf -aqI +cRw +usz pyp -fKf -aqI +cRw +usz pyp iUD xzY @@ -27302,21 +26407,21 @@ sYd sYd sYd pqs -gAu +olU bXl bXl sYd -pWe -svB -hnE +dXT +efU +dYi wei wei -vpq +hFN bXl kIn kIn -tvJ -jFk +prD +vMT bEp bEp bEp @@ -27326,23 +26431,23 @@ bEp bXl bXl sYd -iyz -eTY -eTY -eTY -eTY -eTY -vvE -iyz -dNg -wph -eTY +wWa +fgI +fgI +fgI +fgI +fgI +oqb +wWa +wyq +wVK +fgI uSG trU uRm gmS uSG -uRP +jWO cTz ePx cTz @@ -27354,7 +26459,7 @@ cTz cTz ePx kdK -bSV +lJE cTz ePx kne @@ -27369,14 +26474,14 @@ iIn cTz cTz gnY -qBa -xBb +nui +cbG gnY cTz cTz gnY -qBa -xBb +nui +cbG gnY cTz cTz @@ -27469,20 +26574,20 @@ bXl bXl kIn oeE -gAu +olU sYd sYd bXl sYd -rfZ +aHq wei wei -aOj -oRw +gGp +sVd bXl sYd sYd -rfZ +aHq bEp bEp bEp @@ -27494,22 +26599,22 @@ bXl bXl bXl sYd -eTY -eTY -eTY -qLS -eTY -mhN -sbg -nhl -wph -qLS +fgI +fgI +fgI +tKH +fgI +fUw +csx +sZI +wVK +tKH uSG trU uRm rID uSG -pVd +lLq ePx ePx cTz @@ -27629,22 +26734,22 @@ bXl kIn sYd bXl -tvJ -wix -wix -wix -ciD -pWe -rZd -laf +prD +klY +klY +klY +orf +dXT +kWs +kPb sYd sYd bXl bXl -tiO -eZV -eZV -oRw +cgp +sUu +sUu +sVd dUE bXl bXl @@ -27656,27 +26761,27 @@ sYd bEp bEp bEp -gAu +olU bXl bXl bXl sYd -eTY -wph -eTY -qLS -qLS -eTY -wph -eTY -wph -wph +fgI +wVK +fgI +tKH +tKH +fgI +wVK +fgI +wVK +wVK uSG ymc uRm gmS uSG -mXZ +mQt ePx cTz cTz @@ -27796,11 +26901,11 @@ bXl bXl sYd sYd -rfZ +aHq rno pqs -txe -vpq +usX +hFN kIn bXl bXl @@ -27823,27 +26928,27 @@ bXl sYd bEp bEp -vpq +hFN sYd bXl sYd sYd -eTY -eTY -wph -wph -qLS -eDS -wph -wph -wph -wph +fgI +fgI +wVK +wVK +tKH +wMS +wVK +wVK +wVK +wVK uSG trU uRm rID uSG -pVd +lLq cTz hii cTz @@ -27963,11 +27068,11 @@ kIn bXl sYd pEJ -rfZ +aHq dFk oeE -una -ujG +bWz +wBO bXl bXl bXl @@ -27981,36 +27086,36 @@ sYd bXl bXl sYd -tvJ -wix +prD +klY sYd bXl bXl bXl bXl sYd -qIn -ujG +vSB +wBO bXl sYd sYd sYd bXl -wph -eTY -wph -wph -eTY -wph -wph -eTY -wph +wVK +fgI +wVK +wVK +fgI +wVK +wVK +fgI +wVK uSG lrO kPw lrO uSG -hqO +kJK ePx hii cTz @@ -28130,10 +27235,10 @@ bXl bXl bXl bXl -rfZ +aHq oeE -una -ujG +bWz +wBO kIn sYd sYd @@ -28142,13 +27247,13 @@ sYd sYd sYd kIn -tvJ -wix -nyv +prD +klY +jJn ven sYd bXl -ptS +hqi bEp bEp bEp @@ -28163,21 +27268,21 @@ sYd sYd bXl sYd -wph -iyz -iyz -iyz -eTY -wph -eTY -wph -eTY +wVK +wWa +wWa +wWa +fgI +wVK +fgI +wVK +fgI jhS jhS iSw jhS jhS -mXZ +mQt hii ePx cTz @@ -28204,14 +27309,14 @@ abG cTz ePx gnY -eaR -ePn +xPn +fSG gnY cTz cTz gnY -eaR -ePn +xPn +fSG gnY cTz ePx @@ -28297,9 +27402,9 @@ kIn bXl sYd sYd -pWe -eZV -oRw +dXT +sUu +sVd kIn bXl sYd @@ -28309,13 +27414,13 @@ sYd sYd sYd sYd -dnl +rUD wei -vpq +hFN jtJ sYd kIn -dnl +rUD bEp bEp bEp @@ -28330,21 +27435,21 @@ sYd sYd sYd kIn -wph -iyz -iyz -iyz -iyz -wph -wph -wph -wph -eTY +wVK +wWa +wWa +wWa +wWa +wVK +wVK +wVK +wVK +fgI jhS naK naK jhS -pVd +lLq hii cTz ePx @@ -28371,14 +27476,14 @@ goT goT ePx gnY -hKE -ovm +kOR +wTk gnY cTz cTz gnY -hKE -ovm +kOR +wTk gnY cTz ePx @@ -28476,9 +27581,9 @@ bEp bEp eqJ sYd -rTi -rZd -laf +ecJ +kWs +kPb bXl eqJ bEp @@ -28497,21 +27602,21 @@ sYd sYd sYd bXl -iyz -iyz -iyz -iyz -iyz -eTY -wph -wph -wph -eTY +wWa +wWa +wWa +wWa +wWa +fgI +wVK +wVK +wVK +fgI jhS naK naK jhS -pVd +lLq ePx ePx ePx @@ -28538,14 +27643,14 @@ goT goT ePx gnY -qBa -xBb +nui +cbG gnY cTz cTz gnY -qBa -xBb +nui +cbG gnY cTz cTz @@ -28656,7 +27761,7 @@ bEp bEp bEp bEp -vpq +hFN sYd sYd sYd @@ -28664,26 +27769,26 @@ sYd sYd kIn bXl -iyz -iyz -iyz -iyz -iyz -eTY -eTY -wph -wph -wph +wWa +wWa +wWa +wWa +wWa +fgI +fgI +wVK +wVK +wVK jhS jhS jhS jhS -omA +aZD aJy aJy aJy -eLT -atn +nWN +wkS goT goT goT @@ -28781,11 +27886,11 @@ kIn bXl bXl sYd -qGa -iJo -iJo -iJo -rOd +jbM +bNk +bNk +bNk +wSk sYd lMv pCS @@ -28822,26 +27927,26 @@ bEp bEp bEp bEp -aOj -ujG +gGp +wBO kIn sYd sYd sYd pEJ bXl -iyz -iyz -iyz +wWa +wWa +wWa grx -iyz -iyz -iyz -wph -eTY -wph -wph -eTY +wWa +wWa +wWa +wVK +fgI +wVK +wVK +fgI raN raN dDj @@ -28948,11 +28053,11 @@ kIn sYd sYd sYd -pBi +cvU mYj lyJ goa -mkO +agl sYd pCS pCS @@ -28971,9 +28076,9 @@ sYd bXl cDU sYd -xYs -wix -wix +xmQ +klY +klY bEp bEp bXl @@ -28989,7 +28094,7 @@ kIn bEp bEp bEp -ujG +wBO kIn sYd sYd @@ -28997,18 +28102,18 @@ sYd sYd bXl bXl -iyz -iyz +wWa +wWa grx sXo grx -iyz -iyz -iyz -eTY -wph -wph -eTY +wWa +wWa +wWa +fgI +wVK +wVK +fgI raN raN dDj @@ -29115,11 +28220,11 @@ bXl sYd sYd sYd -pBi +cvU iyP qVg dsi -ddH +mrY sYd pCS pCS @@ -29136,10 +28241,10 @@ sYd bXl sYd sYd -xYs -wix -jFk -ckC +xmQ +klY +vMT +ikk pqs bEp bEp @@ -29164,19 +28269,19 @@ sYd bXl sYd bXl -iyz -iyz +wWa +wWa grx sXo dgs grx -iyz -iyz -eTY -wph -wph -wph -eTY +wWa +wWa +fgI +wVK +wVK +wVK +fgI ewL plf pIK @@ -29282,11 +28387,11 @@ bXl sYd sYd sYd -pBi +cvU nzQ elo wgK -ddH +mrY sYd pCS pCS @@ -29303,10 +28408,10 @@ sYd sYd sYd sYd -rfZ +aHq rno pEg -jqy +cjA bEp bEp bEp @@ -29331,20 +28436,20 @@ bXl sYd bXl bXl -iyz -iyz -iyz +wWa +wWa +wWa grx sXo grx -iyz -iyz +wWa +wWa dic tKY tKY tKY -knP -wWq +snc +amB plf arG cEd @@ -29352,8 +28457,8 @@ tiW fyD arG plf -xSn -stj +wbH +lOx goT frF frF @@ -29449,11 +28554,11 @@ dxF bXl bXl sYd -ngp -lCa +tdQ +wzY wcr -lCa -wjI +wzY +qJZ sYd pCS pCS @@ -29470,7 +28575,7 @@ bXl sYd sYd sYd -rfZ +aHq dFk bEp bEp @@ -29499,18 +28604,18 @@ bXl bXl bXl sYd -iyz -iyz -iyz +wWa +wWa +wWa grx -iyz -iyz -iyz +wWa +wWa +wWa dKu lKV lKV lKV -oGC +owK sSr plf arG @@ -29520,7 +28625,7 @@ fyD arG ugU dDj -pAu +vUI lKV xTq cTz @@ -29632,7 +28737,7 @@ bEp nrk nrk nrk -aJU +uog bXl bXl bXl @@ -29667,18 +28772,18 @@ mda sYd sYd sYd -iyz -iyz -iyz -iyz -iyz +wWa +wWa +wWa +wWa +wWa dKu qny sxy dte dte -bwT -dqp +pfw +cSj xrx kqt kqt @@ -29686,8 +28791,8 @@ kqt kqt kqt wvW -ult -dTM +fVH +kfG bsb lpJ xTq @@ -29799,7 +28904,7 @@ bEp nrk nrk nrk -roc +sIG thU thU thU @@ -29835,9 +28940,9 @@ sbX dic dic dic -iyz -iyz -iyz +wWa +wWa +wWa dKu vmB dyz @@ -29886,9 +28991,9 @@ xJg vea xJg xJg -mDa -pfR -eZw +mll +bDA +lGm xJg xJg xJg @@ -29950,11 +29055,11 @@ rzh iXD kIn sYd -qGa -iJo +jbM +bNk wcr -iJo -aaN +bNk +szl sYd pCS pCS @@ -30055,7 +29160,7 @@ jfQ jfQ jfQ cDx -pTI +qka xJg xJg xJg @@ -30117,11 +29222,11 @@ ggC iXD bXl sYd -pBi +cvU mYj lyJ goa -ddH +mrY sYd sYd pCS @@ -30208,7 +29313,7 @@ jfQ jfQ jfQ jfQ -erH +pmP xJg xJg xJg @@ -30222,7 +29327,7 @@ jfQ jfQ jfQ cDx -pTI +qka cDx xJg vea @@ -30284,11 +29389,11 @@ ggC iXD bXl sYd -pBi +cvU iyP qVg dsi -ddH +mrY sYd pCS pCS @@ -30345,8 +29450,8 @@ tIh tIh tIh tIh -ydh -fZT +ubI +hwb ndw sRb sRb @@ -30354,8 +29459,8 @@ sRb sRb sRb coU -mDH -fNo +jCK +rUv lKV qny sxy @@ -30375,7 +29480,7 @@ jfQ jfQ xJg vea -hLH +pAG xJg xJg vea @@ -30389,7 +29494,7 @@ jfQ jfQ vea xJg -njY +nVD xJg vea xJg @@ -30451,11 +29556,11 @@ ggC iXD sYd sYd -pBi +cvU nzQ elo wgK -ddH +mrY sYd pCS pCS @@ -30512,7 +29617,7 @@ rNg dTJ dTJ dTJ -uze +fDy sSr plf arG @@ -30522,7 +29627,7 @@ fyD arG ugU dDj -vHG +eBY bsb bsb oce @@ -30542,7 +29647,7 @@ jfQ xJg vea vea -hLH +pAG cDx cDx vea @@ -30618,11 +29723,11 @@ pkP iXD sYd sYd -pvk -lCa -lCa -lCa -ruM +wBI +wzY +wzY +wzY +kvi sYd pCS pCS @@ -30679,8 +29784,8 @@ iuz tKY tKY tKY -mtS -eeP +cIj +paf plf arG fyD @@ -30688,8 +29793,8 @@ fyD fyD arG plf -erE -dGy +nMg +tqF dTJ dNc nct @@ -30709,7 +29814,7 @@ jfQ xJg vea vea -kvS +hpU cDx xJg vea @@ -30834,7 +29939,7 @@ rNg dTJ dTJ dTJ -vTe +mzo dTJ iuz tKY @@ -31382,10 +30487,10 @@ xJg xJg xJg xJg -gcB -gzI -gzI -kvS +hFk +dEO +dEO +hpU vea vea xJg @@ -31620,12 +30725,12 @@ kkH dTL xtN sHg -amu +bel mqG gNI oww -soF -aaN +dyA +szl pCS pCS pCS @@ -31792,8 +30897,8 @@ ogo rbu xgl xgl -kDs -vDi +nQI +ofX pCS pCS wLp @@ -31821,9 +30926,9 @@ dxF dxF dxF dxF -nbH -vfZ -vfZ +oCO +miP +miP dxF dxF hkO @@ -31960,8 +31065,8 @@ gRi cbg xgl xgl -kDs -vDi +nQI +ofX pCS wLp uHP @@ -32128,14 +31233,14 @@ dyB bKl xgl xgl -kDs -nDT -pGv +nQI +uYB +kDt bex -eAS -lTr -ecA -egx +qjS +gKN +naw +qDt iYo iYo uHP @@ -32157,7 +31262,7 @@ dxF dxF dxF dxF -mhj +mzW dxF dxF dxF @@ -32285,9 +31390,9 @@ dxF dxF kkH coL -uNC -egu -oWo +nEY +qpg +oVt kkH rQa gEc @@ -32302,7 +31407,7 @@ pSK ify pSK ify -fIm +ayT yjI yjI aHl @@ -32323,8 +31428,8 @@ fpO orL dxF dxF -mhj -fjF +mzW +hVt wff dxF dxF @@ -32360,11 +31465,11 @@ vDS vDS vDS lHs -peQ -hYS -qog -kZm -qog +xqK +sbI +ewX +fmx +ewX bsb oce dAM @@ -32469,7 +31574,7 @@ dHj qpW etu pSK -ldM +oja usP usP pGY @@ -32490,7 +31595,7 @@ lcs jzl jzl eMC -fjF +hVt fpO nnf wff @@ -32529,11 +31634,11 @@ wGD mNM xvn mNM -xms +teZ dRj dRj nOH -wwq +fwA ixP dAM qPz @@ -32700,7 +31805,7 @@ cqX fyD fyD oeb -jnY +wRj ixP ixP dAM @@ -32797,13 +31902,13 @@ ten gRi acn dlT -fkK +eGt pSK vKY dXE lcS pSK -ykE +juW yjI cVD aHl @@ -32867,7 +31972,7 @@ cqX fyD fyD oeb -wwq +fwA ixP ixP ixP @@ -32959,18 +32064,18 @@ pYf pYf xCc oww -soP +ikZ iyd tvb qKm cnv -kqA +xZR ify xwu ify tZc ify -fIm +ayT yjI yjI neI @@ -33034,7 +32139,7 @@ cqX fyD fyD oeb -jnY +wRj ixP ixP ixP @@ -33126,18 +32231,18 @@ uri ahz onP oww -gUa +nty cbg cbg cbg cbg -nux -bng -sxZ +awH +xtz +xUG glB -frj -yiX -nRE +mnm +rua +rWP yjI yjI aHl @@ -33201,7 +32306,7 @@ mNM pKE fyD oeb -wwq +fwA ixP ixP ixP @@ -33286,23 +32391,23 @@ mxB mxB wqR lwL -kNx -hTn +ulq +qZo wqR lwL lwL lwL oww -gUa +nty cbg rhK nZw rhK rhK cbg -fKJ +gZB glB -tdZ +mli kwJ aHl yjI @@ -33368,7 +32473,7 @@ lHs lcv fyD oeb -jnY +wRj ixP ixP fYI @@ -33453,23 +32558,23 @@ mxB mxB cEq cEq -mnn -jcX +the +vxV cEq cEq tye aVv oww -jvQ +lLS cbg rhK ekh cMv rhK cbg -mwV +pYX glB -xRx +rGh gnP aHl yjI @@ -33535,7 +32640,7 @@ lHs bAe fyD oeb -wwq +fwA ixP ixP dib @@ -33620,8 +32725,8 @@ mxB mxB cXA fQg -dzm -cGz +vnM +swe fQg fQg fQg @@ -33634,9 +32739,9 @@ mAH cMv rhK cbg -ylh +nBb glB -vSW +mmh gnP aHl yjI @@ -33702,7 +32807,7 @@ mbS pfo fyD oeb -jnY +wRj ixP ixP dib @@ -33801,9 +32906,9 @@ dWB dWB aCD qBN -rDO -mvv -nRE +whj +kpC +rWP aHl vYD yjI @@ -33869,7 +32974,7 @@ klN oeb fyD xaB -wwq +fwA fYI tIh qOw @@ -34036,7 +33141,7 @@ rUi oeb vjr hJN -jnY +wRj dib rNg dTJ @@ -34192,7 +33297,7 @@ sVC olO bzl sVx -jIR +fIx vDS vDS mbS @@ -34203,7 +33308,7 @@ rUi oeb fyD phI -wEh +xty qOw uiT sbX @@ -34303,9 +33408,9 @@ qBN qBN qBN mGL -sKN -blY -igT +jez +uRH +lhU yjI yjI cVD @@ -34370,7 +33475,7 @@ dcA oeb fyD oeb -dTM +kfG rNg iuz dic @@ -34472,7 +33577,7 @@ iHO iHO jhb glB -tRG +rqL pDs yjI yjI @@ -34537,7 +33642,7 @@ mbS pfo fyD oeb -qog +ewX uiT dic tKY @@ -34704,7 +33809,7 @@ mwh lcv fyD oeb -dTM +kfG lpJ lKV xTq @@ -34863,7 +33968,7 @@ cAt cAt kDS vDS -pZx +rHt tEa tEa tEa @@ -34871,7 +33976,7 @@ mwh bAe fyD oeb -dox +lFJ dte qPz uiT @@ -34974,8 +34079,8 @@ pfz jhb eCY ygh -oIb -mVC +onb +rnt yjI oNV yjI @@ -35038,7 +34143,7 @@ mNM oeb fyD oeb -jnY +wRj ixP dib lpJ @@ -35135,14 +34240,14 @@ mLK rlB jPW kGU -kOD +wTB wzC -xti +pmE jhb ayB nDH brH -cWX +dcK bVs uvj dLY @@ -35197,15 +34302,15 @@ vDS vDS vDS gqQ -vys +dgB dRj lok mNM -qrl +wLH nOH fyD oeb -wwq +fwA ixP dAM qPz @@ -35302,9 +34407,9 @@ mdr rlB ryB iqE -uzq +jar gld -nrD +riH glB jhb jhb @@ -35372,7 +34477,7 @@ cqX fyD fyD oeb -jnY +wRj ixP ixP dAM @@ -35471,18 +34576,18 @@ ryB iqE msK msK -sUo -raA -uzq +hpy +aEl +jar msK msK msK msK nAc -sUo -gUQ -gUQ -otc +hpy +pAz +pAz +rXS gwY ann uqv @@ -35539,7 +34644,7 @@ cqX fyD fyD oeb -wwq +fwA ixP ixP ixP @@ -35636,7 +34741,7 @@ xQz cmG hfu iqE -smo +inc nAc msK msK @@ -35647,7 +34752,7 @@ gld msK msK gld -vzC +lhs gld msK gwY @@ -35706,7 +34811,7 @@ cqX fyD fyD oeb -jnY +wRj ixP ixP ixP @@ -35803,7 +34908,7 @@ gXF gXF gXF uYi -mPt +qve gld gld msK @@ -35814,7 +34919,7 @@ gld gld gld gld -nuA +aHB gld msK gwY @@ -35873,7 +34978,7 @@ cqX fyD fyD oeb -wwq +fwA ixP ixP ixP @@ -35968,9 +35073,9 @@ rob gld rgQ wzC -mDu -mGJ -uzq +boi +bIq +jar gld gld gld @@ -36028,19 +35133,19 @@ sVx bzl sVx gKG -eJg -wCe +ooW +huJ kDS kDS nOH xuY xyY mNM -juH +yeD dRj dRj nOH -jnY +wRj ixP ixP fYI @@ -36196,16 +35301,16 @@ gKG sVx bzl uQf -waP +qoQ vfd vfd mNM xvn dJT mNM -wuy -mSd -dTM +niK +vKF +kfG sxy bjc ixP @@ -36368,9 +35473,9 @@ nKh nKh wtH pVH -mtS -fPH -dTM +cIj +pJe +kfG bsb bsb oce @@ -36476,10 +35581,10 @@ feY mYM qaI qaI -sYo -sYo -sYo -smo +aCY +aCY +aCY +inc msK msK msK @@ -36498,7 +35603,7 @@ ktq ktq ktq ktq -hQl +xPw bKH bKH bKH @@ -36646,7 +35751,7 @@ mYM vHf qCi fmR -heL +ibV msK msK msK @@ -36665,7 +35770,7 @@ fpJ lfb gUS ktq -giZ +htF hZq bKH xWK @@ -36813,7 +35918,7 @@ mYM efF xNf vEw -heL +ibV msK msK nAc @@ -36870,15 +35975,15 @@ xkk ftF tKY dic -knP -fNc -cMJ -cMJ -cMJ -cMJ -cMJ -rhZ -rgw +snc +dQr +aPi +aPi +aPi +aPi +aPi +ayc +pOc dxF dxF dxF @@ -36979,8 +36084,8 @@ sCG twn vfr xNf -wAF -uEi +lAb +kAE nAc msK msK @@ -37146,8 +36251,8 @@ sCG twn vfr xNf -rEo -smo +qkP +inc msK msK gld @@ -37166,7 +36271,7 @@ nAy nAy lNt ktq -ngX +ePr nnx bKH xWK @@ -37314,11 +36419,11 @@ mYM bTt xNf kxE -heL +ibV msK msK gld -vzC +lhs gld uAz ezm @@ -37327,13 +36432,13 @@ slF slF slF rES -pNM +iTd nAy nAy qpR iJx ktq -lZZ +egJ dzd bKH bKH @@ -37481,18 +36586,18 @@ mYM rXj ikW hOm -heL +ibV msK gld gld -ctS +fUS gld uAz rgv rES -cIZ +dFh keX -xyx +vnq rES rES bEg @@ -37539,13 +36644,13 @@ wCU wCU wCU wCU -sfz -ukd -ukd -ukd -ukd -ukd -uNJ +qvF +bpC +bpC +bpC +bpC +bpC +oWU wCU dxF dxF @@ -37648,18 +36753,18 @@ oUP eTT eTT qaI -heL +ibV msK gld gld -nuA +aHB gld uAz uAz ktq -wAq +sNy dgx -qOJ +hpk ktq bny hHo @@ -37706,13 +36811,13 @@ jKN rRl mCd khI -mzn +iRG iiG iiG wCU iiG iiG -ddi +pIU wCU dxF dxF @@ -37815,7 +36920,7 @@ qCi lLH cdE mYM -heL +ibV nAc msK gld @@ -37873,13 +36978,13 @@ opz oJj jyq khI -mzn +iRG iiG wCU wCU wCU iiG -ddi +pIU wCU dxF dxF @@ -37982,8 +37087,8 @@ euj euj sCG mYM -vKQ -cUI +iWU +kSd gld msK msK @@ -38040,13 +37145,13 @@ uIJ iNF jyq khI -mzn +iRG iiG iiG wCU iiG iiG -ddi +pIU wCU dxF dxF @@ -38150,7 +37255,7 @@ euj kEG qaI eQQ -heL +ibV msK msK gld @@ -38207,13 +37312,13 @@ nbu nbu jKN khI -mzn +iRG iiG iiG iiG iiG iiG -ddi +pIU wCU dxF dxF @@ -38316,8 +37421,8 @@ euj euj sCG twn -vFc -uzq +kLO +jar bIL gld gld @@ -38374,13 +37479,13 @@ nbu nbu jKN wCU -vkV -bQY +mnD +twY iiG iiG iiG -iIz -qLa +lfi +nxs wCU dxF dxF @@ -38483,8 +37588,8 @@ euj euj dOJ twn -ylf -anE +nZp +sHG bUI gld gld @@ -38542,11 +37647,11 @@ nbu hYE wCU wCU -mzn +iRG iiG wCU iiG -ddi +pIU wCU wCU dxF @@ -38651,7 +37756,7 @@ euj txH qaI eQQ -iTK +itr msK hDE gld @@ -38659,9 +37764,9 @@ msK gld msK ktq -kzZ +jPr dgx -lMS +uew ktq xWK xWK @@ -38709,11 +37814,11 @@ nbu jKN jKN khI -mzn +iRG wCU wCU wCU -ddi +pIU wCU dxF dxF @@ -38818,7 +37923,7 @@ euj sCG mYM avT -cEo +mOh owh dUQ gld @@ -38826,9 +37931,9 @@ gld gld gld rES -dnM +jPM wZo -ntM +gxb rES xWK xWK @@ -38876,11 +37981,11 @@ hXh jKN jKN khI -mzn +iRG iiG wCU iiG -ddi +pIU wCU dxF dxF @@ -38978,14 +38083,14 @@ hUk qaI qaI cBd -lKR -vXd -vXd -vsq +hTF +snz +snz +jZL mRP mYM eQQ -lbu +mbN nsi gld iZZ @@ -39043,11 +38148,11 @@ nbu aHC jKN khI -mzn +iRG iiG iiG iiG -ddi +pIU wCU dxF dxF @@ -39210,11 +38315,11 @@ yaI hMu hMu wCU -vkV -bQY +mnD +twY iiG -iIz -hLi +lfi +mRO wCU dxF dxF @@ -39321,7 +38426,7 @@ nnz rEI oMZ bQg -sEf +ydQ fyT ibc fyT @@ -39356,19 +38461,19 @@ rIL rIL mMf jhS -gtL -rzb -vGx +qfT +bvO +hTb jhS jhS -gtL -rzb -vGx +qfT +bvO +hTb jhS jhS -gtL -rzb -vGx +qfT +bvO +hTb jhS htT smF @@ -39378,9 +38483,9 @@ dkE iBd wCU wCU -vkV -bcb -hLi +mnD +wwl +mRO wCU wCU dxF @@ -39477,9 +38582,9 @@ hUk hUk hUk bbW -vOt -vOt -cSz +qcf +qcf +ohG oUh nFM cgJ @@ -39487,8 +38592,8 @@ hmR oMw agG nFM -vFc -bKJ +kLO +tyr fyT ibc fyT @@ -39523,19 +38628,19 @@ cXL rIL hwA jhS -hws +ulS qwg -vcY +phX jhS jhS -hws +ulS qwg -vcY +phX jhS jhS -hws +ulS qwg -vcY +phX jhS dtV dkE @@ -39645,17 +38750,17 @@ hUk hUk bbW oUh -bPf -iVD -iVD -okh +vMd +abZ +abZ +vHB lIM wDT lly agG nFM -ylf -uEY +nZp +fjm fyT ibc fyT @@ -39690,19 +38795,19 @@ rIL mMf hMu jhS -cTG -fRZ -cQt +vkr +stz +oKn jhS jhS -cTG -fRZ -cQt +vkr +stz +oKn jhS jhS -cTG -fRZ -cQt +vkr +stz +oKn jhS htT bdu @@ -39812,7 +38917,7 @@ hUk hUk bbW oUh -edn +kle gHp gUZ oMZ @@ -39822,7 +38927,7 @@ shn mti oMZ bQg -sEf +ydQ fyT ibc fyT @@ -40024,19 +39129,19 @@ fTk fTk lkp foE -fDY +kEt fTk -epb +jDZ lkp aFc -fDY +kEt fTk -epb +jDZ lkp aFc -fDY +kEt fTk -dUy +bRy nTw rzT aRS @@ -40191,19 +39296,19 @@ mLw mLw fTk qgI -aoJ +jAw tnx -vDR +pCP egf eVO -aoJ +jAw tnx -vDR +pCP fTk ogf -aoJ +jAw tnx -slP +tGQ cum rUM exD @@ -41361,13 +40466,13 @@ qGx slx qGx klE -cbv -gde -fdr -lhu -gHm -cFT -eOt +gxB +qDQ +hXJ +fOt +oXv +wrm +poJ mBG qGx efr @@ -41524,17 +40629,17 @@ qCy ctV mhf hiy -tQO +vnv xGF -ocd +kOM cMI -dqH +iMA uhM mcv mcv mcv grR -aRB +rqA shX qGx slx @@ -41687,23 +40792,23 @@ feg rfE rdm rdm -sbF -dml -sbF -mvB -beo +clp +vUi +clp +vdD +owt mLw -lyG -mvB -baL +tRi +vdD +ddZ mcv ouR ouR byw mcv -wLB -fdr -eFf +uPt +hXJ +drR slx qGx fFJ @@ -41862,7 +40967,7 @@ mLw mLw mLw qGx -oGw +gpL mcv lFt wjW @@ -41870,7 +40975,7 @@ gdb grR mcv grR -jeO +jqT slx qGx ekV @@ -42029,7 +41134,7 @@ mLw mLw wVt qGx -sPp +vmN mcv xay gdb @@ -42037,7 +41142,7 @@ xay xay tTi mcv -eaB +hlR slx qGx shX @@ -42196,7 +41301,7 @@ mLw mLw mLw qGx -qyD +kFv mcv xay xay @@ -42204,7 +41309,7 @@ dBO xay tTi mcv -eaB +hlR slx qGx klE @@ -42363,7 +41468,7 @@ mLw bIW mLw qGx -oGw +gpL mcv oPH daQ @@ -42371,7 +41476,7 @@ xay gdb tTi mcv -eaB +hlR slx qGx qGx @@ -42466,7 +41571,7 @@ hSU hUk hUk hUk -pId +jNH wTt bkR bkR @@ -42474,11 +41579,11 @@ hSU bkR bkR bkR -dhm -oZD -oZD -cuF -eyy +wkl +rVI +rVI +duf +oJQ bkR hUk hUk @@ -42530,7 +41635,7 @@ wVt bIW mLw qGx -sPp +vmN mcv nSQ tBS @@ -42538,7 +41643,7 @@ uhX grR mcv grR -jeO +jqT mLw xVZ xVZ @@ -42633,7 +41738,7 @@ wTt hUk hUk hUk -iCh +bhC wTt bkR bkR @@ -42641,11 +41746,11 @@ bkR bkR bkR bkR -kgt -iKf -dKz -mfY -kSB +jBj +lgo +kFi +ulc +dkY bkR hUk hUk @@ -42697,15 +41802,15 @@ gce bIW mLw qGx -qyD +kFv mcv ige wdt oYQ mcv -emU -dml -eFZ +sJm +vUi +bLW slx qGx qGx @@ -42808,11 +41913,11 @@ bkR bkR bkR bkR -kgt -rRL +jBj +jsk cCa -kkC -kSB +epU +dkY bkR hUk hUk @@ -42864,13 +41969,13 @@ mAK bIW nkV qGx -dUP +kED grR mcv mcv mcv grR -oRM +sDe klE qGx slx @@ -42975,11 +42080,11 @@ bkR bkR bkR bkR -tdT -usc -jWM -ePq -kSB +wot +nPG +rOR +nuP +dkY bkR hUk hUk @@ -43031,13 +42136,13 @@ hPD bIW mLw mLw -urm -lgL -mvB -mvB -mvB -bsw -eFZ +bZM +tVg +vdD +vdD +vdD +myf +bLW qGx qGx slx @@ -43142,11 +42247,11 @@ bkR bkR bkR bkR -tjZ -aul -mSM -aul -wQZ +sFF +qEG +qKn +qEG +cUo bkR hUk hUk @@ -43365,8 +42470,8 @@ mPP wVt mLw mLw -fcJ -eoc +olR +ioh qGx qGx slx @@ -43532,7 +42637,7 @@ qGx qGx qGx qGx -qIV +wYf jxc pbR qGx @@ -43699,7 +42804,7 @@ htv nPf nPf nPf -xOx +ahE bDg pbR qGx @@ -44161,11 +43266,11 @@ mnT mnT mnT mnT -mWO -iwD -mhd -mhd -hYp +alG +tgC +lTu +lTu +kXJ uiK mnT mnT @@ -44328,11 +43433,11 @@ mnT mnT mnT mnT -iHw -aEZ -pfC -tLD -bJc +fBb +euz +hvN +qZD +soz mnT mnT uiK @@ -44477,7 +43582,7 @@ hUk hUk hUk hUk -pId +jNH wTt bEH bkR @@ -44495,11 +43600,11 @@ mnT mnT uiK mnT -nlT -nQy +cJP +uxf nXr -aze -bJc +yfH +soz mnT mnT uiK @@ -44644,7 +43749,7 @@ hUk hUk hUk hUk -iCh +bhC wTt wTt wTt @@ -44662,12 +43767,12 @@ mnT uiK uiK mnT -iHw -bcG -iIT -pkg -jIt -fLE +fBb +uwj +nyA +tfL +aOM +hBn mnT mnT dYB @@ -44814,7 +43919,7 @@ hUk hUk hUk hUk -vRH +ntr hUk wTt wTt @@ -44829,12 +43934,12 @@ mnT uiK uiK uiK -nlT +cJP aFL aFL meF jkT -sal +lpm fbK fbK mnT @@ -44966,7 +44071,7 @@ hUk hUk hUk hUk -pId +jNH bkR bkR bkR @@ -44981,7 +44086,7 @@ hUk hUk hUk hUk -bnK +aax hUk hUk hUk @@ -44996,12 +44101,12 @@ mnT uiK uiK uiK -erv +rkd aFL aFL -dCG -mFd -rky +atL +edt +bXA rmt rmt nbR @@ -45133,7 +44238,7 @@ hUk hUk hUk hUk -iCh +bhC bkR bkR bkR @@ -45163,12 +44268,12 @@ mnT nlv uiK uiK -nlT +cJP aFL aFL aFL jkT -uqW +mGu jKm jKm jKm @@ -45330,12 +44435,12 @@ uiK mnT mnT mnT -pof -aEZ -pfC -tLD -rMZ -cMC +jwJ +euz +hvN +qZD +kCQ +ngQ dYB dYB uiK @@ -45497,11 +44602,11 @@ uiK mnT mnT mnT -nlT -nQy +cJP +uxf nXr -aze -bJc +yfH +soz uiK mnT mnT @@ -45641,7 +44746,7 @@ bkR wTt hUk wTt -dNI +kFx hUk wTt wTt @@ -45664,11 +44769,11 @@ hUk nlv uiK uiK -iHw -bcG -iIT -pkg -bJc +fBb +uwj +nyA +tfL +soz mnT uiK uiK @@ -45801,15 +44906,15 @@ hUk hUk hUk hUk -pId +jNH bkR hSU bkR wTt wTt wTt -nQc -lBm +gGz +pxl wTt wTt wTt @@ -45831,11 +44936,11 @@ hUk hUk uiK uiK -pEt -kQU -kQU -kQU -fpM +xKz +fUC +fUC +fUC +qXB mnT mnT mnT @@ -45968,7 +45073,7 @@ hUk hUk hUk hUk -iCh +bhC bkR bkR bkR @@ -46344,9 +45449,9 @@ feg feg nlv uiK -bFh -bhg -hds +ipD +ehq +uwI mnT mnT mnT @@ -46356,8 +45461,8 @@ mnT mnT mnT uiK -rTv -kTX +pLI +xqQ uiK feg feg @@ -46478,7 +45583,7 @@ hSU bkR bEH wTt -pId +jNH hUk hUk hUk @@ -46645,7 +45750,7 @@ bkR bkR bkR bEH -iCh +bhC hUk hUk hUk @@ -46819,7 +45924,7 @@ hUk hUk hUk hUk -ddx +tsr hUk hUk hUk @@ -46986,7 +46091,7 @@ bEH bEH hUk hUk -pQN +szg hUk hUk hUk @@ -47010,7 +46115,7 @@ mnT feg feg feg -nPl +aRZ feg feg feg @@ -47177,7 +46282,7 @@ mnT feg feg feg -pRb +prd feg feg feg @@ -47194,7 +46299,7 @@ feg feg feg feg -nPl +aRZ feg nlv mnT @@ -47361,8 +46466,8 @@ feg lEA feg feg -kvf -nHO +fME +eCI mnT mnT mnT @@ -48317,7 +47422,7 @@ dxF dxF dxF dxF -uwY +wQg bkR bkR bkR @@ -48366,7 +47471,7 @@ feg feg feg uiK -vcW +bom uiK mnT nlv @@ -48484,7 +47589,7 @@ dxF dxF dxF dxF -lIB +kyu bEH bEH bkR @@ -49366,7 +48471,7 @@ uiK mnT nlv uiK -vcW +bom uiK mnT mnT @@ -50016,7 +49121,7 @@ vsP vsP vsP kZz -nyY +aeE kZz nlv nlv @@ -50540,9 +49645,9 @@ kPa nxf pGc uPE -nzB -vmH -vmH +lWT +gcw +gcw lLo wZP jhS @@ -50552,7 +49657,7 @@ vdv vdv vdv mMH -pxB +uZM mMH bpj bpj @@ -50707,9 +49812,9 @@ pGc nxf pGc bLa -vbm -cRO -cRO +ptF +oNe +oNe lLo wZP jhS @@ -51012,7 +50117,7 @@ bsl bsl kZz kZz -ueJ +oYz kZz kZz sNZ @@ -51179,8 +50284,8 @@ bsl bsl kZz kZz -fjp -xVM +oYs +drg kZz vsP vsP @@ -52189,7 +51294,7 @@ kZz vsP vsP vsP -pom +tEB vsP vsP vsP @@ -52356,7 +51461,7 @@ kZz vsP vsP vsP -aoh +lrj vsP vsP vsP @@ -52391,8 +51496,8 @@ dxF dxF dxF dxF -dFV -ptR +uKT +pbk dxF dxF dxF @@ -52519,7 +51624,7 @@ vsP vsP vsP vsP -pom +tEB vsP vsP vsP @@ -52559,7 +51664,7 @@ dxF dxF dxF mMH -rzq +uHR dxF dxF dxF @@ -52686,7 +51791,7 @@ kZz kZz vsP vsP -aoh +lrj vsP vsP vsP @@ -53054,7 +52159,7 @@ ebB ptY dxF mMH -fll +fIz mMH npL mMH @@ -53221,8 +52326,8 @@ ebB ebB ptY mMH -nKO -rmo +oup +mUS mMH npL dxF 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 ac6672799f36..4e2f586f31f3 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -44,13 +44,6 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/nw_rockies) -"aby" = ( -/obj/item/stack/sheet/metal, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) "abJ" = ( /obj/effect/landmark/lv624/fog_blocker/short, /turf/closed/wall/strata_outpost, @@ -96,20 +89,14 @@ /obj/effect/acid_hole, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) +"acv" = ( +/obj/structure/cargo_container/ferret/left, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "acE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) -"acJ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/gm/river, -/area/lv522/oob) "adk" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, @@ -126,25 +113,22 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) +"adm" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/containers) "adG" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/condiment/saltshaker, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) -"adI" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/gm/river, -/area/lv522/oob) -"adN" = ( -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/oob) "aea" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_fuel"; @@ -156,6 +140,13 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, /area/lv522/indoors/b_block/bridge) +"aef" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "aem" = ( /obj/structure/barricade/plasteel/metal, /turf/open/asphalt/cement/cement12, @@ -171,6 +162,16 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) +"aff" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) "afn" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/corsat/plate, @@ -233,6 +234,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) +"agh" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"agt" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/gm/river, +/area/lv522/oob) "agu" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -317,6 +331,12 @@ "aiQ" = ( /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/central_streets) +"ajs" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) "ajw" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -331,6 +351,12 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) +"akj" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) "akk" = ( /turf/open/floor/prison/floor_plate, /area/lv522/oob) @@ -379,6 +405,11 @@ "ame" = ( /turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor) +"amz" = ( +/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/containers) "amC" = ( /obj/structure/bed/roller, /obj/effect/landmark/objective_landmark/medium, @@ -467,6 +498,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"anP" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "aoe" = ( /obj/structure/barricade/handrail/strata, /obj/structure/machinery/light{ @@ -560,6 +595,17 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) +"arv" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "arN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -584,13 +630,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) -"asF" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) "asH" = ( /turf/open/floor/corsat/brown/north, /area/lv522/atmos/west_reactor) @@ -630,18 +669,6 @@ /obj/structure/largecrate/random, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"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/far) "aut" = ( /obj/item/trash/barcardine, /obj/structure/largecrate/random/mini{ @@ -650,9 +677,19 @@ }, /turf/open/floor/shiva/radiator_tile2, /area/lv522/oob) +"auv" = ( +/obj/structure/curtain, +/mob/living/simple_animal/mouse, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "auG" = ( /turf/open/floor/prison, /area/lv522/outdoors/nw_rockies) +"auL" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "avb" = ( /obj/item/stack/sheet/metal, /obj/structure/machinery/light{ @@ -782,26 +819,9 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"aCJ" = ( -/obj/structure/largecrate/random/barrel{ - layer = 2.7 - }, -/obj/structure/largecrate/random/barrel{ - layer = 2.9; - pixel_x = 6; - pixel_y = -16 - }, -/obj/structure/largecrate/random/barrel{ - layer = 2.9; - pixel_x = -17; - pixel_y = -9 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/prop/invuln/fire{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/auto_turf/sand_white/layer0, +"aCw" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, /area/lv522/outdoors/colony_streets/containers) "aCS" = ( /obj/structure/surface/rack, @@ -818,12 +838,6 @@ /obj/structure/ore_box, /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) -"aDh" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "aDj" = ( /obj/item/prop/colony/usedbandage{ dir = 10 @@ -842,6 +856,14 @@ }, /turf/open/floor/plating, /area/shuttle/drop2/lv522) +"aDT" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "aDZ" = ( /obj/item/ammo_box/magazine/misc/mre, /obj/item/prop/colony/usedbandage{ @@ -874,6 +896,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) +"aFd" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "aFf" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -943,18 +973,6 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"aHA" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/containers) -"aHH" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) "aIc" = ( /obj/structure/machinery/light{ dir = 1 @@ -1071,12 +1089,6 @@ }, /turf/open/floor/shiva/radiator_tile2, /area/lv522/oob) -"aLY" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/indoors/c_block/mining) "aMI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed{ @@ -1108,6 +1120,15 @@ "aNP" = ( /turf/open/floor/strata/white_cyan3/southeast, /area/lv522/indoors/a_block/medical) +"aOf" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/rifle/lmg/holo_target, +/obj/item/weapon/gun/rifle/lmg{ + current_mag = null + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "aOi" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/item/lightstick/red/spoke/planted{ @@ -1137,6 +1158,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) +"aPz" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) "aPN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light{ @@ -1168,21 +1193,26 @@ }, /turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/tunnel/far) +"aQR" = ( +/obj/structure/platform/metal/almayer/east, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"aQW" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "aRd" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical) +"aRf" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/containers) "aRi" = ( /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"aRB" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "aRH" = ( /obj/item/stack/cable_coil, /turf/open/floor/corsat, @@ -1203,6 +1233,12 @@ /obj/item/trash/plate, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"aSG" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "aSR" = ( /obj/structure/machinery/floodlight/landing, /turf/open/floor/prison/blue_plate/north, @@ -1282,12 +1318,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) -"aVa" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "aVo" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -1409,11 +1439,20 @@ }, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"aXZ" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) "aYg" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/surface/rack, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"aYm" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "aYD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -1468,13 +1507,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"aYQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) "aZj" = ( /obj/structure/plasticflaps, /obj/structure/machinery/conveyor{ @@ -1510,6 +1542,11 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) +"aZZ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) "bag" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/corsat/brown/north, @@ -1657,6 +1694,10 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) +"bei" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement/cement14, +/area/lv522/landing_zone_1) "bel" = ( /obj/structure/machinery/computer/crew/colony, /turf/open/floor/strata/blue1, @@ -1712,6 +1753,10 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/west) +"bfJ" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) "bgc" = ( /obj/structure/machinery/power/apc/power/north{ start_charge = 20 @@ -1764,13 +1809,6 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"bhD" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) "bhL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1781,6 +1819,11 @@ /obj/structure/largecrate/supply/supplies/tables_racks, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) +"biu" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "biL" = ( /obj/structure/bed/chair{ dir = 1 @@ -1842,12 +1885,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan3/northwest, /area/lv522/indoors/a_block/medical/glass) -"bkg" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/oob) "bkh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan3/southwest, @@ -1913,6 +1950,11 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) +"bmm" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "bmR" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) @@ -2003,6 +2045,13 @@ "bqE" = ( /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_east_street) +"brf" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "brk" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/floor/plating, @@ -2036,6 +2085,13 @@ "bsG" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) +"bsR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "btb" = ( /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) @@ -2044,6 +2100,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"buk" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "buD" = ( /obj/structure/barricade/deployable, /turf/open/floor/prison, @@ -2170,6 +2230,14 @@ }, /turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) +"byx" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_crate_alt2"; + layer = 3.1 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "byy" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "mining_shutter_2" @@ -2234,6 +2302,14 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) +"bAg" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "bAo" = ( /turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/east_reactor/west) @@ -2277,15 +2353,6 @@ }, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"bBW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) "bCd" = ( /obj/structure/tunnel, /turf/open/floor/corsat/brown/southwest, @@ -2307,6 +2374,11 @@ "bCy" = ( /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/south_street) +"bCG" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "bCX" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/corsat/plate, @@ -2352,6 +2424,10 @@ /obj/structure/bed/chair/comfy, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) +"bEx" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) "bFn" = ( /obj/item/tool/wet_sign{ pixel_x = -11; @@ -2410,6 +2486,12 @@ }, /turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) +"bHf" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) "bHg" = ( /turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical) @@ -2479,10 +2561,22 @@ /obj/item/device/analyzer, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"bIT" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "bIY" = ( /obj/structure/cryofeed/right, /turf/open/floor/bluegrid, /area/lv522/atmos/east_reactor) +"bJn" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/largecrate/random{ + layer = 2.9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "bJp" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -2560,6 +2654,14 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) +"bKL" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "bKO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -2575,18 +2677,17 @@ /obj/structure/cargo_container/hd/right/alt, /turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) -"bLA" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "bLI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/engineering_electrical, /obj/structure/machinery/light, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) +"bLK" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/ceiling) "bLV" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -2617,6 +2718,11 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"bMT" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/ore_box, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "bMX" = ( /turf/closed/shuttle{ dir = 1; @@ -2731,6 +2837,10 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness/glass) +"bQm" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "bQq" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/shale/layer2, @@ -2760,10 +2870,23 @@ /obj/item/trash/uscm_mre, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) +"bRI" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_east_street) "bRN" = ( /obj/item/device/flashlight, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"bRO" = ( +/obj/item/ammo_magazine/m2c{ + current_rounds = 0; + layer = 4.2; + pixel_x = 17 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/outdoors/colony_streets/containers) "bRP" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -2985,13 +3108,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"bXZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) "bYd" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/corsat/plate, @@ -3032,16 +3148,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"bYV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) "bYZ" = ( /obj/structure/machinery/light{ dir = 8 @@ -3188,6 +3294,15 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) +"cel" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "cem" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -3241,6 +3356,13 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/south_west_street) +"cfR" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "cfT" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -3250,16 +3372,36 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) +"cgn" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/largecrate/random{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "cgB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) +"chh" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) "cho" = ( /obj/item/weapon/gun/rifle/mar40/carbine, /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) +"chH" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "chR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -3270,6 +3412,10 @@ "cia" = ( /turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) +"cij" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "cil" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -3433,11 +3579,24 @@ "con" = ( /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_east_street) +"cor" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "coR" = ( /obj/structure/ore_box, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) +"cpc" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "cpk" = ( /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/south_east_street) @@ -3445,15 +3604,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) -"cpx" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) "cpy" = ( /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) @@ -3590,13 +3740,6 @@ }, /turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) -"csv" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) "csy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -3639,6 +3782,11 @@ /obj/structure/foamed_metal, /turf/open/floor/plating, /area/lv522/oob) +"ctR" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) "cuk" = ( /obj/structure/cargo_container/horizontal/blue/top, /turf/open/floor/prison/floor_marked, @@ -3662,10 +3810,10 @@ "cvi" = ( /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"cvA" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/oob) +"cvE" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "cvP" = ( /obj/structure/shuttle/engine/heater{ dir = 4; @@ -3746,10 +3894,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) -"cxN" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/containers) "cxT" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -3854,6 +3998,10 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) +"cAl" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "cAp" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/corsat/plate, @@ -3891,10 +4039,22 @@ /obj/item/tool/extinguisher, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) +"cBz" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "cBV" = ( /obj/effect/decal/cleanable/cobweb2, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) +"cCg" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "cCt" = ( /obj/item/prop/alien/hugger, /obj/item/clothing/head/helmet/riot, @@ -3931,16 +4091,6 @@ }, /turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/west_reactor) -"cDi" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "cDo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3960,6 +4110,14 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"cDO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/containers) +"cDU" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "cEj" = ( /obj/structure/closet/crate, /obj/item/clothing/under/colonist, @@ -3990,6 +4148,12 @@ }, /turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/west_reactor) +"cEB" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "cEM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -4089,6 +4253,14 @@ }, /turf/open/floor/bluegrid, /area/lv522/atmos/east_reactor) +"cIc" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) "cIe" = ( /obj/structure/surface/rack, /obj/item/tool/minihoe{ @@ -4206,6 +4378,17 @@ /obj/structure/closet/crate, /turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) +"cJq" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "cJy" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/plate, @@ -4214,13 +4397,6 @@ /obj/structure/largecrate, /turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) -"cJF" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/stack/sheet/wood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "cJW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -4314,15 +4490,6 @@ "cLx" = ( /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) -"cLB" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "cLQ" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/prison/darkredfull2, @@ -4462,6 +4629,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) +"cQv" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "cQB" = ( /obj/structure/transmitter/colony_net{ phone_category = "LV522 Chances Claim"; @@ -4561,6 +4736,10 @@ }, /turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/command_centre) +"cTq" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) "cTz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -4590,6 +4769,16 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) +"cUe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/containers) "cUg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -4687,18 +4876,6 @@ "cWL" = ( /turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/command_centre) -"cWS" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_west_street) -"cWT" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) "cWY" = ( /obj/structure/filingcabinet/seeds{ density = 0; @@ -4741,6 +4918,17 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) +"cYb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"cYd" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "cYf" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /obj/item/reagent_container/food/condiment/enzyme, @@ -4868,39 +5056,6 @@ "dbi" = ( /turf/open/floor/corsat/browncorner, /area/lv522/atmos/command_centre) -"dbs" = ( -/obj/item/stack/sheet/wood{ - pixel_x = -5; - pixel_y = -10 - }, -/obj/item/stack/sheet/wood{ - layer = 2.7; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - layer = 3.1; - pixel_x = -11; - pixel_y = -6 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 4; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - layer = 3.1; - pixel_x = 15; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - layer = 3.1; - pixel_x = 9; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "dbt" = ( /obj/item/prop/alien/hugger, /turf/open/floor/corsat/brown/southeast, @@ -4925,16 +5080,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) -"dbP" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) "dbQ" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -5034,12 +5179,6 @@ /obj/structure/cargo_container/grant/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"ddd" = ( -/obj/structure/prop/invuln/ice_prefab/standalone{ - icon_state = "white" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/containers) "ddo" = ( /obj/structure/window/reinforced{ dir = 8 @@ -5059,6 +5198,10 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"ddB" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) "ddC" = ( /obj/structure/filingcabinet{ density = 0; @@ -5236,6 +5379,10 @@ "dhH" = ( /turf/open/asphalt/cement/cement12, /area/lv522/landing_zone_2) +"dhO" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "dhP" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 @@ -5255,6 +5402,10 @@ }, /turf/open/floor/corsat/browncorner/east, /area/lv522/oob/w_y_vault) +"dhZ" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) "dio" = ( /obj/effect/decal/hefa_cult_decals/d32{ desc = "You think you can make out the iconography of a Xenomorph."; @@ -5347,6 +5498,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"dkx" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "dkB" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, @@ -5389,14 +5546,20 @@ }, /turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) -"dkX" = ( -/obj/structure/platform_decoration, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "dli" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/brown, /area/lv522/atmos/command_centre) +"dlx" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = 4; + pixel_y = -16 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) "dlC" = ( /obj/structure/prop/invuln/fire{ pixel_x = 8; @@ -5448,17 +5611,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/command_centre) -"dne" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) +"dnf" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "dng" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -5498,12 +5654,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"dnO" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "dnX" = ( /obj/structure/surface/table/almayer, /obj/item/tool/kitchen/rollingpin, @@ -5595,9 +5745,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/brown/west, /area/lv522/atmos/cargo_intake) -"dqy" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "dqB" = ( /turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/south_east_street) @@ -5790,10 +5937,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"dvO" = ( -/obj/structure/platform_decoration/strata, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) "dwd" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -5943,17 +6086,23 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) +"dAE" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "dAG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/brown/east, /area/lv522/atmos/cargo_intake) -"dAQ" = ( -/obj/structure/platform_decoration{ +"dAJ" = ( +/obj/structure/barricade/deployable{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "dBa" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -6243,13 +6392,6 @@ /obj/item/clothing/suit/storage/snow_suit/survivor/parka/red, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"dHz" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) "dHE" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison/blue/southeast, @@ -6367,6 +6509,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness/glass) +"dKD" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "dKF" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -6421,6 +6570,13 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/cargo_intake) +"dMk" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/bed/roller, +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "dMl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -6455,6 +6611,10 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1) +"dMZ" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "dNd" = ( /obj/structure/surface/table/almayer, /turf/open/floor/corsat/squares, @@ -6478,6 +6638,11 @@ "dNx" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) +"dNM" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "dNP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -6644,6 +6809,13 @@ "dRL" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/dorm_north) +"dRW" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) "dSt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -6666,21 +6838,19 @@ "dTv" = ( /turf/open/floor/corsat/brown, /area/lv522/oob/w_y_vault) -"dTD" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "flagpole"; - layer = 4.11; - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/containers) "dTJ" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) +"dTQ" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "dTW" = ( /obj/item/clothing/under/marine/reconnaissance, /turf/open/floor/corsat/brown/southeast, @@ -6711,6 +6881,14 @@ }, /turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) +"dUO" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) "dUS" = ( /obj/item/clothing/head/hardhat/white, /obj/item/prop/alien/hugger{ @@ -6788,6 +6966,10 @@ }, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) +"dWU" = ( +/obj/structure/largecrate/random, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/containers) "dWY" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "32" @@ -7001,6 +7183,13 @@ }, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) +"edE" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "edP" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -7166,6 +7355,14 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) +"egI" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "egK" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-8" @@ -7199,6 +7396,10 @@ /obj/effect/landmark/queen_spawn, /turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) +"eho" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/containers) "ehr" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt, @@ -7208,6 +7409,13 @@ /obj/effect/acid_hole, /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/hallway) +"ehJ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) "ehM" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -7334,6 +7542,10 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) +"elm" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_east_street) "elq" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -7469,14 +7681,6 @@ }, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"eoH" = ( -/obj/item/stack/sheet/metal{ - layer = 2.5; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "eoZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/brown, @@ -7532,19 +7736,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway/damage) -"equ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"eqD" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "eqM" = ( /turf/open/floor/plating/platingdmg1, /area/lv522/indoors/a_block/security) @@ -7570,6 +7761,17 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"esc" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) "esj" = ( /obj/structure/cargo_container/kelland/left, /turf/open/asphalt/cement/cement9, @@ -7577,6 +7779,10 @@ "eso" = ( /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"esu" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "esB" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -7623,13 +7829,10 @@ "etx" = ( /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"etN" = ( -/obj/structure/machinery/photocopier, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) +"etZ" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/river, +/area/lv522/oob) "euj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -7678,6 +7881,19 @@ /obj/vehicle/train/cargo/engine, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) +"evb" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/containers) "evg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/power/west{ @@ -7711,52 +7927,18 @@ /obj/item/clothing/suit/storage/marine/M3G, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"evS" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = 4; - pixel_y = -16 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"ewe" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) -"ewf" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_east_street) -"ewm" = ( -/obj/item/stack/tile/wood{ - layer = 2.5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) -"ewn" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_west_street) -"ewp" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) -"ewE" = ( -/obj/structure/platform{ - dir = 4 +"evD" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) "exu" = ( /obj/structure/surface/rack, /obj/item/tool/minihoe{ @@ -7777,10 +7959,6 @@ /obj/item/tool/wirecutters/clippers, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"exB" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "exQ" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -7794,18 +7972,6 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) -"eyc" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"eyh" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) "eym" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -7816,6 +7982,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) +"eyt" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "eyy" = ( /obj/structure/machinery/landinglight/ds1, /turf/open/floor/plating, @@ -7873,6 +8043,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"ezE" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) "ezH" = ( /obj/structure/cargo_container/watatsumi/rightmid, /turf/open/floor/prison/floor_marked, @@ -7982,21 +8157,16 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) +"eDh" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "eDi" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) -"eDq" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/outdoors/colony_streets/south_street) "eDt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/squares, @@ -8098,13 +8268,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"eHB" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) "eHF" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/plating, @@ -8139,13 +8302,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms/glass) -"eIn" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/item/prop/alien/hugger{ - pixel_y = 14 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "eIF" = ( /obj/structure/bed/alien, /obj/item/pipe{ @@ -8153,15 +8309,6 @@ }, /turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) -"eIT" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -2; - pixel_y = 1 - }, -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "eJc" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/close, @@ -8194,10 +8341,6 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"eJq" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "eJw" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/corsat/plate, @@ -8270,11 +8413,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/cargo_intake) -"eLN" = ( -/obj/structure/machinery/light, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "eLU" = ( /obj/structure/machinery/light{ dir = 4 @@ -8360,19 +8498,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) -"eOe" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/containers) "eOj" = ( /obj/structure/machinery/light{ dir = 8 @@ -8387,16 +8512,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) -"eOn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/containers) "eOE" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -8491,6 +8606,14 @@ }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) +"eRQ" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "eSf" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -8502,15 +8625,6 @@ /obj/effect/spider/spiderling/nogrow, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"eSy" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) "eSO" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light{ @@ -8537,9 +8651,21 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) +"eUb" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "eUh" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) +"eUj" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/containers) "eUs" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat, @@ -8562,6 +8688,13 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) +"eUM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_west_street) "eUO" = ( /turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/outdoor_bot) @@ -8654,31 +8787,26 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) -"eXe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/containers) "eXG" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"eXO" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "eXU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) -"eXV" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -2; - pixel_y = 1 +"eYd" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "eYh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8696,6 +8824,12 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/cargo_intake) +"eZC" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) "eZK" = ( /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) @@ -8706,34 +8840,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"eZW" = ( -/obj/effect/decal/cleanable/dirt, +"eZP" = ( /obj/structure/stairs/perspective{ + dir = 8; icon_state = "p_stair_full" }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/transmitter/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "LZ1 Service Tunnel"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "eZY" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"fac" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) "faJ" = ( /obj/item/trash/uscm_mre{ pixel_x = 12; @@ -8787,12 +8905,6 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/damage) -"fbS" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_east_street) "fbV" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -8860,15 +8972,6 @@ /obj/item/trash/plate, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"fdS" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Reactor_e_entry_4"; - pixel_x = -16; - req_access = null - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/containers) "fdT" = ( /obj/structure/closet/crate, /turf/open/floor/prison/darkbrownfull2, @@ -8892,20 +8995,6 @@ }, /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_east_street) -"feS" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/containers) -"feZ" = ( -/turf/open/floor/prison/floor_marked, -/area/lv522/outdoors/colony_streets/containers) "ffb" = ( /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) @@ -8926,10 +9015,6 @@ }, /turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/south_street) -"ffr" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison/floor_marked, -/area/lv522/outdoors/colony_streets/containers) "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?"; @@ -8951,12 +9036,6 @@ }, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) -"fgk" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) "fgv" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -8965,6 +9044,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) +"fgw" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "fgB" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 18; @@ -9001,14 +9084,14 @@ }, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) -"fhY" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/prison/floor_marked, -/area/lv522/outdoors/colony_streets/containers) -"fib" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison/floor_marked, -/area/lv522/outdoors/colony_streets/containers) +"fic" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) "fiu" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden{ @@ -9016,10 +9099,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"fiA" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison/floor_marked, -/area/lv522/outdoors/colony_streets/containers) "fiB" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -9068,14 +9147,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) +"fjL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) "fjP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"fkb" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/floor_marked, -/area/lv522/outdoors/colony_streets/containers) "fki" = ( /obj/structure/bed/chair{ dir = 1 @@ -9096,6 +9185,14 @@ "fkB" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/nw_rockies) +"fkJ" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "fkP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9103,9 +9200,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"fkW" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/containers) "fld" = ( /mob/living/simple_animal/mouse, /turf/open/floor/prison, @@ -9137,6 +9231,12 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/oob) +"flT" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/gm/river, +/area/lv522/indoors/c_block/mining) "fms" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, @@ -9196,6 +9296,14 @@ }, /turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) +"foa" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "fol" = ( /turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/cargo_intake) @@ -9203,13 +9311,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/cargo_intake) -"foR" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) "foT" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -9273,6 +9374,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms/glass) +"fqJ" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "frH" = ( /obj/structure/machinery/light{ dir = 1 @@ -9309,19 +9417,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"fsz" = ( -/obj/structure/platform, -/obj/structure/prop/vehicles/crawler{ - dir = 8; - layer = 3.1; - pixel_x = 5; - pixel_y = 7 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) "fsC" = ( /obj/structure/prop/vehicles{ icon_state = "truck_damaged" @@ -9378,13 +9473,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"ftA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) "ftD" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper A-Block Fitness Centre Airlock" @@ -9407,15 +9495,6 @@ /obj/item/stack/sheet/metal, /turf/open/floor/corsat, /area/lv522/atmos/reactor_garage) -"ful" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) "fuq" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison, @@ -9436,15 +9515,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) -"fvn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "fvo" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -9540,6 +9610,16 @@ }, /turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) +"fxH" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) "fyl" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -9581,27 +9661,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"fzg" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"fzl" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) "fzp" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -9629,39 +9688,12 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"fAq" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"fAx" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "fAA" = ( /obj/structure/largecrate/random/barrel{ layer = 2.9 }, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) -"fAG" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "fAH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9685,6 +9717,13 @@ }, /turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) +"fBi" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "fBp" = ( /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/east_central_street) @@ -9692,50 +9731,22 @@ /obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) -"fBP" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "fBR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"fBU" = ( -/obj/item/storage/belt/medical/lifesaver, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "fBY" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) -"fCb" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "fCl" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/kitchen/glass) -"fCE" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) -"fCN" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) -"fCP" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "fCU" = ( /obj/effect/decal/cleanable/blood{ desc = "Watch your step."; @@ -9751,10 +9762,6 @@ icon_state = "30" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"fDi" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "fDj" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -9766,13 +9773,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"fDn" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_marked, -/area/lv522/outdoors/colony_streets/containers) "fDr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -9802,20 +9802,6 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"fDH" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) -"fEe" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) "fEF" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/radiator_tile2, @@ -9835,16 +9821,13 @@ /obj/item/explosive/plastic, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) -"fFp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"fFt" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/containers) +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Tornado) "fFw" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison, @@ -9856,10 +9839,6 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison/floor_marked, /area/lv522/outdoors/nw_rockies) -"fFF" = ( -/obj/structure/platform_decoration, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) "fFS" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -9898,6 +9877,10 @@ /obj/structure/largecrate/random/secure, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/nw_rockies) +"fHd" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "fHy" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -9912,6 +9895,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan2, /area/lv522/indoors/a_block/executive) +"fHX" = ( +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) "fIa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -9926,10 +9913,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) +"fIs" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) "fIx" = ( /obj/structure/closet/emcloset, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) +"fIA" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/oob) "fII" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -9943,6 +9938,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) +"fIV" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/containers) "fJe" = ( /obj/structure/cargo_container/kelland/right, /turf/open/asphalt/cement/cement12, @@ -9958,12 +9960,6 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) -"fKf" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) "fKt" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -10027,6 +10023,13 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) +"fMl" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/structure/barricade/deployable, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "fMN" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pill_bottle/tramadol/skillless{ @@ -10070,6 +10073,13 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) +"fNb" = ( +/obj/structure/platform/metal/almayer/west, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "fNk" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -10126,22 +10136,20 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"fPv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +"fPc" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/containers) "fPB" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) +"fPG" = ( +/obj/structure/machinery/light, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "fPH" = ( /obj/structure/closet/crate/miningcar, /turf/open/auto_turf/shale/layer1, @@ -10157,6 +10165,10 @@ /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor/south) +"fQa" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "fQb" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -10164,6 +10176,15 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"fQf" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -2; + pixel_y = -8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) "fQD" = ( /obj/structure/bed/chair{ dir = 4 @@ -10178,6 +10199,10 @@ /obj/item/clothing/suit/storage/marine/medium/smooth, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) +"fRe" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/containers) "fRf" = ( /obj/structure/closet/bodybag, /turf/open/floor/prison/blue_plate/north, @@ -10190,15 +10215,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) -"fRq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) "fRP" = ( /obj/structure/prop/vehicles/crawler{ layer = 3.3 @@ -10232,33 +10248,20 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"fSR" = ( -/obj/structure/barricade/deployable{ - dir = 8 +"fSB" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) -"fSX" = ( -/obj/effect/landmark/objective_landmark/close, -/obj/structure/bed/roller, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) -"fTi" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) "fTN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) -"fTO" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "fTP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -10273,6 +10276,39 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) +"fUn" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -5; + pixel_y = -10 + }, +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + layer = 3.1; + pixel_x = -11; + pixel_y = -6 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 4; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + layer = 3.1; + pixel_x = 15; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + layer = 3.1; + pixel_x = 9; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "fUx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -10283,6 +10319,14 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) +"fVc" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/central_streets) "fVB" = ( /obj/structure/closet, /obj/effect/decal/cleanable/dirt, @@ -10310,10 +10354,6 @@ }, /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/central_streets) -"fWD" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "fWG" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) @@ -10353,12 +10393,6 @@ icon_state = "19" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"fXs" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison/floor_marked, -/area/lv522/outdoors/colony_streets/containers) "fXx" = ( /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) @@ -10403,15 +10437,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) -"fYD" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "fYP" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -10465,6 +10490,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/c_block/mining) +"fZT" = ( +/obj/structure/barricade/deployable, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) +"gag" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) "gat" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -10571,6 +10607,15 @@ }, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) +"gca" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "gcn" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/outdoors/nw_rockies) @@ -10639,10 +10684,6 @@ "gdX" = ( /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/nw_rockies) -"gej" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/landing_zone_1) "gek" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -10692,16 +10733,6 @@ "geP" = ( /turf/open/floor/corsat/marked, /area/lv522/atmos/cargo_intake) -"geT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "gfi" = ( /obj/structure/bed/chair, /turf/open/floor/corsat/plate, @@ -10724,6 +10755,15 @@ }, /turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) +"gfH" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "gfL" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/corsat/brown/north, @@ -10737,15 +10777,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) +"ggo" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river, +/area/lv522/outdoors/colony_streets/south_street) "ggp" = ( /obj/structure/machinery/floodlight, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"ggM" = ( -/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/containers) "ggO" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -10764,10 +10804,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"ghr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "ghu" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood, @@ -10779,17 +10815,6 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) -"ghy" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/containers) "ghY" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 @@ -10809,19 +10834,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"giF" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) +"gix" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) "giX" = ( /obj/structure/curtain/red, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"gjm" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "gjt" = ( /obj/structure/machinery/colony_floodlight{ density = 0; @@ -10846,11 +10870,6 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/t_comm) -"gjV" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "gkg" = ( /obj/structure/machinery/portable_atmospherics/hydroponics{ icon_state = "hydrotray4" @@ -10867,6 +10886,19 @@ }, /turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) +"gkz" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "gkF" = ( /obj/structure/machinery/computer/arcade, /obj/effect/decal/cleanable/dirt, @@ -10896,14 +10928,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"glQ" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) "glV" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -10911,41 +10935,12 @@ /obj/item/stack/sheet/wood, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) -"gmb" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "gme" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"gmt" = ( -/obj/item/ammo_magazine/m2c{ - current_rounds = 0; - layer = 4.2; - pixel_x = 1; - pixel_y = 11 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/outdoors/colony_streets/containers) -"gmu" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/outdoors/colony_streets/south_street) -"gnd" = ( -/turf/closed/wall/strata_ice/dirty, -/area/lv522/outdoors/colony_streets/containers) "gnf" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 @@ -10963,14 +10958,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges) -"gnA" = ( -/obj/item/ammo_magazine/m2c{ - current_rounds = 0; - layer = 4.2; - pixel_x = 17 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/outdoors/colony_streets/containers) "gok" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -10982,12 +10969,12 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"goo" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/oob) +"gom" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "gou" = ( /turf/open/floor/prison/darkpurple2/northwest, /area/lv522/indoors/a_block/dorms) @@ -11093,6 +11080,13 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/nw_rockies) +"gqX" = ( +/obj/structure/barricade/deployable, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "grg" = ( /obj/effect/decal/cleanable/blood, /obj/structure/machinery/light{ @@ -11240,18 +11234,6 @@ }, /turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) -"guE" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) "guH" = ( /obj/structure/machinery/light{ dir = 4 @@ -11311,6 +11293,14 @@ /obj/effect/alien/resin/sticky, /turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/oob) +"gwE" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "gwH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -11357,6 +11347,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) +"gxD" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/central_streets) "gxE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -11373,6 +11367,10 @@ }, /turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) +"gxZ" = ( +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_west_street) "gyb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname, @@ -11388,6 +11386,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/cell_stripe/west, /area/lv522/atmos/reactor_garage) +"gzg" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "gzu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -11396,6 +11398,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) +"gzF" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Reactor_e_entry_4"; + pixel_x = -16; + req_access = null + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/containers) "gzS" = ( /obj/structure/pipes/unary/freezer{ dir = 1; @@ -11460,6 +11471,11 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"gBf" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "gBi" = ( /obj/item/tool/wet_sign, /turf/open/floor/corsat/squares, @@ -11486,6 +11502,11 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"gCt" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "gCE" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/snacks/meat, @@ -11513,6 +11534,15 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) +"gCP" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1) "gDz" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -11530,6 +11560,11 @@ /obj/item/prop/colony/game, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) +"gDR" = ( +/obj/item/tool/wrench, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "gEd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -11709,12 +11744,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) -"gIc" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) "gIg" = ( /mob/living/simple_animal/mouse, /turf/open/asphalt/cement, @@ -11723,31 +11752,19 @@ /obj/structure/cargo_container/kelland/left, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) -"gIr" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_east_street) "gIH" = ( /turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/east_reactor/south) +"gIP" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) "gIZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) -"gJr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "gJD" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/plate, @@ -11764,27 +11781,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/engineering) -"gJM" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) "gKa" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/south_east_street) -"gKg" = ( -/obj/structure/platform, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, +"gKO" = ( +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1) +/area/lv522/indoors/c_block/cargo) "gKY" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -11815,11 +11819,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"gLK" = ( -/obj/structure/barricade/deployable, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "gLV" = ( /obj/structure/prop/server_equipment/yutani_server/broken{ density = 0; @@ -11836,27 +11835,16 @@ /obj/item/prop/alien/hugger, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) -"gMc" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt" - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) -"gMy" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) -"gMG" = ( -/obj/structure/platform_decoration{ - dir = 1 +"gMI" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "gMQ" = ( /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/south_west_street) @@ -11872,27 +11860,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"gNe" = ( -/obj/structure/machinery{ - density = 1; - dir = 4; - icon = 'icons/obj/vehicles/apc.dmi'; - icon_state = "apc_base_com"; - explo_proof = 1; - name = "\improper M577 armored personnel carrier"; - pixel_y = -21; - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/outdoors/colony_streets/containers) "gNn" = ( /obj/structure/largecrate/supply/medicine/medkits{ pixel_x = -7 @@ -11911,15 +11878,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) -"gND" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "gNJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -11990,13 +11948,13 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"gOZ" = ( -/obj/structure/platform_decoration{ - dir = 8 +"gPh" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/platform/metal/almayer/east, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "gPp" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, @@ -12006,24 +11964,20 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) -"gPv" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "gPw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) +"gPy" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + name = "Suit Storage Unit"; + pixel_x = 3 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "gQu" = ( /mob/living/simple_animal/cat/kitten{ dir = 8 @@ -12038,23 +11992,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"gQV" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"gRj" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/prop/colony/used_flare, +"gRi" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +/area/lv522/landing_zone_1) "gRp" = ( /obj/structure/machinery/floodlight/landing, /turf/open/floor/prison/darkbrownfull2, @@ -12069,12 +12012,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"gRD" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "gRJ" = ( /turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor/west) @@ -12103,6 +12040,19 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) +"gSB" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"gSC" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt" + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "gSJ" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -12124,6 +12074,13 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) +"gTZ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) "gUe" = ( /obj/structure/ore_box, /obj/effect/decal/cleanable/cobweb, @@ -12168,10 +12125,6 @@ /obj/effect/decal/cleanable/vomit, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) -"gVd" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "gVf" = ( /obj/structure/machinery/landinglight/ds2, /obj/effect/decal/cleanable/dirt, @@ -12182,12 +12135,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"gVn" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "gVr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan3, @@ -12224,10 +12171,6 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) -"gWg" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "gWh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurple2, @@ -12284,20 +12227,10 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) -"gXB" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/barricade/deployable, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) -"gXE" = ( -/obj/item/weapon/gun/pistol/m1911{ - current_mag = null - }, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/containers) +"gXH" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_west_street) "gXL" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, @@ -12355,10 +12288,6 @@ /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) -"gZh" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) "gZp" = ( /obj/structure/machinery/seed_extractor, /obj/effect/decal/cleanable/dirt, @@ -12445,10 +12374,6 @@ /obj/item/storage/backpack/marine/satchel/rto, /turf/open/floor/corsat/brown/west, /area/lv522/oob/w_y_vault) -"haR" = ( -/obj/structure/largecrate/random/barrel/true_random, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/containers) "haY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -12462,10 +12387,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) -"hbj" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/floor_marked, -/area/lv522/outdoors/colony_streets/containers) "hbk" = ( /obj/effect/spawner/gibspawner/robot, /turf/open/floor/corsat/marked, @@ -12515,27 +12436,6 @@ /obj/structure/machinery/medical_pod/bodyscanner, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) -"hbH" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - icon_state = "crawler_crate_alt2"; - layer = 3.1 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) -"hbN" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/containers) "hcd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -12557,27 +12457,11 @@ }, /turf/open/floor/strata/floor3/east, /area/lv522/landing_zone_2/ceiling) -"hcx" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "hcE" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"hcO" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"hcV" = ( -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/containers) "hcZ" = ( /obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement, @@ -12604,6 +12488,10 @@ }, /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) +"hdx" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "hdG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -12638,6 +12526,10 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) +"heU" = ( +/obj/structure/cargo_container/ferret/mid, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "heX" = ( /obj/structure/largecrate/random/barrel{ layer = 5.1; @@ -12695,6 +12587,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) +"hgc" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) "hgr" = ( /obj/structure/girder/reinforced, /turf/open/auto_turf/shale/layer1, @@ -12710,6 +12607,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/hallway) +"hgI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/transmitter/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "LZ1 Service Tunnel"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "hgM" = ( /obj/structure/closet/crate/trashcart, /obj/item/storage/backpack/marine/satchel{ @@ -12726,12 +12637,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/east_reactor/south) -"hhb" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/landing_zone_2) +"hgT" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) "hhD" = ( /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) @@ -12771,28 +12680,10 @@ /obj/structure/pipes/vents/pump, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/nw_rockies) -"hix" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) "hiK" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, /area/lv522/atmos/reactor_garage) -"hiL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "hiZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -12802,6 +12693,10 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) +"hjm" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "hjW" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -12820,6 +12715,12 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) +"hkg" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "white" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/containers) "hkr" = ( /obj/structure/girder, /turf/open/asphalt/cement/cement4, @@ -12867,6 +12768,10 @@ }, /turf/open/floor/corsat/squares, /area/lv522/atmos/reactor_garage) +"hkE" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "hkO" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/medium_stack, @@ -12893,14 +12798,6 @@ /obj/item/device/binoculars, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"hmz" = ( -/obj/structure/largecrate/random/barrel/true_random, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) -"hmD" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "hmJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -12908,13 +12805,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/hallway) -"hmO" = ( -/obj/structure/barricade/deployable, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "hnk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -12929,13 +12819,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) -"hnD" = ( -/obj/structure/barricade/deployable{ - dir = 4 +"hoh" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/barricade/deployable, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "hoq" = ( /turf/open/asphalt/cement/cement14, /area/lv522/outdoors/nw_rockies) @@ -13015,14 +12906,6 @@ "hrk" = ( /turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/east_central_street) -"hrl" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "hrw" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, @@ -13041,10 +12924,27 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) +"hrO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) "hrU" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) +"hsa" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + pixel_y = 15 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "hsh" = ( /obj/structure/bed/chair{ dir = 8 @@ -13069,6 +12969,10 @@ }, /turf/open/floor/platingdmg1, /area/lv522/indoors/a_block/admin) +"hsD" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "htA" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -13136,19 +13040,6 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/nw_rockies) -"hwa" = ( -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) "hwf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -13186,6 +13077,10 @@ /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"hxu" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_east_street) "hxy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -13203,11 +13098,23 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) +"hyb" = ( +/obj/item/ammo_magazine/pistol/m1911{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "hyf" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/b_block/bridge) +"hyh" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "hyA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -13360,6 +13267,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) +"hBa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "hBf" = ( /turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/reactor_garage) @@ -13435,6 +13347,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) +"hDB" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_street) "hDE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -13479,26 +13395,10 @@ }, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) -"hFu" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/containers) "hFG" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) -"hFL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"hFS" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_marked, -/area/lv522/outdoors/colony_streets/containers) "hFX" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_street) @@ -13512,14 +13412,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/corpo/glass) -"hGJ" = ( -/obj/structure/cargo_container/lockmart/left, -/turf/open/floor/prison/floor_marked, -/area/lv522/outdoors/colony_streets/containers) -"hGU" = ( -/obj/structure/cargo_container/lockmart/mid, -/turf/open/floor/prison/floor_marked, -/area/lv522/outdoors/colony_streets/containers) "hGX" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -13531,36 +13423,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"hHe" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"hHh" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"hHN" = ( -/obj/structure/cargo_container/lockmart/right, -/turf/open/floor/prison/floor_marked, -/area/lv522/outdoors/colony_streets/containers) -"hHY" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/containers) "hIf" = ( /turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) +"hIi" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "hIp" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -13643,6 +13513,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"hJI" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) "hJQ" = ( /obj/structure/surface/rack, /obj/item/explosive/plastic, @@ -13698,6 +13576,10 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) +"hKN" = ( +/obj/structure/platform/metal/almayer, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "hKO" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -13720,6 +13602,16 @@ }, /turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) +"hLf" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "hLl" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/dirt, @@ -13768,6 +13660,12 @@ /obj/item/clothing/glasses/kutjevo, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) +"hMm" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) "hMz" = ( /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) @@ -13797,6 +13695,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"hMY" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "hNf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -13812,6 +13714,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) +"hNr" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "hNt" = ( /obj/item/trash/uscm_mre, /obj/structure/surface/table/almayer, @@ -13848,6 +13754,10 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) +"hOm" = ( +/obj/structure/ore_box, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "hOB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platebot, @@ -13925,15 +13835,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"hRb" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "hRj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) +"hRt" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "hRu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -13952,6 +13867,10 @@ }, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) +"hRJ" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "hSi" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/blood/xeno{ @@ -13986,26 +13905,6 @@ "hTe" = ( /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) -"hTg" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) -"hTh" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) -"hTk" = ( -/obj/structure/ore_box, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) -"hTo" = ( -/obj/structure/barricade/deployable, -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "hTA" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Cargo Bay Break Room"; @@ -14044,6 +13943,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) +"hUh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/generic, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "hUq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -14088,6 +13997,13 @@ /obj/structure/window/framed/shiva, /turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/chunk) +"hVH" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/landing_zone_2/ceiling) "hWs" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -14095,15 +14011,6 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"hWz" = ( -/obj/structure/platform, -/obj/item/prop/colony/canister{ - layer = 3.1; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) "hWD" = ( /obj/structure/barricade/deployable, /turf/open/floor/prison/blue_plate/north, @@ -14120,6 +14027,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/casino) +"hXo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) +"hXx" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "hXA" = ( /obj/structure/bed/chair{ dir = 4 @@ -14216,6 +14135,13 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) +"iai" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "iaY" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green{ @@ -14255,6 +14181,24 @@ }, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) +"ick" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/platform_decoration/metal/almayer/east, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"icC" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) "icE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, @@ -14327,10 +14271,6 @@ "ien" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/oob) -"ier" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) "ieE" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -14345,23 +14285,6 @@ }, /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) -"ieW" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) -"iff" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) -"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) "ifi" = ( /turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/reactor_garage) @@ -14455,6 +14378,10 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) +"ihK" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/central_streets) "iiC" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/wy{ @@ -14603,9 +14530,17 @@ /obj/structure/machinery/light, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) -"imF" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/containers) +"imz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) "imJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -14619,6 +14554,9 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) +"ina" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/containers) "inm" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -14636,9 +14574,6 @@ /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"inO" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/containers) "inU" = ( /obj/structure/machinery/light{ dir = 1 @@ -14678,6 +14613,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) +"ipu" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "ipw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -14690,6 +14629,10 @@ "ipx" = ( /turf/open/auto_turf/sand/layer1, /area/lv522/indoors/b_block/bridge) +"ipz" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "ipC" = ( /obj/structure/toilet{ pixel_y = 16 @@ -14733,16 +14676,6 @@ /obj/item/prop/colony/used_flare, /turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) -"iqw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/generic, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "iqQ" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" @@ -14784,12 +14717,17 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) -"irR" = ( -/obj/structure/platform_decoration{ - dir = 4 +"irP" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "UD6"; + name = "\improper Shutters" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "isa" = ( /obj/structure/largecrate, /turf/open/auto_turf/shale/layer1, @@ -14869,6 +14807,14 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"iua" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) "iui" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/microwave{ @@ -15045,12 +14991,6 @@ /obj/item/prop/colony/canister, /turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) -"iyT" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) "izb" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -15073,14 +15013,6 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) -"izr" = ( -/obj/structure/platform/stair_cut, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/garage) "izz" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plating, @@ -15218,6 +15150,13 @@ }, /turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) +"iFf" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Tornado) "iFk" = ( /obj/structure/machinery/light{ dir = 1 @@ -15255,6 +15194,17 @@ /obj/structure/largecrate/random, /turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) +"iGt" = ( +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) +"iGy" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "iGD" = ( /obj/structure/machinery/light/small, /obj/structure/tunnel/maint_tunnel{ @@ -15286,6 +15236,13 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) +"iGX" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) "iHg" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/blue, @@ -15318,19 +15275,6 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"iIa" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "iIs" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating/plating_catwalk/prison, @@ -15363,15 +15307,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) -"iIQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "iIY" = ( /obj/item/shard{ icon_state = "medium" @@ -15404,6 +15339,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor/south) +"iJO" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) "iJS" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -15471,6 +15410,10 @@ "iLC" = ( /turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor/south) +"iMr" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "iMv" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -15521,6 +15464,13 @@ /obj/structure/machinery/space_heater, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) +"iMV" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) "iNb" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -15664,6 +15614,13 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_west_street) +"iSC" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "iSF" = ( /obj/structure/largecrate/random, /turf/open/floor/plating, @@ -15742,6 +15699,11 @@ /obj/item/clothing/suit/storage/hazardvest, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/lone_buildings/storage_blocks) +"iUg" = ( +/obj/effect/landmark/objective_landmark/close, +/obj/structure/bed/roller, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "iUj" = ( /obj/structure/machinery/conveyor{ dir = 10; @@ -15765,10 +15727,6 @@ /obj/structure/machinery/squeezer, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"iUX" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) "iVe" = ( /obj/structure/stairs/perspective{ dir = 5; @@ -15777,12 +15735,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) -"iVk" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_street) "iVm" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -15800,13 +15752,6 @@ }, /turf/open/floor/bluegrid, /area/lv522/indoors/a_block/admin) -"iVU" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_street) -"iVX" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/containers) "iVY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spider/spiderling/nogrow, @@ -15859,12 +15804,6 @@ "iWz" = ( /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) -"iWN" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "iXy" = ( /obj/structure/largecrate/random/mini/med{ pixel_x = -12; @@ -15901,15 +15840,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) -"iYf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_west_street) "iYm" = ( /obj/structure/barricade/deployable, /turf/open/floor/plating/plating_catwalk/prison, @@ -15973,16 +15903,6 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/medical) -"jaq" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "jas" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/mining) @@ -16031,16 +15951,6 @@ /mob/living/simple_animal/mouse, /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/fitness) -"jba" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "jbd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -16085,6 +15995,10 @@ }, /turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical/glass) +"jbQ" = ( +/obj/structure/cargo_container/ferret/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "jcl" = ( /obj/structure/largecrate/random{ layer = 2.9 @@ -16103,11 +16017,27 @@ }, /turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) +"jcS" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "jdf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/static_comms/net_two, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/c_block/t_comm) +"jdi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) "jdn" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/reagent_container/hypospray/autoinjector/emergency, @@ -16138,16 +16068,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) -"jeD" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) "jeH" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/pump, @@ -16193,15 +16113,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"jfK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) "jfO" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) @@ -16210,13 +16121,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"jfZ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) "jgv" = ( /obj/structure/largecrate/random, /obj/effect/decal/warning_stripes{ @@ -16269,31 +16173,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"jhY" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"jic" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/colony_floodlight, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"jig" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) "jis" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/warning_stripes{ @@ -16305,18 +16184,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"jix" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) "jiF" = ( /obj/structure/stairs/perspective{ dir = 9; @@ -16414,6 +16281,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) +"jkZ" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "jlc" = ( /obj/structure/surface/rack, /obj/item/tool/minihoe{ @@ -16487,6 +16359,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"jmB" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "jmE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -16576,24 +16452,18 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"joI" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) "joK" = ( /obj/structure/cargo_container/grant/left, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"joL" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/transmitter/colony_net{ - dir = 4; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Garage"; - pixel_x = -16 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) +"joX" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "jpa" = ( /obj/structure/bedsheetbin{ pixel_y = 7 @@ -16637,15 +16507,6 @@ }, /turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/cargo_intake) -"jqO" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "jrd" = ( /obj/structure/girder/displaced, /turf/open/asphalt/cement, @@ -16675,12 +16536,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) -"jru" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "jrB" = ( /obj/structure/machinery/vending/snack{ density = 0; @@ -16766,6 +16621,14 @@ }, /turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) +"jsT" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) "jtg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -16790,6 +16653,11 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"jun" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "jur" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -16856,6 +16724,10 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"jvq" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) "jvu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -16888,6 +16760,12 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) +"jwh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/metal/almayer/north, +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "jwx" = ( /obj/item/prop/alien/hugger, /obj/structure/machinery/light{ @@ -16908,6 +16786,10 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/garage) +"jwS" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river, +/area/lv522/outdoors/colony_streets/south_street) "jwT" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood, @@ -16931,16 +16813,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) -"jxD" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "jxF" = ( /obj/structure/largecrate/guns/russian, /turf/open/floor/plating, @@ -16961,13 +16833,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_west_street) -"jyw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "jyx" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/weapon/pole/fancy_cane, @@ -17000,12 +16865,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"jzu" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) "jzC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable/fancy, @@ -17134,12 +16993,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"jBU" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) "jBY" = ( /turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/cargo_intake) @@ -17166,12 +17019,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"jCQ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) "jCS" = ( /obj/item/trash/wy_chips_pepper, /obj/structure/machinery/light{ @@ -17200,6 +17047,14 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) +"jCZ" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "jDc" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -17210,16 +17065,17 @@ }, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/nw_rockies) -"jDy" = ( +"jDi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/stairs/perspective{ dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) "jDA" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -17244,14 +17100,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"jEa" = ( -/obj/structure/cargo_container/ferret/left, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) -"jEk" = ( -/obj/structure/cargo_container/ferret/mid, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "jEq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/machinery/light{ @@ -17259,10 +17107,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) -"jEF" = ( -/obj/structure/cargo_container/ferret/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "jEW" = ( /obj/structure/bed/chair{ dir = 1 @@ -17305,6 +17149,13 @@ }, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) +"jFy" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/prop/almayer/computers/sensor_computer2{ + layer = 2.0 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "jFC" = ( /obj/structure/machinery/space_heater, /turf/open/floor/prison/darkpurple2/north, @@ -17316,12 +17167,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"jFP" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/indoors/c_block/mining) "jGa" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -17342,18 +17187,6 @@ /obj/structure/largecrate/random, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"jGp" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "jGK" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/shale/layer1, @@ -17415,15 +17248,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"jIQ" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) "jJa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -17482,15 +17306,6 @@ }, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_east_street) -"jKb" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) "jKm" = ( /obj/item/stack/sheet/metal, /turf/open/floor/strata/blue1, @@ -17511,12 +17326,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"jKB" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_east_street) "jLf" = ( /obj/item/shard{ icon_state = "medium" @@ -17530,6 +17339,12 @@ /obj/structure/cargo_container/wy/left, /turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) +"jLo" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "jLD" = ( /obj/item/stack/sheet/wood, /obj/structure/machinery/light{ @@ -17557,6 +17372,14 @@ /obj/structure/machinery/light, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) +"jMo" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) "jMr" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -17580,10 +17403,6 @@ /obj/structure/cargo_container/kelland/left, /turf/open/floor/prison, /area/lv522/landing_zone_2) -"jMJ" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/containers) "jMZ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen/blue/clicky{ @@ -17596,6 +17415,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"jNb" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/oob) "jNv" = ( /obj/structure/machinery/power/apc/power/north{ start_charge = 20 @@ -17623,9 +17446,6 @@ }, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"jOh" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/containers) "jOr" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -17683,14 +17503,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"jPg" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "jPj" = ( /obj/structure/machinery/light{ dir = 1 @@ -17725,6 +17537,17 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) +"jPU" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/containers) "jQa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/dam/crane{ @@ -17738,6 +17561,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) +"jQt" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_east_street) "jQC" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, @@ -17750,6 +17577,17 @@ "jRT" = ( /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) +"jRX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) "jSk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -17760,12 +17598,6 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"jSB" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "jSC" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, @@ -17969,6 +17801,13 @@ }, /turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) +"jXf" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) "jXp" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/blood/xeno{ @@ -18022,6 +17861,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/cargo) +"jYH" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "jYK" = ( /obj/structure/stairs/perspective{ dir = 6; @@ -18033,11 +17883,6 @@ /obj/structure/flora/jungle/thickbush, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"jZe" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/lv522/indoors/lone_buildings/engineering) "jZo" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 @@ -18231,6 +18076,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) +"kcr" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "kcv" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, @@ -18287,16 +18136,6 @@ }, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"kdi" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) "kdm" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/sand_white/layer0, @@ -18343,16 +18182,10 @@ /obj/effect/alien/resin/sticky, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"keq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +"keV" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "kfi" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/prison/darkyellowfull2/east, @@ -18478,6 +18311,10 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) +"kiy" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "kiE" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -18560,12 +18397,6 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) -"kkq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) "kky" = ( /turf/open/floor/corsat/brown/west, /area/lv522/atmos/north_command_centre) @@ -18581,6 +18412,10 @@ /obj/structure/machinery/light, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"kkM" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) "kkP" = ( /obj/structure/surface/rack, /turf/open/floor/prison/darkbrownfull2, @@ -18656,19 +18491,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"kmF" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) "kmH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -18772,6 +18594,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"kpe" = ( +/obj/structure/cargo_container/lockmart/mid, +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/containers) "kpo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -18823,6 +18649,10 @@ "kqb" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/kitchen) +"kqp" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "kqJ" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -18830,6 +18660,14 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"kqS" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "kqT" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -18926,6 +18764,11 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) +"ktg" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "kti" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ id = "Corpo Vault"; @@ -18983,6 +18826,10 @@ /obj/item/device/camera, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) +"kuq" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) "kuD" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, @@ -19090,6 +18937,13 @@ /obj/item/tool/pickaxe/silver, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"kyp" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) "kyz" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/north_command_centre) @@ -19145,6 +18999,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/reactor_garage) +"kzm" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) "kzr" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/wy_chips_pepper, @@ -19230,10 +19088,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"kBK" = ( -/obj/structure/largecrate/random, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/containers) "kBT" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/auto_turf/shale/layer1, @@ -19254,6 +19108,16 @@ }, /turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) +"kCt" = ( +/obj/structure/platform/metal/almayer, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"kCv" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/containers) "kCC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -19294,6 +19158,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"kDa" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "kDH" = ( /obj/structure/machinery/disposal, /turf/open/floor/prison/darkpurplefull2, @@ -19328,12 +19196,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) -"kEl" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "kEo" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 @@ -19345,6 +19207,27 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) +"kEG" = ( +/obj/structure/machinery{ + density = 1; + dir = 4; + icon = 'icons/obj/vehicles/apc.dmi'; + icon_state = "apc_base_com"; + explo_proof = 1; + name = "\improper M577 armored personnel carrier"; + pixel_y = -21; + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/outdoors/colony_streets/containers) "kEL" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -19380,12 +19263,6 @@ /obj/structure/closet/secure_closet/freezer/fridge, /turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) -"kEZ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/central_streets) "kFd" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -19406,6 +19283,10 @@ /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/plating, /area/lv522/landing_zone_2) +"kFC" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) "kFK" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -19457,6 +19338,20 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) +"kHM" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) "kHP" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/uscm_mre, @@ -19469,21 +19364,6 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) -"kHW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"kHX" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_street) "kHZ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldpack{ @@ -19561,11 +19441,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) -"kJh" = ( -/obj/item/stack/rods, -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) "kJv" = ( /obj/structure/largecrate/random/mini, /turf/open/asphalt/cement/cement3, @@ -19596,6 +19471,15 @@ "kKR" = ( /turf/open/floor/plating/platingdmg1, /area/lv522/indoors/a_block/dorms) +"kKV" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "kLc" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -19617,19 +19501,6 @@ }, /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) -"kMi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/dorms_fitness) "kMr" = ( /obj/structure/coatrack{ pixel_x = 10; @@ -19812,6 +19683,10 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/reactor_garage) +"kRM" = ( +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement/cement4, +/area/lv522/landing_zone_1) "kRQ" = ( /turf/open/floor/wood, /area/lv522/indoors/a_block/security) @@ -20021,6 +19896,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"kWO" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "kWZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -20079,6 +19965,11 @@ }, /turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) +"kYw" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) "kYH" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -20109,13 +20000,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"kZq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "kZs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -20151,6 +20035,13 @@ }, /turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) +"laF" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/colony_floodlight, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) "laX" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8; @@ -20227,13 +20118,6 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, /turf/open/floor/corsat/marked, /area/lv522/atmos/command_centre) -"lcD" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/ore_box, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) "lcK" = ( /obj/structure/machinery/light{ dir = 8 @@ -20349,6 +20233,10 @@ }, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) +"leU" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "leV" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/folder/white{ @@ -20382,12 +20270,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat/plate, /area/lv522/atmos/west_reactor) -"lgY" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "lhb" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 @@ -20413,6 +20295,12 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) +"lhr" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "lhD" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/west_reactor) @@ -20452,6 +20340,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"ljm" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "ljq" = ( /obj/structure/machinery/floodlight/landing, /turf/open/floor/prison/blue_plate, @@ -20583,6 +20475,10 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) +"lnq" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "lnF" = ( /obj/structure/bookcase{ density = 0; @@ -20651,10 +20547,6 @@ /obj/item/prop/alien/hugger, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"lpt" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/indoors/lone_buildings/engineering) "lpy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -20731,6 +20623,10 @@ }, /turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/west) +"lsa" = ( +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "lsf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/southwest, @@ -20762,28 +20658,16 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) -"ltf" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"ltw" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/oob) +"ltk" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "lty" = ( /obj/structure/barricade/wooden{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"ltB" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) "ltC" = ( /obj/structure/bed/chair/comfy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -20791,6 +20675,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"ltN" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) "lui" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/simple/hidden/green{ @@ -20798,17 +20690,16 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"lul" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"lum" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) +"luu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"luP" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "lvb" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -20852,6 +20743,10 @@ }, /turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/way_in_command_centre) +"lwd" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "lwm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -20904,6 +20799,18 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) +"lxs" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"lxx" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "lxG" = ( /obj/structure/surface/table/almayer, /obj/effect/spider/spiderling/nogrow, @@ -20994,6 +20901,19 @@ /obj/structure/surface/rack, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"lzC" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/containers) "lzP" = ( /obj/structure/surface/table/almayer, /obj/structure/window/reinforced{ @@ -21003,23 +20923,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) -"lzU" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"lzV" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) "lAj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -21080,6 +20983,9 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"lBM" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/containers) "lCh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -21155,6 +21061,10 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"lEr" = ( +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/containers) "lEF" = ( /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/bridges/dorms_fitness) @@ -21174,6 +21084,15 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/east_reactor) +"lFz" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "lFO" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -21347,6 +21266,10 @@ /obj/structure/largecrate/random/secure, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_1) +"lJC" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_east_street) "lJU" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -21391,6 +21314,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"lLp" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) "lLA" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -21504,12 +21431,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) -"lPq" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) "lPv" = ( /obj/effect/decal/cleanable/liquid_fuel, /obj/structure/stairs/perspective{ @@ -21529,20 +21450,26 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"lPY" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +"lQG" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "lQS" = ( /obj/item/stack/folding_barricade, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) +"lRl" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/transmitter/colony_net{ + dir = 4; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Garage"; + pixel_x = -16 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "lRx" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/sriracha{ @@ -21559,6 +21486,11 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"lRD" = ( +/obj/item/stack/sheet/metal, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) "lRF" = ( /obj/structure/girder, /turf/open/floor/prison, @@ -21630,6 +21562,9 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"lTq" = ( +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/containers) "lTQ" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -21695,15 +21630,25 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) +"lUZ" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/garage) +"lVb" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) +"lVn" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_street) "lVp" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/kitchen/glass) -"lVs" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) "lVA" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/souto{ @@ -21769,15 +21714,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) -"lWj" = ( -/obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "lWm" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) +"lWK" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) "lWW" = ( /obj/item/trash/crushed_cup{ pixel_x = -4; @@ -21799,17 +21752,15 @@ }, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_east_street) -"lYG" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 +"lYw" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "lYL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -21829,6 +21780,14 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"lZo" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"lZB" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) "lZI" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, @@ -21972,15 +21931,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"mcC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "mcG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -22009,16 +21959,22 @@ }, /turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor) +"mdJ" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) +"mdU" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/oob) "meb" = ( /obj/structure/largecrate/random{ layer = 2.9 }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"mee" = ( -/obj/structure/largecrate/random/barrel/true_random, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/containers) "men" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/east_reactor/south) @@ -22125,18 +22081,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"mil" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "miz" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -22144,6 +22088,10 @@ }, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) +"miG" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/containers) "miW" = ( /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) @@ -22222,6 +22170,28 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"mkB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + pixel_y = -23 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) "mkJ" = ( /obj/structure/machinery/deployable/barrier, /turf/open/floor/prison/darkredfull2, @@ -22323,18 +22293,18 @@ }, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_west_street) -"mmE" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) +"mmN" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) "mnb" = ( /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_street) +"mng" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "mns" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -22350,18 +22320,6 @@ }, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"mnz" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) "mnN" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, @@ -22390,14 +22348,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/corpo/glass) -"moe" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) "moz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -22405,10 +22355,6 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"moC" = ( -/obj/structure/barricade/deployable, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "moI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/filingcabinet{ @@ -22442,6 +22388,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/corpo/glass) +"mph" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/platform/metal/almayer, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "mpr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue, @@ -22542,6 +22497,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/west) +"mrf" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_east_street) "mrD" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison/floor_plate, @@ -22595,6 +22554,18 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) +"msJ" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"msN" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) "msQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -22637,6 +22608,11 @@ }, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) +"mug" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "mum" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -22678,17 +22654,12 @@ "muV" = ( /turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) -"mvd" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 +"mva" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "mvB" = ( /obj/item/prop/alien/hugger, /turf/open/floor/plating, @@ -22731,6 +22702,10 @@ }, /turf/open/floor/almayer/w_y1, /area/lv522/atmos/way_in_command_centre) +"mwv" = ( +/obj/structure/barricade/deployable, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "mwT" = ( /obj/structure/prop/dam/truck, /obj/structure/prop/holidays/wreath{ @@ -22848,11 +22823,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/corpo/glass) -"mzX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "mAg" = ( /obj/structure/prop/dam/crane/damaged, /turf/open/auto_turf/sand_white/layer0, @@ -22885,12 +22855,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"mAW" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "mBc" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -23013,6 +22977,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) +"mEL" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "mFg" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -23037,12 +23009,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"mFA" = ( +"mFD" = ( /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_full" }, -/obj/structure/platform/stair_cut/alt, +/obj/structure/platform/metal/stair_cut/platform_right, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "mFO" = ( @@ -23051,14 +23027,14 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/t_comm) -"mFZ" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +"mGy" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"mGC" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) "mGD" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -23099,12 +23075,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) -"mHP" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "mHU" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/floor/grass, @@ -23116,6 +23086,15 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) +"mIx" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) +"mIB" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "mIO" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ @@ -23135,11 +23114,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) -"mIV" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) "mJs" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -23149,15 +23123,6 @@ /obj/vehicle/train/cargo/trolley, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) -"mJt" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) "mJF" = ( /obj/structure/cargo_container/kelland/left{ layer = 2.9 @@ -23347,6 +23312,10 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) +"mNU" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river, +/area/lv522/indoors/c_block/mining) "mNX" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -23444,6 +23413,10 @@ /obj/structure/foamed_metal, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) +"mOZ" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/containers) "mPc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -23456,6 +23429,10 @@ "mPr" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) +"mPs" = ( +/obj/item/storage/belt/medical/lifesaver, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "mPy" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/prison/darkbrownfull2, @@ -23559,14 +23536,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) -"mRh" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) "mRs" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/shale/layer1, @@ -23594,6 +23563,9 @@ "mSe" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) +"mSj" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/outdoors/colony_streets/containers) "mSl" = ( /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."; @@ -23612,17 +23584,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) -"mTa" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) "mTx" = ( /obj/structure/machinery/light{ dir = 8 @@ -23681,17 +23642,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"mUG" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) "mUS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -23703,14 +23653,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) -"mVi" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) "mVj" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ @@ -23777,6 +23719,14 @@ "mYo" = ( /turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) +"mYJ" = ( +/obj/structure/platform/metal/stair_cut/platform_left, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/garage) "mYS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -23878,13 +23828,6 @@ "nax" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"naC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "naH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair{ @@ -23988,14 +23931,6 @@ }, /turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) -"ncz" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) "ncJ" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -24019,6 +23954,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) +"ndv" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_crate"; + layer = 3.1; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"ndK" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) "ndZ" = ( /obj/structure/cargo_container/kelland/right, /obj/item/seeds/riceseed{ @@ -24065,6 +24016,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/garden_bridge) +"neQ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) "neX" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -24083,20 +24042,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"nff" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) "nfk" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 10; @@ -24137,6 +24082,15 @@ }, /turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/north_street) +"ngp" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) "ngx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -24150,21 +24104,17 @@ }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"ngK" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) "ngL" = ( /obj/structure/cargo_container/horizontal/blue/bottom{ pixel_x = 6 }, /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) +"ngM" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "ngY" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) @@ -24236,10 +24186,6 @@ /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/prison, /area/lv522/indoors/a_block/corpo/glass) -"njd" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_west_street) "njm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/stack/sheet/wood, @@ -24363,12 +24309,6 @@ /obj/item/stack/sheet/wood, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"nlY" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_street) "nmh" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -24389,14 +24329,6 @@ }, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"nmX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform{ - dir = 8 - }, -/obj/item/stack/rods, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "nnj" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -24428,18 +24360,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"nnB" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) "nnG" = ( /obj/structure/machinery/door/poddoor/almayer{ id = "mining_secure_blast_1"; @@ -24494,6 +24414,14 @@ }, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_street) +"npm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/machinery/light, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "npp" = ( /obj/structure/girder, /obj/structure/prop/invuln/lattice_prop{ @@ -24558,6 +24486,11 @@ "nqe" = ( /turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/west) +"nqg" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "nqj" = ( /obj/structure/surface/table/gamblingtable, /obj/effect/landmark/objective_landmark/close, @@ -24649,6 +24582,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) +"nse" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "nsr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -24666,10 +24603,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) -"nsL" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/containers) "nta" = ( /obj/structure/machinery/light{ dir = 8; @@ -24700,19 +24633,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) -"ntN" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3, -/area/lv522/outdoors/colony_streets/containers) "ntQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, @@ -24737,6 +24657,15 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) +"num" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "nuo" = ( /obj/structure/machinery/light, /turf/open/floor/strata/blue1, @@ -24745,15 +24674,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/corpo/glass) -"nuL" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "nuQ" = ( /obj/structure/surface/table/almayer{ dir = 1; @@ -24804,6 +24724,12 @@ /obj/structure/girder, /turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) +"nxk" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) "nxF" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating, @@ -24868,6 +24794,20 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/closed/wall/strata_outpost, /area/lv522/landing_zone_1/tunnel/far) +"nzO" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) "nzU" = ( /obj/structure/barricade/deployable, /turf/open/floor/prison/floor_plate, @@ -24958,11 +24898,26 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"nCK" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) "nCZ" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) +"nDd" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) "nDl" = ( /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/garden_bridge) @@ -24973,13 +24928,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) -"nDt" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "nDI" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/wy_chips_pepper, @@ -25002,6 +24950,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"nEh" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "nEq" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_1/ceiling) @@ -25014,22 +24966,9 @@ "nEY" = ( /turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/engineering) -"nFc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "nFj" = ( /turf/open/floor/plating, /area/lv522/landing_zone_1) -"nFt" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "nFM" = ( /obj/effect/landmark/objective_landmark/science, /obj/effect/decal/cleanable/dirt, @@ -25050,12 +24989,6 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"nGc" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "nGe" = ( /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/sand_white/layer0, @@ -25091,6 +25024,10 @@ /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_1) +"nGO" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) "nGU" = ( /turf/open/floor/corsat/browncorner/west, /area/lv522/atmos/east_reactor/south) @@ -25105,6 +25042,20 @@ /obj/structure/barricade/sandbags, /turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/north_street) +"nHq" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) "nHA" = ( /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) @@ -25153,6 +25104,10 @@ /obj/structure/machinery/light/double, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) +"nIR" = ( +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "nJr" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -25189,10 +25144,6 @@ /obj/structure/machinery/light/small, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) -"nKm" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) "nKo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25202,16 +25153,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) -"nKK" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) +"nKr" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/oob) "nKS" = ( /obj/structure/closet/secure_closet/marshal, /obj/effect/decal/cleanable/dirt, @@ -25245,6 +25190,12 @@ "nLF" = ( /turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/north_west_street) +"nLJ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "nLW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -25273,6 +25224,10 @@ /obj/item/ammo_box/magazine/l42a, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) +"nMv" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/central_streets) "nMw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -25375,17 +25330,6 @@ }, /turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor/south) -"nOl" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) "nOB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, @@ -25405,16 +25349,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) -"nPb" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "nPc" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -25432,15 +25366,6 @@ /obj/effect/landmark/lv624/fog_blocker/short, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_west_street) -"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, @@ -25457,26 +25382,12 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) -"nPL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) "nPN" = ( /turf/closed/shuttle/dropship3/tornado, /area/lv522/landing_zone_forecon/UD6_Tornado) "nPV" = ( /turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/north_street) -"nQa" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/north_east_street) "nQk" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -25503,10 +25414,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"nQz" = ( -/obj/structure/platform_decoration, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "nQG" = ( /obj/item/stack/sheet/wood, /turf/open/floor/prison, @@ -25558,15 +25465,6 @@ /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"nRy" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) "nRC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/kelland/right, @@ -25671,11 +25569,6 @@ "nTv" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"nTD" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) "nTF" = ( /obj/effect/landmark/lv624/fog_blocker/short, /turf/closed/wall/strata_outpost, @@ -25693,6 +25586,10 @@ /obj/structure/cargo_container/wy/left, /turf/open/floor/prison, /area/lv522/landing_zone_1) +"nUn" = ( +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) "nUD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -25738,19 +25635,6 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"nVR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) "nVW" = ( /turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor) @@ -25826,16 +25710,6 @@ }, /turf/open/floor/strata/white_cyan3/east, /area/lv522/indoors/a_block/medical/glass) -"nWK" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) "nXi" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -25858,13 +25732,6 @@ }, /turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) -"nXC" = ( -/obj/item/tool/wrench, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) "nXK" = ( /obj/structure/barricade/wooden{ dir = 8; @@ -25925,20 +25792,6 @@ /obj/structure/cargo_container/wy/mid, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"nYQ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) "nYU" = ( /obj/effect/acid_hole, /obj/effect/landmark/lv624/fog_blocker/short, @@ -25951,11 +25804,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"nZd" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) "nZv" = ( /obj/structure/machinery/conveyor{ dir = 4; @@ -26040,6 +25888,10 @@ icon_state = "40" }, /area/lv522/landing_zone_forecon/UD6_Tornado) +"obl" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "obt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/telecomms/bus/preset_one, @@ -26051,6 +25903,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"ocl" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) "ocn" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -26059,6 +25919,12 @@ /obj/structure/machinery/disposal, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) +"ocL" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "oda" = ( /obj/structure/prop/invuln/minecart_tracks, /obj/structure/closet/crate/miningcar{ @@ -26168,15 +26034,6 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"oeN" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "oeT" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/light{ @@ -26229,12 +26086,6 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"ofZ" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) "oga" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, @@ -26287,17 +26138,6 @@ /obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) -"ogX" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) "ogZ" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse, @@ -26346,19 +26186,17 @@ "oim" = ( /turf/open/floor/corsat/brown, /area/lv522/atmos/command_centre) -"oiA" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_east_street) -"oiC" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +"oiq" = ( /obj/structure/stairs/perspective{ - dir = 9; + dir = 4; icon_state = "p_stair_full" }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"oiA" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_east_street) "oiD" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -26435,6 +26273,21 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/bridge) +"ojR" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"ojT" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) "ojW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -26479,6 +26332,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"olO" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "oml" = ( /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) @@ -26503,16 +26364,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"omX" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"onj" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) "onT" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -26553,9 +26404,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) -"opp" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/outdoors/colony_streets/containers) "opt" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -26581,22 +26429,6 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"opQ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"oqn" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) "oqp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26660,6 +26492,10 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"orf" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "ori" = ( /obj/structure/barricade/deployable{ dir = 4 @@ -26674,12 +26510,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/hallway) -"orA" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "orE" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/sand_white/layer0, @@ -26719,6 +26549,13 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"oso" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "osE" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -26761,10 +26598,6 @@ }, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) -"otT" = ( -/obj/structure/platform, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) "otY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26772,22 +26605,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical/glass) -"oud" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"ouj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/outdoors/colony_streets/south_street) "ouv" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/camera/autoname, @@ -26828,6 +26645,13 @@ }, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) +"ovz" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) "ovA" = ( /obj/item/shard{ icon_state = "medium" @@ -26842,14 +26666,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) -"ovT" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/dorms_fitness) "owe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26893,16 +26709,10 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) -"oxT" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) +"oxK" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/containers) "oyf" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 @@ -26925,9 +26735,6 @@ }, /turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) -"oyG" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/containers) "oyM" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -26972,16 +26779,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) -"ozQ" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) "ozR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, @@ -26996,18 +26793,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) -"oAu" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "oAJ" = ( /obj/structure/bookcase{ density = 0; @@ -27098,6 +26883,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2/ceiling) +"oEC" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/metal/almayer, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "oFr" = ( /obj/structure/machinery/light{ dir = 8 @@ -27230,6 +27025,10 @@ /obj/item/stack/sheet/metal/large_stack, /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) +"oIf" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "oIr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, @@ -27237,6 +27036,10 @@ "oIu" = ( /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_street) +"oIx" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/containers) "oIE" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "Showeroom" @@ -27301,16 +27104,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"oKc" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "oKe" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -27324,16 +27117,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"oKG" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "oKI" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -27395,14 +27178,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) -"oLu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/machinery/light, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "oLz" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -27417,6 +27192,11 @@ "oLG" = ( /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical) +"oLV" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "oLW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -27489,6 +27269,13 @@ /obj/item/storage/firstaid/adv/empty, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) +"oNF" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) "oNM" = ( /obj/structure/machinery/light, /turf/open/floor/prison/darkbrownfull2, @@ -27496,6 +27283,10 @@ "oNQ" = ( /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/nw_rockies) +"oOd" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "oOe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/shale/layer2, @@ -27552,15 +27343,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) +"oQe" = ( +/obj/structure/largecrate/random/barrel{ + layer = 2.7 + }, +/obj/structure/largecrate/random/barrel{ + layer = 2.9; + pixel_x = 6; + pixel_y = -16 + }, +/obj/structure/largecrate/random/barrel{ + layer = 2.9; + pixel_x = -17; + pixel_y = -9 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/invuln/fire{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "oQt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/athletic_mixed, /turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) -"oQC" = ( -/obj/structure/platform_decoration, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "oQH" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, @@ -27617,6 +27425,12 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"oSk" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "oSA" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, @@ -27633,17 +27447,6 @@ "oSH" = ( /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/bridges) -"oTc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/dorms_fitness) "oTd" = ( /obj/structure/cargo_container/ferret/mid, /turf/open/asphalt/cement/cement4, @@ -27837,24 +27640,6 @@ /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) -"oYa" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"oYO" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "oYZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, @@ -27864,10 +27649,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) -"oZN" = ( -/obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +"oZK" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "pab" = ( /obj/structure/machinery/landinglight/ds2/delayone, /obj/effect/decal/cleanable/dirt, @@ -27949,19 +27734,6 @@ "pcV" = ( /turf/open/floor/plating, /area/lv522/oob) -"pdp" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "pdq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper B-Block - Hydroponics Airlock"; @@ -27985,18 +27757,10 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"pdv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) +"pdx" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement/cement2, +/area/lv522/landing_zone_1) "pdB" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 4 @@ -28028,26 +27792,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"pet" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "pez" = ( /obj/structure/cargo_container/horizontal/blue/top, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"peM" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "peS" = ( /obj/structure/surface/table/almayer{ dir = 1; @@ -28078,6 +27826,14 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"pfk" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "pfq" = ( /obj/structure/machinery/camera/autoname{ dir = 1; @@ -28117,6 +27873,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/garden_bridge) +"pfJ" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) "pfN" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) @@ -28149,15 +27909,6 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) -"pgp" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) "pgs" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/generic, @@ -28167,19 +27918,6 @@ /obj/structure/machinery/disposal, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) -"pgG" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) "pha" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -28238,20 +27976,10 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"piY" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"pjm" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +"pjn" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/containers) "pjM" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison/darkpurple2/north, @@ -28283,10 +28011,6 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"pka" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) "pkB" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "9" @@ -28307,14 +28031,6 @@ /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"plN" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) "pme" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -28328,6 +28044,10 @@ }, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) +"pnb" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "png" = ( /obj/structure/cargo_container/wy/mid{ health = 5000 @@ -28374,6 +28094,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/hallway) +"poS" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/ceiling) "poZ" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/sand_white/layer0, @@ -28424,12 +28152,20 @@ /obj/item/prop/colony/used_flare, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) +"ppZ" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/cement/cement12, +/area/lv522/indoors/lone_buildings/engineering) "pqj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/spacecash/c1000, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) +"pqo" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "pqA" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/close, @@ -28482,28 +28218,6 @@ /obj/structure/prop/almayer/computers/sensor_computer2, /turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) -"prU" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/item/weapon/gun/pistol/m1911{ - current_mag = null - }, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "l_arm"; - name = "left arm"; - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/ammo_magazine/pistol/m1911{ - current_rounds = 4 - }, -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) "prW" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper{ @@ -28553,22 +28267,6 @@ /obj/structure/machinery/disposal, /turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) -"pul" = ( -/obj/item/ammo_magazine/pistol/m1911{ - pixel_x = 9; - pixel_y = 12 - }, -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"pum" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "puu" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/strata/white_cyan3/west, @@ -28598,6 +28296,9 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) +"pvZ" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "pwa" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_1) @@ -28608,12 +28309,6 @@ }, /turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) -"pwu" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) "pwz" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/auto_turf/shale/layer1, @@ -28658,6 +28353,14 @@ "pxN" = ( /turf/open/floor/corsat/brown/west, /area/lv522/atmos/east_reactor) +"pxO" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "pxS" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/floor_plate, @@ -28667,6 +28370,12 @@ icon_state = "95" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"pxZ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "pys" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "97" @@ -28685,6 +28394,18 @@ icon_state = "99" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"pyQ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/largecrate/random{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"pyR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "pzj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -28892,6 +28613,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) +"pEq" = ( +/obj/item/ammo_magazine/m2c{ + current_rounds = 0; + layer = 4.2; + pixel_x = 1; + pixel_y = 11 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/outdoors/colony_streets/containers) "pEu" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 8 @@ -28915,31 +28652,10 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"pET" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "pFw" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"pFF" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) "pFH" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -28952,6 +28668,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) +"pFY" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/item/reagent_container/food/drinks/flask/marine, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "pGg" = ( /obj/structure/bed/chair{ dir = 8 @@ -29002,30 +28724,10 @@ "pGQ" = ( /turf/open/floor/prison/cell_stripe/west, /area/lv522/atmos/reactor_garage) -"pGY" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, +"pHA" = ( +/obj/structure/platform_decoration/metal/almayer/east, /turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"pHi" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) +/area/lv522/outdoors/colony_streets/south_west_street) "pHT" = ( /turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/west) @@ -29146,6 +28848,11 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"pLK" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "pLT" = ( /obj/item/reagent_container/glass/bucket/janibucket{ desc = "It's a large bucket that fits in a janitorial cart. Holds 500 units. The lip is stained."; @@ -29212,17 +28919,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"pNJ" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) "pNY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -29313,11 +29009,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) +"pQo" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "pQq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset/full, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) +"pQv" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/item/prop/alien/hugger{ + pixel_y = 14 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "pQx" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/prison/darkbrownfull2, @@ -29349,6 +29063,17 @@ /obj/structure/surface/table/almayer, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) +"pQO" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) "pQQ" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -29403,18 +29128,10 @@ "pRT" = ( /turf/open/floor/corsat/brown/west, /area/lv522/atmos/west_reactor) -"pRY" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/gm/river, -/area/lv522/indoors/c_block/mining) +"pSd" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "pSs" = ( /obj/structure/machinery/light{ dir = 4 @@ -29425,6 +29142,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) +"pSF" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) "pTa" = ( /obj/structure/prop/vehicles/crawler{ layer = 3.1 @@ -29438,6 +29159,11 @@ "pTl" = ( /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/op_centre) +"pTo" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) "pTB" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, @@ -29505,27 +29231,10 @@ "pUv" = ( /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/central_streets) -"pUR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "pVb" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) -"pVn" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "pVo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -29573,6 +29282,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) +"pWB" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) "pWR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -29613,18 +29333,6 @@ }, /turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical) -"pXz" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_y = 7 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) "pXR" = ( /obj/structure/barricade/sandbags, /obj/item/trash/uscm_mre{ @@ -29649,12 +29357,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) -"pYN" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "pYO" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 6; @@ -29715,6 +29417,10 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"qaF" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "qaT" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -29725,18 +29431,6 @@ /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"qbi" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"qbu" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_east_street) "qbB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -29747,12 +29441,6 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"qbD" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_east_street) "qbG" = ( /obj/effect/decal{ icon = 'icons/mob/xenos/effects.dmi'; @@ -29813,6 +29501,10 @@ /obj/item/tool/wirecutters, /turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) +"qcp" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "qcw" = ( /obj/effect/spawner/gibspawner/human, /obj/effect/decal/cleanable/dirt, @@ -29901,15 +29593,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) -"qfD" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) "qfK" = ( /obj/structure/machinery/light{ dir = 1 @@ -29933,6 +29616,18 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) +"qfQ" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "qgj" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -30112,6 +29807,13 @@ }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/central_streets) +"qlG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) "qma" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -30135,6 +29837,10 @@ /obj/item/trash/plate, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) +"qms" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "qmM" = ( /obj/structure/prop/invuln/fire{ pixel_x = -8; @@ -30144,16 +29850,17 @@ icon_state = "72" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"qnb" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 +"qni" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/prop/vehicles/crawler{ + dir = 8; + layer = 3.1; + pixel_x = 5; + pixel_y = 7 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "qnk" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/overwatch/almayer/broken{ @@ -30247,6 +29954,18 @@ /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"qoZ" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/oob) +"qpa" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "qpc" = ( /obj/structure/cargo_container/watatsumi/right, /obj/effect/decal/cleanable/dirt, @@ -30359,16 +30078,6 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) -"qqG" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "qqJ" = ( /turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) @@ -30377,14 +30086,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"qqR" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/garage) "qqW" = ( /obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, @@ -30405,6 +30106,17 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) +"qrh" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) "qrj" = ( /obj/structure/machinery/optable, /turf/open/floor/strata/white_cyan2, @@ -30427,13 +30139,12 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"qsr" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/vial, -/obj/structure/machinery/cell_charger, -/obj/structure/platform_decoration, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +"qsp" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "qst" = ( /obj/structure/girder/displaced, /turf/open/floor/plating, @@ -30443,19 +30154,6 @@ /obj/item/storage/box/beakers, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"qsL" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9; - layer = 2.9 - }, -/obj/structure/flora/bush/ausbushes/var3/ywflowers{ - layer = 3 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) "qsN" = ( /obj/structure/window_frame/strata, /turf/open/floor/plating, @@ -30467,16 +30165,6 @@ /obj/structure/machinery/light/small, /turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) -"qsU" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) "qsW" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/corsat/marked, @@ -30486,18 +30174,6 @@ icon_state = "74" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"qtg" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) "qts" = ( /turf/open/floor/platingdmg1, /area/lv522/indoors/a_block/security) @@ -30629,12 +30305,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) -"qxk" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) "qxm" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, @@ -30757,15 +30427,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan4/north, /area/lv522/indoors/a_block/medical) -"qzE" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "qzQ" = ( /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) @@ -30904,6 +30565,10 @@ }, /turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) +"qCM" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement12, +/area/lv522/landing_zone_2) "qCY" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -30939,16 +30604,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"qDt" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "qDw" = ( /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, @@ -31260,13 +30915,6 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"qKV" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "qLa" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -31292,10 +30940,6 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"qLu" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) "qLy" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/darkpurple2, @@ -31466,6 +31110,13 @@ /obj/item/prop/colony/game, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness/glass) +"qOx" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/containers) +"qOO" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "qOQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -31482,10 +31133,6 @@ /obj/item/ammo_box/magazine/misc/mre/empty, /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) -"qPq" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/shale/layer1, -/area/lv522/oob) "qPu" = ( /obj/item/weapon/gun/revolver/cmb, /obj/item/clothing/head/soft/sec, @@ -31496,26 +31143,6 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"qPL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "qPT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -31532,6 +31159,10 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) +"qQa" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "qQe" = ( /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) @@ -31633,13 +31264,6 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) -"qRH" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) "qRU" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -31683,6 +31307,14 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) +"qSO" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "qSP" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ icon_state = "61" @@ -31697,16 +31329,6 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"qSW" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) "qTh" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ icon_state = "62" @@ -31746,12 +31368,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) -"qTH" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/oob) "qTI" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -31806,13 +31422,28 @@ "qUL" = ( /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) -"qUQ" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 +"qUU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/oob) +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) +"qUY" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) "qVb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -31853,6 +31484,14 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/oob) +"qVP" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "qVQ" = ( /obj/structure/machinery/camera/autoname{ dir = 8 @@ -31884,6 +31523,20 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) +"qWV" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "qWX" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 8; @@ -31915,17 +31568,23 @@ /obj/structure/closet, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"qXY" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +"qXU" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "qYc" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door/window/eastleft, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness/glass) +"qYe" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) "qYk" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat/marked, @@ -31953,6 +31612,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) +"qYr" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "qYt" = ( /obj/item/stack/sheet/metal, /obj/item/shard{ @@ -31988,18 +31653,6 @@ "qYM" = ( /turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/cargo_intake) -"qYP" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) "qYX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/flour, @@ -32026,13 +31679,6 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) -"qZB" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/auto_turf/shale/layer1, -/area/lv522/oob) "qZC" = ( /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) @@ -32188,6 +31834,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"rbA" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) "rbL" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, @@ -32221,6 +31871,17 @@ /obj/structure/barricade/deployable, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"rcC" = ( +/obj/structure/platform/metal/almayer, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"rcD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) "rcO" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1; @@ -32297,6 +31958,10 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) +"rdC" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "rdF" = ( /obj/structure/closet/crate/medical, /obj/item/tool/portadialysis, @@ -32362,20 +32027,16 @@ "rfe" = ( /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/corpo) -"rfg" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) "rfi" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "100" }, /area/lv522/landing_zone_forecon/UD6_Tornado) +"rfj" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "rfk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, @@ -32438,23 +32099,6 @@ icon_state = "101" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"rgG" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/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/far) "rha" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/matches{ @@ -32520,18 +32164,6 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) -"riZ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - pixel_y = 15 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) "rjn" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6; @@ -32796,6 +32428,15 @@ "rqE" = ( /turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) +"rqH" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "rqP" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -32803,21 +32444,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"rqT" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/oob) -"rrf" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -2; - pixel_y = -8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) "rro" = ( /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, @@ -32925,21 +32551,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"rtA" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"rtI" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/oob) +"rtN" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "rtX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/blue1, @@ -32962,6 +32577,13 @@ icon_state = "59" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"rur" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "rus" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/cell_stripe/west, @@ -33158,6 +32780,12 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) +"ryk" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "rys" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -33245,10 +32873,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) -"rAu" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/lv522/landing_zone_1) +"rAJ" = ( +/obj/item/stack/sheet/metal{ + layer = 2.5; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "rAK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -33265,26 +32897,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) -"rBd" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "rBy" = ( /obj/effect/landmark/objective_landmark/medium, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"rBz" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/oob) "rBU" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ icon_state = "41" @@ -33311,12 +32928,6 @@ icon_state = "99" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"rCu" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/oob) "rCz" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) @@ -33336,12 +32947,6 @@ icon_state = "17" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"rCM" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) "rCQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -33361,12 +32966,22 @@ icon_state = "53" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"rDz" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "rDM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) +"rDU" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "rEc" = ( /obj/structure/surface/table/almayer{ dir = 1; @@ -33395,20 +33010,6 @@ /obj/effect/spawner/gibspawner/human, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/nw_rockies) -"rFh" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) "rFp" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ icon_state = "51" @@ -33447,6 +33048,14 @@ /obj/structure/bed/chair/comfy, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"rGF" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) "rGN" = ( /obj/structure/bed/chair/comfy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -33551,16 +33160,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"rKe" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) "rKg" = ( /obj/structure/surface/table/almayer, /obj/item/prop/colony/game, @@ -33678,6 +33277,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) +"rMp" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) "rMr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -33712,16 +33319,22 @@ "rMF" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) +"rMJ" = ( +/obj/item/stack/rods, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "rMR" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"rNm" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/oob) +"rNj" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/containers) +"rNo" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_east_street) "rNs" = ( /obj/item/stack/sheet/wood, /turf/open/floor/prison/darkbrownfull2, @@ -33773,17 +33386,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"rOw" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) "rOD" = ( /obj/item/storage/surgical_tray, /obj/structure/surface/table/reinforced/prison, @@ -33812,6 +33414,17 @@ }, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) +"rPe" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "UD6"; + name = "\improper Shutters" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "rPu" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -33838,12 +33451,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"rQL" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 +"rQS" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/oob) +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "rRa" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/toy/deck{ @@ -33951,6 +33564,13 @@ "rSs" = ( /turf/open/floor/prison/cell_stripe/east, /area/lv522/indoors/lone_buildings/storage_blocks) +"rSz" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) "rSG" = ( /obj/item/clothing/shoes/jackboots{ pixel_x = 5; @@ -33973,12 +33593,13 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"rTf" = ( -/obj/structure/platform_decoration{ - dir = 1 +"rSX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_east_street) +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) "rTh" = ( /turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/west_reactor) @@ -33989,19 +33610,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) -"rUg" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) "rUr" = ( /obj/structure/machinery/prop/almayer/computer/PC{ pixel_y = 5 @@ -34009,15 +33617,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"rUS" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) "rVa" = ( /obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement, @@ -34087,23 +33686,12 @@ /obj/structure/machinery/vending/dinnerware, /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) -"rYi" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"rYq" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 +"rYk" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/containers) "rYu" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -34163,15 +33751,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"rZK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) "rZL" = ( /turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_2/ceiling) @@ -34200,10 +33779,6 @@ "saC" = ( /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"saL" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) "saQ" = ( /turf/open/floor/prison/cell_stripe/west, /area/lv522/indoors/lone_buildings/storage_blocks) @@ -34246,13 +33821,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) -"sbh" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_2/ceiling) "sbj" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, @@ -34269,6 +33837,16 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) +"sby" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/metal/almayer/west, +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) +"sbF" = ( +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) "sbG" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ icon_state = "28" @@ -34380,12 +33958,6 @@ /obj/item/toy/crossbow_ammo, /turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) -"seX" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_west_street) "sfc" = ( /obj/structure/surface/table/almayer, /turf/open/floor/corsat/plate, @@ -34395,21 +33967,6 @@ /obj/item/toy/bikehorn, /turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) -"sfI" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"sfO" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "sfZ" = ( /obj/structure/prop/invuln/fire{ pixel_x = 10; @@ -34474,6 +34031,13 @@ }, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"shl" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) "shm" = ( /obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, @@ -34624,6 +34188,16 @@ }, /turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/south) +"skC" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_y = 7 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "skE" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "63" @@ -34644,16 +34218,6 @@ }, /turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) -"slq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "slD" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -34696,6 +34260,13 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"smo" = ( +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null + }, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/containers) "smr" = ( /obj/structure/prop/server_equipment/yutani_server/broken, /obj/structure/machinery/light{ @@ -34753,6 +34324,13 @@ "snX" = ( /turf/closed/wall/strata_outpost, /area/lv522/landing_zone_2/ceiling) +"soh" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/barricade/deployable, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "sol" = ( /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/plating, @@ -34835,15 +34413,6 @@ /obj/structure/machinery/light, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"spW" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) "sqd" = ( /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bridge) @@ -34973,6 +34542,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/nw_rockies) +"suy" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "suF" = ( /obj/structure/bed/chair{ dir = 4 @@ -35024,16 +34597,17 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"svG" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "svK" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"svQ" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "svW" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -35041,6 +34615,14 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/storage_blocks) +"swj" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "swr" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "45" @@ -35127,6 +34709,14 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"syF" = ( +/obj/structure/prop/dam/crane/damaged, +/obj/structure/platform/metal/almayer, +/obj/item/prop/colony/canister{ + pixel_y = 22 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "syH" = ( /obj/structure/stairs/perspective{ dir = 9; @@ -35161,16 +34751,19 @@ /obj/structure/barricade/deployable, /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) -"szo" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_west_street) +"szm" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "szJ" = ( /obj/structure/machinery/medical_pod/sleeper, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) +"szQ" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "szT" = ( /obj/structure/ore_box, /turf/open/asphalt/cement/cement3, @@ -35200,18 +34793,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"sAt" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) "sAx" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -35251,20 +34832,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/storage_blocks) -"sBX" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) -"sCb" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/landing_zone_1) "sCi" = ( /obj/item/clothing/shoes/jackboots{ pixel_x = -5; @@ -35442,30 +35009,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_2/ceiling) -"sHb" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"sHd" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "sHk" = ( /obj/structure/curtain/red, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) -"sHp" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/shale/layer1, -/area/lv522/oob) "sHy" = ( /obj/structure/machinery/floodlight, /obj/effect/decal/cleanable/dirt, @@ -35479,21 +35026,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) -"sHY" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) "sIq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -35684,13 +35216,6 @@ /obj/item/reagent_container/glass/beaker, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"sLw" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) "sLG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -35698,6 +35223,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) +"sLI" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_east_street) "sLQ" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison/darkpurplefull2, @@ -35761,12 +35291,25 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"sMW" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "sNk" = ( /obj/structure/closet/crate, /obj/item/storage/pouch/medkit/full_advanced, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked, /area/lv522/indoors/lone_buildings/storage_blocks) +"sNz" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) "sNQ" = ( /obj/structure/machinery/floodlight, /obj/effect/decal/cleanable/dirt, @@ -35826,18 +35369,6 @@ }, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"sOM" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "sON" = ( /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) @@ -35918,6 +35449,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) +"sPV" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "sQb" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/blue/northwest, @@ -35992,13 +35529,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_west_street) -"sRu" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) "sRx" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/prison/floor_marked, @@ -36007,12 +35537,12 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"sRM" = ( -/obj/structure/platform{ - dir = 1 - }, +"sRO" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/area/lv522/oob) "sRY" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -36142,15 +35672,6 @@ "sWr" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"sWt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) "sWB" = ( /obj/structure/prop/almayer/computers/sensor_computer2{ density = 0; @@ -36168,6 +35689,17 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) +"sWW" = ( +/obj/structure/platform/metal/stair_cut/platform_right, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "sXm" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper, @@ -36196,12 +35728,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) -"sXZ" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) "sYh" = ( /obj/structure/machinery/door/airlock/hatch/cockpit/three{ dir = 1 @@ -36211,14 +35737,6 @@ "sYl" = ( /turf/open/floor/corsat/plate, /area/lv522/atmos/filt) -"sYv" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) "sYH" = ( /turf/open/floor/plating, /area/shuttle/drop1/lv522) @@ -36234,20 +35752,29 @@ }, /turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) +"sZu" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "sZz" = ( /obj/structure/largecrate/random/case/small, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) +"sZD" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) "taj" = ( /obj/structure/closet/crate, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) -"taw" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) "taH" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -36268,12 +35795,6 @@ }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"taO" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "taP" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating, @@ -36284,29 +35805,11 @@ }, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_east_street) -"taW" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "tbl" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ icon_state = "16" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"tbt" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) "tby" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -36414,15 +35917,6 @@ icon_state = "47" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"tdS" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "tdT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -36473,15 +35967,6 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/asphalt/cement, /area/lv522/indoors/lone_buildings/engineering) -"teL" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "teO" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper C-Block - Cargo Airlock"; @@ -36497,12 +35982,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement3, /area/lv522/landing_zone_1) -"tfi" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +"tfg" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) +/area/lv522/outdoors/colony_streets/containers) "tfl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/railgun_camera_pos, @@ -36571,13 +36054,6 @@ icon_state = "71" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"thi" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) "thI" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -36656,14 +36132,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"tkm" = ( -/obj/structure/curtain, -/mob/living/simple_animal/mouse, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "tku" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -36721,6 +36189,16 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"tlm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/containers) "tlr" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -36738,15 +36216,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) -"tlB" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "tlR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine{ @@ -36818,12 +36287,6 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"tni" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_east_street) "tns" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 @@ -36930,17 +36393,16 @@ /obj/structure/barricade/deployable, /turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) -"tqh" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/lv522/indoors/lone_buildings/engineering) "tqU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness/glass) +"tqZ" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) "trj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37182,20 +36644,27 @@ }, /turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) -"twq" = ( -/obj/structure/platform_decoration, -/obj/item/reagent_container/food/drinks/flask/marine, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) "tww" = ( /turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) +"twz" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_east_street) "twB" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "48" }, /area/lv522/landing_zone_forecon/UD6_Tornado) +"twK" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "twQ" = ( /obj/structure/closet/secure_closet/medical1, /turf/open/floor/strata/white_cyan1/east, @@ -37277,16 +36746,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"tyU" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/indoors/lone_buildings/engineering) "tzd" = ( /turf/closed/shuttle/elevator{ dir = 4 @@ -37299,23 +36758,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"tzA" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/closet/crate/ammo, -/obj/item/ammo_magazine/rifle/lmg/holo_target, -/obj/item/weapon/gun/rifle/lmg{ - current_mag = null - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tzF" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "tzM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37352,15 +36794,6 @@ /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/floor/prison, /area/lv522/landing_zone_1) -"tAu" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) "tBb" = ( /obj/structure/prop/dam/drill, /turf/open/auto_turf/sand_white/layer0, @@ -37415,6 +36848,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"tCu" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) "tCN" = ( /turf/closed/wall/strata_ice/dirty, /area/lv522/outdoors/colony_streets/south_east_street) @@ -37437,12 +36874,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) -"tDQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/indoors/lone_buildings/engineering) "tDR" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -37474,6 +36905,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) +"tEJ" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "tEQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -37601,20 +37040,6 @@ /obj/structure/machinery/portable_atmospherics/canister/phoron, /turf/open/floor/corsat/squares, /area/lv522/indoors/c_block/mining) -"tHC" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/indoors/lone_buildings/engineering) -"tHJ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) "tIy" = ( /obj/structure/cargo_container/kelland/left, /turf/open/floor/prison/floor_marked/southwest, @@ -37657,23 +37082,6 @@ /obj/vehicle/train/cargo/trolley, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) -"tJk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/asphalt/cement, -/area/lv522/indoors/lone_buildings/engineering) "tJm" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -37748,6 +37156,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/engineering) +"tKq" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "tKB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37778,6 +37190,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_1/ceiling) +"tLf" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"tLi" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "tLl" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -37854,14 +37278,6 @@ "tMq" = ( /turf/open/asphalt/cement/cement2, /area/lv522/landing_zone_1) -"tMt" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/landing_zone_1) "tMD" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, @@ -37889,10 +37305,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) +"tNa" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) "tNc" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) +"tNd" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "tNl" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -37915,16 +37340,6 @@ }, /turf/open/asphalt/cement, /area/lv522/indoors/lone_buildings/engineering) -"tOe" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) "tOo" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) @@ -37935,15 +37350,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"tOt" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/indoors/lone_buildings/engineering) "tOv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -37969,27 +37375,10 @@ /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) -"tPa" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) "tPb" = ( /obj/structure/prop/structure_lattice, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"tPf" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "tPr" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement/cement12, @@ -38052,6 +37441,10 @@ "tRd" = ( /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges) +"tRj" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "tRs" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -38072,12 +37465,6 @@ /obj/structure/machinery/light, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"tRS" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/indoors/lone_buildings/engineering) "tSb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -38193,6 +37580,10 @@ /obj/structure/cargo_container/kelland/right, /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) +"tUv" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) "tUB" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, @@ -38228,6 +37619,14 @@ /obj/structure/prop/server_equipment/laptop/on, /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) +"tVx" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) "tVN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, @@ -38238,10 +37637,10 @@ }, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/east_central_street) -"tWt" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) +"tVR" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "tWv" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 6; @@ -38326,6 +37725,12 @@ "tXW" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_east_street) +"tXZ" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) "tYf" = ( /obj/structure/machinery/seed_extractor, /obj/structure/machinery/light{ @@ -38338,23 +37743,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) -"tYt" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9; - layer = 2.9 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"tYx" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) "tYL" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/prison/blue_plate/north, @@ -38379,12 +37767,6 @@ /obj/structure/machinery/light, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) -"tZs" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/indoors/lone_buildings/engineering) "tZF" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -38414,6 +37796,10 @@ }, /turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/hallway) +"uab" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "uad" = ( /obj/structure/closet/boxinggloves, /obj/effect/decal/cleanable/dirt, @@ -38443,22 +37829,6 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms/glass) -"uaY" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) "ubd" = ( /obj/structure/closet/boxinggloves, /turf/open/floor/prison/greenfull, @@ -38480,13 +37850,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/fitness) -"ubF" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/lv522/indoors/lone_buildings/engineering) "ubH" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -38499,6 +37862,24 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) +"ubM" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "uco" = ( /obj/structure/curtain/red, /turf/open/floor/prison/kitchen, @@ -38526,16 +37907,14 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) +"ucN" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) "ucY" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) -"udi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "udv" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement12, @@ -38616,20 +37995,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) -"ueW" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/platform_decoration, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/central_streets) "ueX" = ( /obj/effect/decal{ icon = 'icons/mob/xenos/effects.dmi'; @@ -38668,20 +38033,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"ufF" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/central_streets) "ufR" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 @@ -38701,28 +38052,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/hallway) -"ugi" = ( -/obj/structure/cable/heavyduty{ - icon_state = "0-8" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2"; - pixel_y = -23 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/central_streets) "ugn" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent2"; @@ -38777,10 +38106,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/corpo) -"uhP" = ( -/obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) "uhV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -38836,12 +38161,6 @@ /obj/item/trash/eat, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"uiK" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) "uiM" = ( /turf/open/floor/prison, /area/lv522/landing_zone_1) @@ -38881,6 +38200,11 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) +"ujg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "ujq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/prop/colony/canister{ @@ -38893,6 +38217,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) +"ujv" = ( +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "ujy" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -38915,12 +38242,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"uks" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/oob) "ukt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -38960,48 +38281,34 @@ "umf" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/central_streets) -"umg" = ( -/obj/structure/platform{ - dir = 8 +"umm" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) "ums" = ( /obj/item/stack/sheet/metal, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"umK" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/landing_zone_1) "umR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"unt" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) +"umV" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) "unC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"unM" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "unQ" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ @@ -39134,16 +38441,6 @@ "uqo" = ( /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"uqt" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) "uqx" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -39152,6 +38449,21 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) +"uqy" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"uqH" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "uqP" = ( /obj/structure/cargo_container/horizontal/blue/top{ pixel_x = 6 @@ -39176,6 +38488,15 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"uro" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) "urp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/brown/northeast, @@ -39192,6 +38513,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"urI" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "urM" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 8 @@ -39280,45 +38605,17 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"utR" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) "uue" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) -"uug" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "uul" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor) -"uur" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) "uuA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, @@ -39380,6 +38677,17 @@ /obj/structure/curtain/medical, /turf/open/floor/strata/white_cyan3/east, /area/lv522/indoors/a_block/medical/glass) +"uvT" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9; + layer = 2.9 + }, +/obj/structure/flora/bush/ausbushes/var3/ywflowers{ + layer = 3 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "uwb" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -39450,18 +38758,15 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"uxf" = ( -/obj/structure/platform_decoration, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/central_streets) -"uxi" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"uxj" = ( +/obj/structure/platform/metal/almayer, +/obj/item/prop/colony/canister{ + layer = 3.1; + pixel_y = 16 }, -/obj/structure/platform, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/central_streets) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "uxn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, @@ -39516,14 +38821,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"uzr" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "uzD" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -39572,17 +38869,14 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"uAd" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) "uAm" = ( /turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) +"uAn" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "uAv" = ( /obj/structure/window_frame/strata, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -39619,32 +38913,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical/glass) -"uCo" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = 6; - pixel_y = 6 - }, +"uCP" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/vial, +/obj/structure/machinery/cell_charger, +/obj/structure/platform_decoration/metal/almayer, /turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"uCr" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/central_streets) +/area/lv522/indoors/c_block/cargo) "uDb" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/security) @@ -39653,12 +38928,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"uDC" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/central_streets) "uDP" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -39672,19 +38941,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"uEr" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "UD6"; - name = "\improper Shutters" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "uEt" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -39695,19 +38951,6 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"uEz" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "UD6"; - name = "\improper Shutters" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "uEC" = ( /turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) @@ -39727,19 +38970,18 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) +"uEK" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "uEP" = ( /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) -"uEV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "uEX" = ( /obj/structure/prop/invuln/fire{ pixel_x = -6; @@ -39755,6 +38997,14 @@ }, /turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/way_in_command_centre) +"uFf" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "uFo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, @@ -39764,12 +39014,6 @@ }, /turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) -"uFp" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement14, -/area/lv522/landing_zone_1) "uFz" = ( /obj/item/clipboard, /turf/open/auto_turf/sand_white/layer0, @@ -39800,6 +39044,10 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) +"uFQ" = ( +/obj/structure/cargo_container/lockmart/left, +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/containers) "uFT" = ( /turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) @@ -39918,6 +39166,10 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) +"uHz" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "uHE" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement/cement2, @@ -39958,6 +39210,11 @@ }, /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_west_street) +"uIw" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "uIx" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "mining_shutter_2" @@ -39972,6 +39229,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) +"uID" = ( +/obj/structure/cargo_container/lockmart/right, +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/containers) "uIF" = ( /obj/structure/barricade/handrail, /turf/open/floor/plating, @@ -39992,10 +39253,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) -"uIY" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) "uIZ" = ( /obj/structure/window_frame/strata, /obj/item/stack/rods, @@ -40056,22 +39313,6 @@ "uKy" = ( /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/op_centre) -"uKD" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/central_streets) "uKE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -40091,18 +39332,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"uKY" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) "uLk" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ icon_state = "flammable_pipe_3"; @@ -40121,12 +39350,6 @@ "uLv" = ( /turf/open/gm/river, /area/lv522/indoors/c_block/mining) -"uLw" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) "uLz" = ( /obj/effect/landmark/hunter_secondary, /obj/structure/machinery/landinglight/ds1{ @@ -40258,18 +39481,6 @@ "uOs" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"uOA" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) "uOD" = ( /obj/structure/bed/stool, /turf/open/floor/carpet, @@ -40292,6 +39503,11 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_street) +"uOW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "uPk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -40337,42 +39553,12 @@ /obj/structure/surface/table/almayer, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) -"uQf" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"uQg" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer2{ - layer = 2.0 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"uQn" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) "uQr" = ( /obj/structure/bed/chair/wood/normal, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"uQs" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) "uQw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -40428,12 +39614,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) -"uRR" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) "uSn" = ( /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_west_street) @@ -40456,17 +39636,19 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"uSY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"uST" = ( +/obj/structure/fence{ + layer = 2.9 }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3, +/area/lv522/outdoors/colony_streets/containers) "uSZ" = ( /obj/item/toy/beach_ball/holoball{ pixel_x = 7; @@ -40505,12 +39687,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/corpo) -"uTK" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_west_street) "uTS" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/shower{ @@ -40613,6 +39789,9 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) +"uWa" = ( +/turf/closed/wall/strata_ice/dirty, +/area/lv522/outdoors/colony_streets/containers) "uWh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy{ @@ -40662,18 +39841,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"uXu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/ceiling) "uXO" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating, @@ -40701,6 +39868,11 @@ /obj/structure/cargo_container/grant/left, /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) +"uYZ" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/item/stack/sheet/wood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "uZc" = ( /obj/structure/machinery/floodlight/landing, /turf/open/floor/prison/greenfull/east, @@ -40885,15 +40057,13 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) -"vdP" = ( -/obj/structure/platform_decoration{ +"vdK" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/ceiling) +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "vdV" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -41000,20 +40170,6 @@ icon_state = "3" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"vgb" = ( -/obj/structure/platform, -/obj/structure/prop/vehicles/crawler{ - dir = 8; - icon_state = "crawler_crate"; - layer = 3.1; - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) "vgs" = ( /obj/structure/bed, /obj/item/bedsheet/blue{ @@ -41022,11 +40178,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) -"vgw" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) "vgx" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating, @@ -41035,19 +40186,6 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) -"vgM" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"vhd" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) "vht" = ( /obj/structure/closet/emcloset, /turf/open/floor/prison/greenfull, @@ -41081,6 +40219,14 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) +"viu" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"viz" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "viA" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -41211,6 +40357,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) +"vkk" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "vkC" = ( /obj/effect/decal/cleanable/cobweb, /turf/open/floor/prison/blue_plate, @@ -41220,6 +40378,10 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"vkZ" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/containers) "vlp" = ( /obj/item/pipe, /turf/open/floor/prison, @@ -41233,15 +40395,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"vlN" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +"vlA" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "vlT" = ( /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/east_central_street) @@ -41302,6 +40459,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"vnn" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "vnp" = ( /obj/structure/curtain/medical, /turf/open/floor/strata/white_cyan3/west, @@ -41471,16 +40636,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"vrW" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) "vsd" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/sliceable/plaincake{ @@ -41590,6 +40745,13 @@ /obj/structure/largecrate, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1/ceiling) +"vuL" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "vuY" = ( /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?"; @@ -41607,6 +40769,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) +"vvN" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "vwi" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, @@ -41818,18 +40984,6 @@ "vBd" = ( /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) -"vBm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) "vBx" = ( /obj/structure/surface/table/almayer, /obj/item/trash/ceramic_plate{ @@ -41849,13 +41003,6 @@ "vBI" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) -"vBK" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/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/cement9, @@ -41883,6 +41030,10 @@ /obj/item/trash/uscm_mre, /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) +"vCi" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) "vCy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -42020,6 +41171,11 @@ /obj/structure/barricade/wooden, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) +"vEY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "vFd" = ( /obj/structure/stairs/perspective{ dir = 9; @@ -42047,13 +41203,6 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"vGb" = ( -/obj/structure/machinery/colony_floodlight, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) "vGk" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/shale/layer1, @@ -42149,6 +41298,17 @@ /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"vHP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 3; + pixel_y = -1 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "vHU" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, @@ -42192,6 +41352,14 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) +"vIz" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "vIS" = ( /turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/west) @@ -42258,6 +41426,11 @@ /obj/structure/closet/secure_closet/atmos_personal, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) +"vKH" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "vKJ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "\improper Marshal Office Armory" @@ -42296,12 +41469,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) -"vLu" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) "vLA" = ( /obj/structure/pipes/standard/manifold/visible{ dir = 1 @@ -42334,6 +41501,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) +"vLU" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/asphalt/cement/cement12, +/area/lv522/indoors/lone_buildings/engineering) "vMg" = ( /obj/structure/safe, /turf/open/floor/prison/darkbrownfull2, @@ -42342,6 +41513,11 @@ /obj/item/weapon/gun/boltaction, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"vMC" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river, +/area/lv522/outdoors/colony_streets/south_street) "vMD" = ( /obj/structure/fence{ layer = 2.9 @@ -42474,18 +41650,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) -"vPs" = ( -/obj/structure/prop/dam/crane/damaged, -/obj/structure/platform, -/obj/item/prop/colony/canister{ - pixel_y = 22 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"vPz" = ( -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) "vPO" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 8; @@ -42572,15 +41736,6 @@ /obj/structure/tunnel, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"vSN" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) "vSO" = ( /turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) @@ -42673,6 +41828,13 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) +"vUr" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "vUx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -42792,6 +41954,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"vYa" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null + }, +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "l_arm"; + name = "left arm"; + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/ammo_magazine/pistol/m1911{ + current_rounds = 4 + }, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "vYb" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement/cement3, @@ -42803,12 +41987,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) -"vYK" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "vYL" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -42855,6 +42033,14 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/toilet) +"vZo" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "vZv" = ( /obj/structure/cargo_container/kelland/left, /turf/open/floor/prison/greenfull/east, @@ -42911,13 +42097,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/toilet) -"waQ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) "waZ" = ( /obj/item/trash/uscm_mre, /obj/effect/decal/cleanable/dirt, @@ -42952,13 +42131,6 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) -"wbE" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) "wbP" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light/small{ @@ -42973,6 +42145,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan3/west, /area/lv522/indoors/a_block/medical/glass) +"wcg" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "wcp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -42990,6 +42170,9 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) +"wcH" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/containers) "wcM" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, @@ -43009,13 +42192,6 @@ /obj/item/tool/crowbar, /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_west_street) -"wcT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "wcX" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/darkpurplefull2, @@ -43050,12 +42226,6 @@ /obj/structure/cargo_container/kelland/right, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1/ceiling) -"wdY" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "wee" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -43066,16 +42236,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) -"wes" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "weJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -43247,12 +42407,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) -"whD" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) "whE" = ( /obj/structure/cargo_container/horizontal/blue/top{ layer = 3.1; @@ -43286,6 +42440,11 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) +"wiq" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "wiz" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -43329,16 +42488,6 @@ "wjy" = ( /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) -"wjE" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) "wjF" = ( /obj/structure/cargo_container/horizontal/blue/middle{ pixel_x = 6 @@ -43352,21 +42501,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) +"wjM" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) "wjP" = ( /obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) -"wke" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) "wko" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -43389,21 +42531,6 @@ /obj/effect/spider/spiderling/nogrow, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"wky" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 3; - pixel_y = -1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/asphalt/cement, -/area/lv522/indoors/lone_buildings/engineering) "wkC" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -43460,6 +42587,13 @@ /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"wnx" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "wny" = ( /obj/structure/window_frame/strata, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -43495,12 +42629,6 @@ /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"wov" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "woy" = ( /obj/structure/largecrate/random{ pixel_x = 5 @@ -43523,6 +42651,11 @@ "woU" = ( /turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor/south) +"woW" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "wpa" = ( /obj/structure/prop/server_equipment{ icon_state = "rackframe_broken" @@ -43630,6 +42763,16 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"wsm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "wsz" = ( /obj/structure/machinery/light{ dir = 8 @@ -43638,16 +42781,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"wsC" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "wsT" = ( /obj/structure/machinery/light{ dir = 4 @@ -43679,6 +42812,10 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) +"wtq" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/oob) "wtI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -43709,6 +42846,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) +"wuw" = ( +/obj/structure/machinery/photocopier, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"wuz" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/central_streets) "wuK" = ( /obj/structure/closet/crate, /turf/open/floor/prison/floor_marked/southwest, @@ -43929,17 +43075,18 @@ /obj/structure/machinery/light, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"wzS" = ( -/obj/structure/platform_decoration, +"wzQ" = ( +/obj/structure/platform_decoration/metal/almayer/north, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) +/area/lv522/indoors/a_block/garden) "wAf" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "68" @@ -44051,6 +43198,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/blue/southwest, /area/lv522/indoors/a_block/admin) +"wDo" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "wDu" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/transmitter/colony_net{ @@ -44104,6 +43255,10 @@ /obj/item/seeds/bananaseed, /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) +"wEG" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "wEP" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -44141,6 +43296,11 @@ /obj/item/device/m56d_post, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"wGf" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) "wGh" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -44199,9 +43359,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) +"wHv" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "wHw" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, /area/lv522/landing_zone_forecon/UD6_Tornado) +"wHx" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "wHz" = ( /obj/item/clothing/shoes/veteran/pmc{ name = "steel toe boots" @@ -44300,15 +43473,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) -"wKH" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) "wKR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -44320,6 +43484,10 @@ /obj/structure/surface/rack, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) +"wKX" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) "wLd" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ @@ -44350,6 +43518,14 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"wLS" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) "wLU" = ( /obj/structure/machinery/light{ dir = 8 @@ -44387,16 +43563,6 @@ /obj/structure/closet, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"wNo" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) "wNp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, @@ -44432,6 +43598,11 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) +"wPO" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) "wPR" = ( /turf/open/floor/wood/wood_broken6, /area/lv522/indoors/b_block/bar) @@ -44514,14 +43685,6 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/garden_bridge) -"wSr" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "wSt" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/prison, @@ -44621,6 +43784,10 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) +"wUP" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_east_street) "wVo" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -44661,6 +43828,11 @@ "wXQ" = ( /turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) +"wXT" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "wYa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -44691,22 +43863,6 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"wYJ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"wYU" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) "wZl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -44720,15 +43876,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"wZt" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) "wZw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -44773,6 +43920,19 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) +"xam" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"xat" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "xay" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -44831,6 +43991,11 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"xbm" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) "xbM" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_fuel" @@ -44922,6 +44087,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"xdu" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "xdx" = ( /obj/effect/decal/cleanable/dirt, /obj/item/maintenance_jack, @@ -44967,6 +44136,10 @@ /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"xeG" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "xfp" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -45127,6 +44300,10 @@ "xjF" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/executive) +"xjM" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/gm/river, +/area/lv522/indoors/c_block/mining) "xjO" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, @@ -45141,6 +44318,24 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"xjX" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "xjY" = ( /obj/structure/machinery/light{ dir = 1; @@ -45348,20 +44543,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) -"xpu" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"xpH" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "xpX" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -45414,6 +44595,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"xrY" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/lv522/indoors/lone_buildings/engineering) "xsc" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "29" @@ -45462,6 +44648,10 @@ }, /turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) +"xtA" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "xtH" = ( /obj/effect/spawner/gibspawner/human, /obj/item/device/defibrillator/compact, @@ -45520,6 +44710,14 @@ /obj/effect/spider/spiderling/nogrow, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) +"xvy" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "xvB" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, @@ -45614,6 +44812,10 @@ "xyu" = ( /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) +"xyw" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "xyC" = ( /obj/structure/machinery/landinglight/ds2/delaythree, /obj/effect/decal/cleanable/dirt, @@ -45658,6 +44860,15 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) +"xAx" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9; + layer = 2.9 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "xAF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -45877,6 +45088,12 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) +"xFi" = ( +/obj/item/stack/tile/wood{ + layer = 2.5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "xFp" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) @@ -45909,6 +45126,11 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness) +"xFI" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/containers) "xGa" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" @@ -45965,6 +45187,10 @@ "xHz" = ( /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) +"xHL" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) "xHO" = ( /obj/structure/girder, /turf/open/asphalt/cement/cement12, @@ -46121,6 +45347,11 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"xMa" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) "xMl" = ( /obj/structure/filingcabinet{ density = 0; @@ -46170,6 +45401,10 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"xNk" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/containers) "xNo" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/close, @@ -46217,12 +45452,6 @@ /obj/structure/machinery/conveyor, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"xPg" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) "xPj" = ( /obj/structure/largecrate/random, /turf/open/floor/prison/darkbrownfull2, @@ -46363,13 +45592,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"xRz" = ( -/obj/structure/platform_decoration, -/obj/structure/bed/roller, -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) "xRE" = ( /turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) @@ -46395,6 +45617,10 @@ }, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) +"xRP" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/containers) "xRQ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/recharger{ @@ -46402,6 +45628,14 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) +"xRS" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) "xSm" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, @@ -46426,10 +45660,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"xSN" = ( -/obj/structure/largecrate/random/secure, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/containers) "xSP" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -46462,6 +45692,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) +"xTD" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) "xTJ" = ( /obj/item/tool/kitchen/utensil/pknife{ pixel_x = -9 @@ -46546,15 +45780,6 @@ /obj/structure/closet/crate, /turf/open/floor/corsat/marked, /area/lv522/atmos/north_command_centre) -"xVH" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) "xVI" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green, @@ -46563,15 +45788,6 @@ "xVV" = ( /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/south_west_street) -"xWb" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_west_street) "xWc" = ( /turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) @@ -46645,12 +45861,12 @@ /obj/structure/machinery/door/airlock/almayer/generic, /turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) -"xXQ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) +"xXP" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) "xXR" = ( /obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement, @@ -46672,12 +45888,6 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"xYx" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) "xYA" = ( /turf/open/floor/plating, /area/lv522/landing_zone_2) @@ -46743,6 +45953,13 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) +"yap" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) "yar" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -46823,21 +46040,16 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) -"ycw" = ( -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/containers) +"ycD" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "ycE" = ( /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"ycH" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "ycM" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -46859,15 +46071,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"ydy" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/largecrate/random{ - layer = 2.9 +"ydd" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "flagpole"; + layer = 4.11; + pixel_x = 4; + pixel_y = 3 }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/containers) "ydz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/recharge_station, @@ -46932,9 +46144,20 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) +"yeO" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "yfu" = ( /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) +"yfy" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/containers) "yfz" = ( /obj/structure/largecrate/random/mini, /obj/effect/decal/cleanable/dirt, @@ -46979,6 +46202,17 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"ygr" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/containers) "ygw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -47005,6 +46239,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) +"yhu" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) "yhy" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/adv{ @@ -47147,6 +46385,10 @@ "yjL" = ( /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) +"yjN" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/containers) "yjP" = ( /obj/structure/surface/table/almayer, /obj/item/device/radio/off{ @@ -47263,10 +46505,6 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) -"ymf" = ( -/obj/structure/platform_decoration, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) (1,1,1) = {" bMX @@ -48109,7 +47347,7 @@ cpy cpy cpy cpy -dvO +nGO cpy cpy cpy @@ -48314,7 +47552,7 @@ cpy cpy cpy cpy -dvO +nGO cpy cpy cpy @@ -48463,15 +47701,15 @@ pxb pxb pxb pxb -nQz -tPf -unM +tVR +iMr +qSO ryU ryU ryU -jqO -tPf -vYK +uEK +iMr +dMZ pxb pxb pxb @@ -48667,9 +47905,9 @@ xqp pxb pxb pxb -nQz -tPf -oKc +tVR +iMr +gom uZc ryU ryU @@ -48677,9 +47915,9 @@ xcY ryU ryU uZc -sOM -tPf -vYK +sZu +iMr +dMZ pxb xqp pxb @@ -48808,10 +48046,10 @@ cpy cpy cpy cpy -sHp -goo -rtI -rQL +dhO +uab +jNb +qoZ cpy cpy cpy @@ -48872,8 +48110,8 @@ pwa xqp xqp xqp -nQz -oKc +tVR +gom ryU ryU ryU @@ -48885,8 +48123,8 @@ pnj ryU ryU ryU -sOM -vYK +sZu +dMZ pxb xqp pwa @@ -49013,11 +48251,11 @@ cpy cpy cpy cpy -sHp -qUQ +dhO +cCg ruv rME -rNm +wtq lpe cpy cpy @@ -49076,9 +48314,9 @@ nGJ pwa pwa pxb -nQz -tPf -oKc +tVR +iMr +gom ryU ryU uiM @@ -49092,9 +48330,9 @@ tAr uiM ryU ryU -sOM -tPf -vYK +sZu +iMr +dMZ pxb pwa pxb @@ -49218,12 +48456,12 @@ cpy cpy cpy cpy -cvA -qUQ +nKr +cCg rmA rza osc -rNm +wtq lpe cpy cpy @@ -49280,9 +48518,9 @@ cpy cpy nMc pxb -nQz -tPf -oKc +tVR +iMr +gom ryU ryU ryU @@ -49300,9 +48538,9 @@ sQZ ryU ryU ryU -sOM -tPf -vYK +sZu +iMr +dMZ pxb pwa pxb @@ -49424,12 +48662,12 @@ cpy cpy cpy cpy -ltw +fIA qVN qZf qZf -rBz -rCu +wiq +cYd lpe cpy cpy @@ -49485,8 +48723,8 @@ cpy cpy lJq pxb -nQz -oKc +tVR +gom ryU ryU ryU @@ -49508,8 +48746,8 @@ uVN ryU ryU ryU -sOM -vYK +sZu +dMZ pxb pwa pxb @@ -49630,11 +48868,11 @@ cpy cpy cpy lpe -ltw +fIA qYy cIS rzq -uks +fQa qZf cpy cpy @@ -49690,8 +48928,8 @@ cpy cpy cpy lJq -nQz -oKc +tVR +gom ryU rhk uTd @@ -49715,8 +48953,8 @@ oyf tns rhk ryU -sOM -vYK +sZu +dMZ pxb pwa pxb @@ -49836,11 +49074,11 @@ cpy cpy lpe lpe -qPq +vvN osc roM esO -uks +fQa lpe cpy cpy @@ -49896,7 +49134,7 @@ cpy cpy cpy pwa -lWj +kCt uZc fSo nFj @@ -49922,7 +49160,7 @@ pRg nFj vER uZc -wdY +fHd pxb pwa pxb @@ -50016,12 +49254,12 @@ bmR wGc bmR mNz -tdS -tzA +wnx +aOf tSJ scw -uEr -vgM +rPe +tCu uWO uWO wbt @@ -50042,11 +49280,11 @@ cpy cpy lpe qZf -qTH -qZB +hsD +ngM osc -rBz -bkg +wiq +mdU lpe cpy cpy @@ -50102,7 +49340,7 @@ tFx tFx niA pwa -oiC +gwE ryU naS nFj @@ -50128,7 +49366,7 @@ nFj sYH gnf ryU -wes +bAg pxb pwa pxb @@ -50249,9 +49487,9 @@ cpy cpy qZf qZf -qTH -rqT -rCu +hsD +cAl +cYd lpe cpy cpy @@ -50428,12 +49666,12 @@ tTb bmR aXR aom -teL -tzF +agh +lwd tSU rhB -uEz -vhd +irP +hgc wbt wbt wbt @@ -50551,8 +49789,8 @@ cpy cpy eYM eYM -uRR -uRR +xHL +xHL eYM eYM eYM @@ -50761,7 +49999,7 @@ wfP wfP wfP eYM -sRM +aXZ eYM eYM cpy @@ -50891,10 +50129,10 @@ ien ien ien teE -jZe -tDQ -tDQ -tHC +gBf +hyh +hyh +ltk tQw vXc vXc @@ -50967,7 +50205,7 @@ wfP wfP wfP pNa -sRM +aXZ hTe eYM cpy @@ -51096,12 +50334,12 @@ cpy cpy ien teE -jZe -wky +gBf +vHP wPV tyl -tJk -tRS +qUU +vLU vXc vXc vXc @@ -51173,7 +50411,7 @@ wfP wfP wfP eYM -sRM +aXZ hTe eYM cpy @@ -51302,12 +50540,12 @@ cpy cpy xoj tfO -lpt +nIR abe ukT ofS tKb -tZs +ppZ vXc vXc vXc @@ -51379,7 +50617,7 @@ wfP wfP wfP eYM -sRM +aXZ hTe eYM cpy @@ -51508,12 +50746,12 @@ cpy ien xoj ien -lpt +nIR gJL ukT cAW tKo -uaY +nHq ueR vXc vXc @@ -51585,7 +50823,7 @@ jJF wfP wfP eYM -sRM +aXZ hTe eYM cpy @@ -51714,18 +50952,18 @@ cpy cpy ien tfZ -lpt +nIR ttf tDR tIS tLX -tZs -ueW -unt +ppZ +fjL +dhZ vXc vXc -uxf -uCr +ihK +wuz vXc wdy rMF @@ -51750,7 +50988,7 @@ osN sSQ rnT pxb -jPg +qpa ryU naS nFj @@ -51776,7 +51014,7 @@ nFj sYH gnf ryU -wjE +aDT pxb xqp pwa @@ -51791,7 +51029,7 @@ jJF wfP wfP eYM -sRM +aXZ hTe eYM cpy @@ -51920,18 +51158,18 @@ cpy bOX xoj tfZ -tqh -tyU +mIx +pxO wdj xdD -tOt -ubF -ufF -uqt +aef +xrY +nzO +nDd uuQ uuQ -uxi -uDC +fVc +nMv yiM fXx nJv @@ -51956,7 +51194,7 @@ ien ien ien pxb -lWj +kCt uZc fBL nFj @@ -51982,7 +51220,7 @@ pRg nFj xEH uZc -wdY +fHd pxb pwa pxb @@ -51997,7 +51235,7 @@ jJF wfP wfP eYM -sRM +aXZ hTe eYM cpy @@ -52132,12 +51370,12 @@ tEW tEW tOM udv -ugi +mkB utq uwb uwb uzD -uKD +kHM uPv uPv nJv @@ -52162,8 +51400,8 @@ osN sSQ rnT pxb -lgY -oKG +eDh +gRi ryU uEH vJj @@ -52187,8 +51425,8 @@ jIk aGS uEH ryU -gPv -gVn +qsp +pSd pwa pwa pxb @@ -52203,7 +51441,7 @@ wfP wfP wfP eYM -sRM +aXZ hTe eYM cpy @@ -52338,12 +51576,12 @@ nKj she she tQw -uhP -utR +rcC +gix uxd uxd -uAd -uLw +iua +gIP yiM fAA nJv @@ -52369,8 +51607,8 @@ sSQ rnT pxb pxb -lgY -oKG +eDh +gRi ryU ryU ryU @@ -52392,8 +51630,8 @@ tgq ryU ryU ryU -gPv -gVn +qsp +pSd pxb pwa pwa @@ -52409,7 +51647,7 @@ wfP wfP wfP eYM -sRM +aXZ hTe eYM eYM @@ -52544,12 +51782,12 @@ she she jnr yiM -uiK -uur +mGC +pfJ yiM yiM -uiK -uur +mGC +pfJ yiM taj nJv @@ -52576,9 +51814,9 @@ ien pwa pxb pxb -lgY -udi -oKG +eDh +kqp +gRi ryU ryU ryU @@ -52596,9 +51834,9 @@ tgq ryU ryU ryU -gPv -udi -gVn +qsp +kqp +pSd pxb pxb pwa @@ -52615,7 +51853,7 @@ wfP wfP wfP eYM -sRM +aXZ pxG hTe eYM @@ -52784,9 +52022,9 @@ pwa pxb pxb pxb -lgY -udi -oKG +eDh +kqp +gRi ryU ryU uiM @@ -52800,9 +52038,9 @@ uiM uiM ryU ryU -gPv -udi -gVn +qsp +kqp +pSd pxb pxb pxb @@ -52821,7 +52059,7 @@ wfP wfP nxF eYM -sRM +aXZ hTe ixL eYM @@ -52992,8 +52230,8 @@ pxb pxb pxb pxb -lgY -oKG +eDh +gRi ryU ryU ryU @@ -53005,8 +52243,8 @@ pnj ryU ryU ryU -gPv -gVn +qsp +pSd pxb pxb pxb @@ -53027,8 +52265,8 @@ ivb wfP wfP eYM -vBm -qxk +eZC +bfJ hTe eYM cpy @@ -53199,9 +52437,9 @@ oiY pxb pxb pxb -lgY -udi -oKG +eDh +kqp +gRi uZc ryU ryU @@ -53209,9 +52447,9 @@ xcY ryU ryU uZc -gPv -udi -gVn +qsp +kqp +pSd pxb pxb pxb @@ -53234,7 +52472,7 @@ wfP jJF eYM eYM -sRM +aXZ hTe eYM cpy @@ -53407,15 +52645,15 @@ pxb pxb pxb pxb -lgY -udi -qDt +eDh +kqp +sMW ryU ryU ryU -taW -udi -gVn +iSC +kqp +pSd pxb pxb pxb @@ -53440,7 +52678,7 @@ wfP jJF xIK eYM -sRM +aXZ hTe eYM cpy @@ -53646,7 +52884,7 @@ wfP wfP jJF eYM -sRM +aXZ hTe eYM cpy @@ -53852,7 +53090,7 @@ wfP wfP jJF eYM -sRM +aXZ hTe eYM cpy @@ -53965,8 +53203,8 @@ nLm nLm bwy dBa -nOl -xpu +uro +wKX fEW jOr nLm @@ -54058,7 +53296,7 @@ wfP wfP rcR eYM -sRM +aXZ hTe eYM cpy @@ -54168,14 +53406,14 @@ clY sjY miW nLm -nWK -jfZ -jfZ -sWt -fgk -tHJ -jfZ -ftA +gPy +tNa +tNa +hrO +kzm +xXP +tNa +luu nLm rvI hJZ @@ -54264,7 +53502,7 @@ jJF wfP rcR eYM -sRM +aXZ hTe eYM cpy @@ -54440,13 +53678,13 @@ pxb pxb pxb pwa -rAu -umK -sCb +pdx +gag +hJI tfb -tMt -umK -uFp +cIc +gag +bei pwa pwa vtN @@ -54470,7 +53708,7 @@ ntT wfP wfP eYM -sRM +aXZ hTe eYM cpy @@ -54645,14 +53883,14 @@ cpy pxb pxb pxb -rAu -rOw +pdx +bHf tFx tFx xXO tFx tFx -uKY +nxk jZD jZD vGo @@ -54676,7 +53914,7 @@ eYM jCh eYM eYM -sRM +aXZ hTe eYM cpy @@ -54851,7 +54089,7 @@ pxb pxb pxb pwa -gej +kRM tFx tFx pQG @@ -54870,7 +54108,7 @@ yhU vAW tFx eYM -uEV +jwh sdN wfP jJF @@ -54882,7 +54120,7 @@ nSq wfP jJF vTQ -sRM +aXZ eYM eYM cpy @@ -55057,7 +54295,7 @@ pxb pxb pxb pwa -gej +kRM tFx ykU rzz @@ -55075,8 +54313,8 @@ yhU yhU ggS tFx -eZW -pET +hgI +mug wfP wfP wfP @@ -55088,7 +54326,7 @@ jJF wfP wfP vTQ -sRM +aXZ eYM cpy cpy @@ -55263,7 +54501,7 @@ pxb pxb pwa pwa -gej +kRM ymc gQy xni @@ -55294,7 +54532,7 @@ wfP wfP wfP uIF -sRM +aXZ eYM cpy cpy @@ -55469,7 +54707,7 @@ jZD jZD ien jZD -saL +iGt ymc muO yhU @@ -55477,8 +54715,8 @@ tfl tKS nEq vuu -uXu -vdP +poS +bLK vjC vuu vAW @@ -55487,8 +54725,8 @@ nEq ggS tVj tFx -cLB -kZq +brf +ujg jJF qVQ jJF @@ -55500,7 +54738,7 @@ wfP jJF jJF uIF -sRM +aXZ eYM cpy cpy @@ -55675,7 +54913,7 @@ fLF fLF ien fLF -gKg +gCP tFx vCE yhU @@ -55706,7 +54944,7 @@ wfP wfP wfP vTQ -sRM +aXZ eYM cpy cpy @@ -55881,7 +55119,7 @@ veQ veQ ien veQ -qLu +sbF aFf fDF tKS @@ -56087,7 +55325,7 @@ max max max max -ewn +gxZ aFf sjd rzz @@ -56293,7 +55531,7 @@ max max max max -ewn +gxZ tFx tFx sIE @@ -56321,9 +55559,9 @@ cpy cpy cpy eYM -iIa +gkz drd -uug +qWV eYM cpy cpy @@ -56499,15 +55737,15 @@ max max max max -seX -rYq +gXH +tXZ tFx rIM rIM rIM tFx -uOA -irR +akj +pHA xVV ofi ofi @@ -56527,9 +55765,9 @@ bPJ bPJ bPJ bPJ -aue +ick nZP -dnO +qms bPJ bPJ bPJ @@ -56615,14 +55853,14 @@ xtb jyf ydA ydA -njd -cWS -iYf +kkM +kFC +qlG ydA ydA ydA -njd -xWb +kkM +eUM nLm weR nLm @@ -56706,13 +55944,13 @@ max max max max -seX -szo -szo -szo -szo -szo -uTK +gXH +kuq +kuq +kuq +kuq +kuq +wjM xVV ofi ofi @@ -56728,10 +55966,10 @@ ofi ofi oAY bPJ -xVH -kEl -peM -jba +fBi +lnq +wEG +vIz bPJ edi pXv @@ -56823,11 +56061,11 @@ xyL xyL xtb nTv -kMi +jRX iiE iiE iiE -oYa +jMo nTv nLm sdM @@ -57140,10 +56378,10 @@ tZh ofi oAY bPJ -fYD -orA -ymf -sHd +gSB +tLi +aQW +hXx bPJ eeb nZP @@ -57357,7 +56595,7 @@ nZP nZP nZP nZP -hHe +oZK bPJ cpy bMX @@ -57563,7 +56801,7 @@ nZP nZP nZP pXv -hHe +oZK bPJ cpy bMX @@ -57769,7 +57007,7 @@ nZP nZP nZP enB -hiL +wXT bPJ cpy bMX @@ -57853,11 +57091,11 @@ uEC vSO xtb nTv -oTc +jDi iIw iIw iIw -ovT +oiq nTv nLm qxZ @@ -58058,13 +57296,13 @@ uEC uEC nVh xtb -vGb -wNo +hIi +jdi hhD hhD sKa -xXQ -gIc +lZo +wDo nLm nLm weR @@ -59005,7 +58243,7 @@ ygJ bPJ ica nZP -fvn +cor bPJ cpy bMX @@ -59209,9 +58447,9 @@ oAY bPJ bPJ bPJ -qKV +jun enB -hHe +oZK bPJ cpy bMX @@ -59415,9 +58653,9 @@ cfO xkJ bPJ bPJ -fCb +hkE enB -hHe +oZK bPJ cpy bMX @@ -59620,10 +58858,10 @@ max max oAY bPJ -oeN -rgS +xam +iGy nZP -hiL +wXT bPJ cpy bMX @@ -60238,8 +59476,8 @@ max max oAY bPJ -kHW -cJF +dTQ +uYZ nZP gkH bPJ @@ -60445,7 +59683,7 @@ oaW xkJ bPJ bPJ -aRB +rDz enB bPJ bPJ @@ -60651,7 +59889,7 @@ oAY bPJ bPJ bPJ -bLA +fgw enB nZP bPJ @@ -60859,7 +60097,7 @@ cpy bPJ nZP enB -fvn +cor bPJ cpy bMX @@ -61065,7 +60303,7 @@ cpy bPJ nZP uwe -hHe +oZK bPJ cpy bMX @@ -61243,8 +60481,8 @@ aPu cGw wIr wIr -jhY -kkq +joI +ojR uOd uOd kLO @@ -61256,8 +60494,8 @@ fTN lvl ndZ gBv -lul -jhY +ddB +joI wIr wIr xSA @@ -61271,7 +60509,7 @@ bPJ bPJ nZP nZP -hHe +oZK bPJ cpy bMX @@ -61450,7 +60688,7 @@ aPu tcE wIr wIr -dbP +ltN cbR cbR cbR @@ -61462,7 +60700,7 @@ cbR cbR cbR cbR -moe +sZD wIr wIr vDL @@ -62884,15 +62122,15 @@ oIu tOo wIr wIr -pXz -foR +skC +aYm spJ fTP -iyT -riZ +chH +hsa wIr wIr -sYv +fic ncg ncg ncg @@ -62904,7 +62142,7 @@ ncg ncg ncg ncg -mRh +tVx wIr wIr vDL @@ -62999,8 +62237,8 @@ xtb fIr fIr fIr -qfD -vLu +cfR +pnb wCC fjr fjr @@ -63088,17 +62326,17 @@ lyD mPr hFX bCy -iUX +fHX wIr wIr -hwa +sWW qTr clR -dne +eYd wIr wIr -jic -kHX +laF +lZB oIu oIu oIu @@ -63110,8 +62348,8 @@ oIu oIu oIu oIu -nlY -nRy +fIs +oNF wIr wIr epq @@ -63294,16 +62532,16 @@ mPr mPr hFX hFX -iVk -bYV +hDB +wLS wIr wIr bZV mpF wIr wIr -rZK -jig +iMV +oIf mPr mPr mPr @@ -63411,8 +62649,8 @@ kkc qDL nqy uLp -vlN -jBU +uqH +joX emH emH emH @@ -63736,9 +62974,9 @@ kOa jyM nax mnb -ouj +vMC abJ -pdp +kWO nZP nZP nZP @@ -63942,9 +63180,9 @@ tKB nax nax mnb -gmu +jwS nYU -geT +oEC nZP enB enB @@ -64148,9 +63386,9 @@ pCv nax mPr mnb -gmu +jwS abJ -tlB +mph nZP enB bPJ @@ -64269,14 +63507,14 @@ iqg wwX rqs pQE -vSN -hHh -cWT -cWT -cWT -cWT -cWT -kEZ +ovz +hgT +rbA +rbA +rbA +rbA +rbA +gxD yiM yiM lSq @@ -64354,9 +63592,9 @@ pCv nax mPr mnb -eDq +ggo abJ -gJr +wsm nZP nZP bPJ @@ -64482,8 +63720,8 @@ uKj fdZ lVp lVp -aHH -kEZ +xbm +gxD yiM lSq trZ @@ -64562,9 +63800,9 @@ yhR tOo bPJ abJ -pHi +kKV nZP -uIY +uHz bPJ cpy cpy @@ -64676,10 +63914,10 @@ wua wua sjy kfw -csv +dNM lkj lxL -otT +tRj ogK lVp lVp @@ -64689,7 +63927,7 @@ wGG xaM lVp lVp -jzu +pSF vXc wxB sKc @@ -64717,9 +63955,9 @@ jmG rMF rMF jmG -fRq +rSX six -fFF +ndK jmG rMF rMF @@ -64768,9 +64006,9 @@ jas jas jas ezu -qPL +xjX wfC -uzr +uqy bPJ cpy cpy @@ -64852,12 +64090,12 @@ oUq oUq oUq oUq -uQg -lPY +jFy +wcg mjs wvO wvO -wSr +qVP oUq oUq tvO @@ -64882,10 +64120,10 @@ jUg uVj sjy ogK -oud +aZZ dbQ lxL -nTD +xMa wIL lVp lWh @@ -64895,7 +64133,7 @@ awj cTz hVu lVp -jzu +pSF vXc vXc yiM @@ -64923,9 +64161,9 @@ jmG jmG jmG jmG -uSY +imz cqb -rgG +rGF jmG jmG jmG @@ -65063,7 +64301,7 @@ lQS mlE xBi xBi -jyw +uOW oUq oUq tvO @@ -65088,10 +64326,10 @@ jft xbj sjy mNR -xYx +jvq oLd wob -nTD +xMa izj lVp lWh @@ -65101,7 +64339,7 @@ xkr wSt gYX roL -jzu +pSF vXc gsP qtN @@ -65183,7 +64421,7 @@ sCi ezu wbo mfK -aLY +mNU jas ezu cpy @@ -65272,9 +64510,9 @@ xBi wTu wTu lqY -jBU +joX mGN -nKm +tKq sjy hOL ebn @@ -65294,10 +64532,10 @@ uqx sjy sjy izj -xYx +jvq oLd wob -nZd +kYw kfw lVp hyE @@ -65307,7 +64545,7 @@ owg jfO ogE rrV -jzu +pSF vXc uWD xkO @@ -65389,7 +64627,7 @@ wHz ezu wbo mfK -aLY +mNU uLv ezu cpy @@ -65478,9 +64716,9 @@ mEp xBi wTu oUq -jDy +wHv mJS -qbi +mEL sjy whz jpc @@ -65499,12 +64737,12 @@ leh xxs dzd sjy -ogX -asF +gfH +msN oLd wTr -tfi -tYx +umV +hNr lVp eDi wSt @@ -65513,7 +64751,7 @@ yca gXT gif isA -jzu +pSF vXc uWD xkO @@ -65539,13 +64777,13 @@ izz fwT ild jwM -qsr +uCP jmG wYe wiE qHj jmG -etN +wuw hOB vVS ild @@ -65595,8 +64833,8 @@ hrU ezu nQu gXy -pRY -jFP +flT +xjM ezu cpy cpy @@ -65719,7 +64957,7 @@ yca jfO uaH isA -jzu +pSF vXc uWD xkO @@ -65745,13 +64983,13 @@ ild ild ild jwM -pUR +gca jmG wly unC yhi jmG -hrl +yeO jwM uKS ild @@ -65802,7 +65040,7 @@ sQY nQu wbo ydO -aLY +mNU ezu cpy cpy @@ -65853,7 +65091,7 @@ wUp wUp wUp saC -equ +qOO wBR eLU wBR @@ -65925,7 +65163,7 @@ jfO gLg tZi lVp -jzu +pSF vXc uWD xkO @@ -65951,7 +65189,7 @@ ild ild ild ild -fPv +cel six wly unC @@ -66008,7 +65246,7 @@ ezu nQu nQu gXy -aLY +mNU ezu cpy cpy @@ -66059,7 +65297,7 @@ jfH ecK wUp wUp -eqD +dKD eGQ xZE saC @@ -66131,7 +65369,7 @@ wSt tjV nKk lVp -jzu +pSF vXc uWD xkO @@ -66157,7 +65395,7 @@ ldC ldC ldC ldC -iqw +hUh cxK jze grP @@ -66214,7 +65452,7 @@ ezu wbo nQu gXy -aLY +mNU ezu cpy cpy @@ -66337,7 +65575,7 @@ lNs jfO iqZ lVp -jzu +pSF vXc hxn eOE @@ -66363,13 +65601,13 @@ ild whE weM mbO -pum +jCZ jmG wYe qic yhi jmG -mFZ +egI ild ild ild @@ -66420,7 +65658,7 @@ ezu kNo nQu gXy -aLY +mNU ezu cpy cpy @@ -66543,7 +65781,7 @@ lNs yca uaH isA -jzu +pSF vXc yiM yiM @@ -66569,13 +65807,13 @@ jwM ild ild ild -tkm +auv jmG wly unC yhi jmG -wov +mng xDR xPa xNi @@ -66749,7 +65987,7 @@ eAC yca gYX isA -jzu +pSF vXc vXc yiM @@ -66777,9 +66015,9 @@ ild xJd jwM jmG -wZt +shl yhi -taw +tqZ jmG ild xDD @@ -66955,7 +66193,7 @@ eAC jfO gYX isA -jzu +pSF yiM vXc vXc @@ -66983,9 +66221,9 @@ ftK pMs jEW jmG -nnB +mFD fvN -ful +ngp jmG ild xDD @@ -67025,7 +66263,7 @@ jas jas fZS xcn -qSW +lxs pBn ozw vjr @@ -67161,7 +66399,7 @@ jfO jfO gYX isA -jzu +pSF yiM yiM vXc @@ -67208,16 +66446,16 @@ jmG xAR mPr hFX -iVU -jeD +lVn +tLf wIr wIr bZV mpF wIr wIr -jfK -jCQ +rSz +urI mPr mPr mPr @@ -67231,7 +66469,7 @@ jas dxY wQy uVw -xPg +bEx vpe eso jpx @@ -67367,7 +66605,7 @@ yca hLK uWz lVp -jzu +pSF vXc yiM yiM @@ -67414,16 +66652,16 @@ jmG xAR mPr tEu -iUX +fHX wIr wIr -pNJ +arv eMj xnp -tPa +jYH wIr wIr -jIQ +chh mcO mPr mPr @@ -67437,7 +66675,7 @@ eKc vpe vpe sVJ -bXZ +mmN fhl nQu vxf @@ -67573,7 +66811,7 @@ iCR pDA lVp lVp -eyc +tUv iPR iPR iPR @@ -67611,23 +66849,23 @@ ifB ptp jmG jmG -ycH -gQV -piY -piY -aDh +cgn +bJn +szQ +szQ +qcp jmG tOo yhR tOo wIr wIr -qsL -sHb +uvT +auL oqp qzQ -dAQ -tYt +mIB +xAx wIr wIr tyh @@ -67643,7 +66881,7 @@ lhI vpe vpe kpB -bXZ +mmN wwc vlp nDR @@ -67845,11 +67083,11 @@ mPr nax fki jas -kdi +kqS rqP rqP -vrW -cpx +ocl +kyp hNk vpe vpe @@ -67945,13 +67183,13 @@ uuW lfS vpO wwM -wcT -taO -taO -taO -taO -taO -nFc +bsR +qXU +qXU +qXU +qXU +qXU +hBa wwM mrD sjy @@ -68151,13 +67389,13 @@ uwn tQe vpO aVD -oLu +npm beB mQw mZW njF beB -mcC +oso vQL vpO sjy @@ -68357,13 +67595,13 @@ uwY uTv vpO mnX -mzX +vEY beB mSc mSc mSc beB -nFt +xeG vQL vpO kUM @@ -68563,13 +67801,13 @@ lxW lKC vpO moZ -eLN +fPG beB mSl mZX nly beB -mcC +oso vQL ojn ryv @@ -68769,13 +68007,13 @@ lfS wrC vqH mpQ -mAW -mHP -mHP -naC -nmX -nuL -nGc +buk +rtN +rtN +pyR +sby +fNb +jmB nuG uWh sjy @@ -69053,11 +68291,11 @@ xPK oTG jmG jmG -pjm -opQ -ydy -opQ -opQ +oLV +gCt +pyQ +gCt +gCt jmG xzK xxq @@ -69382,8 +68620,8 @@ spy qnS uRL qSH -qbu -rYi +jQt +pTo wrC bEk iIG @@ -69463,7 +68701,7 @@ spM jmG jmG jmG -lcD +bMT ild rdF ild @@ -69588,7 +68826,7 @@ nQQ qSH trV qSH -onj +lsa wKg wKg wKg @@ -69668,8 +68906,8 @@ yhi wiE woi jmG -eSy -wov +rur +mng ild iSF jwM @@ -69794,7 +69032,7 @@ jGa qSH trV qSH -ozQ +uFf wKg wKg vtl @@ -70412,7 +69650,7 @@ jOw qSH trV umR -prU +vYa wKg wKg xlI @@ -70618,7 +69856,7 @@ xZE qSH lsR umR -pul +hyb wKg wKg xjF @@ -70824,8 +70062,8 @@ kdx vGp trV umR -qbD -umg +mrf +lLp xjF xjF vtp @@ -71055,9 +70293,9 @@ uNB ulZ ulZ ulZ -mUG -ngK -mnz +qUY +iGX +aff jZc wIE ulZ @@ -71261,9 +70499,9 @@ uNB ulZ ulZ wIE -mVi +icC mxg -tAu +ehJ hre oTY ulZ @@ -71467,9 +70705,9 @@ uNB ulZ wIE eKm -pFF -qsU -kmF +wzQ +neQ +pWB wIE bWA ulZ @@ -71513,17 +70751,17 @@ pDU hRz vNk woi -pka -ofZ -pwu +ipz +ljm +vCi wly wiE -taw -aYQ -gJM +tqZ +rDU +ocL jmG -gND -jSB +cBz +hRJ jwM okA bbd @@ -71721,15 +70959,15 @@ vNk vNk vNk vNk -mFA +rMp eur cqb -rgG +rGF jmG jmG jmG jmG -rCM +gKO six jmG jmG @@ -72110,9 +71348,9 @@ cpy cpy cpy rnB -wzS -rfg -qtg +ojT +jXf +fxH rnB rnB rnB @@ -72316,9 +71554,9 @@ cpy cpy cpy rnB -plN +fSB pOa -jKb +yap tTD rnB rnB @@ -72522,9 +71760,9 @@ cpy cpy cpy rnB -rFh -rKe -rUg +evD +qYe +pQO tTD rnB rnB @@ -73321,9 +72559,9 @@ uNB fkj mtI mHU -mUG -ngK -mnz +qUY +iGX +aff bWd jHi fkj @@ -73527,9 +72765,9 @@ uNB gUi jHi fkj -mVi +icC mxg -tAu +ehJ mHU fkj fkj @@ -73733,9 +72971,9 @@ uNB fkj fkj mHU -pFF -qsU -kmF +wzQ +neQ +pWB fkj mtI fkj @@ -73910,9 +73148,9 @@ iJE gok rtX vGB -mTa -oqn -pdv +cJq +svQ +hLf fcW qSH qSH @@ -74116,9 +73354,9 @@ rtX iJE rtX vGB -ncz +xvy kKj -pgp +edE fcW qSH qSH @@ -74322,9 +73560,9 @@ rhh rtX xjU wDj -nff -oxT -pgG +qfQ +hoh +pQo fcW qSH vGp @@ -74446,9 +73684,9 @@ ctE ctE ctE jas -lYG +hRt nQu -hcO +ipu ezu cpy cpy @@ -74652,9 +73890,9 @@ ctE ctE ctE jas -uCo +ubM sid -glQ +tEJ ezu cpy cpy @@ -76568,14 +75806,14 @@ cpy cpy cpy cpy -fkW -fdS -fkW -fkW -fkW -fkW -fkW -haR +aRf +gzF +aRf +aRf +aRf +aRf +aRf +fPc ien ien xoj @@ -76774,15 +76012,15 @@ cpy cpy cpy ien -eXe -aHA -aHA -dqy -dqy -eJq -dqy -dqy -hmz +cDO +lBM +lBM +pvZ +pvZ +nEh +pvZ +pvZ +xNk ien cpy cpy @@ -76794,14 +76032,14 @@ jJO jJO jJO wDj -eyh -eyh -ltB -ltB -bBW -ltB -ltB -nQa +ucN +ucN +xTD +xTD +rcD +xTD +xTD +elm qSH qSH qSH @@ -76981,14 +76219,14 @@ ien ien ien ien -aHA -aHA -dqy -ggM -dqy -dqy -dqy -hmz +lBM +lBM +pvZ +amz +pvZ +pvZ +pvZ +xNk ien cpy cpy @@ -77007,8 +76245,8 @@ rJf qiG rJf dRL -guE -nQa +ajs +elm qSH qSH qSH @@ -77183,17 +76421,17 @@ cpy ien ien ien -kBK -kBK +dWU +dWU ien -aHA -aHA -aHA -dqy -dqy -dqy -dqy -dqy +lBM +lBM +lBM +pvZ +pvZ +pvZ +pvZ +pvZ ien ien ien @@ -77214,8 +76452,8 @@ qje qSj dRL dRL -guE -nQa +ajs +elm qSH qSH qSH @@ -77223,7 +76461,7 @@ vGp vGp cpy pZo -tWt +xtA tDS tDS thc @@ -77388,19 +76626,19 @@ cpy cpy cpy ien -xSN -kBK -aHA -ntN -aHA -aHA -dqy -dqy -dqy -dqy -dqy -aHA -aHA +lEr +dWU +lBM +uST +lBM +lBM +pvZ +pvZ +pvZ +pvZ +pvZ +lBM +lBM ien cpy dRL @@ -77421,15 +76659,15 @@ xCT rsl dRL dRL -guE -nQa +ajs +elm qSH qSH qSH vGp vGp pZo -onj +lsa tDS bTF lbK @@ -77445,7 +76683,7 @@ oHQ gqh oHQ dkh -xRz +dMk gdO vSV oyB @@ -77594,18 +76832,18 @@ cpy cpy cpy ien -aHA -aHA -aHA -ntN -aHA -dqy -dqy -dqy -ghr -dqy -dqy -aHA +lBM +lBM +lBM +uST +lBM +pvZ +pvZ +pvZ +hXo +pvZ +pvZ +lBM cpy ien cpy @@ -77628,14 +76866,14 @@ xCT rvw dRL dRL -fKf +cTq qSH qSH qSH vGp vGp pZo -onj +lsa svf prT qIu @@ -77646,12 +76884,12 @@ vZI sWr pVo mpr -mIV -wYU +vKH +vnn ixW lNm ixW -nPL +eZP gdO okE ozR @@ -77731,15 +76969,15 @@ dhH wQa wQa eXG -dkX -rBd -ewE +viu +leU +pfk hIf hIf hIf -iIQ -rBd -sfO +vuL +leU +qQa eXG wQa wQa @@ -77801,16 +77039,16 @@ cpy ien ien ien -aHA -aHA -ntN -dqy -dqy -dqy -dqy -dqy -dqy -aHA +lBM +lBM +uST +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +lBM cpy ien ien @@ -77834,14 +77072,14 @@ rsq xCT yfP rJf -fKf +cTq qSH qSH qSH qSH vGp pZo -onj +lsa fRk ibk gjF @@ -77852,7 +77090,7 @@ sWr sWr oMi muV -mJt +eUb tDS xaj wUx @@ -77935,9 +77173,9 @@ vDo tos dhH wQa -dkX -rBd -nPb +viu +leU +xat lfA rVR hIf @@ -77945,9 +77183,9 @@ rqn iGr iGr gRp -jGp -rBd -sfO +oSk +leU +qQa eXG eXG eXG @@ -78006,16 +77244,16 @@ cpy cpy cpy ien -kBK -aHA -aHA -ntN -dqy -dqy -dqy -dqy -dqy -aHA +dWU +lBM +lBM +uST +pvZ +pvZ +pvZ +pvZ +pvZ +lBM cpy cpy cpy @@ -78040,14 +77278,14 @@ xCT xCT yfP rJf -fKf +cTq qSH qSH qSH qSH vGp pZo -onj +lsa fRk prT orS @@ -78058,7 +77296,7 @@ wGY sWr xxU hag -fzl +rqH mKA sQb lOk @@ -78140,8 +77378,8 @@ wZz vDo tos dhH -dkX -nPb +viu +xat gRp iGr iGr @@ -78153,8 +77391,8 @@ lhE iGr iGr hIf -jGp -sfO +oSk +qQa eXG eXG eXG @@ -78212,17 +77450,17 @@ cpy cpy cpy ien -xSN -xSN -aHA +lEr +lEr +lBM ien -aHA -eXe -dqy -dqy -dqy -aHA -aHA +lBM +cDO +pvZ +pvZ +pvZ +lBM +lBM cpy cpy ien @@ -78246,14 +77484,14 @@ xCT xCT yfP rJf -fKf +cTq vGp qSH qSH qSH qSH pZo -onj +lsa fRk ibk qcd @@ -78313,10 +77551,10 @@ cUG cUG cUG cUG -izr +mYJ swF fzV -qqR +lUZ cUG iQR hMz @@ -78344,9 +77582,9 @@ ycc ycc wZz vDo -sbh -hhb -nPb +hVH +qCM +xat hIf jLk jMy @@ -78360,9 +77598,9 @@ kBj dIi vjF vjF -jGp -rBd -sfO +oSk +leU +qQa eXG eXG eXG @@ -78423,13 +77661,13 @@ ien ien ien ien -aHA -aHA -dqy -dqy -dqy -aHA -aHA +lBM +lBM +pvZ +pvZ +pvZ +lBM +lBM ien ien ien @@ -78452,14 +77690,14 @@ xCT hqp dRL dRL -fKf +cTq vGp vGp qSH qSH qSH umR -onj +lsa tDS jjt hAA @@ -78469,8 +77707,8 @@ rcd lHY mBc mpr -gZh -fzg +qaF +cQv eZK wWV oGF @@ -78517,12 +77755,12 @@ vfN ekR wsz tjh -bhD -joL -wbE +luP +lRl +pLK xRw uaI -eHB +ktg cUG xzK cpk @@ -78570,7 +77808,7 @@ aKn hIf rnq rnq -sfO +qQa eXG eXG eXG @@ -78624,18 +77862,18 @@ cpy cpy cpy ien -xSN -mee -aHA +lEr +oIx +lBM ien -aHA -aHA -dqy -dqy -dqy -dqy -dqy -aHA +lBM +lBM +pvZ +pvZ +pvZ +pvZ +pvZ +lBM cpy ien cpy @@ -78657,15 +77895,15 @@ rfk nKh dRL dRL -qYP -jKB +hMm +wUP vGp vGp qSH qSH qSH umR -onj +lsa svf rEc wWV @@ -78675,7 +77913,7 @@ tgj svo bqo sFf -mJt +eUb tDS pGN aKO @@ -78776,8 +78014,8 @@ qvA hIf hIf hIf -jGp -sfO +oSk +qQa eXG eXG eXG @@ -78830,19 +78068,19 @@ cpy cpy cpy ien -mee -aHA -aHA -aHA -aHA -dqy -dqy -dqy -dqy -dqy -dqy -dqy -aHA +oIx +lBM +lBM +lBM +lBM +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +lBM ien cpy dRL @@ -78862,8 +78100,8 @@ qQt rge dRL dRL -qYP -jKB +hMm +wUP vGp vGp vGp @@ -78871,7 +78109,7 @@ vGp qSH qSH umR -onj +lsa fRk ydV qIy @@ -78881,7 +78119,7 @@ bkt dsL iQL muV -wke +twK eZK hCq azK @@ -78983,8 +78221,8 @@ fPO ufR jVq hIf -jGp -sfO +oSk +qQa eXG eXG eXG @@ -79037,17 +78275,17 @@ cpy ien ien ien -ewe -dqy -dqy -dqy -dqy -dqy -dqy -dqy -dqy -dqy -aHA +pxZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +lBM ien ien gwC @@ -79067,8 +78305,8 @@ rJf qiG rJf dRL -pGY -jKB +dRW +wUP vGp vGp vGp @@ -79077,7 +78315,7 @@ vGp vGp qSH umR -onj +lsa svf ydV sWT @@ -79122,11 +78360,11 @@ cUG sKS tID tiM -uQf -fsz +woW +qni uya -uQf -vgb +woW +ndv xCY vDr vjn @@ -79190,7 +78428,7 @@ aiP xYA jYr gRp -aVa +kDa eXG eXG wQa @@ -79242,38 +78480,38 @@ cpy cpy cpy ien -eoH -dbs -dqy -dqy -dqy -dqy -dqy -dqy -dqy -dqy -dqy -dqy -dqy -dqy +rAJ +fUn +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ ien ien ien ien ien -fkW -fkW -fkW -fkW +aRf +aRf +aRf +aRf ien ien -whD -whD -whD -hFL -thi -dHz -jKB +mGy +mGy +mGy +cYb +wGf +ctR +wUP vGp vGp vGp @@ -79283,7 +78521,7 @@ vGp vGp qSH yaF -kJh +rMJ svf prT aaI @@ -79328,11 +78566,11 @@ cUG uIB tiM bVA -uQn -vPz +xyw +yhu ggp -uQn -vgw +xyw +bCG xPj vDr vjn @@ -79396,7 +78634,7 @@ xYA aIp kcR hIf -cDi +swj eXG wQa wQa @@ -79448,29 +78686,29 @@ cpy cpy cpy ien -aCJ -ewm -eIn -dqy -dqy -dqy -dqy -dqy -dqy -dqy -dqy -dqy -aHA -aHA -aHA -aHA -aHA +oQe +xFi +pQv +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +lBM +lBM +lBM +lBM +lBM ien -aHA -aHA -aHA -aHA -aHA +lBM +lBM +lBM +lBM +lBM ien lyP vGp @@ -79489,7 +78727,7 @@ lTV lTV xSv tWE -onj +lsa tDS ibk lKF @@ -79531,17 +78769,17 @@ tTD tTD kEo cUG -sLw -sXZ -qRH -vBK -nXC -sXZ -vBK -uQs -nKK +bmm +eyt +biu +uIw +gDR +eyt +uIw +xdu +cpc fzf -sHY +gMI wao jIA tID @@ -79567,14 +78805,14 @@ kcC uwT uwT uwT -gIr -fbS -fbS -fbS -fbS -fbS -lPq -lPq +lJC +rNo +rNo +rNo +rNo +rNo +hxu +hxu uzI sDz rVR @@ -79655,28 +78893,28 @@ cpy ien ien ien -ewp -dqy -dqy -dqy -dqy -dqy -dqy -dqy -dqy -dqy -aHA -aHA -aHA -aHA -aHA -aHA -aHA -aHA -aHA -aHA -aHA -aHA +rdC +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +lBM +lBM +lBM +lBM +lBM +lBM +lBM +lBM +lBM +lBM +lBM +lBM ien mbx vGp @@ -79691,11 +78929,11 @@ vGp vGp vGp vGp -mTa -oqn -pdv +cJq +svQ +hLf umR -onj +lsa jCW jAz gjF @@ -79747,7 +78985,7 @@ cSO kJO cSO aqH -vPz +yhu wao whW uaI @@ -79772,8 +79010,8 @@ uwT fWG uwT uwT -gIr -waQ +lJC +bRI snX snX vpp @@ -79860,28 +79098,28 @@ cpy cpy cpy ien -dqy -dqy -iVX -imF -imF -imF -imF -imF -imF -imF -imF -imF -dqy -eXV -hTg -dqy -imF -imF -imF -aHA -aHA -aHA +pvZ +pvZ +yfy +ina +ina +ina +ina +ina +ina +ina +ina +ina +pvZ +olO +uAn +pvZ +ina +ina +ina +lBM +lBM +lBM ien ien ien @@ -79897,12 +79135,12 @@ vGp vGp vGp vGp -ncz +xvy kKj -pgp +edE umR -gMG -sRu +nse +wPO hsA vgx rjP @@ -79953,7 +79191,7 @@ cSO vpD cSO cSO -hWz +uxj wao oVL mkW @@ -79978,7 +79216,7 @@ fWG cpy fWG uwT -ewf +nUn snX snX rRy @@ -80066,29 +79304,29 @@ cpy cpy cpy ien -dqy -dqy -inO -opp -opp -feS -feS -fFp -ghy -fFp -feS -feS -dqy -dqy -dqy -dqy -eJq -opp -opp -aHA -aHA -aHA -aHA +pvZ +pvZ +rNj +mSj +mSj +ygr +ygr +cUe +adm +cUe +ygr +ygr +pvZ +pvZ +pvZ +pvZ +nEh +mSj +mSj +lBM +lBM +lBM +lBM qBQ kyH fbA @@ -80103,12 +79341,12 @@ lyP vGp vGp vGp -nff -oxT -pgG +qfQ +hoh +pQo umR ikw -rrf +fQf tDS nku uqo @@ -80116,8 +79354,8 @@ gPp mqi mqi cCK -twq -mvd +pFY +lYw way way gdk @@ -80159,7 +79397,7 @@ vpD cSO cSO vpD -fEe +nqg wao vLO tMD @@ -80184,7 +79422,7 @@ cpy cpy fWG uwT -ewf +nUn vpp nat kow @@ -80273,28 +79511,28 @@ cpy ien ien ien -dqy -inO -opp -ycw -ycw -ycw -ycw -ycw -ycw -ycw -ycw -eJq -dqy -hTh -eXV -dqy -dqy -opp -dqy -dqy -aHA -aHA +pvZ +rNj +mSj +ujv +ujv +ujv +ujv +ujv +ujv +ujv +ujv +nEh +pvZ +hdx +olO +pvZ +pvZ +mSj +pvZ +pvZ +lBM +lBM rdq saY vGp @@ -80314,8 +79552,8 @@ qSH qSH umR eKe -fAq -evS +sNz +dlx tXd bCl tDS @@ -80365,7 +79603,7 @@ vpD cSO cSO ngd -omX +ryk wao pzj wzt @@ -80378,9 +79616,9 @@ qQe inA xjO hMz -lzV -hix -jix +esc +nCK +umm uwT uwT uwT @@ -80390,7 +79628,7 @@ cpy cpy cpy uwT -ewf +nUn vpp tlR rYT @@ -80478,28 +79716,28 @@ cpy cpy cpy ien -dqy -dqy -inO -eOe -ycw -feZ -feZ -dqy -feZ -feZ -feZ -hbj -feZ -feZ -dqy -dqy -dqy -dqy -dqy -dqy -dqy -aHA +pvZ +pvZ +rNj +evb +ujv +lTq +lTq +pvZ +lTq +lTq +lTq +mOZ +lTq +lTq +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +lBM ien ien ien @@ -80521,21 +79759,21 @@ qSH umR qSH eKe -aby -whD -dHz -whD -whD -whD -whD -whD -mmE -whD -whD -whD -whD -whD -umg +lRD +mGy +ctR +mGy +mGy +mGy +mGy +mGy +msJ +mGy +mGy +mGy +mGy +mGy +lLp gdO jhp sha @@ -80571,7 +79809,7 @@ cSO cSO sOA cSO -vPs +syF wao bka tID @@ -80584,9 +79822,9 @@ rfW inA xjO hMz -fac +dUO gKa -spW +gTZ uwT uwT uwT @@ -80596,7 +79834,7 @@ cpy cpy cpy uwT -ewf +nUn vpp mQm kow @@ -80684,29 +79922,29 @@ cpy cpy cpy ien -dqy -dqy -inO -eOe -eXO -feZ -fAx -fSR -fTO -ycw -ycw -ycw -ycw -feZ -dqy -dqy -dqy -dqy -dqy -dqy -dqy -dqy -aHA +pvZ +pvZ +rNj +evb +dnf +lTq +vkk +mdJ +mva +ujv +ujv +ujv +ujv +lTq +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +lBM ien rwo vGp @@ -80777,7 +80015,7 @@ cSO cSO vpD cSO -vPz +yhu cUG eDL uaI @@ -80790,9 +80028,9 @@ nmh lHL xjO hMz -nYQ -tOe -nVR +lWK +jsT +qrh uwT uwT fWG @@ -80802,7 +80040,7 @@ cpy cpy cpy uwT -ewf +nUn snX snX pWx @@ -80891,28 +80129,28 @@ cpy ien ien ien -dqy -inO -eOe -ycw -ffr -fAG -ycw -fCP -ycw -gVd -fBU -ycw -feZ -eJq -dqy -dqy -dqy -dqy -oyG -dqy -dqy -dqy +pvZ +rNj +evb +ujv +oxK +jcS +ujv +cij +ujv +lQG +mPs +ujv +lTq +nEh +pvZ +pvZ +pvZ +pvZ +qOx +pvZ +pvZ +pvZ ien jvo vGp @@ -81008,8 +80246,8 @@ cpy cpy tXW uwT -rTf -lum +twz +sLI snX snX vpp @@ -81018,7 +80256,7 @@ vpp vpp snX snX -oYO +dkx rVR gVf xYA @@ -81044,7 +80282,7 @@ xYA aIp kcR hIf -slq +xRS eXG eXG eXG @@ -81096,28 +80334,28 @@ cpy cpy cpy ien -nsL -exB -inO -eOe -ycw -fhY -fBP -fSX -ycw -ycw -gWg -hbH -ycw -feZ -ycw -dqy -dqy -eXV -dqy -oyG -dqy -dqy +oOd +gzg +rNj +evb +ujv +pjn +cvE +iUg +ujv +ujv +kiy +byx +ujv +lTq +ujv +pvZ +pvZ +olO +pvZ +qOx +pvZ +pvZ ien ien ien @@ -81131,15 +80369,15 @@ mZQ rpm vGp vGv -oQC -lzU -wsC +hMY +orf +foa ljA ljA ljA -sfI -lzU -gRD +ycD +orf +tNd qSH qSH vGp @@ -81215,16 +80453,16 @@ cpy tXW uwT uwT -rTf -tni -tni -tni -tni -tni -tni +twz +iJO +iJO +iJO +iJO +iJO +iJO cpy cpy -nDt +jkZ gRp xyC xYA @@ -81250,7 +80488,7 @@ aiP xYA wBx gRp -aVa +kDa eXG eXG eXG @@ -81302,29 +80540,29 @@ cpy cpy cpy ien -hRb -dqy -inO -eOn -ycw -fib -fBU -fTi -dqy -dqy -sBX -ycw -ycw -feZ -ycw -dqy -dqy -dqy -jEa -jMJ -dqy -dqy -dqy +viz +pvZ +rNj +tlm +ujv +yjN +mPs +aCw +pvZ +pvZ +cDU +ujv +ujv +lTq +ujv +pvZ +pvZ +pvZ +acv +eho +pvZ +pvZ +pvZ ien amc qSH @@ -81335,9 +80573,9 @@ qSH qSH rcr qSH -oQC -lzU -qnb +hMY +orf +aSG ljq ljA ljA @@ -81345,9 +80583,9 @@ lAn ljA ljA ljq -oAu -lzU -gRD +nLJ +orf +tNd qSH lyP vGp @@ -81430,8 +80668,8 @@ uwT cpy cpy cpy -iWN -jxD +bQm +jLo hIf sTR udA @@ -81455,8 +80693,8 @@ xsq res sTR hIf -sAt -svG +cEB +lxx eXG eXG cpy @@ -81509,28 +80747,28 @@ cpy ien ien ien -dqy -inO -eOn -ycw -feZ -fCE -fTO -dqy -gLK -dqy -ycw -ycw -feZ -ycw -ycw -dqy -dqy -jEk -dqy -dqy -dqy -dqy +pvZ +rNj +tlm +ujv +lTq +rQS +mva +pvZ +wHx +pvZ +ujv +ujv +lTq +ujv +ujv +pvZ +pvZ +heU +pvZ +pvZ +pvZ +pvZ ien poZ qSH @@ -81540,8 +80778,8 @@ qSH qSH qSH qSH -oQC -qnb +hMY +aSG ljA ljA vrd @@ -81553,8 +80791,8 @@ mqc vrd ljA iNs -oAu -gRD +nLJ +tNd qSH lyP vGp @@ -81637,8 +80875,8 @@ cpy cpy cpy cpy -iWN -jxD +bQm +jLo hIf hIf hIf @@ -81660,8 +80898,8 @@ oTL lId fdT fdT -sAt -svG +cEB +lxx eXG eXG eXG @@ -81714,28 +80952,28 @@ cpy cpy cpy ien -dqy -dqy -inO -eOe -ycw -fiA -fCN -fWD -ycw -fTi -ycw -ycw -ycw -hFu -hFu -hFu -hFu -dqy -jEF -dqy -dqy -dqy +pvZ +pvZ +rNj +evb +ujv +xRP +lVb +suy +ujv +aCw +ujv +ujv +ujv +wcH +wcH +wcH +wcH +pvZ +jbQ +pvZ +pvZ +pvZ ien ien ien @@ -81744,9 +80982,9 @@ qSH qSH qSH qSH -oQC -gRj -qnb +hMY +aQR +aSG ljA ljA xIv @@ -81760,9 +80998,9 @@ xIv kqT kbn hSs -oAu -lzU -gRD +nLJ +orf +tNd qSH vGp vGp @@ -81844,7 +81082,7 @@ cpy cpy cpy eXG -iWN +bQm rnq rnq rVR @@ -81866,7 +81104,7 @@ whG fdT rnq rnq -svG +lxx eXG eXG eXG @@ -81920,37 +81158,37 @@ cpy cpy cpy ien -dqy -dqy -inO -eOn -ycw -feZ -ycw -ycw -giF -ycw -fTO -ycw -hmD -hFS -ycw -ycw -ycw -dqy -dqy -eJq -dqy -dqy -dqy +pvZ +pvZ +rNj +tlm +ujv +lTq +ujv +ujv +tfg +ujv +mva +ujv +pqo +miG +ujv +ujv +ujv +pvZ +pvZ +nEh +pvZ +pvZ +pvZ ien fjk qSH tNQ qSH -oQC -lzU -qnb +hMY +orf +aSG ljA ljA ljA @@ -81968,9 +81206,9 @@ rJr kbn krH krH -oAu -lzU -gRD +nLJ +orf +tNd vGp vGp qSH @@ -82052,9 +81290,9 @@ eXG eXG eXG eXG -iWN -jru -jxD +bQm +kcr +jLo rVR rVR crM @@ -82068,9 +81306,9 @@ wDa wDa kXf iGr -sAt -jru -svG +cEB +kcr +lxx eXG eXG eXG @@ -82127,34 +81365,34 @@ cpy ien ien ien -dqy -inO +pvZ +rNj lsR -ycw -fkb -ycw -fDH -fTO -ycw -ycw -ycw -hmO -feZ -eXO -ycw -ycw -dqy -dqy -dqy -dqy -dqy -dqy +ujv +fRe +ujv +dAJ +mva +ujv +ujv +ujv +fZT +lTq +dnf +ujv +ujv +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ ien igg rMR qSH -oQC -qnb +hMY +aSG ljA ljA ljA @@ -82176,8 +81414,8 @@ wXQ krH krH krH -oAu -gRD +nLJ +tNd qSH qSH vGp @@ -82260,8 +81498,8 @@ cex cex wQa eXG -iWN -jxD +bQm +jLo rVR hIf hIf @@ -82273,8 +81511,8 @@ qvA hIf hIf hIf -sAt -svG +cEB +lxx eXG eXG eXG @@ -82332,34 +81570,34 @@ cpy cpy cpy ien -dqy -dqy -inO -eOe -ycw -feZ -ycw -ycw -fCE -ycw -ycw -giF -ycw -hGJ -ycw -ier -ycw -dqy -dqy -dqy -dqy -dqy +pvZ +pvZ +rNj +evb +ujv +lTq +ujv +ujv +rQS +ujv +ujv +tfg +ujv +uFQ +ujv +keV +ujv +pvZ +pvZ +pvZ +pvZ +pvZ ien ien ien rMR -oQC -qnb +hMY +aSG ljA ljA lAn @@ -82383,8 +81621,8 @@ lAn lAn krH krH -oAu -gRD +nLJ +tNd qSH vGp vGp @@ -82467,9 +81705,9 @@ wQa wQa cex cex -iWN -jru -jxD +bQm +kcr +jLo gRp hIf hIf @@ -82477,9 +81715,9 @@ eWR rVR hIf gRp -sAt -jru -svG +cEB +kcr +lxx eXG eXG eXG @@ -82538,33 +81776,33 @@ cpy cpy cpy ien -dqy -dqy -inO -eOe -ycw -feZ -fCP -ycw -ycw -gMc -ycw -ycw -ycw -hGU -ycw -ieW -ycw -dqy -dqy -exB -dqy -dqy -dqy -ntN +pvZ +pvZ +rNj +evb +ujv +lTq +cij +ujv +ujv +gSC +ujv +ujv +ujv +kpe +ujv +szm +ujv +pvZ +pvZ +gzg +pvZ +pvZ +pvZ +uST qSH qSH -oZN +hKN ljq ljA qUL @@ -82590,7 +81828,7 @@ aDs qUL krH aSR -ltf +bIT qSH vGp vGp @@ -82675,15 +81913,15 @@ wQa wQa wQa cex -iWN -jru -jxD +bQm +kcr +jLo rVR rVR rVR -sAt -jru -svG +cEB +kcr +lxx eXG eXG eXG @@ -82745,32 +81983,32 @@ cpy ien ien ien -dqy -inO -dqy -dqy -eXV -ycw -ycw -ycw -ycw -ycw -ycw -ycw -hHN -ycw -iff -ycw -dqy -eXV -dqy -dqy -dqy -dqy -ntN +pvZ +rNj +pvZ +pvZ +olO +ujv +ujv +ujv +ujv +ujv +ujv +ujv +uID +ujv +vlA +ujv +pvZ +olO +pvZ +pvZ +pvZ +pvZ +uST qSH qSH -pet +bKL ljA xIv qUL @@ -82796,7 +82034,7 @@ nPN qUL lAn krH -jaq +vZo vGp vGp lyP @@ -82883,11 +82121,11 @@ wQa wQa wQa cex -iWN -jru -jru -jru -svG +bQm +kcr +kcr +kcr +lxx eXG eXG eXG @@ -82950,30 +82188,30 @@ cpy cpy cpy ien -aHA -dqy -dqy -dqy -eJq -dqy -dqy -ycw -ycw -ycw -dqy -fTi -ycw -feZ -ycw -dqy -ycw -dqy -dqy -ghr -dqy -dqy -dqy -ntN +lBM +pvZ +pvZ +pvZ +nEh +pvZ +pvZ +ujv +ujv +ujv +pvZ +aCw +ujv +lTq +ujv +pvZ +ujv +pvZ +pvZ +hXo +pvZ +pvZ +pvZ +uST qSH qSH pFH @@ -83156,30 +82394,30 @@ cpy cpy cpy ien -aHA -aHA -dqy -dqy -dqy -dqy -dqy -ycw -ycw -ycw -ycw -fTO -hmO -feZ -ycw -ycw -ycw -dqy -dqy -dqy -dqy -dqy -dqy -ntN +lBM +lBM +pvZ +pvZ +pvZ +pvZ +pvZ +ujv +ujv +ujv +ujv +mva +fZT +lTq +ujv +ujv +ujv +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +uST qSH qSH pFH @@ -83363,29 +82601,29 @@ cpy ien ien ien -aHA -eIT -exB -dqy -dqy -dqy -ycw -gjm -ycw -ycw -ycw -hmD -hFu -hFu -hFu -hFu -dqy -dqy -dqy -dqy -dqy -dqy -ntN +lBM +num +gzg +pvZ +pvZ +pvZ +ujv +xFI +ujv +ujv +ujv +pqo +wcH +wcH +wcH +wcH +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +uST qSH qSH pFH @@ -83405,12 +82643,12 @@ dNx nHF dNx oeV -rtA -tbt +fqJ +iai qbP dpS -nPn -lVs +iFf +aPz bUy lAn krH @@ -83568,30 +82806,30 @@ cpy cpy cpy enG -aHA -ddd -dqy -dqy -dqy -dqy -ycw -ycw -gjV -giF -ycw -ycw -ycw -feZ -ycw -ycw -dqy -dqy -eXV -exB -dqy -dqy -dqy -ntN +lBM +hkg +pvZ +pvZ +pvZ +pvZ +ujv +ujv +rfj +tfg +ujv +ujv +ujv +lTq +ujv +ujv +pvZ +pvZ +olO +gzg +pvZ +pvZ +pvZ +uST qSH qSH pFH @@ -83774,28 +83012,28 @@ cpy cpy cpy ien -dTD -aHA -dqy -dqy -dqy -dqy -ycw -ycw -gjV -gMy -gXB -ycw -fTO -feZ -hTk -eXO -dqy -dqy -dqy -dqy -dqy -dqy +ydd +lBM +pvZ +pvZ +pvZ +pvZ +ujv +ujv +rfj +lFz +soh +ujv +mva +lTq +hOm +dnf +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ ien ien ien @@ -83817,12 +83055,12 @@ dNx dNx dNx ykj -wKH -rUS +gPh +vdK jAX goC -ifg -gOZ +fFt +ezE hZc lAn krH @@ -83981,28 +83219,28 @@ cpy ien ien ien -aHA -eJq -dqy -eXV -dqy -fDi -ycw -gmb -ycw -fTO -ycw -ycw -feZ -hmO -ycw -dqy -dqy -dqy -dqy -dqy -dqy -aHA +lBM +nEh +pvZ +olO +pvZ +anP +ujv +dAE +ujv +mva +ujv +ujv +lTq +fZT +ujv +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +lBM ien qSH qSH @@ -84186,29 +83424,29 @@ cpy cpy cpy ien -aHA -aHA -dqy -dqy -dqy -exB -fDn -fXs -fkb -feZ -feZ -dqy -feZ -feZ -hTo -fCP -dqy -dqy -dqy -oyG -dqy -aHA -aHA +lBM +lBM +pvZ +pvZ +pvZ +gzg +fIV +kCv +fRe +lTq +lTq +pvZ +lTq +lTq +gqX +cij +pvZ +pvZ +pvZ +qOx +pvZ +lBM +lBM ien qSH qSH @@ -84392,33 +83630,33 @@ cpy cpy cpy ien -aHA -aHA -dqy -opp -dqy -dqy -fDH -ycw -ycw -giF -ycw -dqy -ycw -ycw -ycw -ycw -eXV -dqy -opp -oyG -aHA -aHA +lBM +lBM +pvZ +mSj +pvZ +pvZ +dAJ +ujv +ujv +tfg +ujv +pvZ +ujv +ujv +ujv +ujv +olO +pvZ +mSj +qOx +lBM +lBM ien ien ien qSH -pVn +fkJ ljA xIv qUL @@ -84444,7 +83682,7 @@ dWv qUL lAn krH -keq +eRQ vGp cpy cpy @@ -84599,32 +83837,32 @@ cpy ien ien ien -aHA -dqy -opp -opp -dqy -fFp -fFp -gmt -gNe -fFp -hbN -fFp -hHY -ghy -fFp -dqy -opp -opp -oyG -aHA -aHA -aHA +lBM +pvZ +mSj +mSj +pvZ +cUe +cUe +pEq +kEG +cUe +lzC +cUe +jPU +adm +cUe +pvZ +mSj +mSj +qOx +lBM +lBM +lBM ien qSH qSH -oZN +hKN ljq iNs qUL @@ -84650,7 +83888,7 @@ qUL qUL krH aSR -ltf +bIT vGp cpy cpy @@ -84804,34 +84042,34 @@ cpy cpy cpy ien -kBK -dqy -dqy -dqy -dqy -dqy -dqy -fkW -gnd -gnd -gXE -fkW -fkW -dqy -aHA -fkW -fkW -fkW -fkW -jOh -aHA +dWU +pvZ +pvZ +pvZ +pvZ +pvZ +pvZ +aRf +uWa +uWa +smo +aRf +aRf +pvZ +lBM +aRf +aRf +aRf +aRf +eUj +lBM cpy cpy ien vGp qSH -pYN -qqG +esu +lhr kbn ljA lAn @@ -84855,8 +84093,8 @@ lAn lAn krH krH -mil -wYJ +qYr +obl vGp cpy cpy @@ -84970,7 +84208,7 @@ bMX bMX cpy abo -acJ +agt ajw abo cpy @@ -85010,26 +84248,26 @@ cpy cpy cpy ien -xSN -aHA -aHA -aHA -dqy -dqy -dqy -dqy -gnA -gnd -dqy -hcx -moC -dqy -dqy -aHA -aHA -aHA -aHA -aHA +lEr +lBM +lBM +lBM +pvZ +pvZ +pvZ +pvZ +bRO +uWa +pvZ +sPV +mwv +pvZ +pvZ +lBM +lBM +lBM +lBM +lBM cpy cpy ien @@ -85037,8 +84275,8 @@ ien ien vGp qSH -pYN -qqG +esu +lhr ljA ljA ljA @@ -85060,8 +84298,8 @@ wXQ krH krH krH -mil -wYJ +qYr +obl qSH vGp cpy @@ -85217,24 +84455,24 @@ cpy ien ien ien -xSN -aHA +lEr +lBM ien -aHA -dqy -aHA +lBM +pvZ +lBM cpy cpy cpy cpy -hcV -hnD -dqy -dqy -aHA -cxN -aHA -aHA +rYk +fMl +pvZ +pvZ +lBM +vkZ +lBM +lBM cpy cpy cpy @@ -85244,9 +84482,9 @@ oOe vGp qSH qSH -pYN -qXY -qqG +esu +hjm +lhr ljA ljA ljA @@ -85264,9 +84502,9 @@ mqc ljA krH krH -mil -qXY -wYJ +qYr +hjm +obl qSH qSH vGp @@ -85382,7 +84620,7 @@ bMX bMX cpy abo -adI +sRO ajM abo cpy @@ -85427,18 +84665,18 @@ ien ien ien ien -aHA +lBM cpy cpy cpy cpy cpy cpy -cxN -dqy -dqy -dqy -aHA +vkZ +pvZ +pvZ +pvZ +lBM cpy cpy cpy @@ -85452,9 +84690,9 @@ lyP qSH qSH qSH -pYN -qXY -qqG +esu +hjm +lhr ljA ljA xIv @@ -85468,9 +84706,9 @@ xIv kVh ljA ljA -mil -qXY -wYJ +qYr +hjm +obl qSH qSH qSH @@ -85588,7 +84826,7 @@ bMX bMX cpy abo -adN +etZ akk abo abo @@ -85642,8 +84880,8 @@ cpy cpy cpy cpy -dqy -dqy +pvZ +pvZ cpy cpy cpy @@ -85660,8 +84898,8 @@ qSH qSH qSH qSH -pYN -qqG +esu +lhr ljA ljA ljA @@ -85673,8 +84911,8 @@ mqc ljA ljA ljA -mil -wYJ +qYr +obl qSH qSH qSH @@ -85794,7 +85032,7 @@ bMX bMX cpy abo -adN +etZ ajM ann abo @@ -85867,9 +85105,9 @@ qSH qSH qSH qSH -pYN -qXY -qqG +esu +hjm +lhr ljq ljA ljA @@ -85877,9 +85115,9 @@ lAn ljA ljA ljq -mil -qXY -wYJ +qYr +hjm +obl qSH qSH qSH @@ -86000,7 +85238,7 @@ bMX bMX cpy cpy -adN +etZ akl apS arP @@ -86075,15 +85313,15 @@ vGp vGp qSH qSH -pYN -qXY -xpH +esu +hjm +aFd ljA ljA ljA -qzE -qXY -wYJ +vUr +hjm +obl qSH qSH qSH diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm index 14a0d7f584a7..dfce3d726bb3 100644 --- a/maps/map_files/LV624/LV624.dmm +++ b/maps/map_files/LV624/LV624.dmm @@ -811,16 +811,6 @@ /obj/structure/fence, /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) -"aep" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/lv624/ground/caves/sand_temple) -"aeq" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "aer" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -934,21 +924,6 @@ /obj/structure/cargo_container/wy/right, /turf/open/floor, /area/lv624/ground/barrens/containers) -"afi" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) -"afj" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "afk" = ( /obj/item/ammo_casing, /turf/open/gm/dirt, @@ -965,12 +940,6 @@ /obj/structure/cargo_container/ferret/right, /turf/open/floor, /area/lv624/ground/barrens/containers) -"afq" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/caves/sand_temple) "afr" = ( /obj/structure/ore_box, /obj/structure/fence, @@ -4453,10 +4422,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"aAd" = ( -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/caves/sand_temple) "aAh" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/warnplate/west, @@ -8714,14 +8679,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) -"aVd" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/platform, -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/lazarus/engineering) "aVe" = ( /turf/open/floor/plating/warnplate/east, /area/lv624/lazarus/engineering) @@ -8743,19 +8700,6 @@ /obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating/warnplate/east, /area/lv624/lazarus/engineering) -"aVj" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - locked = 1; - name = "\improper Engineering Dome SMES"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/delivery, -/area/lv624/lazarus/engineering) "aVk" = ( /obj/structure/sign/safety/maint, /obj/structure/fence, @@ -8847,21 +8791,6 @@ }, /turf/open/floor/dark, /area/lv624/lazarus/engineering) -"aVG" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/obj/item/clothing/head/hardhat/orange, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "aVH" = ( /obj/structure/machinery/light{ dir = 1 @@ -8981,14 +8910,6 @@ }, /turf/open/floor/delivery, /area/lv624/lazarus/engineering) -"aWg" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/platform, -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/lazarus/engineering) "aWh" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, @@ -9107,27 +9028,6 @@ /obj/structure/machinery/light, /turf/open/floor/dark, /area/lv624/lazarus/engineering) -"aWG" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) -"aWH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder, -/obj/item/device/assembly/signaller, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "aWI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight, @@ -9224,16 +9124,6 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"aXa" = ( -/obj/structure/machinery/light, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "aXc" = ( /obj/structure/surface/table, /turf/open/floor/bluecorner, @@ -10242,6 +10132,10 @@ "bwk" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_barrens) +"bwq" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/gm/dirt, +/area/lv624/lazarus/landing_zones/lz2) "bwR" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -10359,12 +10253,6 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/medbay) -"bIO" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/coast/beachcorner/north_east, -/area/lv624/ground/caves/sand_temple) "bJe" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/brown/northwest, @@ -10420,12 +10308,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"bOg" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "bOm" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ light_on = 1; @@ -10525,6 +10407,10 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"bXU" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/lv624/ground/caves/sand_temple) "bZb" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -10567,6 +10453,10 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"cdB" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "cdF" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-centralcaves" @@ -10636,6 +10526,15 @@ /obj/structure/girder/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/secure_storage) +"cib" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "cij" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -10783,15 +10682,6 @@ /obj/structure/foamed_metal, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_central_jungle) -"cyP" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "czq" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/auto_turf/strata_grass/layer1, @@ -10917,6 +10807,10 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"cJY" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/dirtgrassborder/east, +/area/lv624/ground/caves/sand_temple) "cKj" = ( /obj/effect/landmark/yautja_teleport, /turf/open/gm/grass/grass1, @@ -10981,15 +10875,6 @@ /obj/item/device/multitool, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) -"cQX" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "cRm" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/mineral/sandstone/runed/decor, @@ -11122,10 +11007,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"dkq" = ( -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/landing_zones/lz2) "dkN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/rock/brown, @@ -11216,10 +11097,23 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"dtZ" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "dvf" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"dvA" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "dvF" = ( /obj/structure/flora/bush/ausbushes/pointybush, /obj/structure/flora/jungle/vines/heavy, @@ -11232,17 +11126,6 @@ }, /turf/open/floor/whiteyellow/southeast, /area/lv624/lazarus/corporate_dome) -"dws" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) "dwt" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -11487,6 +11370,15 @@ /obj/effect/landmark/queen_spawn, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"dSb" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "dTm" = ( /turf/open/gm/dirt/desert1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -11526,10 +11418,6 @@ /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 @@ -11617,6 +11505,11 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"efJ" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "efX" = ( /turf/open/gm/coast/east, /area/lv624/ground/river/east_river) @@ -11676,12 +11569,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"ekJ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "elm" = ( /obj/structure/machinery/vending/hydroseeds, /obj/structure/machinery/light{ @@ -11698,13 +11585,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"elO" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "enn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -11823,17 +11703,6 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) -"ezC" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "eAr" = ( /obj/structure/showcase{ color = "#95948B"; @@ -11905,6 +11774,15 @@ "eGD" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"eHl" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "eHm" = ( /obj/structure/bed, /obj/effect/decal/cleanable/blood, @@ -11919,6 +11797,10 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"eHw" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "eHQ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/north_west_jungle) @@ -11951,6 +11833,17 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) +"eOJ" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + locked = 1; + name = "\improper Engineering Dome SMES"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "ePp" = ( /turf/open/gm/dirt/desert3, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -11973,6 +11866,10 @@ "eQL" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) +"eSb" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/coast/north, +/area/lv624/ground/caves/sand_temple) "eSg" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -12009,6 +11906,10 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, /area/lv624/ground/river/east_river) +"eYQ" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/caves/sand_temple) "eZg" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -12052,6 +11953,14 @@ "fdl" = ( /turf/open/floor, /area/lv624/lazarus/hydroponics) +"fdr" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/engineering) "fem" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -12078,17 +11987,15 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"fhs" = ( +"fhC" = ( /obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; + color = "#6b675e"; + dir = 6; icon_state = "p_stair_full" }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "fhJ" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/barrens/south_eastern_barrens) @@ -12172,6 +12079,10 @@ /obj/structure/machinery/power/apc/no_power/south, /turf/open/floor/asteroidwarning/east, /area/lv624/ground/colony/telecomm/sw_lz2) +"fqS" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/sand_temple) "frV" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -12207,17 +12118,27 @@ "fuY" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) -"fvt" = ( +"fvx" = ( +/obj/structure/platform_decoration/metal/almayer/north, /obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/engineering) +"fxh" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/lv624/ground/caves/sand_temple) +"fxZ" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, +/obj/structure/platform_decoration/stone/runed_sandstone/west, /turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) +/area/lv624/ground/barrens/south_eastern_barrens) "fyA" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -12265,6 +12186,15 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"fDo" = ( +/obj/structure/platform/stone/runed_sandstone, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "fDq" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -12374,6 +12304,10 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"fLk" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "fMa" = ( /obj/item/prop/alien/hugger, /turf/open/floor/dark, @@ -12402,6 +12336,10 @@ "fPH" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_central_jungle) +"fPJ" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "fQx" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -12410,6 +12348,15 @@ }, /turf/open/floor/dark, /area/lv624/lazarus/engineering) +"fQD" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "fQL" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/west_river) @@ -12421,6 +12368,11 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"fSA" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/lv624/ground/barrens/south_eastern_barrens) "fSX" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) @@ -12485,6 +12437,14 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) +"gch" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder, +/obj/item/device/assembly/signaller, +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "gcn" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, @@ -12651,6 +12611,11 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"gtW" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "guQ" = ( /obj/effect/landmark/nightmare{ insert_tag = "cargospecial2" @@ -12757,10 +12722,19 @@ }, /turf/open/floor/white, /area/lv624/lazarus/corporate_dome) +"gFk" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/coast/beachcorner2/south_east, +/area/lv624/ground/caves/sand_temple) "gFm" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) +"gFO" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/coast/beachcorner/north_east, +/area/lv624/ground/caves/sand_temple) "gGd" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -12772,24 +12746,12 @@ "gKg" = ( /turf/open/floor/plating/warnplate/northeast, /area/lv624/lazarus/engineering) -"gKN" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "gMe" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-rightsidepass" }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"gNo" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "gPu" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 @@ -12802,6 +12764,15 @@ "gQr" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/caves/sand_temple) +"gRh" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "gRk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -12824,6 +12795,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"gTm" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/lv624/ground/caves/sand_temple) "gTu" = ( /obj/structure/filingcabinet{ density = 0; @@ -12844,12 +12819,6 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"gTM" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "gUq" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_east_jungle) @@ -13029,15 +12998,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"hke" = ( -/obj/structure/platform/mineral/sandstone/runed, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "hkT" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -13262,6 +13222,10 @@ "hLu" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_central_jungle) +"hLB" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "hMd" = ( /obj/effect/landmark/objective_landmark/far, /turf/open/floor/whiteyellowfull/east, @@ -13284,10 +13248,6 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"hNq" = ( -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "hNR" = ( /obj/structure/surface/rack, /obj/item/clothing/under/colonist, @@ -13395,6 +13355,15 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"hYx" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "hZg" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -13614,15 +13583,14 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_nexus_road) -"iwl" = ( +"iyd" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; - dir = 6; + dir = 5; icon_state = "p_stair_full" }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform/stone/runed_sandstone/west, /turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "iye" = ( @@ -13659,6 +13627,15 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"iAv" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "iAA" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -13727,10 +13704,6 @@ "iJJ" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"iJK" = ( -/obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/floor/plating/asteroidwarning/west, -/area/lv624/lazarus/landing_zones/lz2) "iKp" = ( /obj/structure/surface/rack, /turf/open/shuttle/bright_red, @@ -13753,6 +13726,10 @@ /obj/structure/ore_box, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) +"iNF" = ( +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "iNJ" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, @@ -13769,6 +13746,10 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"iPw" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/grass/grass1, +/area/lv624/ground/caves/sand_temple) "iPB" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -13896,12 +13877,6 @@ "jeL" = ( /turf/closed/wall/r_wall, /area/lv624/ground/caves/north_central_caves) -"jfN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "jga" = ( /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) @@ -14011,20 +13986,26 @@ /obj/structure/cargo_container/lockmart/mid, /turf/open/floor, /area/lv624/ground/barrens/containers) +"jvr" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "jvQ" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"jwW" = ( -/obj/structure/platform_decoration, +"jvV" = ( /obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/floor/plating/warnplate/southeast, -/area/lv624/lazarus/engineering) +/obj/structure/platform/stone/stair_cut/runed_sandstone_left, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "jxw" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -14075,18 +14056,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"jAK" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) "jBl" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 @@ -14175,6 +14144,10 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/west_central_jungle) +"jKI" = ( +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/caves/sand_temple) "jKX" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -14221,17 +14194,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"jMH" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/shuttle/red, -/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, @@ -14403,6 +14365,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"kfq" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "kft" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, @@ -14635,6 +14601,15 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_west_jungle) +"kBJ" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "kCD" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, @@ -14718,12 +14693,6 @@ /obj/structure/fence, /turf/open/floor/warning/east, /area/lv624/ground/barrens/east_barrens) -"kPU" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "kPY" = ( /obj/structure/surface/table, /obj/item/trash/plate, @@ -14817,17 +14786,6 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"kZs" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "kZw" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -14860,6 +14818,15 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) +"lde" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "ldi" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -14942,6 +14909,14 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/south_east_jungle) +"loA" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/engineering) "loP" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 @@ -14963,17 +14938,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"lse" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "lsq" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/plantbot1, @@ -15037,6 +15001,11 @@ }, /turf/open/floor/dark, /area/lv624/lazarus/engineering) +"lAv" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/lv624/ground/caves/sand_temple) "lAX" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, @@ -15101,6 +15070,10 @@ /obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating/warnplate, /area/lv624/lazarus/engineering) +"lHG" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "lHL" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, @@ -15292,15 +15265,6 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"lWw" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "lWO" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_west_jungle) @@ -15382,6 +15346,15 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"mft" = ( +/obj/structure/machinery/light, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "mfu" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -15410,6 +15383,11 @@ }, /turf/open/floor/dark, /area/lv624/lazarus/corporate_dome) +"mhc" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "mhZ" = ( /turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) @@ -15458,13 +15436,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"mkZ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/foamed_metal, -/turf/open/floor/dark, -/area/lv624/lazarus/engineering) "mmu" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -15489,6 +15460,10 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"mpc" = ( +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/floor/plating/asteroidwarning, +/area/lv624/lazarus/landing_zones/lz2) "mph" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -15497,10 +15472,6 @@ }, /turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) -"mpW" = ( -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/gm/dirt, -/area/lv624/lazarus/landing_zones/lz2) "mqf" = ( /obj/item/tool/wrench, /turf/open/floor/plating, @@ -15558,6 +15529,15 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"mww" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/stone/stair_cut/runed_sandstone_right, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "mwB" = ( /obj/structure/machinery/atm{ name = "Weyland-Yutani Automatic Teller Machine"; @@ -15643,6 +15623,15 @@ "mJB" = ( /turf/open/floor/whiteyellowcorner/north, /area/lv624/lazarus/corporate_dome) +"mJC" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "mJF" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, @@ -15727,6 +15716,11 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"mTK" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "mUH" = ( /turf/open/gm/dirtgrassborder/desert0, /area/lv624/ground/barrens/south_eastern_barrens) @@ -15734,12 +15728,6 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"mUZ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/coast/north, -/area/lv624/ground/caves/sand_temple) "mVg" = ( /obj/item/weapon/harpoon/yautja{ anchored = 1; @@ -15828,10 +15816,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"nfi" = ( -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/gm/dirt, -/area/lv624/lazarus/landing_zones/lz2) "nfD" = ( /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, @@ -15840,12 +15824,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) -"nfX" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/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, @@ -15903,9 +15881,22 @@ "nnL" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/barrens/east_barrens) +"noO" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "npf" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/jungle/west_jungle) +"npt" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "npQ" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/ppflowers, @@ -15962,17 +15953,6 @@ }, /turf/open/gm/dirt, /area/lv624/lazarus/landing_zones/lz2) -"nsF" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) "ntr" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/north_east_barrens) @@ -16025,16 +16005,6 @@ /obj/item/bananapeel, /turf/open/gm/dirt, /area/lv624/lazarus/landing_zones/lz2) -"nwR" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/warnplate/southwest, -/area/lv624/lazarus/engineering) "nxe" = ( /obj/structure/surface/table/woodentable/poor, /obj/structure/machinery/microwave{ @@ -16095,12 +16065,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"nEr" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "nED" = ( /obj/item/weapon/unathiknife{ desc = "A curved blade made of a strange material. It looks both old and very sharp."; @@ -16278,6 +16242,10 @@ /obj/structure/curtain/red, /turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) +"nTT" = ( +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/lv624/ground/caves/sand_temple) "nUs" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -16317,33 +16285,10 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"nVZ" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/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"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) "nWJ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, @@ -16392,13 +16337,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/white, /area/lv624/lazarus/corporate_dome) -"ocL" = ( -/obj/effect/landmark/lv624/fog_blocker, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/coast/beachcorner/north_east, -/area/lv624/ground/river/east_river) "odw" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 @@ -16644,12 +16582,6 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"oDY" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/coast/north, -/area/lv624/ground/caves/sand_temple) "oEc" = ( /obj/item/ammo_casing/bullet{ icon_state = "cartridge_6_1" @@ -16690,23 +16622,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"oFO" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) -"oGj" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "oGr" = ( /turf/open/gm/dirt/desert3, /area/lv624/ground/barrens/south_eastern_barrens) @@ -16788,6 +16703,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"oQU" = ( +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "oRH" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_east_jungle) @@ -16858,6 +16777,10 @@ "oVM" = ( /turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) +"oVR" = ( +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/gm/dirt, +/area/lv624/lazarus/landing_zones/lz2) "oWN" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, @@ -16953,13 +16876,6 @@ /obj/item/weapon/twohanded/fireaxe, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"pfK" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/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, @@ -16987,6 +16903,10 @@ "pjk" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/river/east_river) +"pjw" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "pjY" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -17035,6 +16955,10 @@ }, /turf/open/floor/white, /area/lv624/lazarus/corporate_dome) +"poE" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "poX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -17132,6 +17056,21 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/dark, /area/lv624/lazarus/comms) +"pAr" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/obj/item/clothing/head/hardhat/orange, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "pAE" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, @@ -17229,10 +17168,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/west_nexus_road) -"pIz" = ( -/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, @@ -17294,6 +17229,11 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) +"pNG" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/coast/beachcorner/north_east, +/area/lv624/ground/river/east_river) "pOC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_west_jungle) @@ -17398,6 +17338,10 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"pXR" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "pYp" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, @@ -17420,15 +17364,13 @@ /obj/item/clothing/mask/gas, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"qap" = ( -/obj/structure/machinery/light, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +"qae" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, -/obj/structure/platform, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) "qaE" = ( /obj/effect/landmark/hunter_primary, /obj/effect/landmark/queen_spawn, @@ -17490,6 +17432,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"qgt" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/landing_zones/lz2) "qgA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_east_jungle) @@ -17522,10 +17468,6 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"qnh" = ( -/obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/floor/plating, -/area/lv624/lazarus/landing_zones/lz2) "qns" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, @@ -17553,12 +17495,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"qsM" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/lv624/ground/caves/sand_temple) "qtj" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_central_jungle) @@ -17625,10 +17561,6 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"qAc" = ( -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "qAf" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ desc = "The oranges aren't done yet... this sucks."; @@ -17650,17 +17582,6 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"qBQ" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "qBW" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_west_jungle/ceiling) @@ -17785,18 +17706,6 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"qPO" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/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, @@ -17841,10 +17750,6 @@ /obj/item/ammo_magazine/smg/mp5, /turf/open/floor/whiteblue/west, /area/lv624/lazarus/corporate_dome) -"qUL" = ( -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/floor/plating/asteroidwarning, -/area/lv624/lazarus/landing_zones/lz2) "qUM" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/west_central_jungle) @@ -17918,6 +17823,15 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"rbw" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/stone/stair_cut/runed_sandstone_right, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "rby" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -18259,6 +18173,10 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) +"rKf" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) "rKQ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -18309,12 +18227,6 @@ }, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"rQu" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "rRE" = ( /obj/item/tool/minihoe{ pixel_x = 1; @@ -18370,16 +18282,19 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"rYA" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "rYI" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/gm/river, /area/lv624/ground/caves/west_caves) +"rZK" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "rZL" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/mar40, @@ -18404,6 +18319,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"scu" = ( +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "sdh" = ( /obj/structure/barricade/sandbags/wired, /turf/open/floor/wood, @@ -18462,6 +18381,14 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) +"siY" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/engineering) "slW" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed/decor, @@ -18469,12 +18396,6 @@ "smx" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/west_central_jungle) -"smE" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "snc" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ light_on = 1; @@ -18536,17 +18457,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"sqR" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/caves/sand_temple) "srn" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 @@ -18580,6 +18490,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/lv624/lazarus/engineering) +"swt" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "swR" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -18604,6 +18518,10 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"sxJ" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "sxY" = ( /obj/structure/surface/rack, /obj/item/moneybag, @@ -18638,10 +18556,6 @@ }, /turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/corporate_dome) -"sBp" = ( -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/floor/plating/asteroidfloor/north, -/area/lv624/lazarus/landing_zones/lz2) "sBC" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -18653,17 +18567,6 @@ "sBY" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"sCg" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) "sCx" = ( /obj/item/clothing/head/welding, /obj/effect/decal/cleanable/dirt, @@ -18682,6 +18585,10 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"sDV" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "sET" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -18731,17 +18638,6 @@ /obj/effect/decal/remains/xeno, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/south_east_caves) -"sIM" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "sJM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/gm/dirt, @@ -18801,6 +18697,15 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"sPq" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "sPy" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -18809,6 +18714,15 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"sPU" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "sRH" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, @@ -19074,6 +18988,10 @@ "tnY" = ( /turf/open/gm/dirt/desert3, /area/lv624/ground/caves/west_caves) +"tob" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/lv624/ground/caves/sand_temple) "toz" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -19099,6 +19017,10 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"tqh" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "tqH" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -19111,17 +19033,6 @@ /obj/item/tool/shovel, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"trJ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "tsa" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_central_jungle) @@ -19151,6 +19062,24 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) +"tur" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"tut" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "tuJ" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ light_on = 1; @@ -19173,13 +19102,6 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"twz" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/floor/plating, -/area/lv624/lazarus/landing_zones/lz2) "twC" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/barrens/east_barrens) @@ -19207,12 +19129,6 @@ "tzo" = ( /turf/open/gm/dirt/desert_dug, /area/lv624/ground/barrens/central_barrens) -"tzB" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/lv624/ground/caves/sand_temple) "tzK" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, @@ -19232,17 +19148,6 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"tDa" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/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, @@ -19268,6 +19173,16 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/whiteblue/west, /area/lv624/lazarus/medbay) +"tIw" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/stone/stair_cut/runed_sandstone_left, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "tIZ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, @@ -19331,15 +19246,6 @@ /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"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) "tMP" = ( /obj/structure/window_frame/colony, /turf/open/floor/plating, @@ -19491,12 +19397,6 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"udj" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "udM" = ( /obj/effect/landmark/good_item, /turf/open/floor/dark, @@ -19504,6 +19404,10 @@ "udP" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) +"udZ" = ( +/obj/structure/platform/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "ueZ" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -19639,10 +19543,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"upp" = ( -/obj/structure/platform_decoration, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "upM" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, @@ -19681,6 +19581,16 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) +"uta" = ( +/obj/structure/machinery/light, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "uuf" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -19988,6 +19898,15 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"vcI" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "vcY" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -20023,31 +19942,10 @@ }, /turf/open/floor/white, /area/lv624/lazarus/corporate_dome) -"ver" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/caves/sand_temple) -"vft" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt/desert_dug, -/area/lv624/ground/caves/sand_temple) "vfR" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"vgJ" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "vgM" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, @@ -20069,10 +19967,6 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"viY" = ( -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/gm/dirtgrassborder/west, -/area/lv624/lazarus/landing_zones/lz2) "vjH" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -20136,15 +20030,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"vpu" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "vqT" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) @@ -20171,12 +20056,6 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"vvs" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/lv624/ground/caves/sand_temple) "vvE" = ( /obj/structure/machinery/vending/cola, /obj/structure/machinery/light{ @@ -20228,12 +20107,10 @@ "vBe" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) -"vBu" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) +"vBg" = ( +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/gm/dirtgrassborder/west, +/area/lv624/lazarus/landing_zones/lz2) "vBQ" = ( /obj/structure/largecrate, /turf/open/floor/bot/north, @@ -20244,6 +20121,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"vDc" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "vDy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/barrens/south_eastern_barrens) @@ -20315,9 +20202,22 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"vLF" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "vLO" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/lazarus/quartstorage/outdoors) +"vMA" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "vMC" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 @@ -20359,6 +20259,10 @@ "vOF" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_central_jungle) +"vOG" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "vPo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -20386,6 +20290,10 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) +"vRR" = ( +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/gm/grass/grass1, +/area/lv624/lazarus/landing_zones/lz2) "vSG" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, @@ -20481,12 +20389,6 @@ }, /turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) -"wcj" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "wcK" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, @@ -20498,13 +20400,6 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"wcW" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/coast/beachcorner2/south_east, -/area/lv624/ground/caves/sand_temple) "weB" = ( /obj/item/stack/rods/plasteel, /turf/open/floor/greengrid, @@ -20517,13 +20412,6 @@ /obj/item/stack/rods, /turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/secure_storage) -"wgk" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/lv624/ground/caves/sand_temple) "whk" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ light_on = 1; @@ -20564,6 +20452,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) +"wjA" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/coast/north, +/area/lv624/ground/caves/sand_temple) "wjT" = ( /obj/structure/sign/safety/analysis_lab{ pixel_x = 40 @@ -20596,12 +20488,6 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"wmj" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "wol" = ( /obj/item/ammo_magazine/rifle/extended, /turf/open/floor/plating, @@ -20725,6 +20611,15 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"wEk" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "wEO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -20874,18 +20769,6 @@ "wSo" = ( /turf/open/gm/coast/east, /area/lv624/ground/barrens/west_barrens) -"wSA" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) "wSR" = ( /obj/effect/landmark/hunter_secondary, /obj/structure/surface/table/reinforced/prison, @@ -20910,6 +20793,10 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"wTf" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/floor/plating/asteroidwarning/west, +/area/lv624/lazarus/landing_zones/lz2) "wTC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -21005,12 +20892,6 @@ "wZW" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"xak" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "xar" = ( /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, @@ -21100,10 +20981,6 @@ "xpf" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_nexus_road) -"xpz" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/lv624/ground/caves/sand_temple) "xpR" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/north_east_caves) @@ -21132,11 +21009,6 @@ "xvj" = ( /turf/open/gm/dirt, /area/lv624/lazarus/secure_storage) -"xvz" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/brown/northwest, -/area/lv624/lazarus/comms) "xvN" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -21155,6 +21027,10 @@ "xwr" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) +"xwt" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "xwN" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -21402,12 +21278,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"ybO" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/east, -/area/lv624/ground/caves/sand_temple) "ybQ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/weapon/pole/fancy_cane, @@ -21508,6 +21378,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"ykl" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "ykM" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/pointybush, @@ -27873,7 +27747,7 @@ aJF aJF uRE uRE -viY +vBg uRE uRE aJF @@ -28099,7 +27973,7 @@ uzH uzH uzH uzH -iJK +wTf uzH uzH uzH @@ -28561,7 +28435,7 @@ aRg aRg aCi aRg -twz +qae aRg wLz tZD @@ -28790,7 +28664,7 @@ aRg aKO aRg aEw -qnh +rKf wLz tZD aAp @@ -29703,7 +29577,7 @@ aRg aRg aEw aRg -qUL +mpc gef mxW oOf @@ -30158,7 +30032,7 @@ aRg aRg aRg aZT -qnh +rKf wLz lUb tZD @@ -31731,7 +31605,7 @@ aAp nmO aZP aDv -nfi +oVR aDv aRx aXX @@ -31749,7 +31623,7 @@ aDv aDv aDv aOB -sBp +qgt wLz aDv tZD @@ -32192,12 +32066,12 @@ aDv aRx aXX aXX -dkq +vRR aXX aXX azD aEs -mpW +bwq aDv aDv aRx @@ -32655,7 +32529,7 @@ aXX aZP aDv aCI -mpW +bwq aRx twg aXX @@ -32881,7 +32755,7 @@ ado aXX aXX aZP -nfi +oVR aDv aDv aRx @@ -38606,12 +38480,12 @@ aQn aTi aTi qit -upp -jfN -jfN -gKN -xvz -elO +pjw +hLB +hLB +vLF +mhc +mTK aPT kxI lIU @@ -38834,11 +38708,11 @@ aTg aTg kKL aXn -qap +mft aTg aTg -cyP -aXa +tut +uta aPt aPt kxI @@ -40886,7 +40760,7 @@ aSL aSL aVg tem -aVd +fdr kzp aTq aTq @@ -41114,7 +40988,7 @@ aSL lHc ogR aUs -nwR +fvx aTM aTq kzp @@ -41798,7 +41672,7 @@ aSL lHc gKg aVe -jwW +siY aTM aTM gqG @@ -42026,7 +41900,7 @@ aSL aSL aVf jMk -aWg +loA lzW kyz aWF @@ -42711,9 +42585,9 @@ aTs aTR aUu aSX -aVG +pAr vdl -aWG +noO aSX aXt aWi @@ -42938,10 +42812,10 @@ aSL aTu fLf fQx -aVj -mkZ +eOJ +gtW hDe -aWH +gch aSX aXu aXN @@ -51949,14 +51823,14 @@ ahv ahv afS aej -wSA -jAK +iyd +vDc ubJ -jMH -iwl +mJC +sPU aej ssK -rYA +poE agX agX ahv @@ -52184,7 +52058,7 @@ mhZ pEV uFA cRm -rYA +poE agX ahv ahv @@ -52412,7 +52286,7 @@ mhZ lDh pws ssK -rYA +poE agX agX ahv @@ -52640,7 +52514,7 @@ mhZ dID kbr jFc -rYA +poE agX gxd ahv @@ -52868,7 +52742,7 @@ mhZ pEV lJm aeg -rYA +poE gxd qeW btX @@ -53096,7 +52970,7 @@ mhZ pEV uDd slW -rYA +poE fPi btX wPN @@ -53324,8 +53198,8 @@ mhZ pEV fzZ aeg -vgJ -mUZ +efJ +eSb wPN gQr agX @@ -53553,7 +53427,7 @@ nTE afS afS aeg -wcW +gFk gQr agX xBi @@ -53771,17 +53645,17 @@ ahv ahv ahv aeg -wcj -lse -sqR +fPJ +rZK +eHl oyI oyI oyI -ezC -trJ -oDY +dvA +fhC +wjA aeg -rYA +poE agX agX agX @@ -53999,17 +53873,17 @@ ahv ahv ahv ufW -xpz -nEr -rQu +tob +cdB +fLk boe boe boe -aeq -nEr -bIO +kfq +cdB +gFO afS -rYA +poE agX agX agX @@ -54026,9 +53900,9 @@ xch xch xch xch -dXq -nfX -ocL +dtZ +xwt +pNG uxT uxT uxT @@ -54227,17 +54101,17 @@ aeb dkN ufW ufW -aAd +jKI avk -wmj +sxJ boe boe boe -qAc +udZ thn -qsM +bXU ufW -fvt +mww rCK rCK rCK @@ -54247,19 +54121,19 @@ slW afS ahv ahv -udj +swt xch xch xch -dXq -qBQ -dws -cQX +dtZ +gRh +fxZ +sPq nnq -oGj -tMF -nVZ -udj +lde +tur +cib +swt ajw ajI alz @@ -54455,15 +54329,15 @@ agA rac ufW msd -aep -afi -gNo +gTm +scu +sDV boe boe boe -kPU -afi -ver +pXR +scu +eYQ hqS agX agX @@ -54475,11 +54349,11 @@ wUz afS aeg lUy -sCg +rbw qpX qpX pRx -vpu +dSb jSp oTx jhG @@ -54487,7 +54361,7 @@ jhG jhG thS btr -gTM +npt ajw ajI ajI @@ -54707,7 +54581,7 @@ wBS ahB wZW wZW -oFO +jvr dVO bEq iuO @@ -54715,7 +54589,7 @@ lPJ whv dGc lBq -gTM +npt jLc aqu ajI @@ -54943,7 +54817,7 @@ rxV lPJ dGc shy -gTM +npt xch ajw ajI @@ -55163,7 +55037,7 @@ wZW wZW wZW wZW -pIz +tqh xvN bEq uUJ @@ -55171,7 +55045,7 @@ lPJ mUH dGc wca -gTM +npt xch ajw alA @@ -55367,15 +55241,15 @@ aeT rac aej boe -aeq -smE -rQu +kfq +eHw +fLk agX agX agX -aeq -vvs -ybO +kfq +fxh +cJY dDa boe agX @@ -55387,11 +55261,11 @@ kqL aeg aeg lUy -nWw +jvV dqo dqo bQA -lWw +kBJ eAr ktf iOz @@ -55399,7 +55273,7 @@ iOz iOz ttZ mVg -gTM +npt arT ajw ajI @@ -55595,17 +55469,17 @@ aKj ahv aeg aeg -qAc +udZ woM -rYA +poE yhd dxy agX -hNq +oQU idz -afq +iPw ufW -qPO +tIw aBi aBi aBi @@ -55615,19 +55489,19 @@ aeg aeg ahv ahv -pfK +fSA iIF xch xch -bOg -tDa -fhs -hke +vOG +vcI +wEk +fDo nnq -sIM -nsF -kZs -ekJ +hYx +iAv +fQD +ykl rGZ ajw alz @@ -55823,17 +55697,17 @@ gWE ahv ahv slW -wcj -afi -vBu +fPJ +scu +lHG qqJ aev agX -wcj -tzB -wgk +fPJ +nTT +lAv ufW -rYA +poE agX agX agX @@ -55850,9 +55724,9 @@ xch xch xch xch -bOg -xak -ekJ +vOG +iNF +ykl dGc eER iIF @@ -56280,16 +56154,16 @@ ahv ahv aeg aeg -qPO +tIw aBi aBi aBi aBi aBi -afj +vMA afS afS -rYA +poE agX agX agX @@ -56508,16 +56382,16 @@ ahv ahv ahv aeg -gNo +sDV boe boe boe boe boe -kPU +pXR afS ahv -vft +fqS agX agX agX diff --git a/maps/map_files/LV624/maintemple/1.intact.dmm b/maps/map_files/LV624/maintemple/1.intact.dmm index ebe499e6427d..9567d1214815 100644 --- a/maps/map_files/LV624/maintemple/1.intact.dmm +++ b/maps/map_files/LV624/maintemple/1.intact.dmm @@ -1,4 +1,32 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ah" = ( +/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/harpoon/yautja{ + name = "Alien Harpoon"; + pixel_x = 6 + }, +/obj/effect/decal/remains/xeno{ + pixel_x = -1; + pixel_y = 31 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1; + pixel_y = 10 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "as" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -22,6 +50,10 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple/powered) +"aH" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "aI" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -62,6 +94,40 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"ba" = ( +/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; + pixel_y = 10 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"bq" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "bP" = ( /obj/structure/bed/chair/comfy/black, /turf/open/floor/corsat/squareswood/north, @@ -73,15 +139,45 @@ /obj/item/tool/pickaxe/plasmacutter, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple/powered) -"dr" = ( +"cG" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) +"cN" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"cT" = ( /obj/structure/stairs/perspective{ color = "#b29082"; dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 +/obj/structure/platform/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) +"dp" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"dz" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, +/obj/structure/platform_decoration/stone/runed_sandstone, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) "dA" = ( @@ -121,15 +217,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"dE" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) "dF" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_barrens) @@ -143,17 +230,6 @@ /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"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "dQ" = ( /obj/structure/machinery/autolathe/yautja, /turf/open/floor/strata/grey_multi_tiles, @@ -216,6 +292,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"eH" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "eM" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -224,39 +304,8 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"eY" = ( -/obj/structure/showcase{ - color = "#FFE55C"; - desc = "This statue seems taller and somehow mightier than the others... it makes you want to steer away from it."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "massive statue" - }, -/obj/item/clothing/mask/gas/yautja/damaged{ - anchored = 1; - color = "#FFE55C"; - icon_state = "pred_mask_elder_n"; - name = "unsettling stone mask"; - pixel_y = 10 - }, -/obj/item/clothing/suit/armor/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "halfarmor_elder_n"; - name = "gilded clan armor" - }, -/obj/item/clothing/shoes/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "y-boots2"; - name = "gilded clan greaves" - }, -/obj/item/weapon/yautja/chained/combistick{ - color = "#FFE55C"; - name = "strange spear"; - anchored = 1; - desc = "This ancient and frayed gilded spear almost gleans with it's razor sharp edge." - }, +"eT" = ( +/obj/structure/platform/stone/runed_sandstone/west, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "fl" = ( @@ -336,25 +385,32 @@ /obj/item/weapon/twohanded/yautja/spear, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"gY" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" +"hi" = ( +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/barrens/south_eastern_barrens) +"hp" = ( +/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/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 +/obj/item/weapon/harpoon/yautja{ + name = "Alien Harpoon"; + pixel_x = 6 }, -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) -"gZ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1; + pixel_y = 10 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 }, /turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"hi" = ( -/turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) "hu" = ( /obj/structure/surface/table/reinforced/prison{ @@ -389,14 +445,30 @@ /obj/item/weapon/yautja/knife, /turf/open/gm/dirtgrassborder/desert2, /area/lv624/ground/barrens/south_eastern_barrens) -"hL" = ( -/obj/structure/platform/mineral/sandstone/runed, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 6; - icon_state = "p_stair_full" +"hI" = ( +/obj/item/weapon/harpoon/yautja{ + name = "Alien Harpoon"; + pixel_x = 6 }, -/turf/open/gm/dirt, +/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; + pixel_y = 10 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) "hO" = ( /obj/structure/surface/table/reinforced/prison{ @@ -409,28 +481,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"ig" = ( -/obj/structure/morgue/sarcophagus, -/obj/item/weapon/twohanded/yautja/glaive/damaged{ - name = "damaged war glaive" - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"iw" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"iN" = ( -/obj/item/weapon/sword{ - pixel_x = -6; - pixel_y = 7 +"hX" = ( +/obj/item/weapon/harpoon/yautja{ + name = "Alien Harpoon"; + pixel_x = -7 }, /obj/structure/showcase{ color = "#95948B"; @@ -450,8 +504,29 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/strata/grey_multi_tiles, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) +"ig" = ( +/obj/structure/morgue/sarcophagus, +/obj/item/weapon/twohanded/yautja/glaive/damaged{ + name = "damaged war glaive" + }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) +"iu" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/stone/stair_cut/runed_sandstone_right, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"iH" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/coast/beachcorner/north_east, +/area/lv624/ground/river/east_river) "iW" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -469,6 +544,15 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) +"jd" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "kb" = ( /obj/effect/decal/remains/xeno, /turf/open/floor/sandstone/runed, @@ -481,23 +565,24 @@ }, /turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) +"kM" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "kO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"ma" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) -"mf" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, +"kW" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, /turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) -"mr" = ( +/area/lv624/ground/barrens/south_eastern_barrens) +"lr" = ( /obj/structure/showcase{ color = "#95948B"; desc = "A grey statue dawned in ancient armor, it stares into your soul."; @@ -505,14 +590,6 @@ icon_state = "Synthetic_Template"; name = "Eternal guardian" }, -/obj/item/weapon/harpoon/yautja{ - name = "Alien Harpoon"; - pixel_x = -7 - }, -/obj/effect/decal/remains/xeno{ - pixel_x = 1; - pixel_y = 31 - }, /obj/item/clothing/mask/yautja_flavor/map_random{ anchored = 1; pixel_y = 10 @@ -523,21 +600,9 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) -"mv" = ( -/turf/open/floor/sandstone/runed, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"mB" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, +"mv" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "mI" = ( @@ -558,6 +623,34 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"mL" = ( +/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/harpoon/yautja{ + name = "Alien Harpoon"; + pixel_x = -7 + }, +/obj/effect/decal/remains/xeno{ + pixel_x = 1; + pixel_y = 31 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1; + pixel_y = 10 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "mN" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -580,28 +673,37 @@ /obj/structure/prop/brazier/torch, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"mW" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" +"nN" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/platform/mineral/sandstone/runed, +/obj/item/tool/surgery/cautery/predatorcautery, +/obj/item/tool/surgery/circular_saw/predatorbonesaw, +/obj/item/tool/surgery/hemostat/predatorhemostat, +/obj/item/tool/surgery/retractor/predatorretractor, +/obj/item/tool/surgery/scalpel/predatorscalpel, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"nV" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"mZ" = ( -/obj/item/weapon/harpoon/yautja{ - name = "Alien Harpoon"; - pixel_x = -7 - }, +"oi" = ( +/turf/closed/wall/mineral/sandstone/runed/decor, +/area/lv624/ground/caves/sand_temple) +"ot" = ( /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/weapon/sword{ + layer = 3.1; + pixel_x = 6; + pixel_y = 7 + }, /obj/item/clothing/mask/yautja_flavor/map_random{ anchored = 1; pixel_y = 10 @@ -612,38 +714,8 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) -"nk" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"nL" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"nN" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/cautery/predatorcautery, -/obj/item/tool/surgery/circular_saw/predatorbonesaw, -/obj/item/tool/surgery/hemostat/predatorhemostat, -/obj/item/tool/surgery/retractor/predatorretractor, -/obj/item/tool/surgery/scalpel/predatorscalpel, /turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) -"od" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"oi" = ( -/turf/closed/wall/mineral/sandstone/runed/decor, -/area/lv624/ground/caves/sand_temple) "oR" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -670,22 +742,14 @@ }, /turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) -"pX" = ( +"qk" = ( /obj/structure/stairs/perspective{ - color = "#b29082"; + color = "#6b675e"; dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"qf" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirt, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "qz" = ( /obj/structure/bed/alien{ @@ -693,36 +757,14 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"rA" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"rI" = ( -/obj/item/weapon/harpoon/yautja{ - name = "Alien Harpoon"; - pixel_x = 6 - }, -/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; - pixel_y = 10 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 +"qZ" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 9; + icon_state = "p_stair_full" }, -/turf/open/floor/sandstone/runed, +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) "rS" = ( /obj/structure/closet/coffin/predator, @@ -754,123 +796,22 @@ }, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"sM" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "sN" = ( /obj/effect/landmark/nightmare{ insert_tag = "maintemple" }, /turf/template_noop, /area/template_noop) -"th" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) -"ts" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"tE" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) -"un" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed, +"tX" = ( +/obj/structure/platform/stone/runed_sandstone/north, /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; - pixel_y = 10 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) "uE" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"uO" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"uQ" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"uT" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"vu" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"vN" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, +"vf" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/platform_decoration/stone/runed_sandstone/east, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "we" = ( @@ -880,17 +821,6 @@ }, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"wf" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "wi" = ( /obj/item/hunting_trap{ desc = "A bizarre alien device used for trapping and killing prey."; @@ -903,15 +833,15 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"wx" = ( +"wJ" = ( /obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; + color = "#6b675e"; + dir = 6; icon_state = "p_stair_full" }, -/obj/structure/platform/mineral/sandstone/runed, +/obj/structure/platform/stone/runed_sandstone/west, /turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) +/area/lv624/ground/caves/sand_temple) "wS" = ( /obj/structure/showcase{ desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; @@ -927,9 +857,14 @@ }, /turf/open/gm/dirtgrassborder/desert0, /area/lv624/ground/barrens/south_eastern_barrens) -"xx" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor/sandstone/runed, +"xg" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) "xy" = ( /obj/structure/stairs/perspective{ @@ -950,37 +885,34 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"yv" = ( +"yh" = ( +/obj/structure/platform/stone/runed_sandstone, /obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; + color = "#b29082"; + dir = 6; icon_state = "p_stair_full" }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"yJ" = ( +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"ze" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"yT" = ( +"zf" = ( /obj/structure/stairs/perspective{ color = "#b29082"; - dir = 5; + dir = 8; icon_state = "p_stair_full" }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, +/obj/structure/platform_decoration/stone/runed_sandstone/west, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"zg" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 5; - icon_state = "p_stair_full" - }, +"zA" = ( +/obj/structure/platform/stone/runed_sandstone/east, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) "zG" = ( @@ -992,20 +924,36 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"zO" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 +"zV" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"zZ" = ( -/obj/structure/platform/mineral/sandstone/runed, +/obj/structure/platform/stone/runed_sandstone/west, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"Ah" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "Ai" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"Ao" = ( +"Ba" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"Bg" = ( /obj/structure/showcase{ color = "#95948B"; desc = "A grey statue dawned in ancient armor, it stares into your soul."; @@ -1015,7 +963,7 @@ }, /obj/item/weapon/harpoon/yautja{ name = "Alien Harpoon"; - pixel_x = 6 + pixel_x = -7 }, /obj/item/clothing/mask/yautja_flavor/map_random{ anchored = 1; @@ -1029,54 +977,23 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"AQ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"Ba" = ( +"Bm" = ( /obj/structure/stairs/perspective{ color = "#b29082"; - dir = 9; + dir = 4; icon_state = "p_stair_full" }, +/obj/structure/platform/stone/runed_sandstone, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "Br" = ( /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; - pixel_y = 10 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) +"Bt" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "BY" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1096,6 +1013,15 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"Cj" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "Cr" = ( /obj/effect/decal/cleanable/blood{ basecolor = "#20d450"; @@ -1121,42 +1047,6 @@ }, /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; - pixel_y = 10 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) -"DX" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "Eq" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1175,6 +1065,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"EA" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "EJ" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1196,6 +1090,15 @@ }, /turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) +"Fp" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "FS" = ( /obj/structure/xenoautopsy/tank/alien, /turf/open/shuttle/red, @@ -1203,26 +1106,29 @@ "Ge" = ( /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"Gt" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"GO" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "GT" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/sand_temple) +"GX" = ( +/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/clothing/suit/armor/yautja/hunter{ + anchored = 1 + }, +/obj/item/clothing/mask/gas/yautja/damaged{ + anchored = 1; + pixel_y = 10 + }, +/obj/item/clothing/shoes/yautja/hunter{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple/powered) "He" = ( /obj/structure/curtain/red, /turf/open/floor/strata/grey_multi_tiles, @@ -1248,7 +1154,31 @@ /obj/item/stool, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"HJ" = ( +"HK" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"Ix" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) +"IQ" = ( +/obj/structure/platform/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"IR" = ( +/obj/structure/prop/brazier/torch, +/turf/closed/wall/mineral/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"IW" = ( /obj/structure/showcase{ color = "#95948B"; desc = "A grey statue dawned in ancient armor, it stares into your soul."; @@ -1256,9 +1186,10 @@ icon_state = "Synthetic_Template"; name = "Eternal guardian" }, -/obj/item/weapon/harpoon/yautja{ - name = "Alien Harpoon"; - pixel_x = -7 +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = -6; + pixel_y = 7 }, /obj/item/clothing/mask/yautja_flavor/map_random{ anchored = 1; @@ -1270,24 +1201,7 @@ /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) -"Iv" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"Ix" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/weedable/grass1, -/area/lv624/ground/barrens/south_eastern_barrens) -"IR" = ( -/obj/structure/prop/brazier/torch, -/turf/closed/wall/mineral/sandstone/runed, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "IZ" = ( /obj/structure/barricade/handrail/strata{ @@ -1325,23 +1239,19 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"Jw" = ( +"Js" = ( /obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; + color = "#b29082"; + dir = 10; icon_state = "p_stair_full" }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) -"JZ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, +/obj/structure/platform/stone/runed_sandstone/east, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"Jz" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "KB" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1367,45 +1277,15 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"LF" = ( +"Mj" = ( /obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) -"LL" = ( -/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/harpoon/yautja{ - name = "Alien Harpoon"; - pixel_x = 6 - }, -/obj/effect/decal/remains/xeno{ - pixel_x = -1; - pixel_y = 31 - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1; - pixel_y = 10 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "Mn" = ( /obj/structure/showcase{ color = "#95948B"; @@ -1424,6 +1304,10 @@ }, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) +"Mr" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "Mx" = ( /obj/structure/prop/brazier, /turf/open/floor/corsat/squareswood/north, @@ -1451,6 +1335,10 @@ "MK" = ( /turf/open/gm/dirtgrassborder/desert_dug, /area/lv624/ground/barrens/south_eastern_barrens) +"Nm" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "Nt" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -1459,17 +1347,25 @@ }, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"ND" = ( +"NX" = ( /obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; + color = "#b29082"; + dir = 9; icon_state = "p_stair_full" }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"NZ" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) +/obj/structure/platform/stone/stair_cut/runed_sandstone_left, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "Od" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1496,14 +1392,23 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) -"Ps" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, +"Pf" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, /turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"Pm" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) +"Pz" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "PA" = ( /obj/structure/machinery/door/airlock/sandstone/runed{ @@ -1511,26 +1416,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple/powered) -"PN" = ( -/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/clothing/suit/armor/yautja/hunter{ - anchored = 1 - }, -/obj/item/clothing/mask/gas/yautja/damaged{ - anchored = 1; - pixel_y = 10 - }, -/obj/item/clothing/shoes/yautja/hunter{ - anchored = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple/powered) "PO" = ( /obj/item/weapon/harpoon/yautja{ name = "Alien Harpoon"; @@ -1557,6 +1442,20 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"Qa" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/stone/stair_cut/runed_sandstone_left, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"Qe" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "QG" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -1571,6 +1470,10 @@ }, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) +"Rc" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "Rh" = ( /obj/structure/prop/brazier/torch, /turf/closed/wall/mineral/sandstone/runed/decor, @@ -1593,12 +1496,30 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"RZ" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 +"Sc" = ( +/obj/item/weapon/sword{ + pixel_x = -6; + pixel_y = 7 }, -/turf/open/floor/sandstone/runed, +/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; + pixel_y = 10 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "Sm" = ( /obj/structure/surface/table/reinforced/prison{ @@ -1617,12 +1538,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"SK" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) "SO" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -1645,10 +1560,58 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple/powered) +"TL" = ( +/obj/structure/showcase{ + color = "#FFE55C"; + desc = "This statue seems taller and somehow mightier than the others... it makes you want to steer away from it."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "massive statue" + }, +/obj/item/clothing/mask/gas/yautja/damaged{ + anchored = 1; + color = "#FFE55C"; + icon_state = "pred_mask_elder_n"; + name = "unsettling stone mask"; + pixel_y = 10 + }, +/obj/item/clothing/suit/armor/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "halfarmor_elder_n"; + name = "gilded clan armor" + }, +/obj/item/clothing/shoes/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "y-boots2"; + name = "gilded clan greaves" + }, +/obj/item/weapon/yautja/chained/combistick{ + color = "#FFE55C"; + name = "strange spear"; + anchored = 1; + desc = "This ancient and frayed gilded spear almost gleans with it's razor sharp edge." + }, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"TO" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "TY" = ( /obj/structure/machinery/optable, /turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) +"UA" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/stone/stair_cut/runed_sandstone_right, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "UK" = ( /turf/open/gm/dirtgrassborder/desert, /area/lv624/ground/barrens/south_eastern_barrens) @@ -1669,16 +1632,13 @@ /obj/item/tool/surgery/scalpel/predatorscalpel, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple/powered) -"Vm" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "Vu" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) +"Wj" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "Wl" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 @@ -1715,56 +1675,12 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) -"Xz" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "XV" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple/powered) -"YB" = ( -/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/clothing/mask/yautja_flavor/map_random{ - anchored = 1; - pixel_y = 10 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"YT" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"YU" = ( -/obj/effect/landmark/lv624/fog_blocker, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/coast/beachcorner/north_east, -/area/lv624/ground/river/east_river) "Zt" = ( /obj/structure/prop/brazier, /turf/open/floor/sandstone/runed, @@ -2038,14 +1954,14 @@ GT GT OC IR -ND -Jw +bq +qk pu -gY -th +cG +Mj IR OC -qf +TO Ai Ai GT @@ -2087,7 +2003,7 @@ Jc gL wS oi -qf +TO Ai GT GT @@ -2121,7 +2037,7 @@ GT GT GT oi -YB +lr gL Jc Jc @@ -2129,7 +2045,7 @@ Jc gL Mn OC -qf +TO Ai Ai GT @@ -2171,7 +2087,7 @@ Jc gL wS oi -qf +TO dK Ai GT @@ -2205,7 +2121,7 @@ GT GT GT oi -YB +lr gL Jc Jc @@ -2213,7 +2129,7 @@ Jc gL Mn OC -qf +TO Ai Ai Ai @@ -2255,7 +2171,7 @@ Jc fQ wS oi -qf +TO Ai Ai Ai @@ -2289,7 +2205,7 @@ GT GT GT OC -YB +lr gL Jc Jc @@ -2297,8 +2213,8 @@ Jc gL Mn OC -Ps -mf +Pm +Jz Ai Ai dK @@ -2340,7 +2256,7 @@ He IR OC OC -qf +TO Ai Ai Ai @@ -2372,17 +2288,17 @@ GT GT GT OC -gZ -YT -AQ +ze +zV +jd SO SO SO -yv -dL -rA +Pz +wJ +nV OC -qf +TO Ai Ai Ai @@ -2414,17 +2330,17 @@ GT GT GT OC -sM -od -nL +Nm +Rc +Mr mv mv mv -sM -od -nL +Nm +Rc +Mr OC -qf +TO Ai Ai Ai @@ -2441,9 +2357,9 @@ ZX ZX ZX ZX -nk -uT -YU +Pf +zA +iH ZX ZX ZX @@ -2456,17 +2372,17 @@ wi GT OC OC -zZ -DH -vN +IQ +IW +EA mv mv mv -zZ -iN -vN +IQ +Sc +EA OC -GO +iu aT aT aT @@ -2481,14 +2397,14 @@ ZX ZX ZX ZX -ts -iw -un +qZ +zf +xg Zt -DX -uQ -wf -uO +NX +dz +Js +kW "} (18,1,1) = {" SF @@ -2498,17 +2414,17 @@ mv Dd IR mv -gZ -Gt -rA +ze +eT +nV mv mv mv -gZ -Gt -RZ +ze +eT +vf mO -od +Rc mv mv mv @@ -2518,19 +2434,19 @@ mv OC OC fV -LF +UA xy xy xy -wx -HJ +kM +Bg fD DG DG DG aN -mZ -zO +hX +tX "} (19,1,1) = {" SF @@ -2559,12 +2475,12 @@ mv mv mv OC -mr +mL uE uE uE uE -SK +Wj Ws dF Cr @@ -2572,7 +2488,7 @@ UK hD hi OJ -zO +tX "} (20,1,1) = {" eM @@ -2614,7 +2530,7 @@ MK UK hi OP -zO +tX "} (21,1,1) = {" SF @@ -2643,12 +2559,12 @@ mv mv mv OC -LL +ah uE uE uE uE -xx +Qe iW dF ZG @@ -2656,7 +2572,7 @@ UK wZ hi Ix -zO +tX "} (22,1,1) = {" eM @@ -2666,17 +2582,17 @@ kb Dd IR mv -sM -od -nL +Nm +Rc +Mr mv mv mv -sM -od -Vm +Nm +Rc +dp mO -Gt +eT mv mv mv @@ -2686,19 +2602,19 @@ mv OC OC fV -tE +NZ RV RV RV -dE -Ao +cT +hp Xg QG QG QG IZ -rI -zO +hI +tX "} (23,1,1) = {" oR @@ -2708,17 +2624,17 @@ eb GT OC OC -zZ -uy -vN +IQ +ot +EA mv mv mv -zZ -BI -vN +IQ +ba +EA OC -mB +Qa eb eb eb @@ -2733,14 +2649,14 @@ ZX ZX ZX ZX -yT -pX -hL +HK +Fp +yh Zt -zg -dr -vu -JZ +cN +Ah +Cj +aH "} (24,1,1) = {" mv @@ -2750,17 +2666,17 @@ mv GT GT oi -gZ -Gt -rA +ze +eT +nV mv mv mv -gZ -Gt -rA +ze +eT +nV OC -qf +TO Ai Ai Ai @@ -2777,9 +2693,9 @@ ZX ZX ZX ZX -Iv -Xz -JZ +Bt +yJ +aH ZX ZX ZX @@ -2835,16 +2751,16 @@ GT GT OC OC -mB +Qa eb eb eb eb eb -mW +Bm OC OC -qf +TO Ai dK Ai @@ -2877,16 +2793,16 @@ GT GT GT IR -rA +nV mv mv mv mv mv -gZ +ze IR GT -ma +eH Ai Ai Ai @@ -3257,9 +3173,9 @@ mv mv mv mv -sM -od -nL +Nm +Rc +Mr mv mv mv @@ -3299,9 +3215,9 @@ mv mv mv mv -zZ -eY -vN +IQ +TL +EA mv mv mv @@ -3341,9 +3257,9 @@ mv mv mv mv -gZ -Gt -rA +ze +eT +nV mv mv mv @@ -3589,8 +3505,8 @@ ZX GT OC aA -PN -PN +GX +GX dQ OC fE diff --git a/maps/map_files/LV624/maintemple/2.flooded.dmm b/maps/map_files/LV624/maintemple/2.flooded.dmm index a3577839cdf7..c5dd5b3fca48 100644 --- a/maps/map_files/LV624/maintemple/2.flooded.dmm +++ b/maps/map_files/LV624/maintemple/2.flooded.dmm @@ -3,6 +3,15 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/rock/brown, /area/lv624/ground/caves/sand_temple) +"aj" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "ap" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/south_eastern_barrens) @@ -23,9 +32,14 @@ "ax" = ( /turf/open/gm/coast/north, /area/lv624/ground/caves/sand_temple) -"aA" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +"aH" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "aI" = ( /obj/structure/surface/table/reinforced/prison{ @@ -61,6 +75,10 @@ }, /turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) +"aU" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/lv624/ground/caves/sand_temple) "bP" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/floor/sandstone/runed, @@ -72,19 +90,25 @@ "ci" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/caves/sand_temple) -"de" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/lv624/ground/barrens/south_eastern_barrens) -"dr" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" +"cG" = ( +/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/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 +/obj/item/clothing/suit/armor/yautja/hunter{ + anchored = 1 }, -/turf/open/floor/whiteyellowfull/east, +/obj/item/clothing/mask/gas/yautja/damaged{ + anchored = 1; + pixel_y = 10 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) +"de" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) "dA" = ( /obj/structure/flora/jungle/vines/heavy, @@ -109,15 +133,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"dE" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) "dF" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_barrens) @@ -131,17 +146,6 @@ /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"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "dQ" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -164,6 +168,62 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"eq" = ( +/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/harpoon/yautja{ + name = "Alien Harpoon"; + pixel_x = 6 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1; + pixel_y = 10 + }, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) +"es" = ( +/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/harpoon/yautja{ + name = "Alien Harpoon"; + pixel_x = 6 + }, +/obj/effect/decal/remains/xeno{ + pixel_x = -1; + pixel_y = 31 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1; + pixel_y = 10 + }, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) +"ev" = ( +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/lv624/ground/caves/sand_temple) "ez" = ( /turf/open/gm/coast/west, /area/lv624/ground/barrens/south_eastern_barrens) @@ -179,6 +239,11 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) +"fd" = ( +/obj/item/weapon/twohanded/yautja/spear, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/river, +/area/lv624/ground/caves/sand_temple) "fl" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) @@ -191,16 +256,36 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/barrens/south_eastern_barrens) -"fE" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/coast/beachcorner2/north_west, +"fG" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/caves/sand_temple) "fP" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/coast/east, /area/lv624/ground/caves/sand_temple) +"fT" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"gm" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) +"gq" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "gw" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) @@ -215,32 +300,22 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) -"gL" = ( -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) -"gS" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/lv624/ground/caves/sand_temple) -"gY" = ( +"gJ" = ( /obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; + color = "#b29082"; + dir = 8; icon_state = "p_stair_full" }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) -"gZ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, +/obj/structure/platform/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) +"gK" = ( +/obj/structure/platform/stone/runed_sandstone/north, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"gL" = ( +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "hi" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) @@ -261,6 +336,15 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) +"hX" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "ic" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -276,17 +360,6 @@ }, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"iw" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) "iM" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, @@ -295,6 +368,15 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) +"iU" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "iW" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -308,20 +390,47 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) -"jc" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/obj/effect/landmark/objective_landmark/close, +"jq" = ( +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/coast/beachcorner/south_east, +/area/lv624/ground/caves/sand_temple) +"jz" = ( +/obj/structure/platform/stone/runed_sandstone/east, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"jP" = ( +/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/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1; + pixel_y = 10 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "jZ" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) -"ky" = ( -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/gm/coast/beachcorner/south_east, +"kZ" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "lm" = ( /turf/open/gm/coast/east, @@ -333,105 +442,66 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"lI" = ( +"lu" = ( /obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 10; + color = "#6b675e"; + dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "lS" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/river, /area/lv624/ground/barrens/south_eastern_barrens) -"ma" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "mf" = ( /obj/effect/landmark/nightmare{ insert_tag = "maintemple" }, /turf/template_noop, /area/template_noop) -"mr" = ( +"mq" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"mt" = ( +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/coast/north, +/area/lv624/ground/caves/sand_temple) +"mv" = ( +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"mF" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/corsat/squareswood/north, +/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) +"mM" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"mN" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) +"mZ" = ( +/obj/item/weapon/harpoon/yautja{ + name = "Alien Harpoon"; + pixel_x = -7 + }, /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/harpoon/yautja{ - name = "Alien Harpoon"; - pixel_x = -7 - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/effect/decal/remains/xeno{ - pixel_x = 1; - pixel_y = 31 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1; - pixel_y = 10 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) -"mv" = ( -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"mB" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"mF" = ( -/obj/structure/closet/coffin/predator, -/turf/open/floor/corsat/squareswood/north, -/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, -/area/lv624/ground/caves/sand_temple) -"mW" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"mZ" = ( -/obj/item/weapon/harpoon/yautja{ - name = "Alien Harpoon"; - pixel_x = -7 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; + dir = 1; icon = 'icons/mob/humans/species/r_synthetic.dmi'; icon_state = "Synthetic_Template"; name = "Eternal guardian" @@ -444,34 +514,14 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"nL" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"nN" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/east, -/area/lv624/ground/caves/sand_temple) -"od" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, +"nv" = ( +/obj/structure/platform/stone/runed_sandstone/east, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "ow" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) -"oC" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "oR" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -491,35 +541,10 @@ }, /turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) -"py" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/lv624/ground/caves/sand_temple) -"pN" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv624/ground/caves/sand_temple) -"pX" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) -"qf" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, +"qj" = ( +/obj/structure/platform/stone/runed_sandstone/north, /turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) +/area/lv624/ground/barrens/south_eastern_barrens) "qz" = ( /obj/structure/bed/alien{ color = "#aba9a9" @@ -529,12 +554,6 @@ "rd" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/caves/sand_temple) -"rA" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "rI" = ( /obj/item/weapon/harpoon/yautja{ name = "Alien Harpoon"; @@ -574,24 +593,22 @@ }, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"sM" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, +"sE" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/stone/stair_cut/runed_sandstone_right, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"sH" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/grass/grass1, +/area/lv624/ground/caves/sand_temple) "sN" = ( /turf/open/gm/river, /area/lv624/ground/caves/sand_temple) -"th" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) "tn" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -599,29 +616,42 @@ /obj/item/stack/yautja_rope, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"ts" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 9; - icon_state = "p_stair_full" +"tu" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"tS" = ( +/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/structure/platform/mineral/sandstone/runed{ - dir = 4 +/obj/item/weapon/harpoon/yautja{ + name = "Alien Harpoon"; + pixel_x = -7 }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"tE" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1; + pixel_y = 10 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"tU" = ( +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) +"uc" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/lv624/ground/caves/sand_temple) "ue" = ( /obj/structure/showcase{ desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; @@ -631,6 +661,15 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) +"un" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "uy" = ( /obj/structure/showcase{ color = "#95948B"; @@ -655,55 +694,33 @@ "uE" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"uK" = ( -/obj/structure/platform/mineral/sandstone/runed, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"uO" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"uQ" = ( +"uP" = ( /obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; + color = "#6b675e"; + dir = 5; icon_state = "p_stair_full" }, -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor/whiteyellowfull/east, -/area/lv624/ground/barrens/south_eastern_barrens) +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "vl" = ( /obj/item/tool/kitchen/utensil/spoon, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"vu" = ( +"vB" = ( /obj/structure/stairs/perspective{ color = "#b29082"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/gm/dirt, +/obj/structure/platform/stone/stair_cut/runed_sandstone_right, +/turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) "vC" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"vN" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "vY" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/caves/sand_temple) @@ -714,17 +731,6 @@ }, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"wf" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "wk" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -740,6 +746,35 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"wl" = ( +/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/harpoon/yautja{ + name = "Alien Harpoon"; + pixel_x = -7 + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/effect/decal/remains/xeno{ + pixel_x = 1; + pixel_y = 31 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1; + pixel_y = 10 + }, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "wt" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -754,15 +789,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"wx" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) "wP" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/caves/sand_temple) @@ -770,12 +796,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) -"wR" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/caves/sand_temple) "wS" = ( /obj/structure/showcase{ desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; @@ -787,6 +807,10 @@ "wU" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/caves/sand_temple) +"wX" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/coast/beachcorner2/north_west, +/area/lv624/ground/caves/sand_temple) "wZ" = ( /turf/open/gm/dirtgrassborder/desert0, /area/lv624/ground/barrens/south_eastern_barrens) @@ -797,10 +821,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"xx" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) "xy" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -809,88 +829,42 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"xz" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "xO" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"yc" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/lv624/ground/caves/sand_temple) "yf" = ( /obj/effect/landmark/yautja_teleport, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/barrens/south_eastern_barrens) -"yh" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"yv" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "yA" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/prop/brazier/torch, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"yT" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, +"yB" = ( +/obj/structure/platform/stone/runed_sandstone/west, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"zv" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8; - layer = 3.01 - }, -/turf/open/gm/coast/north, -/area/lv624/ground/caves/sand_temple) -"zA" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +"yH" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/obj/effect/landmark/objective_landmark/close, +/turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"zO" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 +"yL" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"zZ" = ( -/obj/structure/platform/mineral/sandstone/runed, +/obj/structure/platform_decoration/stone/runed_sandstone/east, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"Ai" = ( -/turf/open/gm/dirt, +"za" = ( +/obj/structure/platform/stone/runed_sandstone, +/turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) -"Ak" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/gm/coast/east, -/area/lv624/ground/barrens/south_eastern_barrens) -"Ao" = ( +"zu" = ( /obj/structure/showcase{ color = "#95948B"; desc = "A grey statue dawned in ancient armor, it stares into your soul."; @@ -898,21 +872,33 @@ icon_state = "Synthetic_Template"; name = "Eternal guardian" }, -/obj/item/weapon/harpoon/yautja{ - name = "Alien Harpoon"; - pixel_x = 6 +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = -6; + pixel_y = 7 }, /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, /obj/item/clothing/mask/yautja_flavor/map_random{ anchored = 1; pixel_y = 10 }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"zA" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/lv624/ground/caves/sand_temple) +"zB" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, /turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"Ai" = ( +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) +"Ak" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/gm/coast/east, /area/lv624/ground/barrens/south_eastern_barrens) "Aw" = ( /turf/open/gm/dirtgrassborder/west, @@ -920,17 +906,6 @@ "AB" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/barrens/south_eastern_barrens) -"AQ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "Ba" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -951,6 +926,15 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"BE" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "BI" = ( /obj/item/weapon/sword{ pixel_x = 6; @@ -969,25 +953,21 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) -"Ci" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirt, +"Ce" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/coast/beachcorner2/north_west, +/area/lv624/ground/caves/sand_temple) +"Cr" = ( +/turf/open/gm/dirtgrassborder/desert3, /area/lv624/ground/barrens/south_eastern_barrens) -"Ck" = ( +"Df" = ( /obj/structure/stairs/perspective{ color = "#b29082"; - dir = 9; + dir = 8; icon_state = "p_stair_full" }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"Cr" = ( -/turf/open/gm/dirtgrassborder/desert3, +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/barrens/south_eastern_barrens) "Dg" = ( /obj/structure/stairs/perspective{ @@ -1000,10 +980,6 @@ "Dj" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/barrens/south_eastern_barrens) -"Dl" = ( -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/caves/sand_temple) "Ds" = ( /obj/structure/flora/jungle/alienplant1{ layer = 4.13; @@ -1020,35 +996,23 @@ }, /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/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1; - pixel_y = 10 +"DN" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"DT" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 10; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/grey_multi_tiles, +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"Ep" = ( +/obj/structure/platform/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"DZ" = ( -/obj/effect/landmark/lv624/fog_blocker, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/coast/beachcorner/north_east, -/area/lv624/ground/river/east_river) "Eq" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1078,44 +1042,14 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) -"EM" = ( -/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/clothing/mask/gas/yautja/damaged{ - anchored = 1; - armor_bio = 0; - armor_bomb = 0; - armor_bullet = 0; - armor_energy = 0; - armor_internaldamage = 0; - armor_laser = 0; - armor_melee = 0; - armor_rad = 0; - desc = "A beautifully designed stone face mask, both ornate and functional."; - name = "stone clan mask"; - unacidable = 0; - pixel_y = 10 - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat/squareswood/north, +"EN" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"Ff" = ( -/obj/item/weapon/twohanded/yautja/spear, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/river, +"Fx" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/caves/sand_temple) "FF" = ( /obj/structure/prop/brazier/torch, @@ -1129,6 +1063,10 @@ /obj/item/tool/kitchen/utensil/spoon, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"FN" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/coast/north, +/area/lv624/ground/caves/sand_temple) "FS" = ( /obj/structure/flora/jungle/vines/light_3, /obj/item/hunting_trap{ @@ -1140,24 +1078,11 @@ "Ge" = ( /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"Gt" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "Gu" = ( /turf/open/gm/coast/east, /area/lv624/ground/barrens/south_eastern_barrens) -"GO" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, +"GI" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "GT" = ( @@ -1185,46 +1110,30 @@ color = "#6b675e" }, /obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/stack/sheet/animalhide/xeno{ - name = "Warrior hide" - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"Hq" = ( -/obj/item/stool, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) -"HJ" = ( -/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/harpoon/yautja{ - name = "Alien Harpoon"; - pixel_x = -7 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 + dir = 8; + health = 80 }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1; - pixel_y = 10 +/obj/item/stack/sheet/animalhide/xeno{ + name = "Warrior hide" }, /turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) +/area/lv624/ground/caves/sand_temple) +"Hq" = ( +/obj/item/stool, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) +"HI" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/gm/coast/south, +/area/lv624/ground/caves/sand_temple) +"HL" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "HN" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) @@ -1250,6 +1159,10 @@ }, /turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) +"IP" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "IZ" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -1290,29 +1203,15 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/caves/sand_temple) -"Jo" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, +"Jz" = ( /obj/structure/stairs/perspective{ color = "#b29082"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) -"Jw" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; dir = 4; icon_state = "p_stair_full" }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/shuttle/red, -/area/lv624/ground/caves/sand_temple) +/obj/structure/platform/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "JN" = ( /obj/structure/showcase{ color = "#95948B"; @@ -1330,12 +1229,6 @@ }, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"JZ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "Ki" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -1343,12 +1236,6 @@ "Kk" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) -"Kr" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/lv624/ground/caves/sand_temple) "KB" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1373,49 +1260,19 @@ "Lg" = ( /turf/open/gm/river, /area/lv624/ground/barrens/south_eastern_barrens) +"Lm" = ( +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "Lt" = ( /obj/item/reagent_container/food/snacks/stew, /turf/open/gm/coast/south, /area/lv624/ground/caves/sand_temple) -"LF" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) -"LL" = ( -/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/harpoon/yautja{ - name = "Alien Harpoon"; - pixel_x = 6 - }, -/obj/effect/decal/remains/xeno{ - pixel_x = -1; - pixel_y = 31 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1; - pixel_y = 10 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) +"Mk" = ( +/obj/effect/landmark/lv624/fog_blocker, +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/coast/beachcorner/north_east, +/area/lv624/ground/river/east_river) "Mn" = ( /obj/structure/showcase{ color = "#95948B"; @@ -1459,18 +1316,10 @@ }, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"ND" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/lv624/ground/caves/sand_temple) +"OA" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "OC" = ( /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) @@ -1481,6 +1330,10 @@ }, /turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) +"OL" = ( +/obj/structure/platform_decoration/stone/runed_sandstone, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "OP" = ( /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/weedable/grass1, @@ -1489,35 +1342,21 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"Ps" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/coast/beachcorner/north_west, -/area/lv624/ground/caves/sand_temple) "PA" = ( /obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ name = "\improper Strange Temple" }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"PN" = ( -/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/clothing/suit/armor/yautja/hunter{ - anchored = 1 - }, -/obj/item/clothing/mask/gas/yautja/damaged{ - anchored = 1; - pixel_y = 10 +"PK" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 9; + icon_state = "p_stair_full" }, +/obj/structure/platform/stone/runed_sandstone/north, /turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) +/area/lv624/ground/barrens/south_eastern_barrens) "PO" = ( /obj/item/weapon/harpoon/yautja{ name = "Alien Harpoon"; @@ -1545,9 +1384,9 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"PR" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/gm/coast/south, +"Qj" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/gm/river, /area/lv624/ground/caves/sand_temple) "QG" = ( /obj/structure/barricade/handrail/strata{ @@ -1578,6 +1417,15 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"Rr" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/east, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "Rx" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 @@ -1601,11 +1449,23 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"SK" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 +"Sg" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 6; + icon_state = "p_stair_full" }, -/turf/open/floor/sandstone/runed, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) +"SL" = ( +/obj/structure/platform/stone/runed_sandstone/north, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) "SO" = ( /obj/structure/stairs/perspective{ @@ -1628,6 +1488,14 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/river, /area/lv624/ground/barrens/south_eastern_barrens) +"Tv" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/east, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"TD" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) "TY" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/surface/table/reinforced/prison{ @@ -1635,11 +1503,19 @@ }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) -"Ug" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 +"Uh" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/west, +/turf/open/gm/dirtgrassborder/east, +/area/lv624/ground/caves/sand_temple) +"Uj" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/gm/coast/north, +/obj/structure/platform/stone/stair_cut/runed_sandstone_left, +/turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "Uk" = ( /obj/structure/stairs/perspective{ @@ -1655,13 +1531,13 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) +"UH" = ( +/obj/structure/platform_decoration/stone/runed_sandstone/north, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "UK" = ( /turf/open/gm/dirtgrassborder/desert, /area/lv624/ground/barrens/south_eastern_barrens) -"UQ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/south_eastern_barrens) "UU" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/sand_temple) @@ -1674,6 +1550,15 @@ "Vu" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) +"VP" = ( +/obj/structure/platform/stone/runed_sandstone, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/south_eastern_barrens) "Wl" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/east, @@ -1695,6 +1580,47 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"WJ" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stone/runed_sandstone/west, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) +"WW" = ( +/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/clothing/mask/gas/yautja/damaged{ + anchored = 1; + armor_bio = 0; + armor_bomb = 0; + armor_bullet = 0; + armor_energy = 0; + armor_internaldamage = 0; + armor_laser = 0; + armor_melee = 0; + armor_rad = 0; + desc = "A beautifully designed stone face mask, both ornate and functional."; + name = "stone clan mask"; + unacidable = 0; + pixel_y = 10 + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "Xg" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -1721,49 +1647,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"Yd" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/coast/beachcorner2/north_west, -/area/lv624/ground/caves/sand_temple) -"Yu" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) -"YB" = ( -/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/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1; - pixel_y = 10 - }, -/turf/open/floor/corsat/squareswood/north, -/area/lv624/ground/caves/sand_temple) -"YT" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) "Zi" = ( /obj/structure/bed/alien{ color = "#aba9a9" @@ -1777,6 +1660,16 @@ "ZG" = ( /turf/open/gm/dirtgrassborder/desert1, /area/lv624/ground/barrens/south_eastern_barrens) +"ZH" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/stone/stair_cut/runed_sandstone_left, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) "ZX" = ( /turf/template_noop, /area/template_noop) @@ -2043,14 +1936,14 @@ GT GT OC yA -ND -Jw +uP +kZ pu -gY -th +lu +BE Mq OC -qf +HL Ai Ai GT @@ -2092,7 +1985,7 @@ Jc gL wS if -qf +HL Ai GT GT @@ -2126,7 +2019,7 @@ GT GT GT Jm -EM +WW gL Jc Jc @@ -2134,7 +2027,7 @@ Jc gL JN OC -qf +HL Ai wU GT @@ -2176,7 +2069,7 @@ Jc EL wS if -qf +HL Ai ax GT @@ -2210,7 +2103,7 @@ GT GT GT Jm -EM +WW gL Jc Jc @@ -2218,7 +2111,7 @@ Jc gL JN xO -qf +HL wU po sN @@ -2260,7 +2153,7 @@ Jc gL ue Jm -qf +HL ax sN ci @@ -2294,7 +2187,7 @@ GT GT GT OC -YB +jP gL Jc Jc @@ -2302,7 +2195,7 @@ Jc gL Mn xO -Ps +fG po ci vY @@ -2344,7 +2237,7 @@ gA He Mq OC -fE +Ce ci vY Ai @@ -2377,15 +2270,15 @@ GT GT GT xO -Yu -YT -AQ +TD +iU +yL SO SO SO -yv -dL -pN +mq +WJ +Qj ci vY Ai @@ -2419,9 +2312,9 @@ GT GT GT dA -aA -oC -nL +uc +jz +zB mv mv mv @@ -2429,7 +2322,7 @@ mv ax ci OC -qf +HL Ai Ai Ai @@ -2446,9 +2339,9 @@ ZX ZX ZX ZX -UQ -xz -DZ +mM +Lm +Mk ZX ZX ZX @@ -2461,9 +2354,9 @@ ZX ai dA dA -Dl -DH -vN +za +zu +gK mv mv mv @@ -2471,7 +2364,7 @@ wU po MB dA -GO +sE Uk Uk Uk @@ -2486,14 +2379,14 @@ ZX ZX ZX ZX -ts -iw -lI +Rr +Df +gq Zs -Ck -uQ -wf -uO +PK +aj +DT +OA "} (18,1,1) = {" ZX @@ -2503,9 +2396,9 @@ ZX bZ dA Aw -Kr -Gt -rA +aU +tU +Tv mv mv wU @@ -2523,19 +2416,19 @@ mN OC xO GT -LF +vB xy xy xy -wx -HJ +gJ +tS fD DG DG DG aN mZ -zO +qj "} (19,1,1) = {" ZX @@ -2550,7 +2443,7 @@ Ai mv Ba aT -Ug +FN ci vY MX @@ -2564,12 +2457,12 @@ MX MX mv ic -mr +wl uE mI uE uE -SK +IP Ws dF Cr @@ -2577,7 +2470,7 @@ UK hD hi OJ -zO +qj "} (20,1,1) = {" ZX @@ -2592,7 +2485,7 @@ mv mv eM Ge -Yd +wX MB MX MX @@ -2619,7 +2512,7 @@ MK UK hi OP -zO +qj "} (21,1,1) = {" ZX @@ -2633,8 +2526,8 @@ mv mv mv oR -zv -Ff +mt +fd MB Ai mN @@ -2648,12 +2541,12 @@ jZ mv mv ic -LL +es uE uE uE uE -xx +OL iW dF ZG @@ -2661,7 +2554,7 @@ UK wZ hi Ix -zO +qj "} (22,1,1) = {" ZX @@ -2671,15 +2564,15 @@ ZX bZ yA mv -sM -od -nL +tu +nv +zB Ai ax sN -PR -gS -nN +HI +EN +Uh ja mv Ai @@ -2691,19 +2584,19 @@ MX xO xO FF -tE +ZH RV RV RV -dE -Ao +Jz +eq Xg QG QG QG IZ rI -zO +qj "} (23,1,1) = {" ZX @@ -2713,17 +2606,17 @@ ZX GT xO xO -zZ +Ep uy -qf +HL Ai ax ci -ky +jq BI -wR +sH dA -mB +Uj eb eb eb @@ -2738,14 +2631,14 @@ ZX ZX ZX ZX -yT -pX -uK +fT +hX +VP Zs -Jo -dr -vu -JZ +SL +un +Sg +DN "} (24,1,1) = {" ZX @@ -2755,17 +2648,17 @@ ZX GT GT Jm -Yu -Gt -ma +TD +tU +gm wU po MB -jc -py -yc +yH +ev +Fx dA -qf +HL Ai Ai Ai @@ -2782,9 +2675,9 @@ ZX ZX ZX ZX -Ci -yh -JZ +UH +yB +DN ZX ZX ZX @@ -2840,16 +2733,16 @@ GT GT xO xO -mB +Uj eb ax MB Ai eb -mW +aH OC OC -qf +HL Ai Ai Ai @@ -2882,16 +2775,16 @@ GT GT GT xO -rA +Tv mv ax EJ hA mv -gZ +GI Mq GT -ma +gm Ai Ai Ai @@ -3594,7 +3487,7 @@ ZX GT GT GT -PN +cG Ai GT GT diff --git a/maps/map_files/New_Varadero/New_Varadero.dmm b/maps/map_files/New_Varadero/New_Varadero.dmm index 58ab414b1411..0cbf9c9a9e30 100644 --- a/maps/map_files/New_Varadero/New_Varadero.dmm +++ b/maps/map_files/New_Varadero/New_Varadero.dmm @@ -46,17 +46,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"abE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating, -/area/varadero/interior/maintenance/security/south) "abK" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -87,12 +76,21 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) -"aer" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"aeJ" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 }, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "afg" = ( /turf/closed/wall/r_wall/elevator{ dir = 8 @@ -128,6 +126,12 @@ }, /turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) +"agh" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "agi" = ( /obj/structure/window/reinforced{ dir = 4; @@ -178,15 +182,6 @@ }, /turf/open/floor/plating, /area/varadero/interior/electrical) -"ahb" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/effect/overlay/palmtree_r, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz1_near) "ahg" = ( /turf/closed/wall, /area/varadero/interior/dock_control) @@ -213,6 +208,17 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) +"ajm" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) +"ajS" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/effect/overlay/palmtree_r, +/turf/open/gm/dirt, +/area/varadero/exterior/comms4) "akd" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/structure/machinery/firealarm{ @@ -277,28 +283,19 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/bunks) -"alD" = ( -/obj/structure/filtration/coagulation_arm{ - explo_proof = 1; - layer = 2.1; - density = 0 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/obj/structure/platform, -/turf/open/gm/river/desert/deep/covered, -/area/varadero/interior/maintenance/north) "alG" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) +"alK" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "alL" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -334,6 +331,13 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) +"anx" = ( +/obj/structure/girder/displaced, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "anA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable, @@ -360,25 +364,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance/research) -"apj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/north) -"apt" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "apG" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, @@ -442,6 +427,10 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) +"aqO" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/north) "ara" = ( /turf/open/floor/wood, /area/varadero/interior/court) @@ -471,10 +460,41 @@ "asx" = ( /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) +"asV" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) +"atu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) "atz" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/shiva/blue/southeast, /area/varadero/interior/administration) +"atL" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "atM" = ( /obj/structure/prop/mech/drill, /turf/open/shuttle/red, @@ -516,14 +536,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"avX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/beachcorner/north_east, -/area/varadero/exterior/comms4) "awr" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt/desert0, @@ -550,16 +562,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) -"axv" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "axY" = ( /obj/structure/bed/chair/comfy/lime, /turf/open/floor/wood, @@ -584,20 +586,6 @@ /obj/item/clothing/shoes/swimmingfins, /turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/maintenance) -"azr" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "azv" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva/multi_tiles, @@ -627,10 +615,12 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/floor3, /area/varadero/interior/mess) -"aAr" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"aAl" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/item/shard{ + icon_state = "medium" }, /obj/item/lightstick/red/spoke/planted{ pixel_x = -1; @@ -638,13 +628,8 @@ explo_proof = 1; unacidable = 1 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "aAC" = ( /obj/item/shard{ icon_state = "medium" @@ -693,30 +678,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/disposals) -"aBY" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"aCd" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) "aCl" = ( /obj/structure/machinery/door/airlock/strata/autoname{ autoname = 0; @@ -745,10 +706,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"aCM" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "aCW" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -766,6 +723,18 @@ /obj/structure/machinery/power/apc/power/north, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) +"aDg" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/coast/west, +/area/varadero/exterior/pontoon_beach) "aDu" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/shiva/floor3, @@ -794,6 +763,21 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/administration) +"aDS" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "aDZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/icefloor/asteroidplating, @@ -993,29 +977,6 @@ }, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"aJD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "aJF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1038,17 +999,6 @@ /obj/structure/largecrate/random/case, /turf/open/floor/shiva/purple/east, /area/varadero/interior/research) -"aKk" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 1; - pixel_x = -5; - pixel_y = 6 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "aKJ" = ( /obj/item/tool/warning_cone, /obj/structure/prop/invuln/lattice_prop{ @@ -1083,12 +1033,17 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"aNT" = ( -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/north) "aOg" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) +"aOh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "aOG" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -1; @@ -1103,6 +1058,10 @@ /obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"aPf" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "aPQ" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva/north, @@ -1113,6 +1072,15 @@ }, /turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) +"aPY" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "aQc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1148,6 +1116,14 @@ /obj/item/tool/screwdriver, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) +"aRg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "aRr" = ( /turf/open/floor/shiva/floor3, /area/varadero/interior/hall_NW) @@ -1217,6 +1193,10 @@ /obj/structure/prop/rock/brown, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) +"aUz" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/pontoon_beach) "aUA" = ( /obj/structure/prop/rock/brown, /obj/structure/prop/invuln/lattice_prop, @@ -1243,6 +1223,17 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) +"aUS" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) "aVs" = ( /obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ id = "undergroundhangarsouth"; @@ -1291,6 +1282,18 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) +"aXd" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) "aXm" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -1322,18 +1325,6 @@ /obj/structure/largecrate/supply/medicine/iv, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"aYg" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) "aZb" = ( /obj/structure/bedsheetbin{ icon_state = "linenbin-empty" @@ -1390,16 +1381,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"bah" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) "bak" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -1426,6 +1407,11 @@ /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"bbF" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "bbG" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/coast/west, @@ -1434,6 +1420,18 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"bbU" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/coast/east, +/area/varadero/exterior/pontoon_beach) "bbW" = ( /obj/item/clothing/under/shorts/black, /turf/open/floor/shiva/bluefull/west, @@ -1451,6 +1449,12 @@ /obj/item/tool/wet_sign, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/eastbeach) +"bcF" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) "bdc" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -1459,6 +1463,12 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) +"bde" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "bdH" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/north_research) @@ -1517,6 +1527,15 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva/red/east, /area/varadero/interior/security) +"bfe" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) "bfg" = ( /obj/structure/surface/table, /obj/item/ashtray/plastic, @@ -1556,21 +1575,27 @@ "bgE" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) +"bhg" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "bhF" = ( /obj/structure/sign/safety/water{ pixel_x = 15 }, /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) -"bhU" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) "bih" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1605,18 +1630,15 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"biS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"biY" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, /turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) +/area/varadero/exterior/monsoon) "bjf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1627,6 +1649,12 @@ }, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) +"bjv" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz1_near) "bjA" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/shiva/blue/north, @@ -1688,6 +1716,18 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"bmL" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) "bmV" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" @@ -1740,6 +1780,12 @@ /obj/structure/prop/almayer/computers/sensor_computer2, /turf/open/floor/prison/darkredfull2, /area/varadero/interior/dock_control) +"boP" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/platform_decoration/metal/kutjevo/west, +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "boV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1758,6 +1804,23 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) +"bpP" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "bpT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1818,13 +1881,6 @@ }, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"btU" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/beachcorner2/south_west, -/area/varadero/exterior/pontoon_beach) "bum" = ( /obj/structure/machinery/shower{ dir = 4 @@ -1849,23 +1905,6 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"bvF" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "bwz" = ( /obj/structure/closet/emcloset, /turf/open/floor/shiva/purple/east, @@ -1924,12 +1963,6 @@ }, /turf/open/floor/shiva/redfull, /area/varadero/interior/security) -"bys" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) "byw" = ( /obj/structure/surface/table, /obj/item/folder/black, @@ -1939,14 +1972,6 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/eastocean) -"byF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/bare_catwalk, -/area/varadero/exterior/farocean) "byU" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/icefloor/asteroidplating, @@ -1964,14 +1989,6 @@ "bzq" = ( /turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/medical) -"bzz" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) "bAj" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 9; @@ -2052,27 +2069,18 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"bCM" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "bDs" = ( /obj/item/weapon/gun/flare{ current_mag = null }, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz2_near) +"bDC" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "bEj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction, @@ -2087,19 +2095,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/comms3) -"bEY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/rock/brown{ - explo_proof = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." - }, -/turf/open/gm/coast/beachcorner/south_east, -/area/varadero/exterior/pontoon_beach) "bFj" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/donkpockets{ @@ -2115,14 +2110,6 @@ /obj/effect/landmark/crap_item, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bFD" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "bFV" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -2163,18 +2150,12 @@ "bIt" = ( /turf/closed/wall, /area/varadero/interior/technical_storage) -"bJv" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/light{ - dir = 4 +"bIR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "bJH" = ( /obj/item/tool/warning_cone, /obj/effect/decal/warning_stripes{ @@ -2185,37 +2166,18 @@ "bJI" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/lz1_near) -"bJV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"bLl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"bKZ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) +"bLn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "bLp" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 @@ -2287,6 +2249,14 @@ /obj/item/clothing/suit/storage/bomber, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) +"bNx" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "bNC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2300,6 +2270,20 @@ /obj/item/prop/almayer/comp_open, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) +"bOt" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"bOu" = ( +/obj/effect/sentry_landmark/lz_1/bottom_left, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "bOO" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -2308,19 +2292,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) -"bPe" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) -"bPk" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "bPl" = ( /obj/structure/bed/chair{ dir = 1 @@ -2382,6 +2353,19 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/administration) +"bQQ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "bRg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2412,17 +2396,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva/north, /area/varadero/interior/research) -"bSj" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) "bSu" = ( /obj/structure/closet/crate/supply, /obj/effect/spawner/random/attachment, @@ -2432,6 +2405,12 @@ /obj/structure/machinery/power/apc/power/north, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) +"bSG" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/coast/south, +/area/varadero/exterior/pontoon_beach) "bSQ" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, @@ -2441,14 +2420,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"bTg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) "bTm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/weapon/gun/rifle/m4ra, @@ -2459,6 +2430,13 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/records) +"bTK" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "bTN" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2495,17 +2473,6 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"bVe" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) "bVq" = ( /obj/structure/machinery/light{ dir = 4 @@ -2521,19 +2488,6 @@ "bVI" = ( /turf/open/floor/shiva/green/west, /area/varadero/interior/court) -"bVQ" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) "bVS" = ( /turf/open/gm/dirt/desert_dug, /area/varadero/exterior/lz1_near) @@ -2547,6 +2501,39 @@ /obj/item/prop/magazine/dirty/torn, /turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) +"bWu" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"bWE" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz2_near) +"bYn" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/prop/rock/brown{ + explo_proof = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -15; + pixel_y = 16; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/pontoon_beach) "bYO" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, @@ -2590,24 +2577,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"caD" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"caE" = ( -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz2_near) "cba" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, @@ -2670,18 +2639,6 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"ccU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) -"cdb" = ( -/turf/closed/wall, -/area/varadero/interior/maintenance/security/south) "cdc" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/strata/grey_multi_tiles, @@ -2718,6 +2675,18 @@ /obj/structure/bed/chair, /turf/open/floor/shiva/floor3, /area/varadero/interior/laundry) +"ceH" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "ceJ" = ( /obj/item/storage/fancy/candle_box, /turf/open/floor/carpet, @@ -2736,6 +2705,14 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) +"cfQ" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "cgb" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/light{ @@ -2760,6 +2737,10 @@ }, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) +"cgX" = ( +/obj/effect/sentry_landmark/lz_1/top_left, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "che" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2867,6 +2848,12 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) +"clc" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) "clv" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/pipes/standard/simple/hidden/green{ @@ -2882,19 +2869,6 @@ /obj/effect/landmark/yautja_teleport, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) -"clG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) "clX" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance) @@ -2929,6 +2903,21 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) +"cmA" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) +"cmL" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "cmU" = ( /obj/item/reagent_container/food/snacks/fishfingers{ pixel_y = 7 @@ -2936,17 +2925,6 @@ /obj/structure/surface/table, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"cne" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) "cnv" = ( /obj/structure/closet/crate/ammo/alt, /obj/item/ammo_magazine/pistol/vp78, @@ -2978,6 +2956,12 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) +"coP" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "coQ" = ( /obj/effect/decal/cleanable/blood, /turf/open/gm/river/shallow_ocean_shallow_ocean, @@ -2992,12 +2976,24 @@ /obj/structure/morgue, /turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) -"cpC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"cpB" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) +/area/varadero/interior/oob) "cpF" = ( /obj/structure/barricade/handrail{ desc = "Your platforms look pretty heavy king, let me support them for you."; @@ -3007,20 +3003,16 @@ }, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) -"cql" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +"cqu" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full" }, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 }, /turf/open/gm/dirt, -/area/varadero/exterior/monsoon) +/area/varadero/exterior/lz1_near) "cqB" = ( /obj/structure/machinery/light{ dir = 8 @@ -3042,15 +3034,26 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"crC" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "csb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/shiva/floor3, /area/varadero/interior/medical) +"csl" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "csr" = ( /obj/structure/prop/ice_colony/flamingo, /turf/open/floor/plating/icefloor/asteroidplating, @@ -3072,24 +3075,6 @@ "cty" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/central) -"ctE" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "cuc" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -3139,6 +3124,19 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) +"cwb" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "cwe" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/surface/table/reinforced/prison, @@ -3174,6 +3172,12 @@ /obj/item/clothing/suit/armor/riot, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) +"cwt" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "cwE" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance/north) @@ -3182,19 +3186,30 @@ /obj/item/storage/bible/booze, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"cxn" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/prop/rock/brown{ + explo_proof = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." + }, +/turf/open/gm/coast/south, +/area/varadero/exterior/pontoon_beach) "cxT" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"cym" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"cyP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "cyT" = ( /obj/structure/machinery/light/small, /obj/structure/prop/invuln/lattice_prop{ @@ -3265,17 +3280,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) -"cEm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "cEu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3300,6 +3304,20 @@ /obj/structure/xenoautopsy/tank/larva, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) +"cFv" = ( +/obj/structure/plasticflaps/mining, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "cFw" = ( /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) @@ -3443,14 +3461,12 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) -"cKB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"cKb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/south) "cKC" = ( /obj/item/explosive/grenade/incendiary, /turf/open/floor/shiva/floor3, @@ -3477,15 +3493,6 @@ "cLP" = ( /turf/open/space, /area/space) -"cLV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "cLX" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, @@ -3510,6 +3517,19 @@ /obj/item/device/binoculars, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) +"cNc" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "cNh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight, @@ -3543,6 +3563,10 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) +"cNC" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "cNF" = ( /obj/structure/machinery/light{ dir = 4 @@ -3555,6 +3579,10 @@ /obj/item/map/current_map, /turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) +"cNK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "cNT" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -3590,6 +3618,15 @@ }, /turf/open/floor/shiva/north, /area/varadero/interior/research) +"cQm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "cQr" = ( /obj/item/tool/crowbar/red{ pixel_x = 9; @@ -3630,6 +3667,19 @@ "cSq" = ( /turf/open/floor/wood, /area/varadero/interior/chapel) +"cSB" = ( +/obj/effect/landmark/corpsespawner/miner, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/north) +"cSL" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) "cTb" = ( /obj/item/device/flashlight/flare, /turf/open/shuttle/red, @@ -3658,6 +3708,10 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) +"cUD" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz1_near) "cUE" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -3668,24 +3722,6 @@ }, /turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) -"cUF" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "cUN" = ( /obj/structure/prop/rock/brown{ explo_proof = 1; @@ -3729,35 +3765,6 @@ /obj/structure/prop/invuln/pipe_water, /turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) -"cWu" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"cXa" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/vessel) "cXQ" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -3790,10 +3797,6 @@ /obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/monsoon) -"cYB" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "cYC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/gm/dirt, @@ -3806,6 +3809,21 @@ /obj/structure/machinery/landinglight/ds2, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) +"cZC" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "cZN" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/yellowfull/west, @@ -3846,6 +3864,13 @@ /obj/item/trash/liquidfood, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) +"dcC" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/effect/overlay/palmtree_r, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz1_near) "dcM" = ( /obj/item/ammo_magazine/revolver/cmb, /turf/open/auto_turf/sand_white/layer1, @@ -3910,10 +3935,23 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"deV" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) "deX" = ( /obj/item/trash/boonie, /turf/open/floor/shiva/yellow/west, /area/varadero/interior/hall_NW) +"dfc" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) "dfs" = ( /obj/item/storage/belt/utility, /obj/structure/surface/rack, @@ -3969,10 +4007,10 @@ /obj/item/weapon/sword/katana, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"dhV" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +"dii" = ( +/obj/effect/sentry_landmark/lz_1/bottom_right, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "dir" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -4066,16 +4104,20 @@ "dkl" = ( /turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) +"dko" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) "dkr" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/research) -"dkC" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) "dkS" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -4177,6 +4219,11 @@ /obj/item/clothing/head/helmet, /turf/open/floor/wood, /area/varadero/interior/security) +"doF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "doH" = ( /obj/effect/decal/cleanable/blood, /turf/open/gm/dirt, @@ -4267,13 +4314,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) -"dsC" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "dtj" = ( /obj/structure/sign/poster/propaganda, /turf/closed/wall, @@ -4358,24 +4398,17 @@ /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) +"dxV" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "dyl" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) -"dyo" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/coast/beachcorner2/south_east, -/area/varadero/exterior/pontoon_beach) "dzH" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, @@ -4401,6 +4434,13 @@ /obj/structure/machinery/body_scanconsole, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) +"dCb" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/swcaves) "dCz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/camera{ @@ -4458,26 +4498,6 @@ /obj/structure/prop/fishing/line/long, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) -"dFC" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - explo_proof = 1; - unacidable = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) "dGh" = ( /obj/effect/landmark/objective_landmark/medium, /obj/structure/closet/crate/hydroponics/prespawned, @@ -4505,6 +4525,10 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) +"dHG" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "dHY" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -4554,14 +4578,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"dJI" = ( -/obj/structure/surface/rack, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "dJX" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, @@ -4582,6 +4598,34 @@ /obj/item/reagent_container/food/drinks/cans/souto/grape, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) +"dKW" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"dLn" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) +"dLA" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) "dLN" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -4593,6 +4637,11 @@ }, /turf/open/floor/shiva/north, /area/varadero/interior/medical) +"dLO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "dLP" = ( /obj/item/stool{ icon_state = "stool_alt" @@ -4608,6 +4657,13 @@ /obj/item/tool/surgery/bonegel/predatorbonegel, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) +"dME" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "dNh" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -4682,6 +4738,17 @@ "dOS" = ( /turf/open/gm/dirt/desert2, /area/varadero/exterior/pontoon_beach) +"dPB" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "dPR" = ( /obj/item/reagent_container/glass/bucket, /turf/open/gm/dirt, @@ -4764,13 +4831,6 @@ "dTG" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/eastocean) -"dTS" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) "dUh" = ( /obj/structure/morgue, /turf/open/floor/shiva/red/east, @@ -4779,23 +4839,10 @@ /obj/structure/machinery/bioprinter, /turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"dUL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "dUS" = ( /obj/effect/landmark/xeno_spawn, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"dVh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "dVq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -4815,16 +4862,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/administration) -"dWH" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) "dWN" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/faxmachine{ @@ -4835,6 +4872,12 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"dWP" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) "dWV" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -4849,6 +4892,16 @@ "dXg" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) +"dXi" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/vessel) "dXr" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -4888,29 +4941,32 @@ }, /turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) -"dYW" = ( -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 11 +"dYM" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 }, -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/eastbeach) +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "dYX" = ( /obj/structure/machinery/light, /turf/open/floor/carpet, /area/varadero/interior/library) +"dZn" = ( +/obj/structure/prop/rock/brown, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/north) "dZT" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) -"eat" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) "eaC" = ( /obj/item/packageWrap, /turf/open/gm/dirt, @@ -4962,29 +5018,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) -"ebJ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"ebN" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach) "ecb" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light{ @@ -5000,25 +5033,6 @@ "edu" = ( /turf/open/floor/shiva/blue/north, /area/varadero/interior/maintenance) -"edD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) -"edM" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "eea" = ( /obj/vehicle/train/cargo/engine{ dir = 2 @@ -5030,15 +5044,30 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/shiva/yellow/northeast, /area/varadero/interior/technical_storage) -"eev" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"eer" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_y = 9 }, -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) +"eeP" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + pixel_x = 11; + pixel_y = 9 + }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = 10; + pixel_y = 20 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "efw" = ( /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) @@ -5051,6 +5080,15 @@ }, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) +"egb" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz1_near) "egj" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/plating/icefloor, @@ -5083,22 +5121,19 @@ /obj/item/reagent_container/glass/pressurized_canister, /turf/open/floor/shiva/yellow/west, /area/varadero/interior/technical_storage) +"egU" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "egV" = ( /obj/item/ammo_magazine/handful/shotgun/buckshot, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"eha" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "ehD" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -5117,27 +5152,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) -"ehM" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/vessel) -"ehT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/east, -/area/varadero/exterior/comms4) "ehY" = ( /obj/item/clothing/under/shorts/red{ pixel_y = 9; @@ -5197,18 +5211,13 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/comms3) -"ekE" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"ekq" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 }, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "ekO" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river/ocean/deep_ocean, @@ -5216,11 +5225,6 @@ "elI" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastocean) -"elO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "elP" = ( /turf/open/gm/dirt/desert2, /area/varadero/exterior/monsoon) @@ -5249,6 +5253,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/red/north, /area/varadero/interior/security) +"enS" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz2_near) "enU" = ( /turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/cargo) @@ -5257,19 +5265,6 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/farocean) -"eoj" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/north, -/area/varadero/exterior/pontoon_beach) -"eoq" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "eov" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/central) @@ -5327,14 +5322,6 @@ }, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"eqg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/closed/wall/rock/brown, -/area/varadero/exterior/pontoon_beach) "eqn" = ( /obj/structure/machinery/light{ dir = 4 @@ -5435,6 +5422,12 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"etJ" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) "etV" = ( /obj/item/stack/sheet/metal, /turf/open/gm/dirt, @@ -5454,14 +5447,6 @@ /obj/structure/machinery/light, /turf/open/floor/shiva/green/north, /area/varadero/interior/hall_N) -"euS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/beachcorner/south_west, -/area/varadero/exterior/pontoon_beach/lz) "evV" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -5580,19 +5565,6 @@ }, /turf/open/floor/shiva/north, /area/varadero/interior/research) -"ezU" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - explo_proof = 1; - unacidable = 1 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/eastbeach) "ezW" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -5631,23 +5603,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"eBm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "eBs" = ( /turf/closed/wall/r_wall/elevator{ dir = 9 @@ -5688,21 +5643,15 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/interior_protected/caves/central) -"eCB" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"eCU" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 3; - pixel_y = 15; - explo_proof = 1; - unacidable = 1 +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) "eDF" = ( /obj/structure/bed/stool{ icon_state = "stool_alt" @@ -5718,17 +5667,14 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"eDY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "eEd" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) +"eEF" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "eEY" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 4 @@ -5748,12 +5694,6 @@ "eFJ" = ( /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/comms3) -"eFW" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "eGd" = ( /obj/structure/machinery/power/reactor/colony, /obj/structure/machinery/light{ @@ -5807,10 +5747,6 @@ /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/grey_multi_tiles, -/area/varadero/interior_protected/vessel) "eIT" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/sake{ @@ -5827,6 +5763,12 @@ "eIV" = ( /turf/open/floor/shiva/wred/east, /area/varadero/interior/medical) +"eJD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "eJI" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -5842,18 +5784,6 @@ }, /turf/open/floor/shiva/red, /area/varadero/interior/medical) -"eJN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/eastbeach) "eJS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -5867,14 +5797,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"eKF" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt"; - pixel_y = 9 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "eKL" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -5948,13 +5870,6 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"eOa" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/west, -/area/varadero/exterior/lz1_near) "eOh" = ( /obj/structure/machinery/optable, /obj/effect/landmark/corpsespawner/colonist/burst, @@ -5996,17 +5911,6 @@ }, /turf/open/floor/shiva/green, /area/varadero/interior/hall_N) -"eQa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "eQm" = ( /obj/structure/window/framed/wood, /turf/open/floor/wood, @@ -6113,6 +6017,15 @@ "eUh" = ( /turf/open/floor/shiva/bluefull/west, /area/varadero/interior/maintenance) +"eUk" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "eUv" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -6132,6 +6045,9 @@ /obj/structure/largecrate/random, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) +"eVy" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "eVH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/oil/streak, @@ -6156,52 +6072,15 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"eWp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"eWa" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/structure/largecrate/random, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "eWR" = ( /turf/open/floor/shiva/purplecorners/west, /area/varadero/interior/research) -"eWZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"eXg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "eXr" = ( /obj/structure/surface/rack, /obj/item/storage/briefcase, @@ -6283,14 +6162,22 @@ }, /turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/comms3) +"faT" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "faX" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) -"fbr" = ( -/obj/effect/landmark/corpsespawner/miner, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/north) "fbw" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro{ desc = "A high-power hydroelectric generator."; @@ -6390,6 +6277,11 @@ }, /turf/open/floor/shiva/north, /area/varadero/interior/maintenance/research) +"fdQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "fef" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/eat_bar{ @@ -6402,6 +6294,15 @@ }, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) +"fek" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "feH" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -6412,13 +6313,6 @@ /obj/structure/barricade/wooden, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"feR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "feV" = ( /obj/structure/surface/table, /obj/effect/spawner/random/attachment, @@ -6446,24 +6340,31 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"ffY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"ffF" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 }, /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) -"fga" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 }, -/obj/structure/surface/rack, -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 2; + pixel_y = 15; + explo_proof = 1; + unacidable = 1; + layer = 4.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"fgj" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "fgS" = ( /obj/structure/closet/crate/secure, /obj/effect/landmark/objective_landmark/close, @@ -6539,6 +6440,9 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/shiva/redfull, /area/varadero/interior/medical) +"fiY" = ( +/turf/open/floor/plating, +/area/varadero/interior/maintenance/security/north) "fjg" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) @@ -6547,10 +6451,6 @@ /obj/structure/prop/rock/brown, /turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) -"fjw" = ( -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) "fjx" = ( /obj/structure/bed/chair{ dir = 1 @@ -6620,6 +6520,21 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) +"fkM" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) "fkR" = ( /turf/closed/wall, /area/varadero/interior/court) @@ -6633,6 +6548,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) +"fld" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "fmu" = ( /obj/structure/barricade/handrail/wire{ layer = 3.5 @@ -6646,6 +6565,21 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) +"fmG" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "fnj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -6662,12 +6596,6 @@ /obj/effect/spawner/random/technology_scanner, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"fnX" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) "fof" = ( /obj/structure/shuttle/engine/heater{ dir = 8; @@ -6701,12 +6629,6 @@ /obj/structure/machinery/bot/mulebot, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) -"foQ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/pontoon_beach) "foU" = ( /obj/structure/filingcabinet{ density = 0; @@ -6756,6 +6678,21 @@ /obj/item/weapon/gun/rifle/m41a, /turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/hall_SE) +"fqD" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) +"fqS" = ( +/obj/structure/platform/metal/almayer/north{ + density = 0; + climb_delay = 0 + }, +/obj/structure/catwalk{ + layer = 3 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "fqY" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -6780,6 +6717,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"fsU" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "ftm" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -6848,6 +6789,21 @@ "fwo" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) +"fwt" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1; + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) +"fwF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "fxK" = ( /obj/structure/machinery/floodlight/landing{ desc = "A powerful light stationed near construction zones to provide better visibility."; @@ -6886,17 +6842,6 @@ /obj/structure/catwalk, /turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) -"fyz" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "fyH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -6944,6 +6889,27 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/blue, /area/varadero/interior/administration) +"fAt" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/bed/chair/comfy{ + pixel_x = -7; + pixel_y = 18 + }, +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 7; + pixel_y = 12 + }, +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "fAO" = ( /turf/open/floor/plating, /area/varadero/interior/technical_storage) @@ -6994,13 +6960,6 @@ /obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/records) -"fEA" = ( -/obj/structure/girder/displaced, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "fEI" = ( /obj/structure/bedsheetbin{ icon_state = "linenbin-empty" @@ -7016,6 +6975,14 @@ }, /turf/open/floor/shiva/red/east, /area/varadero/interior/security) +"fEZ" = ( +/turf/closed/wall/r_wall, +/area/varadero/interior/maintenance/security/north) +"fFb" = ( +/obj/item/tool/pickaxe, +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) "fFm" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/drinkingglass{ @@ -7046,14 +7013,6 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) -"fFH" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) "fFI" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -7075,6 +7034,23 @@ /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) +"fGp" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "This leathery protofish was named the gullible toothfish for the combination of its near identical dentata to that of Homo sapiens sapiens and the fact that if released after being caught, it is not uncommon to catch the same one; it not having learned its lesson. Its meat is said to taste like bitter clove."; + icon = 'icons/obj/items/fishing_atoms.dmi'; + icon_state = "gullible_toothfish_gutted"; + name = "gullible toothfish"; + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "fGM" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -7091,12 +7067,6 @@ /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"fHf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "fHg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, @@ -7122,6 +7092,18 @@ }, /turf/open/floor/shiva/snow_mat, /area/varadero/interior/security) +"fHA" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) "fIk" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/asteroidfloor/north, @@ -7199,6 +7181,18 @@ /obj/effect/landmark/crap_item, /turf/open/floor/shiva/yellow/west, /area/varadero/interior/comms3) +"fMj" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) "fMq" = ( /obj/item/device/cassette_tape/heavymetal{ pixel_x = -3; @@ -7220,24 +7214,6 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/hall_SE) -"fNm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - explo_proof = 1; - unacidable = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) "fND" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -7246,15 +7222,12 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"fOG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"fOm" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 }, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "fOO" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/r_wall/unmeltable, @@ -7376,6 +7349,10 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) +"fUD" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) "fUF" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 @@ -7395,6 +7372,17 @@ }, /turf/open/floor/shiva/yellow/northwest, /area/varadero/interior/disposals) +"fVo" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "fVt" = ( /obj/structure/machinery/door_control{ id = "colony_sec_armory"; @@ -7436,30 +7424,6 @@ /obj/structure/bed/chair, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"fWE" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/coast/beachcorner2/north_west, -/area/varadero/exterior/pontoon_beach/lz) -"fWR" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_half_cap" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) "fWU" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/redfull/west, @@ -7487,16 +7451,6 @@ /obj/item/trash/barcardine, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"fXA" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) "fXG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7571,10 +7525,10 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) -"fZX" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/pontoon_beach) +"fZQ" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) "gan" = ( /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/shiva/green/west, @@ -7593,12 +7547,6 @@ }, /turf/open/floor/shiva/green/northwest, /area/varadero/interior/hall_SE) -"gaG" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) "gaJ" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/icefloor/asteroidplating, @@ -7638,25 +7586,6 @@ }, /turf/open/floor/shiva/yellow/northwest, /area/varadero/interior/cargo) -"gdJ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/rock/brown{ - explo_proof = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -15; - pixel_y = 16; - explo_proof = 1; - unacidable = 1 - }, -/turf/open/gm/coast/beachcorner/south_west, -/area/varadero/exterior/pontoon_beach) "gdN" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/objective_landmark/close, @@ -7673,47 +7602,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/south) -"geK" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) -"gfc" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) -"gfe" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) "gfg" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -7721,12 +7609,6 @@ }, /turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) -"gfj" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "gfk" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, @@ -7766,10 +7648,6 @@ }, /turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) -"gfu" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "gfA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -7780,10 +7658,12 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"gfG" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) +"gga" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/closed/wall/rock/brown, +/area/varadero/exterior/lz1_near) "ggk" = ( /turf/closed/wall/r_wall/elevator{ dir = 8 @@ -7800,10 +7680,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"gha" = ( -/obj/structure/surface/table, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "ghb" = ( /obj/item/tool/crowbar, /turf/open/floor/shiva/red, @@ -7842,9 +7718,22 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva/purple/north, /area/varadero/interior/research) +"giu" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "giN" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) +"giY" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "gja" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/prop/invuln/overhead_pipe{ @@ -7859,6 +7748,18 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) +"gjm" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) "gjs" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; @@ -7878,14 +7779,6 @@ /obj/structure/machinery/computer/communications, /turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"gjz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "gjC" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, @@ -7950,6 +7843,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"glM" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/floor/plating/bare_catwalk, +/area/varadero/exterior/farocean) "gms" = ( /obj/effect/landmark/good_item, /turf/open/shuttle/red, @@ -7959,6 +7862,18 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/laundry) +"gmH" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "gmK" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/shiva/red/southeast, @@ -8004,23 +7919,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"gor" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/comms4) -"gpJ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "gqE" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 1 @@ -8080,25 +7978,6 @@ "gsP" = ( /turf/open/space/basic, /area/space) -"gsQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) "gtv" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -8106,15 +7985,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) -"gtz" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "gun" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/shiva/purple/east, @@ -8191,6 +8061,18 @@ /obj/structure/machinery/light, /turf/open/floor/shiva/floor3, /area/varadero/interior/medical) +"gxa" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz1_near) "gxi" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; @@ -8199,6 +8081,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) +"gxM" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "gxQ" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, @@ -8207,6 +8095,12 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) +"gyu" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "gyw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8239,15 +8133,25 @@ }, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/technical_storage) -"gzm" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"gzG" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 }, -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, -/area/varadero/exterior/monsoon) +/area/varadero/exterior/lz1_near) +"gAd" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "gAl" = ( /obj/structure/bed/chair{ dir = 4 @@ -8268,12 +8172,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"gAV" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "gBi" = ( /obj/item/stool{ icon_state = "stool_alt" @@ -8304,20 +8202,6 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"gBP" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/bare_catwalk, -/area/varadero/exterior/farocean) "gBV" = ( /obj/structure/machinery/photocopier, /turf/open/floor/shiva/redfull/west, @@ -8355,29 +8239,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"gCZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - explo_proof = 1; - unacidable = 1 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) -"gDh" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "gDr" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, @@ -8397,6 +8258,12 @@ /obj/structure/machinery/medical_pod/bodyscanner, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) +"gEH" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/closed/wall/rock/brown, +/area/varadero/exterior/pontoon_beach) "gEO" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/pistol/m4a3, @@ -8421,6 +8288,12 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva/redfull, /area/varadero/interior/medical) +"gFc" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "gFt" = ( /obj/structure/largecrate/random, /turf/open/floor/shiva/green/west, @@ -8468,6 +8341,13 @@ /obj/structure/machinery/vending/snack, /turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) +"gJi" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "gJs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8484,6 +8364,19 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"gJP" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "gKn" = ( /obj/structure/machinery/light{ dir = 8 @@ -8536,17 +8429,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/pontoon_beach) -"gMm" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/maintenance/south) "gMp" = ( /obj/structure/surface/table, /obj/item/paper_bin{ @@ -8556,14 +8438,6 @@ /obj/item/tool/pen/red/clicky, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"gMV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) "gNb" = ( /obj/structure/closet/wardrobe/chaplain_black, /turf/open/floor/wood, @@ -8590,6 +8464,10 @@ /obj/item/tool/wirecutters, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"gOJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "gPi" = ( /turf/open/gm/coast/west, /area/varadero/exterior/monsoon) @@ -8602,20 +8480,6 @@ "gPG" = ( /turf/open/gm/dirt/desert2, /area/varadero/exterior/lz1_near) -"gPL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/coast/west, -/area/varadero/exterior/pontoon_beach) "gPZ" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -8709,6 +8573,12 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior_protected/caves) +"gUX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "gVd" = ( /obj/structure/fence, /turf/open/gm/coast/north, @@ -8720,13 +8590,6 @@ "gVO" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) -"gVP" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/lz2_near) "gVQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8745,30 +8608,19 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"gWj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) +"gWu" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/north) "gWL" = ( /obj/structure/surface/table, /obj/structure/machinery/faxmachine, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"gXf" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) "gXh" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" @@ -8870,6 +8722,17 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) +"haY" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/vessel) "hbi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8877,14 +8740,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"hbD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) "hbP" = ( /obj/structure/surface/table, /obj/item/storage/firstaid/regular{ @@ -8906,13 +8761,16 @@ /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"hcI" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 +"hcG" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 }, +/turf/open/gm/coast/east, +/area/varadero/exterior/lz2_near) +"hdh" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/north) +/area/varadero/interior_protected/caves/swcaves) "hds" = ( /turf/open/gm/coast/north, /area/varadero/exterior/eastocean) @@ -8922,12 +8780,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) -"hej" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) "hek" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/shiva/red/northeast, @@ -8941,18 +8793,22 @@ /obj/structure/machinery/power/apc/no_power/west, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"hfn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "hfo" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) +"hfA" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/vessel) "hfD" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair/office/light{ @@ -8961,6 +8817,12 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva/north, /area/varadero/interior/research) +"hfQ" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "hfR" = ( /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/varadero/interior/chapel) @@ -9008,6 +8870,10 @@ }, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) +"hij" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "hiD" = ( /turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/mess) @@ -9015,12 +8881,6 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"hjf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) "hjn" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -9030,24 +8890,6 @@ /obj/structure/girder, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"hjK" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/bare_catwalk, -/area/varadero/exterior/farocean) -"hkQ" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz1_near) "hkZ" = ( /obj/structure/surface/table/woodentable, /obj/item/folder/red, @@ -9086,23 +8928,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"hlF" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"hlG" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "hlK" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/drinkingglasses{ @@ -9119,6 +8944,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"hlN" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) "hmg" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -9159,15 +8988,6 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"hnR" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "hoC" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, @@ -9200,6 +9020,24 @@ }, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) +"hpv" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) +"hpx" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) +"hpC" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4; + layer = 4 + }, +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river/desert/deep/covered, +/area/varadero/interior/maintenance/north) "hre" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) @@ -9210,13 +9048,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/shiva/green/northwest, /area/varadero/interior/hall_SE) -"hsa" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz2_near) "hsl" = ( /turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) @@ -9236,6 +9067,12 @@ /obj/item/tool/wet_sign, /turf/open/floor/white, /area/varadero/interior/toilets) +"hsE" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) "hsF" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/shiva/floor3, @@ -9243,21 +9080,13 @@ "hte" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/vessel) -"hti" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) "hto" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) +"htt" = ( +/turf/closed/wall/rock/brown, +/area/varadero/interior/maintenance/security/north) "hty" = ( /obj/structure/closet/secure_closet/personal, /obj/item/storage/large_holster/ceremonial_sword/full, @@ -9329,6 +9158,15 @@ /obj/structure/largecrate/random, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) +"hwr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/north) "hwE" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river/shallow_ocean_shallow_ocean, @@ -9363,12 +9201,37 @@ /obj/structure/closet/secure_closet/security, /turf/open/floor/shiva/red/southwest, /area/varadero/interior/administration) +"hxb" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) +"hxg" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/coast/beachcorner2/north_west, +/area/varadero/exterior/pontoon_beach/lz) "hxO" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) +"hxW" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/coast/north, +/area/varadero/exterior/pontoon_beach) "hyd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9402,6 +9265,11 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) +"hzj" = ( +/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/south) "hzm" = ( /turf/open/floor/shiva/red/east, /area/varadero/interior/security) @@ -9409,18 +9277,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"hzK" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) "hAg" = ( /obj/structure/largecrate/random/case/double, /turf/open/gm/dirt, @@ -9429,12 +9285,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/varadero/interior/court) -"hAI" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "hBA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, @@ -9442,23 +9292,6 @@ "hBX" = ( /turf/open/floor/shiva/purple/southwest, /area/varadero/interior/research) -"hCw" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) -"hCK" = ( -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/eastbeach) "hCZ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -9514,14 +9347,6 @@ /obj/structure/closet/l3closet/scientist, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"hET" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) "hFA" = ( /obj/structure/window/reinforced{ dir = 4 @@ -9549,14 +9374,36 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) +"hHb" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/desert/deep/covered, +/area/varadero/interior/maintenance/north) +"hHc" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "hHn" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hHz" = ( -/obj/effect/sentry_landmark/lz_1/bottom_right, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "hHE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9592,10 +9439,17 @@ }, /turf/open/floor/wood/wood_broken, /area/varadero/interior/court) -"hIt" = ( -/obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/gm/dirt/desert0, -/area/varadero/exterior/lz2_near) +"hID" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "hJl" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 @@ -9743,20 +9597,6 @@ }, /turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) -"hNq" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/coast/south, -/area/varadero/exterior/pontoon_beach) "hOp" = ( /obj/structure/machinery/floodlight/landing{ desc = "A powerful light stationed near construction zones to provide better visibility."; @@ -9783,10 +9623,26 @@ "hPj" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/security) +"hPm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "hPq" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"hPs" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/coast/east, +/area/varadero/exterior/comms4) +"hPA" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) "hPD" = ( /turf/open/floor/shiva/floor3, /area/varadero/interior/court) @@ -9794,6 +9650,12 @@ /obj/item/paper/crumpled, /turf/open/floor/shiva/red/west, /area/varadero/interior/morgue) +"hPY" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "hQb" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ @@ -9917,6 +9779,12 @@ /obj/structure/closet/wardrobe/engineering_yellow, /turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) +"hVi" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "hVL" = ( /obj/item/stack/sandbags/large_stack{ pixel_y = 4; @@ -9960,6 +9828,10 @@ /obj/structure/surface/table, /turf/open/floor/shiva/red/north, /area/varadero/interior/security) +"hXB" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "hXR" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) @@ -9967,6 +9839,10 @@ /obj/structure/window/framed/colony, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/maintenance) +"hYr" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "hZo" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -9974,6 +9850,12 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) +"hZq" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) "hZD" = ( /turf/open/floor/shiva/redfull, /area/varadero/interior/security) @@ -10054,24 +9936,6 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"icb" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/device/camera{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/newspaper{ - layer = 2.99; - pixel_x = 7; - pixel_y = 4 - }, -/obj/structure/surface/table, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) "icl" = ( /obj/structure/prop/rock/brown, /turf/closed/wall/rock/brown, @@ -10099,23 +9963,24 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"icJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "icM" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/shiva/green/east, /area/varadero/interior/hall_NW) +"idh" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/coast/west, +/area/varadero/exterior/lz1_near) "idn" = ( /obj/structure/window/reinforced{ dir = 4; @@ -10173,20 +10038,6 @@ /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/wood, /area/varadero/interior/court) -"igB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) "igQ" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating/icefloor/asteroidplating, @@ -10217,24 +10068,18 @@ /obj/item/storage/belt/utility, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) +"ihw" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/closed/wall/rock/brown, +/area/varadero/exterior/pontoon_beach) "ihC" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/monsoon) -"ihX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) "ihY" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) @@ -10304,14 +10149,29 @@ /obj/structure/prop/rock/brown, /turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) -"imu" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +"imo" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"imq" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "imz" = ( /turf/closed/wall/r_wall/elevator/gears, /area/varadero/interior/records) @@ -10378,17 +10238,6 @@ /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) -"ipi" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/sign/double/barsign{ - name = "The Salty Cutlass"; - desc = "Come drown your troubles away! Mind the sway." - }, -/turf/closed/wall/wood, -/area/varadero/interior/beach_bar) "ipl" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 9; @@ -10410,13 +10259,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"ipZ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) "iqv" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -10454,6 +10296,12 @@ }, /turf/open/floor/shiva/blue/west, /area/varadero/interior/technical_storage) +"ist" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "isK" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/largecrate/random/mini/small_case/b{ @@ -10471,32 +10319,20 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/varadero/interior/administration) -"itL" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"itw" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/maintenance/security/north) "itP" = ( /turf/closed/wall/r_wall/elevator{ dir = 6 }, /area/varadero/interior/hall_N) -"itQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/coast/west, -/area/varadero/exterior/lz1_near) "itT" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, @@ -10585,6 +10421,12 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/bunks) +"iwx" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "iwT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, @@ -10653,20 +10495,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"izl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) "izs" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/north, @@ -10720,13 +10548,6 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/farocean) -"iAP" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/bare_catwalk, -/area/varadero/exterior/pontoon_beach) "iAX" = ( /turf/open/floor/carpet, /area/varadero/interior/administration) @@ -10742,6 +10563,16 @@ }, /turf/open/floor/shiva/green/west, /area/varadero/interior/mess) +"iBX" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "iCy" = ( /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) @@ -10781,6 +10612,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"iEO" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "iFb" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves/central) @@ -10832,21 +10667,9 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"iFZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "iGm" = ( /turf/open/floor/wood/wood_broken6, /area/varadero/interior/court) -"iGM" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "iGS" = ( /obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/shiva/multi_tiles/north, @@ -10912,6 +10735,12 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) +"iJh" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/coast/west, +/area/varadero/exterior/lz1_near) "iJk" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/blood/gibs, @@ -10931,10 +10760,27 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"iLc" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) +"iKQ" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_half_cap" + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 2; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) +"iKU" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) "iLd" = ( /obj/structure/window/reinforced{ dir = 4; @@ -11002,6 +10848,10 @@ }, /turf/open/floor/shiva/red/west, /area/varadero/interior/security) +"iNA" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "iNE" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -11010,6 +10860,21 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/mess) +"iNO" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/comms4) "iNU" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/device/flashlight, @@ -11026,6 +10891,12 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) +"iOM" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/coast/south, +/area/varadero/exterior/pontoon_beach) "iOQ" = ( /obj/structure/bed/chair/office/dark, /obj/structure/disposalpipe/segment, @@ -11077,9 +10948,27 @@ /obj/structure/surface/table, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) +"iQM" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "iQS" = ( /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) +"iQX" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) +"iRg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "iRw" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -11095,18 +10984,16 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"iSi" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/shiva/multi_tiles, -/area/varadero/interior/disposals) "iSz" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) +"iSB" = ( +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "iSC" = ( /obj/structure/window/reinforced{ dir = 8; @@ -11178,6 +11065,28 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) +"iUg" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"iUn" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "iUx" = ( /obj/structure/machinery/constructable_frame, /obj/structure/machinery/light{ @@ -11193,27 +11102,30 @@ /obj/effect/decal/warning_stripes, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) +"iUT" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "iUZ" = ( /obj/structure/ore_box, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"iVi" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "iVt" = ( /turf/open/floor/shiva/floor3, /area/varadero/interior/electrical) -"iVD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "iWf" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -11224,6 +11136,24 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) +"iWw" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "iWE" = ( /obj/item/ammo_casing/shell{ icon_state = "cartridge_10" @@ -11253,14 +11183,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"iXR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - pixel_x = -13; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "iXX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -11282,29 +11204,28 @@ dir = 1 }, /area/varadero/interior/records) +"iYC" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "iYE" = ( /obj/item/device/camera_film, /turf/open/floor/wood, /area/varadero/interior/security) -"iZj" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"iYX" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +/area/varadero/interior/caves/north_research) "iZx" = ( /obj/structure/machinery/door_control/brbutton{ id = "cargobay"; @@ -11364,12 +11285,6 @@ }, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"jcl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "jcr" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/swcaves) @@ -11390,6 +11305,15 @@ }, /turf/open/floor/shiva/red, /area/varadero/interior/security) +"jcN" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/cargo) "jcT" = ( /turf/closed/wall, /area/varadero/interior/maintenance) @@ -11397,20 +11321,13 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"jdu" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"jdn" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/gm/coast/beachcorner/south_east, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "jek" = ( /turf/open/gm/coast/west, /area/varadero/exterior/eastocean) @@ -11418,14 +11335,6 @@ /obj/item/tool/mop, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"jew" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "jeO" = ( /obj/structure/machinery/conveyor, /obj/structure/plasticflaps, @@ -11450,10 +11359,6 @@ }, /turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/caves/digsite) -"jeW" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/north) "jfn" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -11468,18 +11373,6 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood/wood_broken3, /area/varadero/interior/court) -"jfw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "jfA" = ( /obj/item/device/motiondetector/hacked, /turf/open/floor/carpet, @@ -11516,19 +11409,6 @@ }, /turf/open/floor/shiva/red/north, /area/varadero/interior/security) -"jhu" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) "jhv" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/snow_mat/east, @@ -11546,12 +11426,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/shiva/blue, /area/varadero/interior/administration) -"jhM" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/dirt/desert3, -/area/varadero/exterior/lz1_near) "jhW" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -11702,10 +11576,6 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"joV" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/north) "jpm" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; @@ -11729,21 +11599,6 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"jpZ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "jqd" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/spoke{ @@ -11791,6 +11646,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) +"jrQ" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/blocker/invisible_wall/water, +/obj/structure/plasticflaps/mining, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "jsf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -11802,6 +11671,10 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/security) +"jsg" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "jsh" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -11826,22 +11699,16 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) +"jti" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/south) "jts" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 9 }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms1) -"jtx" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush{ - pixel_y = 9 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) "jty" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/shiva/multi_tiles/west, @@ -11901,19 +11768,24 @@ "jvh" = ( /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/records) +"jvx" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "jvF" = ( /obj/item/ammo_magazine/revolver/cmb, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) -"jwf" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/item/tool/warning_cone, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) "jwy" = ( /obj/item/weapon/gun/revolver/cmb, /turf/open/floor/shiva/purple, /area/varadero/interior/research) +"jwW" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/varadero/interior/maintenance/security/north) "jwX" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, @@ -11959,14 +11831,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) -"jzL" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) "jzZ" = ( /turf/open/floor/carpet, /area/varadero/interior/library) @@ -12002,6 +11866,13 @@ }, /turf/open/floor/shiva/blue/east, /area/varadero/interior/administration) +"jBv" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "jBw" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = 4; @@ -12009,6 +11880,22 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"jBD" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"jCg" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/coast/beachcorner/south_east, +/area/varadero/exterior/pontoon_beach) "jCr" = ( /turf/open/floor/shiva/floor3, /area/varadero/interior/mess) @@ -12077,19 +11964,15 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jEG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/south, -/area/varadero/exterior/pontoon_beach) "jEZ" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) +"jFg" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "jFt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/wood/normal{ @@ -12100,6 +11983,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"jFJ" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/coast/beachcorner2/south_east, +/area/varadero/exterior/pontoon_beach) "jFL" = ( /turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/monsoon) @@ -12121,6 +12016,11 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) +"jGt" = ( +/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/south) "jGz" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/white, @@ -12129,16 +12029,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"jGT" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) "jHb" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" @@ -12166,6 +12056,17 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"jIi" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "jIo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/gloves/botanic_leather, @@ -12180,6 +12081,10 @@ /obj/structure/machinery/light, /turf/open/floor/shiva/blue, /area/varadero/interior/technical_storage) +"jIK" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "jJf" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/gm/coast/beachcorner/north_west, @@ -12217,6 +12122,10 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) +"jKr" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) "jKs" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -12248,31 +12157,12 @@ }, /turf/open/floor/plating, /area/varadero/interior/toilets) -"jKW" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) -"jLS" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"jLk" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 }, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/area/varadero/exterior/pontoon_beach/lz) "jLU" = ( /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/floor/plating, @@ -12360,15 +12250,6 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"jPM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/north) "jQa" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) @@ -12388,6 +12269,13 @@ }, /turf/open/floor/shiva/red, /area/varadero/interior/security) +"jQi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "jQB" = ( /obj/structure/surface/table/woodentable, /obj/item/clipboard, @@ -12420,6 +12308,15 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) +"jRf" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "jRu" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -12449,6 +12346,10 @@ "jSX" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/pontoon_beach) +"jTi" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) "jTj" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" @@ -12501,12 +12402,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) -"jXp" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) "jYl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -12564,6 +12459,15 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"jZF" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "jZG" = ( /obj/structure/window/reinforced{ dir = 4; @@ -12592,16 +12496,13 @@ }, /turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) -"kap" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"jZZ" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) +/obj/item/tool/warning_cone, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "kaY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/pill_bottle/inaprovaline/skillless{ @@ -12661,6 +12562,21 @@ /obj/structure/prop/rock/brown, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) +"kdr" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) "kdV" = ( /obj/structure/machinery/light{ dir = 4 @@ -12686,10 +12602,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"keY" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/south) "kfc" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 @@ -12743,22 +12655,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/court) -"khB" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/maintenance) "kif" = ( /obj/structure/ladder, /turf/open/floor/plating/icefloor/asteroidplating, @@ -12794,14 +12690,6 @@ }, /turf/open/gm/dirt/desert3, /area/varadero/exterior/eastbeach) -"kjr" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) "kjI" = ( /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) @@ -12813,14 +12701,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"kkt" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) "kkv" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, @@ -12832,28 +12712,12 @@ "kkF" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/farocean) -"kkT" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) -"klf" = ( +"kkR" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security/north) -"kli" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) "klu" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" @@ -12902,50 +12766,33 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves/central) +"kmN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "kmW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/interior_protected/caves/central) -"knN" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +"knw" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/turf/open/floor/plating/bare_catwalk, +/area/varadero/exterior/pontoon_beach) "knP" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"knR" = ( -/obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) "kof" = ( /obj/structure/filingcabinet, /turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) -"koZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/auto_turf/sand_white/layer1, +"kpe" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "kpF" = ( /obj/structure/filingcabinet{ @@ -12987,11 +12834,6 @@ /obj/structure/window/framed/colony, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"kqE" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "kqN" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/dirt, @@ -13033,19 +12875,6 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"ksu" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) "ksX" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) @@ -13071,13 +12900,6 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"kuO" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/eastbeach) "kuX" = ( /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) @@ -13161,6 +12983,10 @@ /obj/structure/machinery/door/airlock/almayer/engineering/autoname, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"kyA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "kyD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, @@ -13168,6 +12994,14 @@ "kyG" = ( /turf/closed/wall, /area/varadero/interior/disposals) +"kyH" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "kyI" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, @@ -13230,10 +13064,6 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"kAz" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/north) "kAH" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" @@ -13264,9 +13094,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"kBZ" = ( -/turf/closed/wall/rock/brown, -/area/varadero/interior/maintenance/security/north) "kCb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/mineral/phoron/medium_stack, @@ -13394,27 +13221,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"kGB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "kGD" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt/desert_dug, @@ -13509,6 +13315,13 @@ "kLd" = ( /turf/open/floor/shiva/red/west, /area/varadero/interior/administration) +"kLk" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) "kLA" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -13520,14 +13333,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"kMe" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "kMf" = ( /obj/structure/window/framed/colony/reinforced/tinted, /turf/open/floor/plating, @@ -13630,18 +13435,11 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"kQy" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/east, -/area/varadero/exterior/comms4) +"kQD" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/sentry_landmark/lz_1/bottom_right, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "kRp" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/item/device/flashlight/lamp/tripod, @@ -13650,28 +13448,6 @@ "kRH" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/lz1_near) -"kRU" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 2; - pixel_y = 15; - explo_proof = 1; - unacidable = 1; - layer = 4.1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "kSd" = ( /obj/structure/machinery/alarm{ dir = 1; @@ -13680,26 +13456,18 @@ /obj/structure/curtain/shower, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) +"kSw" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/pontoon_beach) "kSz" = ( /obj/structure/barricade/handrail/wire{ dir = 4 }, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"kSD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) "kSN" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint{ @@ -13752,13 +13520,6 @@ "kVp" = ( /turf/open/floor/shiva/yellow/northwest, /area/varadero/interior/cargo) -"kVq" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/east, -/area/varadero/exterior/lz2_near) "kVE" = ( /obj/structure/window_frame/colony/reinforced, /obj/effect/landmark/lv624/fog_blocker{ @@ -13766,26 +13527,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) -"kVL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/coast/east, -/area/varadero/exterior/comms4) -"kWf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) "kWj" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/carpet, @@ -13868,6 +13609,21 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/floor3, /area/varadero/interior/mess) +"kZu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) +"kZL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/prop/magazine/dirty/torn/alt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "laa" = ( /obj/structure/bed/chair{ dir = 1; @@ -13875,12 +13631,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lab" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "lat" = ( /obj/item/device/camera, /turf/open/floor/plating/icefloor/asteroidplating, @@ -13950,6 +13700,18 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/wood/wood_broken3, /area/varadero/interior/hall_SE) +"leB" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "leF" = ( /obj/structure/machinery/optable{ desc = "This maybe could be used for advanced medical procedures."; @@ -13957,25 +13719,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) -"leG" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "leI" = ( /obj/structure/sink{ dir = 1; @@ -14041,16 +13784,6 @@ }, /turf/open/floor/shiva/red/north, /area/varadero/interior/administration) -"lhn" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1; - layer = 2.25; - density = 0; - climb_delay = 0 - }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) "lhp" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -14078,15 +13811,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"liz" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) "liE" = ( /obj/structure/closet/crate/secure/weapon, /obj/effect/landmark/objective_landmark/medium, @@ -14096,6 +13820,11 @@ /obj/structure/pipes/binary/passive_gate, /turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) +"liN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "ljt" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -14128,6 +13857,12 @@ /obj/structure/prop/rock/brown, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) +"llU" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) "lmd" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint{ @@ -14155,27 +13890,6 @@ }, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/varadero/interior/chapel) -"lmS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"lni" = ( -/obj/effect/sentry_landmark/lz_1/bottom_left, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "lnw" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp/green{ @@ -14244,16 +13958,15 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lqF" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"lql" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 }, /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz1_near) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) "lqM" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -14269,6 +13982,10 @@ /obj/effect/spawner/random/supply_kit, /turf/open/floor/shiva/red/east, /area/varadero/interior/administration) +"lrJ" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "lrR" = ( /obj/structure/girder/displaced, /turf/open/floor/plating/icefloor/asteroidplating, @@ -14345,22 +14062,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"luz" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "luC" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -14374,18 +14075,6 @@ /obj/item/clothing/accessory/storage/black_vest/brown_vest, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"lvt" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) "lvG" = ( /obj/structure/curtain/red, /turf/open/floor/shiva/multi_tiles/southeast, @@ -14409,19 +14098,6 @@ }, /turf/open/floor/plating/warnplate/northeast, /area/varadero/interior/disposals) -"lwm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/bare_catwalk, -/area/varadero/exterior/farocean) "lxe" = ( /obj/item/stack/sheet/wood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -14450,19 +14126,6 @@ /obj/structure/closet/secure_closet/personal, /turf/open/floor/shiva/red, /area/varadero/interior/security) -"lxR" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "lxT" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp/green{ @@ -14526,10 +14189,19 @@ }, /turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) +"lBn" = ( +/turf/closed/wall, +/area/varadero/interior/maintenance/security/south) "lBw" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/shiva/north, /area/varadero/interior/research) +"lCj" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) "lCK" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -14552,17 +14224,30 @@ "lDk" = ( /turf/open/floor/shiva/red/southwest, /area/varadero/interior/hall_N) -"lDm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "lDz" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) +"lDA" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + density = 0; + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "If this is removed, you cannot escape."; + health = 300; + icon_state = "ladder10"; + name = "ladder" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "lDF" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/digsite) @@ -14602,16 +14287,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) -"lEV" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/deep/covered, -/area/varadero/interior/maintenance/north) "lEY" = ( /obj/structure/machinery/alarm{ dir = 8; @@ -14626,12 +14301,15 @@ "lFl" = ( /turf/open/floor/plating/icefloor/warnplate/west, /area/varadero/interior/cargo) -"lFr" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"lFp" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) "lFA" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -14685,16 +14363,6 @@ /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"lGT" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4; - layer = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/deep/covered, -/area/varadero/interior/maintenance/north) "lHH" = ( /obj/structure/bed/chair{ dir = 1 @@ -14708,25 +14376,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"lId" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "lIo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -14741,6 +14390,12 @@ }, /turf/open/floor/asteroidwarning/west, /area/varadero/exterior/lz1_console) +"lIM" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "lIO" = ( /obj/structure/prop/ice_colony/tiger_rug{ icon_state = "White"; @@ -14778,6 +14433,16 @@ /obj/structure/surface/rack, /turf/open/floor/shiva/wred/southwest, /area/varadero/interior/medical) +"lJJ" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "lKI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/glass/beaker/ethanol{ @@ -14811,14 +14476,6 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) -"lMl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "lMq" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/crap_item, @@ -14828,9 +14485,34 @@ "lMv" = ( /turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/hall_SE) +"lMy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "lMB" = ( /turf/open/floor/asteroidfloor/north, /area/varadero/interior/comms1) +"lMC" = ( +/obj/structure/filtration/coagulation_arm{ + explo_proof = 1; + layer = 2.1; + density = 0 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/obj/structure/platform/metal/almayer, +/turf/open/gm/river/desert/deep/covered, +/area/varadero/interior/maintenance/north) "lMD" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/multi_tiles/southeast, @@ -14860,14 +14542,17 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"lNL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"lNy" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz1_near) +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "lNX" = ( /obj/structure/machinery/light{ dir = 4 @@ -14882,22 +14567,10 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"lPj" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +"lOL" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "lPk" = ( /obj/item/stack/cable_coil/cut{ pixel_x = 1; @@ -14908,6 +14581,10 @@ "lPq" = ( /turf/open/floor/shiva/red/east, /area/varadero/interior/morgue) +"lPR" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) "lQg" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -14995,26 +14672,10 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"lUG" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "lUT" = ( /obj/structure/machinery/smartfridge, /turf/open/floor/shiva/green/southwest, /area/varadero/interior/mess) -"lVa" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/asteroidwarning, -/area/varadero/interior/comms1) -"lVc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "lVf" = ( /obj/item/tool/warning_cone{ pixel_x = -9 @@ -15114,24 +14775,6 @@ /obj/structure/holostool, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"lXT" = ( -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "lYi" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cup{ @@ -15282,16 +14925,6 @@ /obj/structure/surface/table, /turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) -"mcB" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -10; - pixel_y = 2; - explo_proof = 1; - unacidable = 1 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) "mcN" = ( /obj/structure/coatrack{ pixel_x = 14; @@ -15312,41 +14945,10 @@ "mdg" = ( /turf/open/gm/dirt/desert0, /area/varadero/exterior/lz2_near) -"mdj" = ( -/obj/item/clothing/head/helmet, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) -"mdy" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) "mdL" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) -"mdM" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "mdN" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/gm/grass/grass1/weedable, @@ -15456,6 +15058,19 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) +"mjf" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/item/tool/warning_cone, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 2; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) "mjA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15533,6 +15148,12 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"mms" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/north) "mmv" = ( /obj/structure/bed/chair{ buckling_y = 18; @@ -15540,20 +15161,10 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"mmO" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) +"mmG" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "mnc" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/floor3, @@ -15593,18 +15204,14 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) +"mnC" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "mnL" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"mnU" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) "mol" = ( /obj/structure/window/phoronreinforced{ dir = 4; @@ -15661,6 +15268,10 @@ /obj/structure/cryofeed, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) +"mqs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/south) "mqt" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15715,12 +15326,27 @@ }, /turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) +"msS" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "mtp" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) +"mts" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "mtx" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -15768,13 +15394,6 @@ }, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"mvA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "mvI" = ( /turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) @@ -15789,26 +15408,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/court) -"mwm" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/reagent_container/food/snacks/carpmeat{ - desc = "This leathery protofish was named the gullible toothfish for the combination of its near identical dentata to that of Homo sapiens sapiens and the fact that if released after being caught, it is not uncommon to catch the same one; it not having learned its lesson. Its meat is said to taste like bitter clove."; - icon = 'icons/obj/items/fishing_atoms.dmi'; - icon_state = "gullible_toothfish_gutted"; - name = "gullible toothfish"; - pixel_x = 1; - pixel_y = -2 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "mwD" = ( /obj/item/storage/toolbox/mechanical{ pixel_x = 1; @@ -15850,6 +15449,14 @@ /obj/item/storage/beer_pack, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"mxK" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "myj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -15961,11 +15568,6 @@ "mBG" = ( /turf/open/floor/shiva/yellow, /area/varadero/interior/disposals) -"mCe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "mCx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -15991,6 +15593,16 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"mCM" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/vessel) "mCX" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -16026,18 +15638,6 @@ /obj/structure/machinery/light/small, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"mEy" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "mEA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/newspaper{ @@ -16056,6 +15656,12 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"mFw" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) "mFY" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/shiva/floor3, @@ -16067,27 +15673,6 @@ /obj/item/tank/anesthetic, /turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) -"mHh" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) -"mHM" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "mIG" = ( /obj/structure/bed, /obj/item/bedsheet/orange, @@ -16096,28 +15681,6 @@ "mIL" = ( /turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) -"mIQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) -"mIU" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/coast/east, -/area/varadero/exterior/pontoon_beach) "mJe" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1/weedable, @@ -16148,10 +15711,6 @@ }, /turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"mLg" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) "mLt" = ( /obj/structure/sign/goldenplaque{ pixel_y = 32 @@ -16164,10 +15723,12 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"mLJ" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) +"mMd" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "mMu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, @@ -16180,18 +15741,6 @@ /obj/item/stack/sheet/wood/small_stack, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"mMX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) "mMZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -16199,6 +15748,18 @@ /obj/structure/surface/rack, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) +"mNj" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) "mNm" = ( /obj/structure/machinery/light{ dir = 1 @@ -16214,17 +15775,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"mNT" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "mOx" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -16357,19 +15907,10 @@ /obj/structure/pipes/vents/pump/on, /turf/open/floor/shiva/north, /area/varadero/interior/electrical) -"mSS" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +"mTe" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) "mTD" = ( /obj/structure/machinery/light{ dir = 4 @@ -16404,35 +15945,6 @@ /obj/structure/machinery/photocopier, /turf/open/floor/shiva/purple/east, /area/varadero/interior/research) -"mVj" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - explo_proof = 1; - unacidable = 1 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) -"mVn" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) "mVF" = ( /obj/structure/prop/souto_land/pole{ dir = 1 @@ -16452,15 +15964,19 @@ "mVS" = ( /turf/open/floor/shiva/bluefull/west, /area/varadero/interior/hall_SE) -"mVY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"mWm" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"mWt" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 }, -/obj/item/clothing/under/shorts/grey, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) +/area/varadero/interior_protected/maintenance/south) "mXi" = ( /obj/effect/landmark/objective_landmark/far, /turf/open/shuttle/elevator, @@ -16501,15 +16017,6 @@ /obj/structure/bed/chair, /turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/electrical) -"mYA" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "mYR" = ( /obj/item/facepaint/sunscreen_stick, /turf/open/floor/plating/icefloor/asteroidplating, @@ -16520,14 +16027,6 @@ "mZi" = ( /turf/open/floor/shiva/green, /area/varadero/interior/court) -"mZk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/prop/magazine/dirty/torn/alt, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "mZC" = ( /obj/structure/surface/table/woodentable{ icon_state = "reinf_table" @@ -16573,12 +16072,6 @@ }, /turf/open/gm/dirt/desert1, /area/varadero/exterior/eastbeach) -"nau" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) "nbA" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/floor3, @@ -16598,11 +16091,6 @@ }, /turf/open/floor/shiva/red/west, /area/varadero/interior/morgue) -"nch" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "ncn" = ( /obj/item/trash/cheesie, /obj/effect/decal/cleanable/blood, @@ -16647,6 +16135,10 @@ /obj/item/tool/surgery/retractor/predatorretractor, /turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) +"ndF" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "nee" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -16733,62 +16225,12 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"nhI" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - explo_proof = 1; - unacidable = 1 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) -"nhX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/comms4) -"nhY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"nhM" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 1 }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "nih" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -16811,17 +16253,6 @@ /obj/structure/closet/secure_closet/personal/patient, /turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"njC" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz2_near) "nkd" = ( /obj/structure/surface/table, /obj/item/storage/firstaid/o2, @@ -16845,6 +16276,16 @@ }, /turf/open/floor/carpet, /area/varadero/interior/records) +"nkK" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "nma" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/largecrate/random/mini/small_case/c{ @@ -16916,6 +16357,16 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) +"nnB" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "nnF" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/shiva/greenfull/west, @@ -16924,6 +16375,20 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"nol" = ( +/obj/structure/plasticflaps/mining, +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "noC" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/shiva/multi_tiles, @@ -16973,6 +16438,10 @@ "nrd" = ( /turf/open/floor/white, /area/varadero/interior/security) +"nrm" = ( +/obj/effect/sentry_landmark/lz_1/top_right, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "nsc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -16993,6 +16462,18 @@ "nsN" = ( /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) +"nsU" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) "nti" = ( /turf/closed/wall/r_wall, /area/varadero/exterior/lz2_near) @@ -17035,6 +16516,12 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/medical) +"nyk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "nyJ" = ( /obj/structure/closet/hydrant{ pixel_x = -32 @@ -17057,27 +16544,28 @@ "nzr" = ( /turf/open/floor/shiva/green/southeast, /area/varadero/interior/mess) -"nzS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/light{ - dir = 4 +"nzu" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 }, -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_y = 4 +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + explo_proof = 1; + unacidable = 1 }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) -"nAM" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"nzT" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) +/turf/open/floor/plating/bare_catwalk, +/area/varadero/exterior/farocean) +"nAR" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "nBc" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/lz2_near) @@ -17120,6 +16608,10 @@ "nCF" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/eastocean) +"nCJ" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/varadero/interior/maintenance/security/south) "nCV" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, @@ -17143,16 +16635,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/court) -"nDL" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) "nEE" = ( /obj/structure/prop/server_equipment/laptop/on{ pixel_x = -5 @@ -17175,18 +16657,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) -"nFp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) "nFy" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -17203,14 +16673,6 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) -"nFH" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) "nFK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, @@ -17219,6 +16681,21 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"nGf" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/prop/rock/brown{ + explo_proof = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." + }, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) "nGE" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -17228,15 +16705,6 @@ }, /turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/comms3) -"nHy" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/tool/warning_cone, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) "nHA" = ( /turf/open/floor/shiva/red, /area/varadero/interior/security) @@ -17244,21 +16712,6 @@ /obj/structure/girder/displaced, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) -"nHH" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "nIF" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -17288,6 +16741,10 @@ /obj/structure/bed/chair, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) +"nJx" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "nKd" = ( /obj/structure/prop/turbine_extras, /turf/open/floor/plating/icefloor/asteroidplating, @@ -17343,6 +16800,10 @@ /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"nMN" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "nNe" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -17402,18 +16863,13 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"nOM" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"nON" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/north, -/area/varadero/exterior/pontoon_beach) +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) "nOO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -17427,18 +16883,6 @@ /obj/item/tool/lighter/zippo/gold, /turf/open/floor/carpet, /area/varadero/interior/research) -"nPx" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) "nPE" = ( /obj/structure/safe, /obj/item/reagent_container/food/drinks/bottle/whiskey, @@ -17505,14 +16949,6 @@ }, /turf/open/floor/shiva/purple/east, /area/varadero/interior/research) -"nQR" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) "nRk" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/med_large_stack, @@ -17561,6 +16997,12 @@ }, /turf/closed/wall, /area/varadero/interior/medical) +"nSW" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/floor/plating/bare_catwalk, +/area/varadero/exterior/farocean) "nTj" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -17621,27 +17063,16 @@ }, /turf/open/floor/plating/warnplate/east, /area/varadero/interior/disposals) -"nVv" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - explo_proof = 1; - unacidable = 1; - layer = 4.1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "nVy" = ( /obj/structure/closet/coffin, /turf/open/floor/shiva/red/northeast, /area/varadero/interior/morgue) +"nVU" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) "nWg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -17665,6 +17096,13 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/records) +"nXF" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz2_near) "nXR" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 @@ -17697,6 +17135,21 @@ }, /turf/open/floor/shiva/north, /area/varadero/interior/cargo) +"nYS" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/floor/plating/bare_catwalk, +/area/varadero/exterior/farocean) +"nYY" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/coast/beachcorner2/south_west, +/area/varadero/exterior/pontoon_beach) "nZd" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/shiva/floor3, @@ -17812,6 +17265,15 @@ }, /turf/open/floor/shiva/redfull, /area/varadero/interior/medical) +"odf" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) "odw" = ( /obj/structure/machinery/photocopier, /obj/item/storage/firstaid/regular{ @@ -17832,20 +17294,20 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) -"oef" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" +"oeC" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) -"oep" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "Revolting beyond description."; + icon = 'icons/obj/items/fishing_atoms.dmi'; + icon_state = "gullible_toothfish_teeth"; + name = "human-ish teeth"; + pixel_x = 1; + pixel_y = -2 }, -/obj/structure/prop/rock/brown, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/eastbeach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "oeF" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -17917,13 +17379,9 @@ }, /turf/open/floor/shiva/red/northwest, /area/varadero/interior/security) -"ohC" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/beachcorner2/south_west, +"oho" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach/lz) "ohM" = ( /obj/structure/barricade/wooden{ @@ -17990,17 +17448,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva/purple, /area/varadero/interior/research) -"okI" = ( -/obj/structure/surface/rack, -/obj/item/implantpad, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) -"okJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "ola" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating/icefloor/asteroidplating, @@ -18065,17 +17512,6 @@ /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/wood/wood_broken3, /area/varadero/interior/beach_bar) -"opP" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "opW" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/stack/sheet/wood{ @@ -18115,6 +17551,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) +"orx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) +"orB" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/monsoon) "orH" = ( /obj/structure/filingcabinet{ pixel_x = -8; @@ -18168,16 +17625,6 @@ /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"otL" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) "otO" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, @@ -18185,20 +17632,10 @@ "ouy" = ( /turf/closed/wall/r_wall, /area/varadero/interior/caves/east) -"ouP" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "ouV" = ( /obj/effect/spawner/random/bomb_supply, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/hall_SE) -"ovp" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/shiva/snow_mat, -/area/varadero/interior/maintenance) "ovC" = ( /turf/open/floor/carpet, /area/varadero/interior/research) @@ -18297,6 +17734,21 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"oyq" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "oyv" = ( /obj/item/device/flashlight, /turf/open/gm/dirt/desert2, @@ -18337,14 +17789,10 @@ /obj/item/weapon/gun/shotgun/pump, /turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) -"ozD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, +"ozY" = ( +/obj/structure/platform_decoration/metal/kutjevo, /turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +/area/varadero/exterior/pontoon_beach) "oAm" = ( /obj/structure/toilet{ dir = 1 @@ -18360,24 +17808,38 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"oAJ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - explo_proof = 1; - unacidable = 1 +"oBb" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "oBj" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) +"oBl" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 + }, +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "If this is removed, you cannot escape."; + health = 300; + icon_state = "ladder10"; + name = "ladder" + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/maintenance) "oBq" = ( /obj/item/shard{ icon_state = "medium" @@ -18440,6 +17902,10 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) +"oCM" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "oCN" = ( /obj/structure/machinery/computer/cameras{ dir = 4 @@ -18450,6 +17916,12 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/redfull/west, /area/varadero/interior/security) +"oCP" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) "oCR" = ( /turf/open/gm/dirt/desert0, /area/varadero/exterior/lz1_near) @@ -18484,19 +17956,12 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"oDX" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"oEU" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/prop/invuln/minecart_tracks, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) -"oET" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/varadero/interior/maintenance/security/north) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "oEX" = ( /obj/structure/closet/crate, /obj/item/clothing/head/helmet, @@ -18526,6 +17991,21 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) +"oHX" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/maintenance) "oIc" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/north_east, @@ -18567,10 +18047,6 @@ "oJB" = ( /turf/open/floor/shiva/north, /area/varadero/interior/cargo) -"oJW" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "oJX" = ( /obj/item/stack/sheet/metal, /obj/structure/shuttle/engine/heater{ @@ -18638,20 +18114,12 @@ }, /turf/closed/wall, /area/varadero/interior/cargo) -"oLZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"oLW" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "oMa" = ( /obj/structure/surface/table, /obj/item/storage/pill_bottle/packet/bicaridine, @@ -18679,12 +18147,6 @@ "oMs" = ( /turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) -"oNa" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "oNy" = ( /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) @@ -18711,9 +18173,6 @@ "oPQ" = ( /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/north_research) -"oPV" = ( -/turf/open/floor/plating, -/area/varadero/interior/maintenance/security/north) "oRx" = ( /obj/structure/closet/crate/secure, /obj/item/trash/eat, @@ -18760,6 +18219,21 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/electrical) +"oTf" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "oTs" = ( /obj/structure/blocker/fog, /turf/open/gm/coast/beachcorner2/south_east, @@ -18778,14 +18252,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva/blue/southwest, /area/varadero/interior/administration) -"oTX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/asteroidfloor/north, -/area/varadero/interior/comms1) "oUh" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -18808,6 +18274,15 @@ /obj/item/storage/box/engineer, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) +"oUU" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 9 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "oVm" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, @@ -18817,16 +18292,6 @@ "oVn" = ( /turf/open/floor/shiva/blue/east, /area/varadero/interior/technical_storage) -"oVp" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/comms1) "oVr" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -18875,6 +18340,15 @@ /obj/effect/landmark/yautja_teleport, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) +"oXd" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/floor/plating/bare_catwalk, +/area/varadero/exterior/farocean) "oXf" = ( /turf/open/floor/carpet, /area/varadero/interior/chapel) @@ -18927,6 +18401,21 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/red/north, /area/varadero/interior/medical) +"oZo" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"oZv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "oZw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -18993,16 +18482,6 @@ "pbt" = ( /turf/closed/wall, /area/varadero/interior/mess) -"pbw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "pbM" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -19064,46 +18543,15 @@ /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/interior/caves/north_research) -"per" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "peA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/medical) -"peY" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "pfd" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/pontoon_beach) -"pfr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "pfL" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -19115,6 +18563,21 @@ /obj/structure/reagent_dispensers/beerkeg/alt, /turf/open/floor/freezerfloor, /area/varadero/interior/cargo) +"pfU" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "pgg" = ( /obj/item/tool/pickaxe, /turf/open/gm/coast/south, @@ -19185,6 +18648,18 @@ /obj/item/book/manual/research_and_development, /turf/open/floor/carpet, /area/varadero/interior/library) +"pjr" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "pjs" = ( /obj/structure/bed/chair, /turf/open/floor/shiva/floor3, @@ -19200,6 +18675,15 @@ /obj/item/circuitboard/apc, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) +"pjK" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "pkj" = ( /obj/item/tool/weldingtool, /turf/open/gm/dirt, @@ -19254,29 +18738,9 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"plm" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/obj/effect/sentry_landmark/lz_1/bottom_right, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "plq" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/eastocean) -"plF" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/reagent_container/food/snacks/carpmeat{ - desc = "Revolting beyond description."; - icon = 'icons/obj/items/fishing_atoms.dmi'; - icon_state = "gullible_toothfish_teeth"; - name = "human-ish teeth"; - pixel_x = 1; - pixel_y = -2 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) "plN" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -19295,6 +18759,15 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/white, /area/varadero/interior/toilets) +"pms" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "pmy" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/plastic, @@ -19459,14 +18932,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/security) -"psd" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz1_near) "psk" = ( /obj/structure/closet/secure_closet/bar, /turf/open/floor/wood/wood_broken, @@ -19482,14 +18947,6 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"ptp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "ptw" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/multi_tiles, @@ -19548,6 +19005,12 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) +"pvC" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "pvQ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, @@ -19577,6 +19040,18 @@ }, /turf/open/floor/shiva/north, /area/varadero/interior/cargo) +"pxC" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "pyk" = ( /obj/item/reagent_container/food/snacks/wrapped/barcardine{ pixel_y = 7 @@ -19593,6 +19068,16 @@ /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) +"pyR" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "pAa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -19652,12 +19137,6 @@ }, /turf/open/floor/shiva/red/northeast, /area/varadero/interior/administration) -"pBS" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "pCa" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -19738,14 +19217,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pEo" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "pEE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -19768,6 +19239,23 @@ /obj/effect/decal/cleanable/blood/gibs/xeno/limb, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) +"pFZ" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"pGb" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "pGc" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -19786,6 +19274,12 @@ "pGs" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/oob) +"pGy" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "pGJ" = ( /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) @@ -19800,13 +19294,6 @@ /obj/item/stack/sheet/wood, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"pIj" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "pIz" = ( /obj/structure/surface/table, /obj/item/trash/plate{ @@ -19857,6 +19344,16 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"pJw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "pJA" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; @@ -19873,6 +19370,10 @@ /obj/item/book/manual/evaguide, /turf/open/floor/wood, /area/varadero/interior/library) +"pJR" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "pJZ" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/medium, @@ -19982,39 +19483,10 @@ /obj/effect/decal/cleanable/blood/drip, /turf/closed/wall/rock/brown, /area/varadero/exterior/lz2_near) -"pNT" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "If this is removed, you cannot escape."; - health = 300; - icon_state = "ladder10"; - name = "ladder" - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/shiva/blue/east, -/area/varadero/interior/maintenance) "pOa" = ( /obj/structure/largecrate/supply, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"pOg" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "pOz" = ( /obj/structure/machinery/computer/card{ dir = 8 @@ -20039,6 +19511,15 @@ /obj/structure/machinery/light, /turf/open/floor/asteroidwarning, /area/varadero/interior/comms1) +"pPE" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/coast/east, +/area/varadero/exterior/comms4) "pQp" = ( /turf/closed/wall/r_wall, /area/varadero/interior/technical_storage) @@ -20089,24 +19570,20 @@ }, /turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/security) +"pRC" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/plasticflaps/mining, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "pRP" = ( /turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/hall_SE) -"pRR" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) "pRV" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/comms4) @@ -20117,6 +19594,13 @@ /obj/structure/inflatable/door, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"pSu" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "pSD" = ( /obj/structure/bed/chair, /obj/structure/machinery/light{ @@ -20156,35 +19640,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pTQ" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"pUi" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz1_near) "pUW" = ( /obj/item/stack/tile/plasteel{ pixel_x = 4; @@ -20349,6 +19804,17 @@ "pZT" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/lz2_near) +"qaB" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) "qaE" = ( /turf/open/floor/wood, /area/varadero/interior/dock_control) @@ -20361,6 +19827,10 @@ /obj/structure/sign/safety/water, /turf/closed/wall, /area/varadero/interior/library) +"qbB" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "qbX" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -20368,6 +19838,13 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"qcv" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/prop/rock/brown, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) "qcC" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -20391,6 +19868,12 @@ "qcN" = ( /turf/closed/wall, /area/varadero/interior/medical) +"qcQ" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "qdd" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -20507,6 +19990,16 @@ }, /turf/open/floor/shiva/red, /area/varadero/interior/hall_N) +"qhd" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/coast/beachcorner/north_west, +/area/varadero/exterior/pontoon_beach/lz) +"qhE" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/closed/wall/rock/brown, +/area/varadero/exterior/pontoon_beach) "qhF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, @@ -20525,18 +20018,6 @@ /obj/effect/spawner/random/tool, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"qhQ" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) "qhZ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/shiva/floor3, @@ -20581,11 +20062,6 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/laundry) -"qjg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "qjU" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -20616,34 +20092,44 @@ /obj/item/stack/tile/plasteel, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"qlW" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/shiva/floor3, -/area/varadero/interior/mess) -"qmF" = ( -/obj/structure/platform/kutjevo/smooth{ +"qlE" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; dir = 8; - climb_delay = 1; - layer = 2.99 + icon_state = "p_stair_ew_half_cap" }, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) +"qlS" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, +/obj/structure/platform_decoration/metal/kutjevo/north, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) +"qlW" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"qmh" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "qnf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction, /turf/open/floor/shiva/floor3, /area/varadero/interior/administration) -"qnl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/north) "qnm" = ( /obj/structure/closet/emcloset, /turf/open/floor/shiva/yellowfull/west, @@ -20670,15 +20156,6 @@ /obj/structure/closet/fireaxecabinet, /turf/closed/wall/r_wall, /area/varadero/interior/electrical) -"qoj" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/effect/overlay/palmtree_r, -/turf/open/gm/dirt, -/area/varadero/exterior/comms4) "qoy" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva/purple, @@ -20748,19 +20225,6 @@ }, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) -"qsb" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/rock/brown{ - explo_proof = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." - }, -/turf/open/gm/coast/south, -/area/varadero/exterior/pontoon_beach) "qsh" = ( /obj/structure/closet/secure_closet/security, /obj/structure/machinery/light{ @@ -20772,6 +20236,13 @@ }, /turf/open/floor/shiva/red/east, /area/varadero/interior/security) +"qsJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/north) "qto" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "\improper Underground Security Interrogation"; @@ -20792,6 +20263,14 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) +"qtC" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "qtQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/microwave{ @@ -20803,6 +20282,12 @@ }, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) +"quj" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "qul" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/caves/north_research) @@ -20810,14 +20295,22 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"quP" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "quR" = ( /obj/item/stack/sheet/metal, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"qvk" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "qvo" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -20826,13 +20319,6 @@ /obj/effect/landmark/corpsespawner/colonist, /turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/morgue) -"qvO" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "qvQ" = ( /obj/structure/bed/chair{ dir = 1 @@ -20889,6 +20375,21 @@ }, /turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) +"qxt" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "qxu" = ( /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_N) @@ -20937,19 +20438,6 @@ }, /turf/open/floor/wood/wood_broken3, /area/varadero/interior/beach_bar) -"qza" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/vessel) "qzb" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating/icefloor/asteroidplating, @@ -20978,6 +20466,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) +"qAa" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/north) "qAd" = ( /obj/structure/machinery/door/airlock/strata/autoname{ autoname = 0; @@ -21006,29 +20498,20 @@ /obj/item/tool/shovel, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"qAI" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "qAS" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"qBk" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "qBn" = ( /obj/structure/surface/rack, /obj/effect/decal/cleanable/cobweb{ @@ -21094,18 +20577,6 @@ /obj/structure/inflatable, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"qCY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "qDh" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -21114,13 +20585,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"qDr" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/closed/wall/rock/brown, -/area/varadero/exterior/pontoon_beach) "qDs" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/red/southeast, @@ -21152,12 +20616,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"qEc" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) "qEf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -21173,14 +20631,6 @@ /obj/item/stack/sheet/metal, /turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"qEt" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) "qEG" = ( /obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/plating/icefloor/asteroidplating, @@ -21222,6 +20672,14 @@ /obj/structure/prop/fishing/line/long/part2, /turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach) +"qHo" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/north) "qHu" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/shiva/green/east, @@ -21244,14 +20702,38 @@ /obj/item/tool/wet_sign, /turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) +"qIn" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) +"qIs" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) "qIF" = ( /turf/open/gm/dirt, /area/varadero/interior/caves/east) +"qJh" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/coast/beachcorner/north_east, +/area/varadero/exterior/comms4) +"qJp" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "qJF" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) +"qJZ" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/north) "qKb" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -21270,25 +20752,6 @@ "qKZ" = ( /turf/open/gm/coast/west, /area/varadero/exterior/lz1_near) -"qLf" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "qLq" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 9; @@ -21407,18 +20870,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"qOO" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) "qOS" = ( /obj/item/reagent_container/glass/bucket, /turf/open/auto_turf/sand_white/layer1, @@ -21450,10 +20901,6 @@ }, /turf/open/floor/shiva/yellow/northeast, /area/varadero/interior/disposals) -"qQd" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "qQe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -21522,10 +20969,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"qRP" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "qSj" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/yellow, @@ -21538,35 +20981,20 @@ /obj/structure/closet/crate/trashcart, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qTh" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"qTg" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - explo_proof = 1; - unacidable = 1 - }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/monsoon) -"qTs" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 }, -/turf/open/gm/coast/beachcorner2/south_east, +/turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) "qTz" = ( /obj/structure/flora/pottedplant{ @@ -21581,6 +21009,10 @@ "qTE" = ( /turf/open/gm/dirt/desert1, /area/varadero/exterior/eastbeach) +"qTL" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "qTZ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/south_west, @@ -21628,6 +21060,24 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) +"qVq" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "qVD" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = 8; @@ -21689,6 +21139,11 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) +"qYw" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "qYE" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/suit/fire/firefighter{ @@ -21728,25 +21183,6 @@ /obj/item/stack/sheet/wood/small_stack, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"rbp" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "rbU" = ( /turf/open/floor/wood, /area/varadero/interior/research) @@ -21786,20 +21222,18 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"red" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/gm/coast/east, -/area/varadero/exterior/comms4) +"rdU" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/item/tool/warning_cone, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) "res" = ( /turf/open/gm/dirt/desert3, /area/varadero/exterior/eastbeach) +"ret" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "rex" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -21817,6 +21251,28 @@ dir = 10 }, /area/varadero/interior/hall_N) +"rfg" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"rfm" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/gm/coast/east, +/area/varadero/exterior/comms4) "rfn" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -21839,13 +21295,6 @@ "rgb" = ( /turf/open/floor/shiva/green/west, /area/varadero/interior/hall_NW) -"rgf" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/lz1_near) "rgg" = ( /obj/structure/girder/displaced, /turf/open/auto_turf/sand_white/layer1, @@ -21865,6 +21314,21 @@ /obj/structure/surface/table, /turf/open/floor/asteroidwarning/east, /area/varadero/exterior/lz1_near) +"rhq" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "rhu" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand_white/layer1, @@ -21873,23 +21337,25 @@ /obj/structure/bed/sofa/pews/flipped, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"riG" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "riJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/court) -"riM" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) +"riV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "rja" = ( /obj/item/toy/beach_ball, /turf/open/gm/river/shallow_ocean_shallow_ocean, @@ -21903,6 +21369,19 @@ /obj/structure/prop/rock/brown, /turf/open/gm/dirt/desert2, /area/varadero/exterior/lz1_near) +"rjs" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill{ + pixel_y = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "rjE" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/coffeecup/uscm{ @@ -21967,14 +21446,6 @@ /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rlI" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "rlJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -22043,6 +21514,12 @@ /obj/item/tool/surgery/scalpel/predatorscalpel, /turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) +"rnx" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/coast/beachcorner2/north_east, +/area/varadero/exterior/pontoon_beach) "rnL" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river/ocean/deep_ocean, @@ -22080,32 +21557,6 @@ }, /turf/open/floor/shiva/north, /area/varadero/interior/cargo) -"roT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - density = 0; - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "If this is removed, you cannot escape."; - health = 300; - icon_state = "ladder10"; - name = "ladder" - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pool) -"rpd" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "rpu" = ( /turf/closed/wall, /area/varadero/interior/oob) @@ -22113,6 +21564,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) +"rpF" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz1_near) "rpH" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/lights, @@ -22168,18 +21625,6 @@ }, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/disposals) -"rqG" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "rrp" = ( /obj/item/paper_bin, /obj/item/tool/stamp{ @@ -22226,6 +21671,13 @@ "rsB" = ( /turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) +"rsD" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "rsL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Security Checkpoint"; @@ -22239,17 +21691,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"rsO" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) "rtm" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/icefloor, @@ -22333,10 +21774,6 @@ /obj/structure/machinery/light, /turf/open/floor/shiva/redfull/west, /area/varadero/interior/security) -"rwO" = ( -/obj/effect/sentry_landmark/lz_1/top_right, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) "rwP" = ( /obj/structure/closet/crate/ammo/alt/flame, /obj/item/ammo_magazine/shotgun/buckshot, @@ -22361,6 +21798,19 @@ "rxe" = ( /turf/open/floor/shiva/yellow/northeast, /area/varadero/interior/cargo) +"rxu" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "rxI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/prop/invuln/lattice_prop{ @@ -22370,9 +21820,15 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"ryD" = ( -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/south) +"rxO" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "ryG" = ( /obj/structure/surface/rack, /obj/item/clothing/under/shorts/red{ @@ -22404,6 +21860,12 @@ /obj/item/clothing/suit/armor/vest, /turf/open/floor/shiva/redfull, /area/varadero/interior/medical) +"rAb" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/pontoon_beach/lz) "rAf" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -22436,24 +21898,35 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"rBJ" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "rBP" = ( /turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) +"rCa" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = 2; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) "rCf" = ( /obj/structure/largecrate/random/case/small, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rCs" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/hall_SE) "rCB" = ( /obj/structure/filingcabinet/chestdrawer{ pixel_x = -8 @@ -22463,6 +21936,15 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"rCN" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "rDz" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 @@ -22473,17 +21955,47 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) -"rDD" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "rDK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/item/stack/sheet/metal, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) +"rDM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) +"rEi" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"rEJ" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) "rFj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/objective_landmark/far, @@ -22532,19 +22044,10 @@ "rHv" = ( /turf/open/floor/shiva/green/north, /area/varadero/interior/hall_N) -"rHE" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/closed/wall/wood, -/area/varadero/interior/beach_bar) -"rIF" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) +"rIr" = ( +/obj/structure/surface/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "rIG" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" @@ -22561,6 +22064,10 @@ /obj/structure/window/framed/colony, /turf/open/floor/shiva/floor3, /area/varadero/interior/chapel) +"rJp" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) "rJq" = ( /obj/structure/surface/table, /obj/item/pamphlet/skill/engineer{ @@ -22609,42 +22116,22 @@ "rKM" = ( /turf/open/gm/dirt/desert1, /area/varadero/exterior/pontoon_beach) -"rKS" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - explo_proof = 1; - unacidable = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) +"rKZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "rLC" = ( /obj/structure/machinery/photocopier, /turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) -"rLK" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0; - pixel_x = 11; - pixel_y = 9 +"rLS" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = 10; - pixel_y = 20 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/caves/north_research) +/obj/item/tool/warning_cone, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) "rLU" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/icefloor/asteroidplating, @@ -22659,13 +22146,6 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"rMl" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/south, -/area/varadero/exterior/pontoon_beach) "rMM" = ( /obj/structure/prop/turbine, /obj/structure/prop/turbine_extras/border, @@ -22678,13 +22158,6 @@ /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; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/comms4) "rNm" = ( /obj/item/stack/sheet/wood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -22700,6 +22173,17 @@ }, /turf/open/floor/shiva/redfull, /area/varadero/interior/medical) +"rNR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating, +/area/varadero/interior/maintenance/security/south) "rOL" = ( /obj/structure/closet/secure_closet/personal{ density = 0; @@ -22713,6 +22197,10 @@ }, /turf/open/floor/white, /area/varadero/interior/laundry) +"rPp" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "rPB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -22769,14 +22257,32 @@ /obj/item/circuitboard/apc, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"rRq" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "rRz" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/blue/north, /area/varadero/interior/administration) +"rSf" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/item/device/camera{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/newspaper{ + layer = 2.99; + pixel_x = 7; + pixel_y = 4 + }, +/obj/structure/surface/table, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) +"rSh" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/lz2_near) "rSl" = ( /obj/item/tool/wrench, /turf/open/gm/dirt, @@ -22863,6 +22369,10 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/electrical) +"rTH" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "rTT" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -22876,23 +22386,12 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) -"rUc" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"rUo" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz2_near) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "rUw" = ( /obj/structure/window/reinforced{ dir = 4 @@ -22918,9 +22417,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_console/two) -"rVG" = ( -/turf/closed/wall/r_wall, -/area/varadero/interior/maintenance/security/north) "rVI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -22962,17 +22458,6 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"rWY" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "rXf" = ( /obj/item/stack/cable_coil/cut, /turf/open/floor/shiva/redcorners, @@ -22986,12 +22471,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"rYi" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) "rYC" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, @@ -23069,6 +22548,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"sbG" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "sbP" = ( /obj/structure/machinery/landinglight/ds1/spoke{ pixel_y = -5; @@ -23130,6 +22613,24 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/yellow, /area/varadero/interior/disposals) +"seV" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/prop/rock/brown{ + explo_proof = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -15; + pixel_y = 5; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/gm/coast/south, +/area/varadero/exterior/pontoon_beach) "seY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -23295,6 +22796,39 @@ /obj/structure/window/framed/colony, /turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) +"siw" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) +"siC" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/coast/south, +/area/varadero/exterior/pontoon_beach) +"sjb" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "sjD" = ( /obj/structure/machinery/light{ dir = 1 @@ -23327,27 +22861,6 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) -"slA" = ( -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 12; - pixel_y = 25 - }, -/obj/structure/bed/chair/comfy{ - pixel_x = -7; - pixel_y = 18 - }, -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 7; - pixel_y = 12 - }, -/obj/structure/bed/chair/comfy{ - dir = 4; - pixel_x = 7 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "slB" = ( /obj/structure/filingcabinet{ density = 0; @@ -23372,13 +22885,6 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"smE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "smO" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/faxmachine, @@ -23394,12 +22900,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"sny" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "snE" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -23505,12 +23005,16 @@ }, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"ssw" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"ssI" = ( +/obj/structure/platform/metal/almayer{ + density = 0; + climb_delay = 0 }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) +/obj/structure/catwalk{ + layer = 3 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "ssZ" = ( /obj/item/storage/belt/marine, /turf/open/floor/carpet, @@ -23524,17 +23028,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"stw" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/maintenance/security/north) "stK" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/floor/plating/icefloor/asteroidplating, @@ -23569,13 +23062,15 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz2_near) -"svt" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"svz" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "svD" = ( /obj/structure/largecrate/random/case/double, /turf/open/shuttle/elevator/grating, @@ -23600,6 +23095,13 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) +"svP" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 11 + }, +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "swf" = ( /obj/structure/bed/chair{ dir = 4 @@ -23639,15 +23141,6 @@ /obj/structure/closet/crate/construction, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"sxL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/rock/brown, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) "sxR" = ( /obj/structure/surface/table, /obj/item/stack/cable_coil{ @@ -23656,10 +23149,6 @@ /obj/item/weapon/gun/energy/yautja/plasmapistol, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"sxY" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "syb" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/pistol/mod88, @@ -23779,6 +23268,12 @@ }, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) +"sBl" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) "sBF" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -23812,10 +23307,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/caves/east) -"sCA" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "sCJ" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/shiva/north, @@ -23847,6 +23338,19 @@ /obj/item/stack/cable_coil/cut, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/technical_storage) +"sDx" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "sDE" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 9; @@ -23873,6 +23377,10 @@ /obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/shiva/wred/east, /area/varadero/interior/medical) +"sDX" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "sDZ" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -23907,6 +23415,10 @@ "sGo" = ( /turf/open/floor/white, /area/varadero/interior/toilets) +"sGp" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "sGY" = ( /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) @@ -23914,21 +23426,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva/north, /area/varadero/interior/electrical) -"sHJ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/comms4) -"sHO" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/north) "sHV" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/asteroidfloor/north, @@ -23970,6 +23467,10 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) +"sIW" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "sJm" = ( /turf/open/gm/dirt/desert1, /area/varadero/exterior/lz1_near) @@ -24026,12 +23527,6 @@ /obj/structure/machinery/autolathe, /turf/open/floor/shiva/purple/west, /area/varadero/interior/research) -"sKu" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "sKz" = ( /obj/structure/closet/crate/supply, /obj/item/storage/box/wy_mre, @@ -24059,6 +23554,16 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) +"sLl" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) +"sLr" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "sLO" = ( /obj/item/device/flashlight/slime{ mouse_opacity = 0; @@ -24081,6 +23586,15 @@ /obj/item/prop/magazine/dirty, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) +"sMW" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "sNa" = ( /obj/structure/window/reinforced/tinted, /turf/open/floor/white, @@ -24204,6 +23718,12 @@ /obj/structure/surface/table, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) +"sSM" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz1_near) "sSU" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; @@ -24245,26 +23765,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"sUj" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 6 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "sUp" = ( /obj/item/toy/beach_ball, /turf/open/gm/dirt, @@ -24290,14 +23790,6 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"sVr" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/north) "sVH" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -24332,24 +23824,12 @@ /obj/item/paper, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"sZW" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"sZD" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "tak" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/carpet, @@ -24375,6 +23855,18 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/white, /area/varadero/interior/toilets) +"tcV" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "tcX" = ( /obj/structure/surface/rack, /obj/item/frame/table, @@ -24387,18 +23879,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) -"tdt" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/eastbeach) "tdy" = ( /obj/item/storage/box/donkpockets{ pixel_x = 6; @@ -24415,45 +23895,10 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"tdX" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "teg" = ( /obj/structure/girder, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) -"ten" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) "teu" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 9; @@ -24494,6 +23939,12 @@ }, /turf/open/floor/shiva/green/east, /area/varadero/interior/hall_N) +"tfp" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "tfC" = ( /obj/structure/showcase{ color = "#95948B"; @@ -24533,17 +23984,6 @@ /obj/item/limb/foot/l_foot, /turf/open/floor/wood, /area/varadero/interior/administration) -"tgC" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) "tgE" = ( /turf/open/gm/dirt/desert_dug, /area/varadero/exterior/pontoon_beach) @@ -24584,6 +24024,18 @@ /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) +"tiK" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz2_near) "tjn" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -24605,14 +24057,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/monsoon) -"tjs" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/bare_catwalk, -/area/varadero/exterior/farocean) "tju" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -24656,9 +24100,11 @@ }, /turf/open/floor/shiva/north, /area/varadero/interior/research) -"tkF" = ( -/obj/structure/prop/rock/brown, -/turf/open/auto_turf/sand_white/layer1, +"tkR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security/north) "tkT" = ( /obj/structure/pipes/vents/pump{ @@ -24666,33 +24112,10 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) -"tkV" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"tkY" = ( -/obj/effect/sentry_landmark/lz_1/top_left, -/turf/open/floor/asteroidfloor/north, -/area/varadero/exterior/lz1_near) +"tlc" = ( +/obj/item/clothing/head/helmet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "tlq" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -10; @@ -24702,25 +24125,12 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tlE" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) "tlG" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, /turf/open/floor/white, /area/varadero/interior/toilets) -"tlM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "tlT" = ( /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) @@ -24825,18 +24235,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"tqa" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) "tqh" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -24851,10 +24249,6 @@ }, /turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/medical) -"tqV" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "trh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -24985,6 +24379,20 @@ }, /turf/open/floor/shiva/green, /area/varadero/interior/hall_SE) +"tyc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) +"tyj" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/floor/plating/bare_catwalk, +/area/varadero/exterior/farocean) "tyT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24998,12 +24406,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"tyV" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "tzp" = ( /obj/structure/machinery/light{ dir = 8 @@ -25023,11 +24425,12 @@ /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"tBm" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) +"tBn" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) "tCl" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -25067,13 +24470,6 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) -"tEc" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/closed/wall/rock/brown, -/area/varadero/exterior/lz1_near) "tEF" = ( /obj/structure/prop/rock/brown, /obj/structure/machinery/storm_siren{ @@ -25103,11 +24499,6 @@ /obj/structure/prop/rock/brown, /turf/open/gm/river/ocean/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/south) "tFX" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/ammo_box/magazine/shotgun/buckshot, @@ -25123,13 +24514,6 @@ }, /turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) -"tGw" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/beachcorner2/north_east, -/area/varadero/exterior/pontoon_beach) "tGV" = ( /turf/closed/wall/r_wall/elevator{ dir = 1 @@ -25164,6 +24548,29 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_N) +"tJx" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) +"tJI" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/prop/rock/brown{ + explo_proof = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." + }, +/turf/open/gm/coast/beachcorner/south_east, +/area/varadero/exterior/pontoon_beach) "tJT" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp/green{ @@ -25199,10 +24606,6 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/records) -"tLu" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/varadero/interior/maintenance/security/south) "tLS" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, @@ -25245,13 +24648,6 @@ "tMZ" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/lz2_near) -"tNy" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/pontoon_beach) "tNE" = ( /obj/structure/filingcabinet{ density = 0; @@ -25292,29 +24688,6 @@ }, /turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/hall_NW) -"tOx" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"tOB" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) "tOK" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/camera{ @@ -25333,13 +24706,6 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) -"tPE" = ( -/obj/item/tool/pickaxe, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) "tPI" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -25459,6 +24825,12 @@ }, /turf/open/floor/shiva/redfull/west, /area/varadero/interior/security) +"tUA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "tVf" = ( /obj/structure/closet/crate, /obj/item/tool/stamp, @@ -25492,14 +24864,33 @@ /obj/item/maintenance_jack, /turf/open/floor/plating/icefloor/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/south) +"tWK" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "tWT" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) +"tWZ" = ( +/obj/structure/surface/rack, +/obj/item/implantpad, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "tXg" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -25540,15 +24931,6 @@ "tYg" = ( /turf/open/floor/shiva/red, /area/varadero/interior/medical) -"tYw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "tYP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25567,6 +24949,13 @@ }, /turf/open/floor/shiva/purple, /area/varadero/interior/research) +"tYZ" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/north) "tZl" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -25663,6 +25052,10 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/monsoon) +"udb" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "udg" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/medium, @@ -25679,6 +25072,12 @@ "uet" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/interior/caves/east) +"uez" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "ueB" = ( /obj/structure/cable, /turf/open/floor/plating/icefloor/asteroidplating, @@ -25795,6 +25194,13 @@ }, /turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) +"ukb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "ukw" = ( /obj/structure/window/reinforced{ dir = 1 @@ -25875,12 +25281,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/varadero/interior/security) -"unH" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) "uoh" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_2"; @@ -25909,23 +25309,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"uoU" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - explo_proof = 1; - unacidable = 1 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) "upb" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -25954,9 +25337,16 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) -"uqw" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/blood/OMinus, +"uqb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security/south) "uqx" = ( @@ -25970,6 +25360,12 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/maintenance) +"uqB" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "uqU" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/objective_landmark/close, @@ -25999,17 +25395,17 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"usB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "usQ" = ( /obj/item/facepaint/sunscreen_stick, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"usT" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/item/clothing/under/shorts/grey, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "uti" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -26053,10 +25449,21 @@ "uvd" = ( /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"uvr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) +"uvu" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) "uvw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26082,14 +25489,24 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) +"uvY" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) "uww" = ( /turf/open/floor/shiva/yellow, /area/varadero/interior/hall_N) -"uwJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "uwN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26104,19 +25521,22 @@ /obj/item/storage/box/lightstick, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) -"uxi" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" +"uwW" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + explo_proof = 1; + unacidable = 1; + layer = 4.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "uxM" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -26170,6 +25590,12 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"uAO" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/coast/north, +/area/varadero/exterior/pontoon_beach) "uBV" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -26190,15 +25616,20 @@ "uCe" = ( /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) -"uCG" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/swcaves) "uCJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"uDd" = ( +/obj/structure/platform/stone/kutjevo/north, +/obj/structure/platform/stone/kutjevo, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/hall_SE) "uDw" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -26212,12 +25643,18 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) -"uEc" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"uEw" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "uEz" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -26231,16 +25668,6 @@ }, /turf/open/floor/prison/chapel_carpet/doubleside/north, /area/varadero/interior/chapel) -"uEF" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/gm/river/desert/deep/covered, -/area/varadero/interior/maintenance/north) "uEI" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/yellowfull/west, @@ -26258,19 +25685,20 @@ "uFJ" = ( /turf/open/floor/shiva/red/west, /area/varadero/interior/security) -"uFO" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) "uGf" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /turf/open/floor/shiva/yellowcorners/east, /area/varadero/interior/cargo) +"uGo" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "uGs" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -26340,23 +25768,6 @@ }, /turf/open/floor/wood/wood_broken6, /area/varadero/interior/dock_control) -"uKY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "uKZ" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -26365,6 +25776,23 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"uLv" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "uLP" = ( /obj/structure/surface/rack, /obj/item/clothing/head/caphat{ @@ -26433,28 +25861,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) -"uOk" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "uOo" = ( /obj/structure/pipes/vents/pump, /obj/structure/bed/roller, @@ -26510,38 +25916,42 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/cargo) -"uSF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"uTg" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 }, -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "uTj" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) -"uTq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "uTu" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"uTy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) +"uTv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/south) "uTA" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) +"uTK" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/coast/beachcorner2/south_west, +/area/varadero/exterior/pontoon_beach/lz) "uTV" = ( /turf/open/floor/shiva/wred/west, /area/varadero/interior/medical) @@ -26566,6 +25976,27 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"uUv" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"uUw" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "uUF" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -26654,6 +26085,15 @@ /obj/structure/pipes/binary/passive_gate, /turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) +"uXu" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "uXw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26698,10 +26138,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"uYT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "uZa" = ( /obj/structure/machinery/light{ dir = 4 @@ -26724,6 +26160,12 @@ }, /turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) +"vaj" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "vap" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -26754,17 +26196,16 @@ }, /turf/open/floor/shiva/purple/east, /area/varadero/interior/hall_NW) +"vbE" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "vbH" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"vbK" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) "vbS" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2"; @@ -26834,6 +26275,14 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) +"vdU" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/north) "vdV" = ( /obj/item/tool/warning_cone{ pixel_x = -9 @@ -26989,12 +26438,12 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"viK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"viu" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "viP" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27036,22 +26485,6 @@ }, /turf/open/floor/freezerfloor, /area/varadero/interior/cargo) -"vjO" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) -"vjZ" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/farocean) "vke" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Visitor Entrance" @@ -27074,10 +26507,6 @@ /obj/item/lightstick/variant/planted, /turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) -"vlw" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "vlB" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/gm/dirt, @@ -27095,17 +26524,15 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/north, /area/varadero/interior/electrical) +"vmk" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "vmw" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"vmC" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior_protected/caves/swcaves) "vmY" = ( /obj/item/stack/rods, /obj/item/shard{ @@ -27195,12 +26622,6 @@ /obj/item/stack/sheet/wood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"vqR" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/comms4) "vqU" = ( /obj/effect/landmark/corpsespawner/chef, /obj/effect/decal/cleanable/blood, @@ -27298,18 +26719,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva/red/northeast, /area/varadero/interior/security) -"vus" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/vessel) "vuA" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -27362,6 +26771,10 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) +"vwV" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/varadero/interior/maintenance/security/south) "vxi" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, @@ -27380,15 +26793,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"vyy" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - layer = 2.15; - density = 0; - climb_delay = 0 - }, -/turf/open/gm/river/desert/deep/no_slowdown, -/area/varadero/interior/maintenance/north) "vyI" = ( /obj/structure/catwalk, /obj/structure/filtration/flacculation_arm{ @@ -27416,21 +26820,12 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) -"vzB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"vzz" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 }, -/obj/item/tool/warning_cone, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 2; - explo_proof = 1; - unacidable = 1 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "vzH" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -27455,6 +26850,18 @@ /obj/structure/machinery/light, /turf/open/floor/shiva/red, /area/varadero/interior/security) +"vAt" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "vAz" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -27476,10 +26883,6 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/redfull/west, /area/varadero/interior/hall_SE) -"vAU" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "vAZ" = ( /obj/item/facepaint/sunscreen_stick, /turf/open/gm/dirt/desert0, @@ -27495,17 +26898,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) -"vBC" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior/cargo) "vBF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -27608,21 +27000,6 @@ }, /turf/open/floor/freezerfloor, /area/varadero/interior/cargo) -"vDP" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) "vEa" = ( /obj/structure/closet/crate/medical, /obj/item/tool/wirecutters/clippers, @@ -27631,25 +27008,6 @@ /obj/item/storage/firstaid/adv, /turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) -"vEe" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/rock/brown{ - explo_proof = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -15; - pixel_y = 5; - explo_proof = 1; - unacidable = 1 - }, -/turf/open/gm/coast/south, -/area/varadero/exterior/pontoon_beach) "vEg" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river/ocean/deep_ocean, @@ -27670,23 +27028,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"vEU" = ( -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "vFl" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, @@ -27701,6 +27042,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/shiva/north, /area/varadero/interior/hall_N) +"vGb" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "vGn" = ( /obj/effect/overlay/palmtree_r{ pixel_x = -11; @@ -27709,6 +27060,15 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"vGP" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "vGQ" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -27722,10 +27082,6 @@ "vHs" = ( /turf/closed/wall/r_wall, /area/varadero/interior/records) -"vHV" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/north) "vHY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -27733,32 +27089,14 @@ /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/white, /area/varadero/interior/toilets) +"vJf" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/north) "vJg" = ( /obj/item/tool/shovel, /turf/open/gm/dirt/desert_dug, /area/varadero/exterior/lz1_near) -"vJk" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) -"vJp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "vKv" = ( /obj/structure/window/framed/colony/reinforced/hull{ explo_proof = 1 @@ -27789,10 +27127,6 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) -"vLh" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) "vLk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ @@ -27869,6 +27203,10 @@ /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"vNF" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "vNG" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/computer/cameras/telescreen/entertainment{ @@ -27911,6 +27249,19 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) +"vOF" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "vOW" = ( /obj/item/clothing/suit/armor/vest, /turf/open/floor/wood, @@ -27921,18 +27272,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/administration) -"vPh" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) "vPi" = ( /obj/structure/closet/secure_closet/personal, /obj/item/attachable/magnetic_harness, @@ -27974,31 +27313,20 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"vQF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach/lz) -"vQK" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz1_near) "vQL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/frame/light_fixture, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) +"vRm" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) "vRI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ @@ -28135,14 +27463,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/central) -"vWn" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/beachcorner/north_west, -/area/varadero/exterior/pontoon_beach/lz) "vWG" = ( /obj/structure/bed/chair, /obj/structure/machinery/storm_siren{ @@ -28150,10 +27470,6 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/hall_NW) -"vXx" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "vXG" = ( /obj/structure/closet/crate/construction, /obj/item/grown/log, @@ -28190,6 +27506,15 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"vYO" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "vYQ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -28250,37 +27575,10 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"vZN" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_half_cap" - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 2; - explo_proof = 1; - unacidable = 1 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) "vZO" = ( /obj/effect/landmark/corpsespawner/miner, /turf/open/floor/white, /area/varadero/interior/toilets) -"vZR" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) "vZS" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/floor3, @@ -28364,6 +27662,20 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) +"wdt" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/plasticflaps/mining, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "wdx" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair/office/light{ @@ -28371,18 +27683,6 @@ }, /turf/open/floor/shiva/yellow/north, /area/varadero/interior/disposals) -"wdy" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 4 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) "wdI" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/shuttle/elevator, @@ -28392,6 +27692,13 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/shiva/blue/east, /area/varadero/interior/administration) +"wel" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) "weG" = ( /obj/structure/catwalk, /turf/open/gm/river/desert/deep/no_slowdown, @@ -28419,24 +27726,6 @@ "wfr" = ( /turf/open/floor/shiva/purple/east, /area/varadero/interior/hall_NW) -"wft" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/rock/brown{ - explo_proof = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." - }, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) "wfy" = ( /obj/structure/bedsheetbin{ icon_state = "linenbin-empty" @@ -28483,23 +27772,13 @@ }, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"wgU" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"whi" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 }, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/plasticflaps/mining, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) +/obj/structure/prop/rock/brown, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) "wic" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -28534,24 +27813,6 @@ "wjB" = ( /turf/open/floor/asteroidwarning, /area/varadero/interior/comms1) -"wjV" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/varadero/interior/maintenance/security/south) -"wkp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/interior_protected/caves) "wkq" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/firealarm{ @@ -28584,12 +27845,6 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/technical_storage) -"wkL" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/north) "wkM" = ( /obj/structure/window/reinforced{ dir = 4; @@ -28639,10 +27894,17 @@ }, /turf/open/floor/shiva/floor3, /area/varadero/interior/medical) +"wlW" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security/south) "wmg" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) +"wmj" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "wmt" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/shuttle/elevator/grating, @@ -28664,12 +27926,6 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) -"wng" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "wno" = ( /turf/open/floor/shiva/green/north, /area/varadero/interior/mess) @@ -28725,6 +27981,21 @@ /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"wor" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "wot" = ( /turf/open/floor/shiva/floor3, /area/varadero/interior/records) @@ -28755,6 +28026,14 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"woQ" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "wph" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/shiva, @@ -28775,6 +28054,11 @@ "wpr" = ( /turf/open/floor/shiva/red/west, /area/varadero/interior/medical) +"wpC" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) "wpG" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -28792,9 +28076,6 @@ /obj/item/weapon/gun/rifle/m41a, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"wqb" = ( -/turf/closed/wall/r_wall, -/area/varadero/interior/maintenance/security/south) "wqc" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -28969,6 +28250,27 @@ /obj/item/storage/belt/marine/quackers, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pool) +"wzb" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/coast/east, +/area/varadero/exterior/comms4) +"wzs" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "wAx" = ( /obj/effect/landmark/corpsespawner/security, /obj/effect/decal/cleanable/blood, @@ -29047,6 +28349,15 @@ /obj/structure/barricade/wooden, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) +"wEz" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/coast/beachcorner2/south_east, +/area/varadero/exterior/pontoon_beach) "wEL" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/shiva/floor3, @@ -29058,6 +28369,14 @@ }, /turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) +"wFt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 4 + }, +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river/desert/deep/covered, +/area/varadero/interior/maintenance/north) "wFx" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -29124,14 +28443,6 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/disposals) -"wIg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt/desert1, -/area/varadero/exterior/lz1_near) "wIm" = ( /obj/structure/disposalpipe/junction{ dir = 8; @@ -29149,25 +28460,6 @@ }, /turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) -"wJl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) "wJu" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "cargobay"; @@ -29189,6 +28481,14 @@ /obj/item/stack/sandbags/large_stack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"wLm" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) "wLq" = ( /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) @@ -29225,10 +28525,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"wMn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "wMw" = ( /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) @@ -29244,12 +28540,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"wNI" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) "wNV" = ( /obj/structure/surface/table, /obj/item/storage/box/masks, @@ -29283,43 +28573,14 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"wPl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/shallow_ocean_shallow_ocean, -/area/varadero/exterior/pontoon_beach) -"wPv" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) +"wOU" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) "wPE" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"wPH" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) "wQd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29359,22 +28620,6 @@ }, /turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_N) -"wRR" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/oob) "wSx" = ( /turf/closed/wall, /area/varadero/interior/laundry) @@ -29384,12 +28629,10 @@ "wSM" = ( /turf/open/floor/shiva/multi_tiles, /area/varadero/interior_protected/caves/central) -"wSX" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/shiva/yellow/north, -/area/varadero/interior/cargo) +"wTm" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/pontoon_beach) "wTE" = ( /obj/structure/bed/chair{ icon_state = "chair_alt"; @@ -29411,6 +28654,12 @@ }, /turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/disposals) +"wTR" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "wUj" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/shiva/multi_tiles/north, @@ -29505,16 +28754,6 @@ }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/lz1_near) -"wXs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/south) -"wXu" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "wXC" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/icefloor/asteroidplating, @@ -29592,19 +28831,6 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) -"xce" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/bare_catwalk, -/area/varadero/exterior/farocean) "xcf" = ( /turf/closed/wall/r_wall/elevator, /area/varadero/interior/records) @@ -29641,12 +28867,24 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) -"xeO" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, +"xea" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/north) +"xeJ" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, /turf/open/gm/dirt, -/area/varadero/exterior/monsoon) +/area/varadero/exterior/eastbeach) +"xeL" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "xeU" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -29670,12 +28908,6 @@ /obj/structure/girder, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xfD" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) "xfQ" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/monsoon) @@ -29713,6 +28945,12 @@ /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"xhj" = ( +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/dirt, +/area/varadero/exterior/comms4) "xhs" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -29742,10 +28980,6 @@ /obj/item/storage/belt/utility, /turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"xju" = ( -/obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) "xka" = ( /obj/structure/window/framed/colony/reinforced{ color = "#aba9a9" @@ -29766,6 +29000,21 @@ /obj/effect/overlay/palmtree_r, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) +"xkf" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/platform_decoration/metal/kutjevo/west, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "xkj" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -29786,6 +29035,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/shiva/floor3, /area/varadero/interior/disposals) +"xlC" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/closed/wall/wood, +/area/varadero/interior/beach_bar) "xml" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -29821,20 +29076,23 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva/red/southwest, /area/varadero/interior/morgue) +"xoN" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "xpe" = ( /obj/structure/surface/rack, /obj/item/tool/extinguisher, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xpk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "xpw" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/circuitboard/computer/crew{ @@ -29852,6 +29110,10 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva/blue/west, /area/varadero/interior/technical_storage) +"xpD" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "xpP" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms1) @@ -29887,19 +29149,6 @@ }, /turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) -"xqS" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/varadero/interior_protected/vessel) "xqY" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -29915,20 +29164,6 @@ }, /turf/open/floor/shiva/yellow/east, /area/varadero/interior/cargo) -"xrl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/farocean) "xrA" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/shiva/purplefull/west, @@ -30008,6 +29243,16 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/security) +"xwd" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/sign/double/barsign{ + name = "The Salty Cutlass"; + desc = "Come drown your troubles away! Mind the sway." + }, +/turf/closed/wall/wood, +/area/varadero/interior/beach_bar) "xwk" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/packageWrap, @@ -30049,10 +29294,6 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) -"xxs" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "xxE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -30119,10 +29360,6 @@ /obj/structure/machinery/door/airlock/multi_tile/elevator/research, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"xza" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security/south) "xzc" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt/desert0, @@ -30224,17 +29461,6 @@ /obj/structure/prop/tower, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"xDd" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) "xDf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -30258,6 +29484,10 @@ /obj/item/lightstick/variant/planted, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) +"xDT" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) "xEc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light, @@ -30289,16 +29519,23 @@ "xFE" = ( /turf/open/floor/wood, /area/varadero/interior/records) +"xFI" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 3; + pixel_y = 15; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "xFO" = ( /obj/item/device/flashlight, /turf/open/floor/shiva/floor3, /area/varadero/interior/mess) -"xFS" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/closed/wall/rock/brown, -/area/varadero/exterior/pontoon_beach) "xFZ" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light{ @@ -30344,11 +29581,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"xJt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "xJx" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light{ @@ -30360,9 +29592,6 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/lz2_near) -"xJZ" = ( -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "xKo" = ( /obj/structure/surface/table, /obj/item/storage/wallet/random{ @@ -30441,13 +29670,6 @@ /obj/structure/lz_sign/new_varadero, /turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"xLB" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean/deep_ocean, -/area/varadero/exterior/pontoon_beach/lz) "xLE" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -30459,6 +29681,10 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/shiva/redfull/west, /area/varadero/interior/medical) +"xLQ" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "xMq" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/shiva/floor3, @@ -30473,10 +29699,6 @@ }, /turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"xNc" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "xNw" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, @@ -30488,6 +29710,20 @@ "xNR" = ( /turf/closed/wall, /area/varadero/interior/bunks) +"xNX" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "xNY" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -30519,13 +29755,6 @@ /obj/item/tool/wrench, /turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"xOX" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/exterior/lz1_near) "xPj" = ( /obj/structure/machinery/light{ dir = 8 @@ -30572,24 +29801,19 @@ "xRF" = ( /turf/closed/wall, /area/varadero/interior/hall_N) +"xRO" = ( +/turf/closed/wall/r_wall, +/area/varadero/interior/maintenance/security/south) "xSl" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"xSZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - explo_proof = 1; - unacidable = 1 +"xSL" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 }, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "xTd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -30600,6 +29824,14 @@ /obj/structure/prop/rock/brown, /turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/farocean) +"xTD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "xTH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -30631,6 +29863,16 @@ "xUH" = ( /turf/open/floor/wood/wood_broken3, /area/varadero/interior/court) +"xUM" = ( +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "xVe" = ( /obj/item/prop/helmetgarb/bullet_pipe{ pixel_x = -8; @@ -30733,6 +29975,15 @@ /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) +"xZj" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/east{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "xZv" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -30804,16 +30055,6 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/carpet, /area/varadero/interior/library) -"ybt" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "ybY" = ( /obj/structure/surface/table, /obj/item/paper_bin, @@ -30879,11 +30120,6 @@ /obj/structure/window/reinforced, /turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"yeF" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/plating/icefloor/asteroidplating, -/area/varadero/interior/maintenance/security/south) "yeG" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/frame/camera, @@ -30949,12 +30185,29 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"ygh" = ( +/obj/structure/platform/metal/kutjevo_smooth{ + climb_delay = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "ygn" = ( /obj/structure/catwalk{ explo_proof = 1 }, /turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) +"ygy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security/south) "ygT" = ( /obj/structure/surface/table, /obj/item/storage/firstaid/fire, @@ -31003,18 +30256,6 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) -"yhZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz2_near) "yil" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) @@ -31090,6 +30331,15 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/shiva/floor3, /area/varadero/interior/medical) +"ykJ" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + climb_delay = 1 + }, +/obj/structure/platform/metal/kutjevo_smooth/west{ + climb_delay = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "ykM" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -32148,7 +31398,7 @@ xCn cBI jQa jQa -vmC +dCb pGs pGs pGs @@ -32693,7 +31943,7 @@ srg xCn fzc jQa -uCG +hdh jQa jQa qwE @@ -33735,10 +32985,10 @@ rYC wBp wBp wBp -oNa -mYA -cLV -eCB +fgj +rsD +ekq +xFI klT klT klT @@ -33917,7 +33167,7 @@ sNy sNy tER sNy -dWH +pms jhW jhW jhW @@ -34099,7 +33349,7 @@ sNy sNy sNy sNy -nVv +uwW efw efw qVp @@ -34277,11 +33527,11 @@ wLq lyP lyP sNy -dhV -ozD -nFH -ozD -jpZ +jIK +quj +bWu +quj +rBJ byU byU qMY @@ -34459,7 +33709,7 @@ lyP wLq sNy sNy -hlG +rCN pVz skp skp @@ -34628,20 +33878,20 @@ sNy sNy sNy sNy -mLg -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -ozD -nFH -tdX +hYr +bWu +bWu +bWu +bWu +bWu +bWu +bWu +bWu +bWu +bWu +quj +bWu +gmH ifB lCK ifB @@ -34810,7 +34060,7 @@ sNy sNy sNy sNy -sHJ +qJp ifB ifB ifB @@ -34992,20 +34242,20 @@ sNy sNy sNy sNy -dsC -rNf -mdy -nQR -nQR -nQR -nQR -nQR -nQR -qOO -rNf -mdy -nQR -pTQ +rUo +iwx +cZC +uqB +uqB +uqB +uqB +uqB +uqB +vYO +iwx +cZC +uqB +pxC ifB ifB ifB @@ -35174,20 +34424,20 @@ sNy wLq uTj sNy -dsC -rNf -izl +rUo +iwx +dYM sNy wLq sNy wLq lyP sNy -sHJ -rNf -izl +qJp +iwx +dYM ekO -aCd +eUk ifB ifB kYM @@ -35356,20 +34606,20 @@ sNy sNy sNy sNy -dsC -rNf -izl +rUo +iwx +dYM wLq sNy lyP lyP sNy uTj -sHJ -rNf -izl +qJp +iwx +dYM lyP -hlG +rCN ifB ifB ifB @@ -35538,20 +34788,20 @@ wLq tER sNy sNy -dsC -rNf -izl +rUo +iwx +dYM wLq sNy lyP sNy sNy sNy -sHJ -rNf -izl +qJp +iwx +dYM wLq -hlG +rCN ifB ifB ifB @@ -35720,20 +34970,20 @@ wLq wLq wLq wLq -dsC -plF -izl +rUo +oeC +dYM wLq uTj sNy sNy sNy sNy -sHJ -rNf -iVD +qJp +iwx +leB lyP -hlG +rCN ifB ifB kyI @@ -35901,21 +35151,21 @@ dpW oIc wLq wLq -dhV -mwm -rNf -iZj -vqR +jIK +fGp +iwx +fmG +sGp wLq wLq wLq llj -dhV -qCY -rNf -iZj -dkC -hlG +jIK +xeL +iwx +fmG +vNF +rCN xCM lCK ifB @@ -36083,21 +35333,21 @@ ykM dpW iIY oIc -dsC +rUo ifB ifB ifB -kVL +wzb iIY iIY pRV uTj -dsC +rUo ifB ifB ifB -iVD -hlG +leB +rCN kvS laN rGE @@ -36265,25 +35515,25 @@ nbB fQK nbB dpW -red +rfm ifB lFI ifB -nhX -gor -qoj -avX -ehT -kQy +iNO +xhj +ajS +qJh +hPs +pPE ifB lFI ifB -sZW -hnR -ptp -ptp -ptp -kRU +hHc +jvx +pGy +pGy +pGy +ffF efw efw qMY @@ -36437,7 +35687,7 @@ pGs pGs huF huF -eWp +alK lMB lMB lMB @@ -36619,7 +35869,7 @@ pGs pGs huF huF -oTX +coP tQT tQT fQW @@ -36801,7 +36051,7 @@ pGs pGs huF huF -cne +giu tQT tQT rMM @@ -36983,7 +36233,7 @@ huF huF huF huF -oTX +coP tQT tQT ssh @@ -37165,7 +36415,7 @@ huF huF huF huF -fOG +gJi lMB lMB vMq @@ -37332,22 +36582,22 @@ pGs pGs pGs pGs -knN -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -leG -cWu -cWu -cUF -oVp +bpP +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +bQQ +xkf +bQQ +bQQ +wdt +tfp wqc jts arC @@ -37514,7 +36764,7 @@ pGs pGs pGs pGs -lPj +rxu huF huF huF @@ -37525,11 +36775,11 @@ huF huF huF huF -luz +iUn huF huF huF -cne +giu dQK wBY lMB @@ -37696,22 +36946,22 @@ pGs pGs huF huF -lPj +rxu huF huF huF huF huF huF -ebJ -ebJ -ebJ -ebJ -uOk +cwb +cwb +cwb +cwb +bhg huF rpu huF -oTX +coP lMB vUZ lMB @@ -37878,7 +37128,7 @@ pGs pGs huF huF -lPj +rxu huF huF huF @@ -37893,7 +37143,7 @@ huF huF rpu huF -oTX +coP lMB wBY lMB @@ -37926,7 +37176,7 @@ lSg gKw vLt miU -vBC +jcN gHT qul qul @@ -37956,9 +37206,9 @@ vvh qlj yks qul -kli -bTg -aYg +iUT +iYX +aPY qul qul qul @@ -38060,7 +37310,7 @@ pGs pGs huF huF -lPj +rxu huF huF huF @@ -38075,7 +37325,7 @@ huF huF huF huF -nPx +bOt arC lxr lMB @@ -38138,13 +37388,13 @@ qMY kYN yks qul -gMV +gxM eLZ -rIF -bTg -bTg -rLK -aYg +hij +iYX +iYX +eeP +aPY qul fay sDM @@ -38242,22 +37492,22 @@ pGs pGs huF huF -rbp -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -mSS -jGT +uTg +cwb +cwb +cwb +cwb +cwb +cwb +cwb +cwb +cwb +cwb +cwb +cwb +cwb +pRC +boP wqc jRu lMB @@ -38320,13 +37570,13 @@ qMY kNN yks qul -edD -cym -cym -cym -cym -cym -nFp +sMW +fOm +fOm +fOm +fOm +fOm +fek qul fay rex @@ -38424,7 +37674,7 @@ pGs pGs huF huF -lPj +rxu huF huF huF @@ -38439,7 +37689,7 @@ huF huF huF huF -oTX +coP iah wBY lMB @@ -38606,7 +37856,7 @@ pGs pGs huF huF -lPj +rxu huF huF huF @@ -38621,7 +37871,7 @@ huF huF huF huF -cne +giu lMB wBY lMB @@ -38702,8 +37952,8 @@ nyJ bwz kZg kGM -kSD -mMX +qBk +gAd tDo uQa hto @@ -38788,7 +38038,7 @@ pGs pGs huF huF -lPj +rxu huF huF huF @@ -38804,11 +38054,11 @@ huF huF huF xpP -bJv -otL -nzS -lVa -wSX +iBX +bNx +rjs +sBl +hXB oke oke uQK @@ -38884,8 +38134,8 @@ kuX kuX uOL kGM -hbD -jtx +oEU +oUU lhB vYW uQa @@ -38970,7 +38220,7 @@ pGs pGs huF huF -lPj +rxu huF huF huF @@ -38987,7 +38237,7 @@ huF huF huF huF -mHM +nol huF huF uQi @@ -39066,8 +38316,8 @@ fHs kuX uOL kGM -hbD -dTS +oEU +wTR qyH vYW uQa @@ -39152,7 +38402,7 @@ pGs pGs huF huF -lPj +rxu huF huF huF @@ -39169,7 +38419,7 @@ huF huF huF huF -kGB +cpB huF huF ykc @@ -39248,8 +38498,8 @@ sDj kuX uOL kGM -wkp -tqa +imo +jRf ebr vYW vYW @@ -39334,7 +38584,7 @@ pGs pGs huF huF -lPj +rxu huF huF huF @@ -39351,7 +38601,7 @@ huF huF huF huF -lPj +rxu huF huF ykc @@ -39516,7 +38766,7 @@ pGs pGs huF huF -wRR +rxu huF huF huF @@ -39533,7 +38783,7 @@ pGs bZv iUZ huF -wgU +jrQ huF huF ykc @@ -39698,7 +38948,7 @@ pGs pGs huF huF -wRR +rxu huF huF huF @@ -39715,7 +38965,7 @@ lYr qjU gvo rlw -eWZ +rfg huF huF ykc @@ -39880,7 +39130,7 @@ pGs pGs huF huF -wRR +rxu huF huF huF @@ -39897,7 +39147,7 @@ lYr fwo lYr sQR -eWZ +rfg huF huF huF @@ -40062,7 +39312,7 @@ pGs pGs huF huF -wRR +rxu huF huF huF @@ -40079,7 +39329,7 @@ qyT sJm lYr tia -ten +uLv huF huF huF @@ -40244,7 +39494,7 @@ huF huF huF huF -wRR +rxu huF pGs pGs @@ -40341,8 +39591,8 @@ tEJ cNu upO gUP -clG -mMX +ykJ +gAd oAE uQa uQa @@ -40426,7 +39676,7 @@ huF huF huF huF -vEU +nol huF pGs pGs @@ -40456,19 +39706,19 @@ sDf oLM omj jMq -lEV +wFt ygn -alD +lMC aSU ghI -lEV +wFt ygn -alD +lMC aSU ghI -lEV +wFt ygn -alD +lMC hyr bLB mDl @@ -40523,8 +39773,8 @@ tEJ cNu qNP gUP -bPe -dTS +jBv +wTR oAE nHC vYW @@ -40601,15 +39851,15 @@ mPk mPk mPk mPk -itL +xSL kkF huF huF pGs bJI -ahb -wdy -vQK +dcC +woQ +sSM pGs pGs huF @@ -40636,7 +39886,7 @@ enU nOj uQK uXZ -lhn +fqS pNa liM ygn @@ -40651,7 +39901,7 @@ fys liM ygn uWW -vyy +ssI bLB joN jZE @@ -40705,8 +39955,8 @@ jjg cNu rMN gUP -hbD -dTS +oEU +wTR tDo ebr vYW @@ -40783,9 +40033,9 @@ mPk mPk mPk mPk -itL +xSL kkF -tOx +rxu huF pGs dfs @@ -40820,19 +40070,19 @@ lDN ykc ldr jMq -lGT +hpC ygn -uEF +hHb aSU ghI -lGT +hpC ygn -uEF +hHb aSU ghI -lGT +hpC ygn -uEF +hHb hyr vnm hfR @@ -40887,8 +40137,8 @@ tvv cNu rMN gUP -wkp -tqa +imo +jRf ebr ebr oAE @@ -40965,12 +40215,12 @@ mPk mPk mPk mPk -itL +xSL kkF -tOx +rxu huF pGs -ipZ +wpC lYr iSz fwo @@ -41147,17 +40397,17 @@ mPk mPk mPk mPk -itL +xSL kkF -tOx +rxu huF huF -tlE +dWP lYr iSz lYr lYr -hCw +aUS pbp loQ pDF @@ -41328,13 +40578,13 @@ mPk mPk mPk mPk -lUG -rqG +aPf +pjK kkF -sUj -vJk -lXT -oDX +xNX +gJP +cFv +uUw wcq mLB aTg @@ -41510,18 +40760,18 @@ mPk mPk mPk mPk -itL +xSL xfo xfo ydy xfo xfo -tlE +dWP fwo itT lYr -hkQ -bVQ +cUD +qaB pbp wMw wMw @@ -41692,17 +40942,17 @@ mPk mPk mPk mPk -itL +xSL aQq eCj pxa uKr ahg -wIg +hZq asx asx nKd -nDL +cmA new wMw wMw @@ -41721,11 +40971,11 @@ wMw wMw wMw wMw -tkY +cgX wMw wMw wMw -tkY +cgX wMw kME wMw @@ -41874,17 +41124,17 @@ mPk mPk mPk mPk -itL +xSL aQq boI clA miR nqQ -tlE +dWP asx asx jjZ -nDL +cmA wMw wMw wMw @@ -41982,7 +41232,7 @@ xlv xZD iJD gfp -ffY +riG gvR kyG ksX @@ -42056,17 +41306,17 @@ mPk mPk mPk mPk -itL +xSL aQq vLw qaE qdL ahg -tlE +dWP asx asx cQu -lqF +egb wMw wMw wMw @@ -42088,22 +41338,22 @@ wMw wMw wMw wMw -tkY +cgX wMw wMw nFB wMw sIQ -lni +bOu wMw -lni +bOu wMw oJm hyr hyr hyr uAt -lhn +fqS weG weG hyr @@ -42164,7 +41414,7 @@ nBl wKi bRi mBG -ffY +riG xZN kyG ghs @@ -42238,17 +41488,17 @@ mPk vlm fjv wBp -gpJ +cfQ xfo bGC qzq ahg nQA -tlE +dWP eRM tCG aEf -nDL +cmA wMw wMw wMw @@ -42346,7 +41596,7 @@ uzb wKi bRi mBG -ffY +riG fYH gTC fhh @@ -42420,17 +41670,17 @@ wBp fjv mfP ppU -bah +lql uZK kME wMw kME tzP -psd +rpF asx asx nKd -nDL +cmA wMw wMw wMw @@ -42460,7 +41710,7 @@ wMw wMw wMw wMw -lni +bOu sTT bgE jTL @@ -42528,7 +41778,7 @@ qPG mCx aLc mBG -iSi +jFg tTN gTC kQb @@ -42602,17 +41852,17 @@ wBp mfP ppU ooP -kap +svz wMw wMw wMw mrC -hzK -eat +gzG +mTe asx asx jjZ -lqF +egb wMw iyd qFC @@ -42784,17 +42034,17 @@ ppU mfP sAW ooP -kap +svz wMw wMw wMw mrC -qhQ -jhM +cqu +jBD asx asx cQu -nDL +cmA wMw pbp wCc @@ -42966,17 +42216,17 @@ mfP mfP ooP mfP -kap +svz wMw wMw wMw wMw tzP -jhu -fFH -lNL -fFH -wPv +lFp +llU +bjv +llU +fMj wMw pbp sHV @@ -43148,7 +42398,7 @@ mfP mfP mfP mfP -kap +svz sSz miT wMw @@ -43330,7 +42580,7 @@ sAW mfP mfP mfP -kap +svz cmU wMw wMw @@ -43512,7 +42762,7 @@ mfP mfP mfP ooP -kap +svz rgZ olD olD @@ -43694,16 +42944,16 @@ mfP mfP ooP ooP -tOB +vzz tpV asx cfq -qAI -pEo -ohC -euS -vWn -fWE +oyq +uez +uTK +rAb +qhd +hxg ezx inj pbp @@ -43876,16 +43126,16 @@ mfP mfP ooP mfP -tOB +vzz lZR aCo lZR -aBY +pjr ooP vLI pYH haR -kap +svz wMw tZr pbp @@ -44058,16 +43308,16 @@ mfP mfP mfP mfP -xLB +tBn gnC mYR asx -aBY +pjr ooP vzi ooP ooP -kap +svz wMw ygY pbp @@ -44240,16 +43490,16 @@ dXg mfP ooP mfP -ssw -vQF -xOX -lId -tyV +mWm +iUg +ygh +csl +oho ooP vzi vzi vLI -kap +svz oLa vUQ pbp @@ -44281,7 +43531,7 @@ wMw wMw xXr wMw -plm +kQD wMw rSA wMw @@ -44353,7 +43603,7 @@ uuv wSx rjH wOC -gMm +mWt iFb kxe awJ @@ -44423,15 +43673,15 @@ mfP mfP mfP mfP -xLB -xOX -bCM -kMe -kMe -kMe -kMe -kMe -cEm +tBn +ygh +sDx +jLk +jLk +jLk +jLk +jLk +oZo fZB wMw pbp @@ -44605,9 +43855,9 @@ dXg dXg mfP mfP -tOB -xOX -tkV +vzz +ygh +qVq asx asx asx @@ -44787,7 +44037,7 @@ dXg dXg dXg dXg -tOB +vzz asx asx kzo @@ -44825,7 +44075,7 @@ miF mrC wMw wMw -hHz +dii wMw xVQ kyz @@ -44969,9 +44219,9 @@ qwQ qwQ qwQ dXg -xFS -vZR -apt +qhE +bcF +egU dKy qVD fXu @@ -45153,12 +44403,12 @@ qgm lTR dXg dXg -xFS -eqg -bJV -bJV -bJV -qTs +qhE +gEH +viu +viu +viu +wEz asx asx xOI @@ -45340,24 +44590,24 @@ qwQ qwQ qwQ pAX -rMl +iOM asx fZB asx wMw wMw -rwO +nrm wMw wMw wMw wMw -rwO +nrm wMw wMw wMw wMw wMw -rwO +nrm wMw wMw wMw @@ -45366,7 +44616,7 @@ wMw wMw wMw wMw -hHz +dii wMw wMw mrC @@ -45522,12 +44772,12 @@ qwQ qwQ qwQ qwQ -btU +nYY asx asx wCR -gsQ -icb +uvu +rSf wMw wMw wMw @@ -45704,11 +44954,11 @@ qwQ qwQ qwQ qwQ -ebN -eha -tNy -gXf -unH +xDT +sjb +sLr +uvY +qIs kKX oJb wfK @@ -45733,7 +44983,7 @@ bJI oJb wfK wfK -fWR +qlE bJI bJI bJI @@ -45781,7 +45031,7 @@ pGj iIc aAC wSL -axv +uXu lDh jQe mHa @@ -45887,9 +45137,9 @@ qwQ qwQ lTR qwQ -eDY -tNy -gPL +pFZ +sLr +aDg hKK srU sUp @@ -45900,24 +45150,24 @@ bJI asx fZB asx -pUi +gxa rIG lYr awr lYr aHu -tEc +gga asx viY asx -gfc +nsU sFN lYr lYr lYr kRH bJI -rgf +hsE asx aMC hLt @@ -45963,7 +45213,7 @@ vDf gvJ sLO lum -lxR +tcV rpN jQe xvj @@ -46069,37 +45319,37 @@ qwQ qwQ qwQ lTR -eDY -tNy -oLZ +pFZ +sLr +faT sUK eGX wXc sJm bVS kRH -eOa +iJh asx dlr asx -itQ +idh qKZ qyJ vAZ vmw kRH -eOa +iJh svG dlr asx -itQ +idh qKZ qyJ fwo lYr hZE bVX -eOa +iJh asx aMC hLt @@ -46145,7 +45395,7 @@ oRD wSL vVz wSL -hlF +gyu hLQ boV dkl @@ -46251,38 +45501,38 @@ qwQ qwQ qwQ qwQ -eDY -tNy -oLZ +pFZ +sLr +faT qwQ lTR scL dOS rfV lnO -fHf -eha -tNy -eXg -jLS +kpe +sjb +sLr +uUv +cNC lTR scL oGv lsN lnO -fHf -eha -tNy -eXg -jLS +kpe +sjb +sLr +uUv +cNC lTR scL oGv rKM lnO lTR -fHf -wPl +kpe +msS aMC kqA kqA @@ -46327,7 +45577,7 @@ qio qfL wSL wyE -axv +uXu hLY boV nLI @@ -46433,9 +45683,9 @@ qwQ qwQ qwQ qwQ -eDY -tNy -oLZ +pFZ +sLr +faT qwQ lTR scL @@ -46443,9 +45693,9 @@ gDI jSX fLY lTR -eDY -tNy -oLZ +pFZ +sLr +faT lTR lTR scL @@ -46453,9 +45703,9 @@ kvC jSX fLY lTR -eDY -tNy -oLZ +pFZ +sLr +faT lTR lTR scL @@ -46464,13 +45714,13 @@ oGv lnO lTR dXg -fHf -jEG -hET -hET -koZ -hET -wft +kpe +bSG +oCP +oCP +kSw +oCP +nGf aMC sNT giN @@ -46509,7 +45759,7 @@ qio rja gvJ szS -axv +uXu lDh boV dkl @@ -46615,9 +45865,9 @@ pAX qwQ qwQ uYJ -eDY -tNy -oLZ +pFZ +sLr +faT qwQ qwQ eGX @@ -46625,9 +45875,9 @@ hKK fLY lTR qwQ -eDY -tNy -oLZ +pFZ +sLr +faT lTR lTR eGX @@ -46635,9 +45885,9 @@ hKK fLY lTR lTR -eDY -jzL -oLZ +pFZ +jZZ +faT lTR lTR scL @@ -46652,7 +45902,7 @@ hKK bbG hKK hKK -gdJ +bYn vKv bZA giN @@ -46687,11 +45937,11 @@ tDF bzf gyz clX -azr +xoN aAC wSL wSL -axv +uXu edu boV nLI @@ -46797,9 +46047,9 @@ lTR qwQ qwQ lTR -eDY -tNy -oLZ +pFZ +sLr +faT qwQ qwQ lTR @@ -46807,9 +46057,9 @@ qwQ qwQ qwQ lTR -eDY -tNy -oLZ +pFZ +sLr +faT lTR lTR lTR @@ -46817,8 +46067,8 @@ lTR lTR lTR lTR -eDY -iAP +pFZ +knw sgn dXg dXg @@ -46834,7 +46084,7 @@ lTR lTR lTR aTY -qsb +cxn vKv hsl iSW @@ -46869,11 +46119,11 @@ dkl dkl mOx iZT -roT +lDA gdO wSL gvJ -hlF +gyu suE dkV sff @@ -46895,7 +46145,7 @@ bkM chs chs chs -rCs +uDd ixr ixr ixr @@ -46979,9 +46229,9 @@ qwQ lTR qwQ qwQ -eDY -tNy -oLZ +pFZ +sLr +faT qwQ qwQ qwQ @@ -46989,9 +46239,9 @@ aqh qwQ lTR qwQ -eDY -tNy -oLZ +pFZ +sLr +faT lTR lTR lTR @@ -46999,7 +46249,7 @@ aTY lTR lTR lTR -eDY +pFZ cpF cpF dXg @@ -47016,7 +46266,7 @@ lTR aTY lTR lTR -vEe +seV vKv hsl giN @@ -47051,11 +46301,11 @@ qXO tso bbW qQk -per -mVY -opP -lMl -pRR +rhq +usT +vGP +hfQ +iYC rpN aXz oXm @@ -47161,9 +46411,9 @@ qwQ qwQ qwQ qwQ -eDY -tNy -oLZ +pFZ +sLr +faT qwQ pAX lTR @@ -47171,9 +46421,9 @@ lTR qwQ dXg qwQ -eDY -tNy -oLZ +pFZ +sLr +faT lTR lTR aTY @@ -47181,7 +46431,7 @@ lTR lTR lTR lTR -fHf +kpe cpF lTR lTR @@ -47198,7 +46448,7 @@ lTR lTR lTR gVO -bEY +tJI aMC hyr giN @@ -47234,9 +46484,9 @@ tso qBO eUh izP -khB +oHX nTH -pNT +oBl izP eUh aXz @@ -47343,9 +46593,9 @@ qwQ qwQ qwQ qwQ -eDY -tNy -oLZ +pFZ +sLr +faT qwQ dXg qwQ @@ -47353,9 +46603,9 @@ qwQ dXg qwQ qwQ -eDY -tNy -oLZ +pFZ +sLr +faT lTR lTR lTR @@ -47416,9 +46666,9 @@ azh fEb nLI nLI -ovp -mIQ -fnX +xLQ +sZD +ndF ujR dkl boV @@ -47525,9 +46775,9 @@ qwQ qwQ lTR qwQ -eDY -tNy -oLZ +pFZ +sLr +faT qwQ dXg dXg @@ -47535,9 +46785,9 @@ qwQ dXg qwQ aqh -eDY -tNy -oLZ +pFZ +sLr +faT lTR lTR lTR @@ -47545,7 +46795,7 @@ lTR lTR lTR lTR -eDY +pFZ cpF lTR lTR @@ -47707,9 +46957,9 @@ qwQ qwQ qwQ qwQ -eDY -tNy -oLZ +pFZ +sLr +faT qwQ lTR lTR @@ -47717,9 +46967,9 @@ qwQ qwQ qwQ qwQ -eDY -tNy -oLZ +pFZ +sLr +faT nFD lTR lTR @@ -47729,7 +46979,7 @@ lTR lTR lTR stl -caD +ceH lTR scL oGv @@ -47889,9 +47139,9 @@ qwQ qwQ qwQ qwQ -eDY -tNy -oLZ +pFZ +sLr +faT qwQ qwQ qwQ @@ -47899,9 +47149,9 @@ qwQ qwQ qwQ lTR -eDY -tNy -oLZ +pFZ +sLr +faT aTY lTR lTR @@ -48071,9 +47321,9 @@ qwQ dXg qwQ qwQ -eDY -tNy -oLZ +pFZ +sLr +faT qwQ aqh lTR @@ -48081,9 +47331,9 @@ qwQ qwQ lTR qwQ -eDY -tNy -oLZ +pFZ +sLr +faT lTR lTR aTY @@ -48253,9 +47503,9 @@ lTR dXg qwQ qwQ -eDY -tNy -oLZ +pFZ +sLr +faT pAX qwQ qwQ @@ -48263,9 +47513,9 @@ qwQ uoh lTR qwQ -eDY -tNy -oLZ +pFZ +sLr +faT lTR lTR lTR @@ -48435,19 +47685,19 @@ dXg lTR qwQ pAX -eDY -tNy -wJl -rlI -rlI -rlI -rlI -rlI -rlI -rlI -mEy -tNy -oLZ +pFZ +sLr +pfU +qcQ +qcQ +qcQ +qcQ +qcQ +qcQ +qcQ +xZj +sLr +faT lTR lTR lTR @@ -48617,7 +47867,7 @@ dXg qwQ qwQ lTR -eDY +pFZ vss vss vss @@ -48628,8 +47878,8 @@ vss vss vss vss -tNy -oLZ +sLr +faT lTR lTR lTR @@ -48799,19 +48049,19 @@ dXg qwQ qwQ lTR -eDY -tNy -qLf -bJV -bJV -bJV -bJV -bJV -bJV -bJV -eha -tNy -oLZ +pFZ +sLr +rEi +viu +viu +viu +viu +viu +viu +viu +sjb +sLr +faT daS lTR lTR @@ -48981,19 +48231,19 @@ lTR vEg qwQ qwQ -eDY -tNy -nhY -rlI -rlI -rlI -rlI -bvF -rlI -hAI -qDr -tNy -oLZ +pFZ +sLr +imq +qcQ +qcQ +qcQ +qcQ +qxt +qcQ +giY +ihw +sLr +faT lTR lTR lTR @@ -49163,19 +48413,19 @@ qwQ qwQ qwQ qwQ -eDY -tNy -ctE +pFZ +sLr +aeJ gYh gYh tSK eQm gYh -rHE -uKY -eDY -tNy -oLZ +xlC +oTf +pFZ +sLr +faT lTR aTY lTR @@ -49345,19 +48595,19 @@ lTR qwQ qwQ lTR -eDY -tNy -ctE +pFZ +sLr +aeJ gYh oKi opd iEe diK -rHE -oLZ -eDY -tNy -oLZ +xlC +faT +pFZ +sLr +faT lTR lTR lTR @@ -49527,19 +48777,19 @@ qwQ qwQ lTR qwQ -eDY -tNy -ctE +pFZ +sLr +aeJ gYh dlh ncn lXv sFc -rHE -oLZ -eDY -tNy -oLZ +xlC +faT +pFZ +sLr +faT lTR lTR lTR @@ -49563,13 +48813,13 @@ lTR lTR scL oGv -foQ -hET -vzB +aUz +oCP +mjf ufn -vZN -nHy -hET +iKQ +rLS +oCP pGs pGs bgE @@ -49709,19 +48959,19 @@ qwQ qwQ qwQ qwQ -eDY -tNy -ctE -rHE +pFZ +sLr +aeJ +xlC psk gyE anA uqU -ipi -oLZ -eDY -tNy -oLZ +xwd +faT +pFZ +sLr +faT lTR lTR lTR @@ -49891,19 +49141,19 @@ qwQ qwQ lTR qwQ -eDY -tNy -bLl -rHE +pFZ +sLr +tWK +xlC rjM gLw hso ijO -rHE -wJl -mEy -tNy -oLZ +xlC +pfU +xZj +sLr +faT lTR uoh lTR @@ -50073,7 +49323,7 @@ qwQ qwQ lTR lTR -eDY +pFZ vss vss gLw @@ -50084,8 +49334,8 @@ pNk aSt vss vss -tNy -oLZ +sLr +faT lTR lTR lTR @@ -50161,19 +49411,19 @@ qhZ wVf qhZ wVf -wjV -abE -wjV -cdb -cdb +nCJ +rNR +nCJ +lBn +lBn slG fUJ kAm -cdb -wjV -cdb -wjV -abE +lBn +nCJ +lBn +nCJ +rNR pYn pYn kgw @@ -50255,7 +49505,7 @@ lTR dXg dXg qwQ -eDY +pFZ vss czA gLw @@ -50266,14 +49516,14 @@ gLw gLw czA vss -tNy -wJl -rlI -rlI -rlI -rlI +sLr +pfU +qcQ +qcQ +qcQ +qcQ lTR -rlI +qcQ lTR lTR lTR @@ -50312,20 +49562,20 @@ ftF bEX pnL juW -vAU -kkT -kkT -kkT -kkT -kkT -kkT -vAU -nAM -jcl -gAV -kkT -rVG -kBZ +fsU +mnC +mnC +mnC +mnC +mnC +mnC +fsU +cmL +hPm +ist +mnC +fEZ +htt hPj wVf wdb @@ -50343,19 +49593,19 @@ phd cHf qDw wVf -pBS -viK -xJZ -yeF -cdb -cdb -wjV -cdb -cdb -kqE -cdb -rRq -usB +mMd +gUX +eVy +qYw +lBn +lBn +nCJ +lBn +lBn +vmk +lBn +ret +jQi pYn qTz bjP @@ -50437,17 +49687,17 @@ dXg lTR dXg qwQ -eDY -tNy -aJD +pFZ +sLr +dKW eQm jFt qCE abu tnD hFM -qLf -eha +rEi +sjb vss vss vss @@ -50494,20 +49744,20 @@ eFJ trh qdk wUj -kkT -kkT -kkT -kkT -kkT -kkT -kkT -kkT -kkT -jcl -gAV -kkT -rVG -kBZ +mnC +mnC +mnC +mnC +mnC +mnC +mnC +mnC +mnC +hPm +ist +mnC +fEZ +htt hPj wVf xLE @@ -50525,19 +49775,19 @@ xOo xOo nHA qhZ -uqw -viK -xJZ -xJZ -xJZ -ccU -sCA -aKk -xJZ -xJZ -cdb -wMn -viK +bbF +gUX +eVy +eVy +eVy +jZF +rPp +fwt +eVy +eVy +lBn +sbG +gUX lhJ wot jvh @@ -50619,24 +49869,24 @@ lTR dXg lTR qwQ -eDY -tNy -ctE +pFZ +sLr +aeJ hFM fQh gLw oMg mhf eQm -oLZ -eDY -tNy -qLf -bJV -bJV -bJV +faT +pFZ +sLr +rEi +viu +viu +viu lTR -bJV +viu lTR lTR lTR @@ -50676,20 +49926,20 @@ hus wuR rVS kSN -uYT -uYT -uYT -uYT -uYT -uTq -uYT -uYT -uYT -qRP -kkT -kkT -rVG -kBZ +tyc +tyc +tyc +tyc +tyc +doF +tyc +tyc +tyc +ajm +mnC +mnC +fEZ +htt wVf wVf idw @@ -50707,19 +49957,19 @@ xOo iIL qDs wVf -qvO -viK -xJZ -xJZ -xJZ -xJZ -jew -iXR -xJZ -xJZ -cYB -gDh -viK +pSu +gUX +eVy +eVy +eVy +eVy +xTD +aRg +eVy +eVy +qTL +xpD +gUX kgw nXB jvh @@ -50801,19 +50051,19 @@ qwQ lTR lTR qwQ -eDY -tNy -ctE +pFZ +sLr +aeJ gYh xuJ fgW npF trB gYh -eBm -eDY -tNy -oLZ +wor +pFZ +sLr +faT lTR lTR lTR @@ -50858,20 +50108,20 @@ eFJ trh qdk wUj -gtz -edM -kkT -kkT -kkT -kkT -kkT -kkT -kkT -mvA -kkT -kkT -rVG -kBZ +wzs +mts +mnC +mnC +mnC +mnC +mnC +mnC +mnC +dME +mnC +mnC +fEZ +htt wVf swj idw @@ -50889,19 +50139,19 @@ aiR qhZ wVf wVf -okI -lab -lVc -lVc -lVc -jfw -okJ -gjz -lVc -iFZ -xJZ -xJZ -viK +tWZ +rDM +cNK +cNK +cNK +uqb +orx +aOh +cNK +tUA +eVy +eVy +gUX pYn diQ hhW @@ -50983,19 +50233,19 @@ qwQ qwQ dXg qwQ -eDY -tNy -ctE +pFZ +sLr +aeJ hFM aSt xQJ uVR saQ hFM -oLZ -eDY -tNy -oLZ +faT +pFZ +sLr +faT dXg dXg lTR @@ -51040,20 +50290,20 @@ ktN che qdk juW -rVG -crC -kkT -aNT -kkT -aNT -joV -rVG -rVG -jcl -kkT -tBm -rVG -kBZ +fEZ +fwF +mnC +gWu +mnC +gWu +vJf +fEZ +fEZ +hPm +mnC +dLO +fEZ +htt wVf unw idw @@ -51080,10 +50330,10 @@ wVf vOr qhZ wVf -viK -xJZ -xJZ -viK +gUX +eVy +eVy +gUX pYn pYn kgw @@ -51165,19 +50415,19 @@ qwQ qwQ lTR qwQ -eDY -tNy -ctE +pFZ +sLr +aeJ gYh hFM gYh gYh hFM gYh -uKY -eDY -tNy -oLZ +oTf +pFZ +sLr +faT dXg lTR nFD @@ -51185,9 +50435,9 @@ lTR lTR lTR dXg -eDY +pFZ vss -caD +ceH lTR scL oGv @@ -51222,20 +50472,20 @@ eFJ trh qdk juW -kBZ -kBZ -joV -kAz -kkT -aNT -aNT -aNT -aNT -jcl -kkT -aCM -rVG -kBZ +htt +htt +vJf +aqO +mnC +gWu +gWu +gWu +gWu +hPm +mnC +lrJ +fEZ +htt wVf wVf tiw @@ -51262,16 +50512,16 @@ jZw xMq vnU qhZ -viK -xJZ -mdj -icJ -cYB -eoq -xJZ -uEc -xJZ -iGM +gUX +eVy +tlc +ygy +qTL +hVi +eVy +vaj +eVy +nhM pYn jjl nkF @@ -51347,19 +50597,19 @@ qwQ qwQ qwQ qwQ -eDY -tNy -lmS -bJV -bJV -bJV -qmF -bJV -bJV -nHH -eDY -tNy -oLZ +pFZ +sLr +qlS +viu +viu +viu +xUM +viu +viu +vOF +pFZ +sLr +faT lTR lTR lTR @@ -51368,8 +50618,8 @@ dXg lTR dXg lTR -tNy -caD +sLr +ceH gVO uTu rfV @@ -51404,20 +50654,20 @@ eFJ trh qdk juW -kBZ -kBZ -kBZ -kkT -quP -aNT -fbr -aNT -aNT -jcl -sHO -aNT -rVG -kBZ +htt +htt +htt +mnC +udb +gWu +cSB +gWu +gWu +hPm +vdU +gWu +fEZ +htt hPj wVf wVf @@ -51444,17 +50694,17 @@ mnc xMq agJ qhZ -lab -lVc -lVc -pfr -pbw -lVc -lVc -qjg -lVc -iFZ -pIj +rDM +cNK +cNK +kmN +pJw +cNK +cNK +iRg +cNK +tUA +jdn pYn pYn pYn @@ -51529,19 +50779,19 @@ lTR lTR lTR qwQ -eDY -tNy -wJl -rlI -rlI -rlI -rlI -rlI -rlI -rlI -mEy -tNy -dyo +pFZ +sLr +pfU +qcQ +qcQ +qcQ +qcQ +qcQ +qcQ +qcQ +xZj +sLr +jFJ jaF jaF jaF @@ -51586,20 +50836,20 @@ ftF bEX pnL juW -kBZ -kBZ -kBZ -kkT -kkT -aNT -aNT -aNT -aNT -jcl -kkT -aNT -aNT -kBZ +htt +htt +htt +mnC +mnC +gWu +gWu +gWu +gWu +hPm +mnC +gWu +gWu +htt hPj hHR idw @@ -51626,17 +50876,17 @@ wVf bdJ wVf wVf -gfj -fEA -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -vlw -viK -wXu +gFc +anx +eVy +eVy +eVy +eVy +eVy +eVy +jsg +gUX +wmj vHs vHs vHs @@ -51711,7 +50961,7 @@ qwQ lTR dXg qwQ -eDY +pFZ vss vss vss @@ -51722,8 +50972,8 @@ vss vss vss vss -tNy -hNq +sLr +siC oGv oGv oGv @@ -51771,17 +51021,17 @@ wOO wOO wOO wOO -kBZ -kBZ -aNT -aNT -aNT -aNT -lDm -kkT -joV -aNT -kBZ +htt +htt +gWu +gWu +gWu +gWu +ukb +mnC +vJf +gWu +htt hPj wVf dtu @@ -51816,9 +51066,9 @@ wVf wVf wVf wVf -xJZ -viK -xJZ +eVy +gUX +eVy vHs eBs xcf @@ -51893,19 +51143,19 @@ dXg dXg lTR qwQ -eDY -tNy -qLf -bJV -bJV -bJV -bJV -bJV -bJV -bJV -eha -tNy -hNq +pFZ +sLr +rEi +viu +viu +viu +viu +viu +viu +viu +sjb +sLr +siC hXR oGv oGv @@ -51953,17 +51203,17 @@ cud kOS dWl wOO -kBZ -kBZ -kBZ -aNT -kBZ -rVG -smE -kkT -aNT -jeW -joV +htt +htt +htt +gWu +htt +fEZ +kZu +mnC +gWu +qJZ +vJf hPj wVf aHM @@ -51998,9 +51248,9 @@ ixh xKL baH wVf -xJZ -viK -xJZ +eVy +gUX +eVy vHs imz mwD @@ -52075,9 +51325,9 @@ lTR qwQ qwQ qwQ -eDY -tNy -oLZ +pFZ +sLr +faT lTR qwQ dXg @@ -52085,9 +51335,9 @@ qwQ qwQ lTR dXg -eDY -tNy -hNq +pFZ +sLr +siC oGv oGv hXR @@ -52135,17 +51385,17 @@ vmc wYF rsB wOO -kBZ -kBZ -kBZ -kBZ -kBZ -rVG -jcl -kkT -aNT -aNT -aNT +htt +htt +htt +htt +htt +fEZ +hPm +mnC +gWu +gWu +gWu wVf wVf rpT @@ -52180,9 +51430,9 @@ cKC xOo jcC wVf -xJZ -viK -oef +eVy +gUX +lIM fEz fpY eQC @@ -52257,9 +51507,9 @@ qwQ qwQ qwQ lTR -eDY -tNy -oLZ +pFZ +sLr +faT qwQ lTR dXg @@ -52267,9 +51517,9 @@ dXg qwQ qwQ dXg -eDY -tNy -hNq +pFZ +sLr +siC oGv upH oGv @@ -52319,15 +51569,15 @@ rsB poE tlT hlp -kBZ -kBZ -kBZ -rVG -jcl -kkT -aNT -aNT -aNT +htt +htt +htt +fEZ +hPm +mnC +gWu +gWu +gWu sPs cYa lVB @@ -52362,9 +51612,9 @@ xOo qEa iqW wVf -xJZ -viK -oef +eVy +gUX +lIM jgY kWB kWB @@ -52439,9 +51689,9 @@ qwQ qwQ qwQ qwQ -eDY -tNy -mIU +pFZ +sLr +bbU jaF jaF jaF @@ -52449,9 +51699,9 @@ jaF qgm vEg qwQ -eDY -tNy -jdu +pFZ +sLr +jCg hXR oGv oGv @@ -52501,15 +51751,15 @@ jaL poE tlT mQh -kBZ -kBZ -aNT -hcI -qnl -kkT -aNT -aNT -aNT +htt +htt +gWu +tYZ +mms +mnC +gWu +gWu +gWu sPs etE swi @@ -52544,9 +51794,9 @@ gwG xOo mAP wVf -xJZ -tYw -oef +eVy +lMy +lIM jgY kWB wmt @@ -52621,9 +51871,9 @@ qwQ qwQ qwQ lTR -eDY -tNy -igB +pFZ +sLr +mNj oGv oGv oGv @@ -52631,9 +51881,9 @@ oGv lnO lTR lTR -eDY -tNy -igB +pFZ +sLr +mNj oGv oGv tmC @@ -52683,15 +51933,15 @@ cil cuc tlT mrT -kBZ -aNT -aNT -aNT -qnl -kkT -aNT -aNT -aNT +htt +gWu +gWu +gWu +mms +mnC +gWu +gWu +gWu wVf wVf pIC @@ -52726,9 +51976,9 @@ cur syb gEO wVf -rDD -viK -oef +dLn +gUX +lIM jgY kWB cAx @@ -52803,9 +52053,9 @@ lTR qwQ qwQ lTR -eDY -tNy -igB +pFZ +sLr +mNj oGv lsN tmC @@ -52813,9 +52063,9 @@ hXR pfd jaF jaF -tGw -tNy -igB +rnx +sLr +mNj oGv hXR oGv @@ -52825,7 +52075,7 @@ oGv oGv oGv stl -mmO +aXd oGv oGv gfk @@ -52865,14 +52115,14 @@ aIq tlT eGL mrT -kBZ -tkF -aNT -aNT -qnl -kkT -aNT -aNT +htt +dZn +gWu +gWu +mms +mnC +gWu +gWu eyt eyt ouy @@ -52881,10 +52131,10 @@ wVf wVf eyt ouy -wXu -viK -xJZ -wqb +wmj +gUX +eVy +xRO eyt eyt eyt @@ -52908,9 +52158,9 @@ wVf wVf wVf wVf -sKu -viK -xJZ +bde +gUX +eVy vHs imz wDv @@ -52985,9 +52235,9 @@ qwQ dXg qwQ qwQ -btU -tNy -igB +nYY +sLr +mNj hXR rMb oGv @@ -52995,9 +52245,9 @@ oGv oGv oGv oGv -eoj -tNy -igB +uAO +sLr +mNj oGv oGv oGv @@ -53005,9 +52255,9 @@ rKM fkd oGv hXR -svt +mFw vss -mmO +aXd dOS oGv dXg @@ -53047,15 +52297,15 @@ cil wae sdZ hwZ -kBZ -kBZ -aNT -aNT -apj -kkT -aNT -aNT -aNT +htt +htt +gWu +gWu +qsJ +mnC +gWu +gWu +gWu kbQ eyt eyt @@ -53063,10 +52313,10 @@ eyt eyt eyt ouy -xJZ -viK -xJZ -wqb +eVy +gUX +eVy +xRO eyt eyt eyt @@ -53090,9 +52340,9 @@ ieu qAr mIG wVf -eFW -viK -xJZ +eWa +gUX +eVy vHs dmN iYi @@ -53111,7 +52361,7 @@ bkM eQr iaM hbi -gMm +mWt xxk iFb mCF @@ -53166,30 +52416,30 @@ qwQ dXg dXg qwQ -tqV -mEy -tNy -jKW -hej +ozY +xZj +sLr +qTg +lPR dOS oGv oGv rKM oGv -fZX -nOM -tNy -jKW -hej +wTm +hxW +sLr +qTg +lPR rMb oGv oGv oGv oGv oGv -svt -tNy -mmO +mFw +sLr +aXd oGv oGv oGv @@ -53233,11 +52483,11 @@ wOO wOO oSX wOO -jPM -kkT -kkT -aNT -vHV +hwr +mnC +mnC +gWu +qAa kbQ kbQ eyt @@ -53245,14 +52495,14 @@ eyt jqw eyt ouy -xJZ -viK -xJZ -wqb -wqb -wqb -wqb -wqb +eVy +gUX +eVy +xRO +xRO +xRO +xRO +xRO wVf wVf xvF @@ -53272,9 +52522,9 @@ wpM vpV nmN wVf -xJZ -viK -xJZ +eVy +gUX +eVy vHs vHs vHs @@ -53348,27 +52598,27 @@ pdK kgp pdK pdK -gVP +rSh aQN jzB aQN -geK +fHA qNu wlB wlB wlB ghW -mnU +hpv aQN jzB aQN -geK +fHA wlB wlB lTg ghW wlB -mnU +hpv suY aQN hMg @@ -53415,11 +52665,11 @@ eGd pkT pAZ wOO -fyz -kkT -kkT -aNT -aNT +pGb +mnC +mnC +gWu +gWu kbQ kbQ kbQ @@ -53427,19 +52677,19 @@ jqw kbQ eyt ouy -rDD -wng -lVc -lVc -lVc -lVc -lVc -elO -lVc -lVc -lVc -lVc -lVc +dLn +oZv +cNK +cNK +cNK +cNK +cNK +riV +cNK +cNK +cNK +cNK +cNK gRS enH eKw @@ -53454,10 +52704,10 @@ pRy vpV mIG obS -xJZ -hfn -ryD -xJZ +eVy +bLn +wlW +eVy kfG eyt eyt @@ -53530,27 +52780,27 @@ kgp pdK pdK fpq -kVq +hcG aQN hQV aQN -geK +fHA wlB lTg wlB wlB wlB -mnU +hpv aQN ocz aQN -geK +fHA wlB wlB wlB wlB wlB -mnU +hpv wlB aHw aQN @@ -53597,11 +52847,11 @@ fEu fEu pCO oSX -jcl -kkT -kkT -rVG -kkT +hPm +mnC +mnC +fEZ +mnC kbQ kbQ kbQ @@ -53609,19 +52859,19 @@ kbQ kbQ lFk lFE -xJZ -viK -xJZ -sxY -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ +eVy +gUX +eVy +hpx +eVy +eVy +eVy +eVy +eVy +eVy +eVy +eVy +eVy qhZ rqn kGF @@ -53636,10 +52886,10 @@ tdy vpV dNY obS -ryD -viK -xJZ -xJZ +wlW +gUX +eVy +eVy kfG eyt eyt @@ -53712,22 +52962,22 @@ urD pdK pdK nsN -mnU +hpv aQN aQN aQN -geK -vLh +fHA +fZQ hDw qZV qZV oyl -mnU +hpv aQN aQN aQN -geK -vLh +fHA +fZQ hDw qZV qZV @@ -53779,11 +53029,11 @@ lur fEu thp oSX -jcl -kkT -aNT -aNT -kkT +hPm +mnC +gWu +gWu +mnC kbQ jqw kbQ @@ -53791,19 +53041,19 @@ kbQ kbQ ofC nZP -xJZ -viK -xJZ -xJZ -sny -vlw -xJZ -xJZ -xxs -iXR -xJZ -xJZ -gDh +eVy +gUX +eVy +eVy +eJD +jsg +eVy +eVy +sDX +aRg +eVy +eVy +xpD qhZ beE orb @@ -53818,10 +53068,10 @@ bUg vpV lNq obS -ryD -wXs -xJZ -ryD +wlW +cKb +eVy +wlW kfG xAx eyt @@ -53894,26 +53144,26 @@ pdK pdK urD nsN -bys -kkt -hsa -ksu -njC -riM +hlN +lCj +cwt +vRm +nXF +eCU aQN aQN aQN -hsa -xDd -rUc -hsa -ksu -bVe -yhZ +cwt +dfc +tiK +cwt +vRm +nON +bWE aQN aQN aQN -hsa +cwt wlB aQN aQN @@ -53961,11 +53211,11 @@ rTv fEu thp oSX -mZk -kkT -kkT -imu -kkT +kZL +mnC +mnC +oBb +mnC tVj tVj tVj @@ -53973,10 +53223,10 @@ tVj tVj tVj nZP -xJZ -viK -xJZ -wqb +eVy +gUX +eVy +xRO eyt eyt eyt @@ -54000,10 +53250,10 @@ fHx vpV qVS wVf -rWY -viK -xJZ -xJZ +jIi +gUX +eVy +eVy vph qIF sgk @@ -54143,11 +53393,11 @@ cbg fEu swM wOO -jcl -kkT -kkT -rVG -kkT +hPm +mnC +mnC +fEZ +mnC tVj qIF kbQ @@ -54155,10 +53405,10 @@ qIF tTU kbQ nZP -xJZ -viK -gDh -wqb +eVy +gUX +xpD +xRO eyt eyt eyt @@ -54182,10 +53432,10 @@ jhv aQu ocr wVf -ybt -viK -xJZ -vlw +nkK +gUX +eVy +jsg qIF kbQ kbQ @@ -54325,11 +53575,11 @@ osr aDZ aDZ nOg -uTy -uYT -uYT -dVh -aNT +tkR +tyc +tyc +bIR +gWu kbQ kbQ kbQ @@ -54337,10 +53587,10 @@ kbQ sgk eyt ouy -xJZ -viK -xJZ -wqb +eVy +gUX +eVy +xRO eyt eyt eyt @@ -54364,10 +53614,10 @@ twh aqb ptP wVf -mNT -viK -xJZ -xJZ +lNy +gUX +eVy +eVy kfG nMJ uqW @@ -54507,11 +53757,11 @@ rpI rrr rrr wOO -fga -uwJ -kkT -jcl -aNT +iVi +xea +mnC +hPm +gWu kbQ qIF kbQ @@ -54519,10 +53769,10 @@ qIF uet eyt ouy -rpd -viK -xJZ -wqb +iQM +gUX +eVy +xRO eyt eyt eyt @@ -54546,10 +53796,10 @@ wVf wVf wVf wVf -rDD -viK -xJZ -xJZ +dLn +gUX +eVy +eVy kbQ kbQ eyt @@ -54670,7 +53920,7 @@ cFw nwq gDr cFw -mcB +rCa oSX oIC jtU @@ -54689,11 +53939,11 @@ uZa mEB mEB oSX -dJI -kkT -kkT -jcl -aNT +wLm +mnC +mnC +hPm +gWu ouy ofC qIF @@ -54701,10 +53951,10 @@ jJf cFz eyt ouy -xJZ -viK -xJZ -wqb +eVy +gUX +eVy +xRO eyt eyt jqw @@ -54727,11 +53977,11 @@ wVf eyt eyt eyt -wqb -xNc -viK -xJZ -xJZ +xRO +sLl +gUX +eVy +eVy kbQ kbQ kbQ @@ -54832,7 +54082,7 @@ iQr iQr iQr tCV -eJN +vAt vuA vuA bcD @@ -54852,7 +54102,7 @@ cFw cFw cFw cFw -kuO +etJ slE cqC sPh @@ -54871,11 +54121,11 @@ wOO wOO wOO wOO -rVG -kkT -kkT -jcl -kkT +fEZ +mnC +mnC +hPm +mnC tCA kbQ kbQ @@ -54883,10 +54133,10 @@ vcR eyt eyt ouy -xJZ -viK -xJZ -wqb +eVy +gUX +eVy +xRO eyt eyt eyt @@ -54908,12 +54158,12 @@ kTI wVf eyt eyt -wqb -wqb -xJZ -viK -xJZ -xJZ +xRO +xRO +eVy +gUX +eVy +eVy kfG ofC kbQ @@ -55004,10 +54254,10 @@ wlB aQN wlB wlB -vbK +fqD wlB iQr -caE +iSB bSQ qNu wlB @@ -55018,7 +54268,7 @@ aKJ mrR cFw cFw -dYW +svP jks cFw cFw @@ -55034,7 +54284,7 @@ mUz nwq cFw cFw -uFO +clc slE slE oSX @@ -55047,17 +54297,17 @@ enu iQS cRZ vVH -kBZ -kBZ -kBZ -kBZ -kBZ -kBZ -rVG -vAU -kkT -jcl -kkT +htt +htt +htt +htt +htt +htt +fEZ +fsU +mnC +hPm +mnC tCA kbQ kbQ @@ -55065,10 +54315,10 @@ eyt eyt eyt ouy -xJZ -viK -wXu -wqb +eVy +gUX +wmj +xRO eyt eyt eyt @@ -55090,26 +54340,26 @@ gnZ wVf eyt eyt -wqb -oJW -xJZ -eQa -lVc -lVc -lVc -lVc -lVc -mCe -lVc -lVc -lVc -pfr -lVc -feR -lVc -pfr -vJp -lVc +xRO +atL +eVy +hID +cNK +cNK +cNK +cNK +cNK +fdQ +cNK +cNK +cNK +kmN +cNK +cyP +cNK +kmN +rKZ +cNK mUP fnj baa @@ -55216,30 +54466,30 @@ jks cFw cFw nwq -gaG -qEt -ihX -qEt -xSZ -qEt -biS +dLA +nVU +dko +nVU +nzu +nVU +odf vVH dsz enu iQS wxD vVH -kBZ -kBZ -kBZ -kBZ -kBZ -kBZ -rVG -wkL -kkT -jcl -stw +htt +htt +htt +htt +htt +htt +fEZ +bDC +mnC +hPm +itw ouy kbQ kbQ @@ -55247,10 +54497,10 @@ kbQ eyt eyt ouy -rDD -viK -gha -wqb +dLn +gUX +rIr +xRO eyt eyt kbQ @@ -55272,26 +54522,26 @@ ycz wVf eyt eyt -wqb -qQd -xJZ -viK -xJZ -vlw -xJZ -xJZ -ryD -xJZ -xJZ -xJZ -xJZ -xJZ -ryD -xJZ -xJZ -xJZ -xJZ -xJZ +xRO +dHG +eVy +gUX +eVy +jsg +eVy +eVy +wlW +eVy +eVy +eVy +eVy +eVy +wlW +eVy +eVy +eVy +eVy +eVy cto tuZ sgl @@ -55353,7 +54603,7 @@ wlB wlB lTg wlB -knR +fUD wlB wlB jwX @@ -55404,24 +54654,24 @@ cFw cFw nwq nwq -oep +qcv vVH won vSu iQS wxD vVH -kBZ -kBZ -kBZ -kBZ -kBZ -kBZ -rVG -bFD -kkT -jcl -kkT +htt +htt +htt +htt +htt +htt +fEZ +uGo +mnC +hPm +mnC lFE kbQ kbQ @@ -55429,10 +54679,10 @@ kbQ eyt eyt ouy -xJZ -viK -xJZ -wqb +eVy +gUX +eVy +xRO eyt eyt jqw @@ -55454,26 +54704,26 @@ wVf wVf eyt eyt -wqb -wqb -xJZ -viK -ouP -vlw -pOg -xJZ -xJZ -wXu -ryD -ryD -xJZ -xJZ -xJZ -gDh -vlw -ryD -vXx -xJZ +xRO +xRO +eVy +gUX +gOJ +jsg +bTK +eVy +eVy +wmj +wlW +wlW +eVy +eVy +eVy +xpD +jsg +wlW +eEF +eVy fLu iaM pyz @@ -55529,7 +54779,7 @@ dYd wlB kAH lTg -knR +fUD wlB wlB wlB @@ -55539,7 +54789,7 @@ wlB lTg wlB wlB -hIt +enS wlB beK cVq @@ -55586,24 +54836,24 @@ nwq wUF cFw cFw -uFO +clc vVH iQS aQY iQS iQS vVH -kBZ -kBZ -kBZ -kBZ -kBZ -kBZ -rVG -rVG -kkT -jcl -edM +htt +htt +htt +htt +htt +htt +fEZ +fEZ +mnC +hPm +mts ouy kbQ kbQ @@ -55611,10 +54861,10 @@ kbQ eyt eyt ouy -rWY -viK -xJZ -bPk +jIi +gUX +eVy +fld jqw kbQ kbQ @@ -55637,10 +54887,10 @@ kbQ eyt eyt eyt -wqb -xJZ -viK -xJZ +xRO +eVy +gUX +eVy ouy ouy ouy @@ -55768,24 +55018,24 @@ cFw cFw cFw dgY -kuO +etJ vVH iQS fnl iQS iQS vVH -kBZ -kBZ -kBZ -kBZ -kBZ -kBZ -kBZ -rVG -kkT -jcl -vAU +htt +htt +htt +htt +htt +htt +htt +fEZ +mnC +hPm +fsU ouy sgk kbQ @@ -55793,10 +55043,10 @@ qIF eyt eyt ouy -oJW -viK -xJZ -wqb +atL +gUX +eVy +xRO kbQ sgk kbQ @@ -55820,9 +55070,9 @@ jqw eyt eyt eyt -rDD -viK -xJZ +dLn +gUX +eVy ouy eyt eyt @@ -55917,7 +55167,7 @@ wlB wlB tfc tCV -caE +iSB wlB ghW wlB @@ -55950,24 +55200,24 @@ cFw cFw dvT cFw -kuO +etJ vVH iQS enu apH iQS vVH -kBZ +htt vVH vVH vVH vVH -kBZ -kBZ -rVG -kkT -jcl -vAU +htt +htt +fEZ +mnC +hPm +fsU lFE sgk kbQ @@ -55975,10 +55225,10 @@ jqw eyt eyt ouy -xJZ -viK -xJZ -tFQ +eVy +gUX +eVy +hzj iyv tTU jqw @@ -56002,9 +55252,9 @@ kbQ eyt eyt eyt -xJZ -wXs -xJZ +eVy +cKb +eVy ouy eyt kbQ @@ -56106,7 +55356,7 @@ wlB wlB nCl wlB -eev +atu cFw cFw cFw @@ -56132,7 +55382,7 @@ jks cFw cFw cFw -kuO +etJ vVH nxl enu @@ -56145,48 +55395,48 @@ qcD kAl vVH vVH -kBZ -rVG -kkT -jcl -klf +htt +fEZ +mnC +hPm +kkR ouy kbQ sgk kbQ eyt ouy -xxs -xJZ -viK -xJZ -tWA -tWA -tLu -tLu -wqb -wqb -tWA -gey -uvr -tWA -wqb -wqb -wqb -wqb -tLu -tLu -xJZ -xJZ -xJZ -wqb -tLu -wqb -wqb -wqb -xJZ -viK -xJZ +sDX +eVy +gUX +eVy +uTv +uTv +vwV +vwV +xRO +xRO +uTv +jGt +kyA +uTv +xRO +xRO +xRO +xRO +vwV +vwV +eVy +eVy +eVy +xRO +vwV +xRO +xRO +xRO +eVy +gUX +eVy ouy eyt qIF @@ -56314,7 +55564,7 @@ jks jks cFw cFw -kuO +etJ uti kxU enu @@ -56326,49 +55576,49 @@ jXn iQS iQS tkr -imu -kkT -kkT -kkT -jcl -kkT +oBb +mnC +mnC +mnC +hPm +mnC ouy tCA kbQ tCA ouy ouy -xJZ -xJZ -viK -xJZ -xJZ -xJZ -xJZ -xJZ -wXu -xJZ -ryD -ryD -xJZ -keY -xJZ -vlw -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -wXs -xJZ +eVy +eVy +gUX +eVy +eVy +eVy +eVy +eVy +wmj +eVy +wlW +wlW +eVy +jti +eVy +jsg +eVy +eVy +eVy +eVy +eVy +eVy +eVy +eVy +eVy +eVy +eVy +eVy +eVy +cKb +eVy kbQ kbQ kbQ @@ -56496,7 +55746,7 @@ jks jks cFw nwq -ezU +gjm uti sPD hdV @@ -56508,49 +55758,49 @@ pDW pDW pDW pDW -uYT -uYT -uYT -uYT -uTy -uYT -uYT -uYT -uYT -uYT -uYT -pbw -lVc -lVc -pfr -nch -lVc -lVc -lVc -lVc -xpk -lVc -elO -lVc -lVc -lVc -lVc -lVc -lVc -xza -lVc -lVc -lVc -elO -lVc -lVc -lVc -tlM -lVc -lVc -lVc -cpC -xJZ +tyc +tyc +tyc +tyc +tkR +tyc +tyc +tyc +tyc +tyc +tyc +pJw +cNK +cNK +kmN +liN +cNK +cNK +cNK +cNK +cQm +cNK +riV +cNK +cNK +cNK +cNK +cNK +cNK +mqs +cNK +cNK +cNK +riV +cNK +cNK +cNK +gWj +cNK +cNK +cNK +nyk +eVy kbQ ofC kbQ @@ -56678,7 +55928,7 @@ jks cFw cFw nwq -kuO +etJ uti fmy iQS @@ -56690,49 +55940,49 @@ iQS axs iQS iQS -kkT -kkT -kkT -kkT -kkT -aNT -aNT -oPV -kkT -kkT -eKF -bPk -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -vlw -xJZ -xJZ -xJZ -xJZ -sny -xJZ -xJZ -xJZ -xJZ -xJZ -xJt -xJZ -xJZ -sny -xJZ -xJZ -xJZ -xJZ -vlw -xJZ -xJZ -xJZ -vXx -ryD +mnC +mnC +mnC +mnC +mnC +gWu +gWu +fiY +mnC +mnC +eer +fld +eVy +eVy +eVy +eVy +eVy +eVy +jsg +eVy +eVy +eVy +eVy +eJD +eVy +eVy +eVy +eVy +eVy +bKZ +eVy +eVy +eJD +eVy +eVy +eVy +eVy +jsg +eVy +eVy +eVy +eEF +wlW kbQ kbQ kbQ @@ -56860,7 +56110,7 @@ nRU jjj jjj mcp -tdt +tJx xAg xAg bSD @@ -56872,46 +56122,46 @@ vVH vVH vVH vVH -gfu -kkT -kkT -gfu -peY -sVr -aNT -aNT -kkT -iLc -dUL -bPk -sny -xJZ -xJZ -mHh -wqb -wqb -tLu -tLu -wqb -wqb -wqb -wqb -bPk -tLu -tWA -gey -tWA -wqb -wqb -bPk -wqb -bPk -wqb -wqb -tLu -bPk -bPk -wqb +mmG +mnC +mnC +mmG +oLW +qHo +gWu +gWu +mnC +sIW +dxV +fld +eJD +eVy +eVy +iNA +xRO +xRO +vwV +vwV +xRO +xRO +xRO +xRO +fld +vwV +uTv +jGt +uTv +xRO +xRO +fld +xRO +fld +xRO +xRO +vwV +fld +fld +xRO iwT wVp iwT @@ -57042,23 +56292,23 @@ jks cFw eHs cFw -bSj +cSL aoC xAg uti uti uti vVH -gCZ -gfe -bzz -fNm +fkM +deV +hPY +rEJ vVH -oET -slA -gfG -oET -oET +jwW +fAt +qbB +jwW +jwW iwT iwT iwT @@ -57227,19 +56477,19 @@ cFw bGU pGs pGs -tgC -oAJ -sxL -bzz -aer +biY +bmL +whi +hPY +qmh rvD rvD -wPH -ekE -oET -oET -oET -oET +qIn +rxO +jwW +jwW +jwW +jwW jqw kbQ ofC @@ -57417,7 +56667,7 @@ rvD rvD bGU rvD -xeO +nJx eyt eyt eyt @@ -58108,7 +57358,7 @@ kgp kgp kgp wlB -xju +xeJ cFw xmL cFw @@ -58345,20 +57595,20 @@ eyt eyt eyt eyt -qTh +orB ouy qaX rTi rTi ouy -nhI -vjO -rsO -bzz -gfe -oAJ -liz -vDP +iWw +nnB +bfe +hPY +deV +bmL +wel +siw ouy cwk sCp @@ -58527,20 +57777,20 @@ rvD bGU rvD rvD -xeO -bzz -uSF -dFC -mVn -hti -qEc +nJx +hPY +kyH +asV +vGb +iQX +jKr bGU rvD aSj fPJ bGU oBq -kjr +kLk kVE ibi dRI @@ -58722,7 +57972,7 @@ cVd huE lzT bGU -rKS +cNc vEi dir xHz @@ -58904,7 +58154,7 @@ sDH huE lzT lzT -gzm +qtC rTi sCp inV @@ -59018,7 +58268,7 @@ hPq kgp nCl wlB -hCK +jTi cFw ihY ihY @@ -59086,12 +58336,12 @@ pYK fFw pYI huE -xeO -uoU -bzz -fXA -mVj -cql +nJx +aAl +hPY +mxK +kdr +uEw pGs pGs pGs @@ -59562,7 +58812,7 @@ aQN tMZ pvQ lTg -fjw +oCM wlB kyp cFh @@ -63486,8 +62736,8 @@ brT uvd uvd uvd -wNI -xqS +nMN +fVo rco kjI kjI @@ -63502,8 +62752,8 @@ kjI kjI atM pTc -lvt -lFr +pyR +iEO uvd uvd uvd @@ -63850,8 +63100,8 @@ brT uvd uvd uvd -eIr -uxi +lOL +dPB rco kjI snS @@ -63866,8 +63116,8 @@ kjI snS snS hTQ -vPh -nau +lJJ +vbE uvd uvd ulv @@ -65126,7 +64376,7 @@ uvd uvd brT gRU -mLJ +wOU avD brT brT @@ -65139,7 +64389,7 @@ brT brT brT avD -bhU +hxb bsf uvd uvd @@ -65308,8 +64558,8 @@ ulv uvd brT vdV -tPE -qza +fFb +haY kjI rco kjI @@ -65320,8 +64570,8 @@ snS kjI hTQ kjI -vus -xfD +dXi +rJp mMz ulv uvd @@ -65463,22 +64713,22 @@ mPk mPk mPk mPk -itL -xce -byF -xce -xce -xce -xce -xce -byF -xce -xce -xce -xce -xce -xce -gBP +xSL +oXd +nSW +oXd +oXd +oXd +oXd +oXd +nSW +oXd +oXd +oXd +oXd +oXd +oXd +glM hXq hXq hXq @@ -65672,8 +64922,8 @@ kEK eiK ulv bsf -jwf -ehM +rdU +hfA kjI rco eRQ @@ -65684,8 +64934,8 @@ kjI kjI qAd kjI -cXa -rYi +mCM +iKU bsf brT uvd @@ -65854,7 +65104,7 @@ ulv ulv ulv bsf -jXp +hPA avD avD brT @@ -65867,7 +65117,7 @@ yaC brT avD avD -xfD +rJp bsf ulv uvd @@ -67101,24 +66351,24 @@ mPk mPk mPk mPk -itL -lwm -tjs -lwm -lwm -lwm -lwm -lwm -tjs -lwm -lwm -lwm -lwm -lwm -tjs -lwm -lwm -hjK +xSL +nYS +nzT +nYS +nYS +nYS +nYS +nYS +nzT +nYS +nYS +nYS +nYS +nYS +nzT +nYS +nYS +tyj stK hXq hXq @@ -67293,11 +66543,11 @@ mPk pRa pRa mPk -vjZ -aAr +pJR +aDS fGN wFJ -xrl +qvk pRa hfZ iWj @@ -67475,11 +66725,11 @@ pRa pRa pRa pRa -itL +xSL kif fGN fGN -xrl +qvk pRa mPk xDE @@ -67657,11 +66907,11 @@ pRa pRa mPk pRa -kWf -cKB -mdM -mdM -hjf +nAR +pvC +agh +agh +rTH pRa fDH ymb diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm index 44400af47d79..927aa971785a 100644 --- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm +++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm @@ -26,6 +26,10 @@ /obj/structure/disposaloutlet, /turf/open/floor/interior/plastic, /area/strata/ag/exterior/paths/far_north_outpost) +"aai" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) "aaj" = ( /obj/item/storage/large_holster/machete/full, /obj/structure/largecrate/random/barrel/green, @@ -79,16 +83,6 @@ }, /turf/open/floor/strata/floor3, /area/strata/ug/interior/jungle/structures/research/old_tunnels) -"aau" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "aav" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/snow/brown_base/layer3, @@ -105,13 +99,6 @@ /obj/effect/landmark/corpsespawner/upp, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outside/bball/cave) -"aay" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "aaz" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" @@ -152,16 +139,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outside/wooden_hospital) -"aaE" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "aaF" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/snow/brown_base/layer1, @@ -173,13 +150,6 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outside/bball/cave) -"aaH" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "aaI" = ( /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, @@ -332,13 +302,10 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outside/bball/cave) -"abq" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) +"abp" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/security) "abr" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer1, @@ -363,11 +330,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outside/bball/cave) -"abw" = ( -/obj/structure/platform_decoration/strata, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "aby" = ( /obj/structure/machinery/camera/autoname{ dir = 8 @@ -460,19 +422,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outside/bball/cave) -"abO" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "abP" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -485,16 +434,6 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/exterior/paths/far_north_outpost) -"abR" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "abT" = ( /obj/structure/surface/rack, /obj/item/storage/pill_bottle/bicaridine, @@ -549,11 +488,6 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/structures/research) -"acc" = ( -/obj/structure/platform/strata, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "acd" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, @@ -565,33 +499,6 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/outpost/platform) -"acg" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) -"ach" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) -"aci" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 4 - }, -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "acj" = ( /obj/effect/decal/cleanable/vomit, /turf/open/floor/strata/fake_wood, @@ -652,35 +559,6 @@ /obj/structure/inflatable/door, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outside/bball) -"acu" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 8 - }, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) -"acv" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) -"acw" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 4 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "acx" = ( /obj/structure/bed/nest, /obj/effect/landmark/corpsespawner/doctor, @@ -802,10 +680,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"acY" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/landing_zones/near_lz1) "acZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, @@ -1007,20 +881,6 @@ "adH" = ( /turf/open/floor/strata/blue1, /area/strata/ag/interior/outside/bball) -"adI" = ( -/obj/structure/flora/grass/tallgrass/ice, -/obj/structure/platform/strata, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) -"adJ" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 10 - }, -/obj/structure/platform/strata, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "adK" = ( /obj/structure/bed/chair{ dir = 8 @@ -1668,16 +1528,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/structures/research/old_tunnels) +"agj" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/foyer) "agl" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/structures/research) -"agm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "agn" = ( /obj/structure/barricade/handrail/strata, /turf/open/floor/plating, @@ -1745,17 +1603,6 @@ }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/mining_outpost/flight_control) -"agA" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/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{ @@ -2036,12 +1883,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"ahB" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "ahH" = ( /obj/item/stack/catwalk, /obj/effect/decal/cleanable/blood/oil, @@ -2362,14 +2203,6 @@ /obj/structure/machinery/weather_siren, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outside/bball) -"aiP" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "aiU" = ( /obj/structure/machinery/computer/cameras{ dir = 4 @@ -2423,15 +2256,6 @@ /obj/structure/machinery/washing_machine, /turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/structures/research) -"ajf" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/south) "ajg" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata/multi_tiles, @@ -2512,28 +2336,6 @@ /obj/structure/surface/rack, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/mining_outpost/maintenance) -"ajw" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) -"ajx" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) -"ajy" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen) -"ajz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/lightreplacer, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) "ajC" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" @@ -2638,33 +2440,16 @@ /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/mining_outpost/canteen) -"ajV" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"ajX" = ( -/obj/structure/closet/wardrobe/suit, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) -"ajY" = ( -/obj/structure/closet/wardrobe/red, -/obj/item/clothing/suit/imperium_monk, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen) -"ajZ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/storage/bomber, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen) "aka" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/far_north_outpost) -"akb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/mass_spectrometer, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) +"akc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "akf" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -2733,28 +2518,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/red1, /area/strata/ag/interior/mining_outpost/flight_control) -"akr" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/interior/landing_zones/near_lz1) -"aks" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/interior/landing_zones/near_lz1) "akt" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/light/small{ @@ -2762,16 +2525,6 @@ }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) -"aku" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/mining_outpost/canteen) -"akv" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/mining_outpost/canteen) "akw" = ( /obj/item/stack/sandbags, /turf/open/floor/strata/white_cyan1/east, @@ -2805,19 +2558,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/far_north_outpost) -"akC" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen) -"akD" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/storage/apron/overalls, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen) -"akE" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/canteen) "akG" = ( /obj/structure/barricade/snow{ dir = 1 @@ -2830,6 +2570,11 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/far_north_outpost) +"akJ" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) "akK" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata/red1, @@ -2891,36 +2636,6 @@ }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) -"akX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/mining_outpost/canteen) -"akY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cubancarp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/mining_outpost/canteen) -"ala" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/fishfingers, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/mining_outpost/canteen) -"alb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/mining_outpost/canteen) -"alc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meatballspagetti, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/mining_outpost/canteen) "ale" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/snacks/toastedsandwich, @@ -2952,22 +2667,6 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/far_north_outpost) -"alk" = ( -/obj/structure/closet/wardrobe/medic_white, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"alm" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen) -"aln" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"alo" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "alp" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Chunkeez Diner door" @@ -2978,16 +2677,6 @@ /obj/item/stool, /turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/mining_outpost/canteen) -"alr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) -"als" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) "alu" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/strata/floor3/east, @@ -3011,21 +2700,6 @@ "alz" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/landing_zones/near_lz1) -"alA" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landing_zones/near_lz1) -"alB" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landing_zones/near_lz1) "alC" = ( /turf/open/floor/strata/red1, /area/strata/ag/interior/landing_zones/near_lz1) @@ -3043,36 +2717,12 @@ "alH" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"alI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/mushroompizzaslice, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/mining_outpost/canteen) -"alJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/mining_outpost/canteen) -"alK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/omelette, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/mining_outpost/canteen) "alL" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, /turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/mining_outpost/canteen) -"alM" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/outpost_decks) "alN" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/strata_decals/catwalk/prison, @@ -3104,27 +2754,6 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/mining_outpost/central) -"alW" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"alX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"alY" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"alZ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) "amc" = ( /obj/effect/decal/cleanable/blood{ layer = 3 @@ -3159,13 +2788,6 @@ "amj" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/restricted) -"aml" = ( -/obj/item/lightstick/planted, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/interior/restricted) "amm" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, @@ -3174,13 +2796,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/far_north_outpost) -"amo" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/restricted) "amp" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/snow_suit, @@ -3193,31 +2808,11 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/strata, /area/strata/ag/interior/landing_zones/near_lz1) -"ams" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/mining_outpost/canteen) -"amt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/mining_outpost/canteen) "amu" = ( /obj/structure/prop/almayer/computers/sensor_computer1, /obj/structure/blocker/invisible_wall, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outside/checkpoints/north_armor) -"amv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/outpost_decks) "amw" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, @@ -3238,22 +2833,11 @@ /obj/structure/window/framed/strata, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/sec2) -"amG" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/south) "amK" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"amM" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) "amN" = ( /obj/effect/decal/cleanable/blood, /obj/structure/machinery/light{ @@ -3261,21 +2845,6 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) -"amO" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) -"amP" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/outpost/canteen) -"amU" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/interior/restricted) "amX" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -3301,12 +2870,6 @@ /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) -"anb" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/interior/restricted) "anc" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/stairs/perspective{ @@ -3348,27 +2911,10 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/landing_zones/near_lz1) -"ank" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/central) "anl" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/mining_outpost/canteen) -"anm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/central) -"ano" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/mining_outpost/canteen) "anp" = ( /obj/structure/machinery/light{ dir = 1 @@ -3483,49 +3029,10 @@ /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/paths/north_outpost) -"anK" = ( -/obj/structure/machinery/washing_machine, -/obj/item/facepaint/skull, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"anM" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"anN" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/restricted) -"anP" = ( -/obj/structure/bedsheetbin, -/obj/item/device/binoculars/range, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) -"anR" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/canteen) "anS" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/far_north_outpost) -"anU" = ( -/obj/structure/sign/safety/medical, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/canteen) -"anV" = ( -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) -"anW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) "aoa" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" @@ -3639,36 +3146,6 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) -"aoI" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) -"aoJ" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"aoL" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"aoM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"aoO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "aoP" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -3830,51 +3307,6 @@ "apz" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/far_north_outpost) -"apA" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) -"apC" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/radiation, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"apD" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"apE" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/suit/bluetag, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"apF" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"apI" = ( -/obj/structure/curtain/open/shower, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/outpost/canteen) -"apJ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"apK" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "apL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck, @@ -4093,33 +3525,6 @@ }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/maintenance) -"aqE" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"aqG" = ( -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"aqI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"aqJ" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"aqK" = ( -/obj/item/stool, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) "aqL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck, @@ -4134,14 +3539,6 @@ /obj/structure/machinery/light, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) -"aqP" = ( -/obj/item/device/aicard, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"aqQ" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) "aqR" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -4218,12 +3615,6 @@ /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/floor/prison/floor_plate, /area/strata/ag/interior/mining_outpost/central) -"arj" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/central) "ark" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -4369,16 +3760,6 @@ /obj/effect/decal/cleanable/blood/gibs/xeno/body, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) -"arK" = ( -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/strata/ug/interior/jungle/structures/research/old_tunnels) -"arL" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/strata/ug/interior/jungle/structures/research/old_tunnels) "arM" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -4437,10 +3818,10 @@ "arY" = ( /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/mining_outpost/central) -"asb" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/mining_outpost/central) +"asa" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "asc" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -4490,17 +3871,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/outpost_decks) -"asl" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/outpost_decks) "asm" = ( /turf/open/asphalt/cement/cement14, /area/strata/ag/exterior/outpost_decks) @@ -4515,18 +3885,6 @@ "asp" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ug/interior/jungle/structures/research) -"asq" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "ass" = ( /obj/structure/surface/rack, /obj/item/storage/box/donkpockets, @@ -4597,12 +3955,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ug/interior/jungle/structures/research) -"asE" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "asF" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -4616,57 +3968,6 @@ /obj/item/ammo_magazine/rifle/type71, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"asJ" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"asK" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"asL" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"asN" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"asO" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"asP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"asR" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"asS" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"asT" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "asV" = ( /obj/structure/surface/table/woodentable, /obj/item/device/defibrillator, @@ -4734,12 +4035,6 @@ }, /turf/open/asphalt/cement/cement9, /area/strata/ug/interior/jungle/structures/research/old_tunnels) -"atf" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/strata/ug/interior/jungle/structures/research/old_tunnels) "atg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/spacecash/c500, @@ -4783,16 +4078,6 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/research) -"ato" = ( -/obj/structure/flora/grass/tallgrass/ice, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/far_north_outpost) "atp" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 @@ -4837,28 +4122,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, /area/strata/ag/interior/mining_outpost/central) -"atz" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/outpost_decks) -"atA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/outpost_decks) -"atB" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 9 - }, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/far_north_outpost) "atC" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -4867,13 +4130,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/flight_control_exterior) -"atE" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ag/interior/outpost/engi) "atF" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -4901,10 +4157,6 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) -"atL" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "atO" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -4912,24 +4164,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"atP" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/coatrack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"atQ" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"atR" = ( -/obj/item/stack/rods, -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) "atS" = ( /obj/item/stack/nanopaste, /turf/open/floor/interior/tatami, @@ -5060,11 +4294,6 @@ /obj/item/storage/box/explosive_mines, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/research) -"aus" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/central) "auv" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall/strata_outpost/reinforced, @@ -5135,13 +4364,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"auM" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/flight_control_exterior) "auO" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/secure_data{ @@ -5149,49 +4371,10 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"auP" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"auQ" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"auR" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"auU" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/dogtag, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"auV" = ( -/obj/item/clothing/gloves/white, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"auX" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "auY" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) -"auZ" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 8 - }, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/far_north_outpost) "ava" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -5271,28 +4454,6 @@ }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/landing_zones/near_lz1) -"avr" = ( -/obj/item/weapon/wirerod, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ag/interior/mining_outpost/central) -"avs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/central) -"avt" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/stack/cable_coil/random, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/central) -"avu" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/greengrid, -/area/strata/ag/interior/mining_outpost/central) "avv" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/prison/darkredfull2, @@ -5353,12 +4514,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/mining_outpost_exterior) -"avH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) "avJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -5398,16 +4553,6 @@ }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"avR" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "avS" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -5494,23 +4639,6 @@ /obj/structure/bed/chair/office/light, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) -"awi" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"awj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) -"awl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/space_mountain_wind, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen) "awo" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 @@ -5525,18 +4653,6 @@ "awq" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/interior/restricted) -"awr" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/strata/ug/interior/jungle/structures/research/old_tunnels) -"aws" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/strata/ug/interior/jungle/structures/research/old_tunnels) "awt" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/auto_turf/strata_grass/layer1, @@ -5599,41 +4715,9 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/research) -"awG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ag/interior/mining_outpost/central) -"awI" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/greengrid, -/area/strata/ag/interior/mining_outpost/central) "awJ" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/north_outpost) -"awK" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/central) -"awL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/mining_outpost/central) "awM" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -5654,19 +4738,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/mining_outpost_exterior) -"awQ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/flight_control_exterior) "awR" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -5697,16 +4768,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outside/bball) -"awW" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/outpost_decks) "awX" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio, @@ -5725,13 +4786,6 @@ /obj/structure/closet/secure_closet/personal, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outside/bball) -"awZ" = ( -/obj/structure/flora/grass/tallgrass/ice, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/far_north_outpost) "axa" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/strata/floor3/east, @@ -5774,14 +4828,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"axi" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) "axj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp/green, @@ -5826,23 +4872,10 @@ /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"axt" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "axu" = ( /obj/structure/closet/secure_closet/security/soro, /turf/open/floor/strata/red1, /area/strata/ag/interior/outside/checkpoints/outpost) -"axv" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "axz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -5869,41 +4902,6 @@ }, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"axE" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"axF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) -"axG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/structure/bed/chair, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen) -"axH" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"axI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "axJ" = ( /obj/item/device/t_scanner, /turf/open/floor/strata/fake_wood, @@ -6057,10 +5055,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/mining_outpost/central) -"ayn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/central) "ayo" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost, @@ -6081,20 +5075,6 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) -"ayt" = ( -/obj/structure/flora/grass/tallgrass/ice, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/north_outpost) -"ayu" = ( -/obj/structure/flora/grass/tallgrass/ice, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/far_north_outpost) "ayv" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer0, @@ -6117,12 +5097,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/north_outpost) -"ayA" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/flight_control_exterior) "ayC" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -6172,11 +5146,6 @@ }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"ayL" = ( -/obj/item/stack/rods, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "ayM" = ( /obj/structure/machinery/light{ dir = 8 @@ -6202,14 +5171,6 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) -"ayW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 2; - name = "Security Barracks" - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/security) "ayX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -6229,38 +5190,12 @@ /obj/structure/machinery/light, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aze" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"azf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) -"azg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen) "azh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"azi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "azl" = ( /obj/item/reagent_container/glass/bucket/janibucket, /obj/structure/machinery/light/small, @@ -6449,22 +5384,6 @@ /obj/structure/fence, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/outpost_decks) -"aAe" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/outpost_decks) -"aAf" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata, -/area/strata/ag/exterior/outpost_decks) -"aAg" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/outpost_decks) "aAh" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, @@ -6501,13 +5420,6 @@ /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aAp" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/down, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aAs" = ( /obj/structure/barricade/handrail/strata, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -6589,19 +5501,6 @@ }, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"aAJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"aAK" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "aAM" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/strata/multi_tiles/southwest, @@ -6715,16 +5614,6 @@ }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) -"aBl" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/central) "aBm" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -6843,18 +5732,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aBU" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aBW" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -6870,15 +5747,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"aBY" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aBZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/cyan2/east, @@ -6935,17 +5803,6 @@ }, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"aCi" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"aCj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/ale, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen) "aCl" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/mining_outpost/central) @@ -6959,28 +5816,17 @@ /obj/structure/machinery/vending/sovietsoda, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint) -"aCq" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/structures/ruin) +"aCp" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/interior/restricted) "aCr" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e" }, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/structures/ruin) -"aCs" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/structures/ruin) "aCt" = ( /obj/item/stack/rods, /obj/item/stack/sheet/metal/medium_stack, @@ -7035,12 +5881,6 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/mining_outpost/central) -"aCG" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/central) "aCH" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/vents/pump{ @@ -7103,35 +5943,16 @@ /obj/structure/prop/dam/truck/cargo, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/outpost_decks) -"aCU" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"aCV" = ( -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aCW" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aCY" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aDa" = ( /obj/structure/barricade/handrail/strata, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ug/interior/jungle/structures/research) +"aDc" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "aDd" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -7170,34 +5991,6 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"aDk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aDl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) -"aDn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aDo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "aDp" = ( /obj/effect/decal/cleanable/blood{ layer = 3 @@ -7255,14 +6048,6 @@ /obj/structure/sign/double/maltesefalcon/left, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/mining_outpost/central) -"aDG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/mining_outpost/central) -"aDH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/mining_outpost/central) "aDI" = ( /obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/machinery/light/small{ @@ -7274,27 +6059,6 @@ /obj/structure/machinery/body_scanconsole, /turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/mining_outpost/central) -"aDK" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aDL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/mining_outpost_exterior) "aDM" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -7347,24 +6111,6 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) -"aDY" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/outpost_decks) -"aDZ" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata, -/area/strata/ag/exterior/outpost_decks) -"aEa" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/outpost_decks) "aEb" = ( /obj/structure/bed/chair{ dir = 8 @@ -7387,30 +6133,6 @@ }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) -"aEg" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"aEh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/carrotfries, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) -"aEi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"aEk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/item/device/encryptionkey/dutch, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen) "aEm" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -7597,29 +6319,12 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"aFd" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aFf" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"aFi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aFj" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -7643,127 +6348,10 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"aFl" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFn" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFp" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFq" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gibarm_flesh" - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFr" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aFs" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"aFt" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/m56d_hmg/mg_turret{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"aFu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "aFv" = ( /obj/structure/machinery/light, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"aFw" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aFx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) "aFz" = ( /obj/structure/machinery/light{ dir = 8 @@ -7899,54 +6487,10 @@ /obj/structure/machinery/space_heater, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/outpost_decks) -"aGd" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/outpost_decks) -"aGe" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/barricade/handrail/strata{ - layer = 3.1 - }, -/obj/structure/platform/strata/metal, -/turf/open/gm/river, -/area/strata/ag/exterior/outpost_decks) -"aGf" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 8; - layer = 2.9 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) "aGh" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) -"aGm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aGn" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aGp" = ( /obj/structure/sign/safety/laser, /turf/closed/wall/strata_outpost/reinforced, @@ -7962,117 +6506,12 @@ "aGs" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/security) -"aGu" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"aGw" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"aGx" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"aGy" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"aGz" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) "aGA" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/outpost_decks) -"aGB" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aGC" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/security) -"aGD" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/security) -"aGE" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aGF" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"aGG" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"aGH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) -"aGI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"aGJ" = ( -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"aGK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen) "aGM" = ( /obj/item/stack/sandbags, /obj/structure/barricade/handrail/strata{ @@ -8115,16 +6554,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/structures/research/south) -"aGX" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landing_zones/lz1) "aGZ" = ( /obj/structure/machinery/light{ dir = 4 @@ -8219,18 +6648,6 @@ "aHq" = ( /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/mining_outpost/maintenance) -"aHr" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aHs" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aHt" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" @@ -8247,72 +6664,13 @@ "aHv" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/engi) -"aHy" = ( -/obj/item/lightstick/red/planted, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/flight_control_exterior) "aHz" = ( /turf/closed/wall/resin/membrane/strata/on_tiles, /area/strata/ag/interior/outside/bball/cave) -"aHB" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aHC" = ( -/obj/item/lightstick/red/planted, -/obj/structure/platform/strata/metal{ - dir = 1 - }, +"aHE" = ( +/obj/structure/platform/metal/strata/north, /turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aHD" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) -"aHJ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aHK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aHL" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"aHM" = ( -/obj/item/stool, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"aHN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen) +/area/strata/ag/exterior/paths/mining_outpost_exterior) "aHO" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata/multi_tiles/west, @@ -8323,12 +6681,6 @@ "aHR" = ( /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/maint) -"aHS" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/flight_control_exterior) "aHT" = ( /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint) @@ -8370,21 +6722,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/landing_zones/near_lz1) -"aIg" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landing_zones/lz1) -"aIi" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/mining_outpost/canteen) "aIj" = ( /obj/structure/bed/chair{ dir = 8 @@ -8421,12 +6758,6 @@ /obj/item/reagent_container/food/snacks/enchiladas, /turf/open/floor/strata/orange_tile, /area/strata/ag/interior/mining_outpost/central) -"aIo" = ( -/obj/structure/pipes/vents/pump/on{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/central) "aIp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/pizzabox/mushroom, @@ -8443,35 +6774,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/flight_control_exterior) -"aIz" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/flight_control_exterior) "aIC" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/flight_control_exterior) -"aIG" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aIH" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/flight_control_exterior) "aIL" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 @@ -8520,15 +6826,6 @@ /obj/item/stack/sheet/mineral/plastic, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"aIX" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "aIZ" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/strata/multi_tiles/southwest, @@ -8537,24 +6834,22 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"aJc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/blue3/southwest, -/area/strata/ag/interior/outpost/admin) "aJd" = ( /obj/structure/sign/safety/terminal, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"aJf" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"aJl" = ( -/obj/structure/platform/strata/metal{ +"aJe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) "aJm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/barricade/handrail/strata{ @@ -8579,12 +6874,6 @@ }, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"aJp" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/flight_control_exterior) "aJr" = ( /obj/structure/machinery/computer/crew, /turf/open/floor/strata, @@ -8631,31 +6920,6 @@ /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/bar) -"aJC" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"aJD" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) -"aJE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"aJF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen) "aJG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata/multi_tiles/southwest, @@ -8697,14 +6961,6 @@ /obj/item/storage/toolbox/syndicate, /turf/open/floor/strata/orange_tile, /area/strata/ag/interior/mining_outpost/central) -"aJS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/mining_outpost/central) "aJT" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/vodka, @@ -8764,13 +7020,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/flight_control_exterior) -"aKf" = ( -/obj/item/lightstick/planted, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/flight_control_exterior) "aKi" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -8785,18 +7034,6 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) -"aKk" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aKl" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/flight_control_exterior) "aKm" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -8817,47 +7054,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"aKr" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"aKs" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aKt" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) -"aKu" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water_marshes) -"aKv" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) "aKw" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/multi_tiles/southwest, @@ -8894,10 +7090,6 @@ /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) -"aKC" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "aKD" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ @@ -8983,15 +7175,6 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/flight_control_exterior) -"aKW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "aKX" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -9056,11 +7239,6 @@ }, /turf/open/floor/strata/orange_edge/west, /area/strata/ag/interior/mining_outpost/central) -"aLj" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/mining_outpost/central) "aLk" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, @@ -9080,20 +7258,6 @@ /obj/structure/sign/poster, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mining_outpost/central) -"aLo" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aLp" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/mining_outpost/south_dormitories) "aLq" = ( /turf/open/floor/strata, /area/strata/ag/interior/mining_outpost/south_dormitories) @@ -9134,24 +7298,16 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/mountain) -"aLy" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aLz" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/mining_outpost_exterior) "aLB" = ( /obj/structure/machinery/camera/autoname{ dir = 4 }, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) +"aLD" = ( +/obj/structure/platform/metal/strata, +/turf/open/gm/river, +/area/strata/ag/interior/outside/engineering/parts_storage) "aLF" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/strata, @@ -9175,15 +7331,6 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/flight_control_exterior) -"aLM" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/mining_outpost_exterior) "aLO" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor3, @@ -9269,15 +7416,6 @@ }, /turf/open/floor/strata/blue3/north, /area/strata/ag/interior/outpost/admin) -"aMg" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue3/north, -/area/strata/ag/interior/outpost/admin) -"aMh" = ( -/turf/open/floor/strata/blue4/north, -/area/strata/ag/interior/outpost/admin) "aMi" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, /turf/open/floor/strata/white_cyan1/east, @@ -9310,20 +7448,6 @@ "aMn" = ( /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/bar) -"aMo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) -"aMp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen) "aMq" = ( /obj/item/stack/sandbags, /turf/open/floor/strata/white_cyan2/west, @@ -9400,46 +7524,6 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mining_outpost/central) -"aMG" = ( -/obj/item/lightstick/red/planted, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aMH" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aMI" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aMJ" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aMK" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aML" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/south_dormitories) "aMM" = ( /obj/structure/machinery/computer/station_alert{ dir = 4; @@ -9476,31 +7560,6 @@ }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"aMS" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aMT" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aMU" = ( -/obj/item/lightstick/red/planted, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aMV" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/mining_outpost_exterior) "aMW" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -9513,10 +7572,6 @@ }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"aMY" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "aMZ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -9545,13 +7600,6 @@ /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/flight_control_exterior) -"aNe" = ( -/obj/item/bodybag/tarp/snow, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/mining_outpost_exterior) "aNf" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -9578,17 +7626,6 @@ "aNo" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/mining_outpost_exterior) -"aNq" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aNs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/blue3/west, -/area/strata/ag/interior/outpost/admin) -"aNt" = ( -/turf/open/floor/strata/blue3/east, -/area/strata/ag/interior/outpost/admin) "aNu" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/engi) @@ -9598,53 +7635,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/canteen/bar) -"aNw" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aNx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) -"aNy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen) -"aNz" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) -"aNA" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 5 - }, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/barricade/handrail/strata{ - layer = 3.1 - }, -/obj/structure/platform/strata/metal, -/turf/open/gm/river, -/area/strata/ag/exterior/outpost_decks) -"aNB" = ( -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/mining_outpost_exterior) "aNC" = ( /obj/structure/closet/crate, /turf/open/floor/strata/multi_tiles/southwest, @@ -9709,13 +7699,6 @@ /obj/effect/decal/strata_decals/grime/grime3, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/mining_outpost_exterior) -"aNO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/south_dormitories) "aNQ" = ( /obj/item/explosive/grenade/phosphorus, /obj/structure/surface/rack, @@ -9748,11 +7731,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) -"aNU" = ( -/obj/item/lightstick/red/planted, -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/mining_outpost_exterior) "aNV" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -9783,46 +7761,6 @@ /obj/structure/machinery/light, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aOb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/platform_decoration/strata/metal, -/obj/structure/machinery/light, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aOc" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aOd" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"aOe" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aOf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"aOg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"aOh" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) "aOm" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -9893,53 +7831,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/central) -"aOx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/blue3/west, -/area/strata/ag/interior/outpost/admin) -"aOy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) -"aOz" = ( -/obj/item/lightstick/red/planted, -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aOA" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"aOB" = ( -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/mining_outpost_exterior) "aOD" = ( /obj/effect/decal/remains/xeno, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outside/bball/cave) -"aOE" = ( -/obj/item/lightstick/red/planted, -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aOF" = ( -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aOG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/sodawater, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen) "aOJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/white_cyan1/east, @@ -9997,39 +7892,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/flight_control_exterior) -"aOX" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/mining_outpost_exterior) "aOY" = ( /obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/mining_outpost_exterior) -"aOZ" = ( -/obj/item/lightstick/red/planted, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aPa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/south_dormitories) -"aPb" = ( -/obj/structure/filingcabinet, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/south_dormitories) -"aPc" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/flight_control_exterior) "aPd" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -10062,23 +7928,9 @@ /obj/item/tool/extinguisher, /turf/open/floor/greengrid, /area/strata/ag/interior/mining_outpost/south_dormitories) -"aPl" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/south_dormitories) "aPm" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/admin) -"aPn" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/mining_outpost_exterior) "aPo" = ( /obj/structure/surface/rack, /obj/item/explosive/grenade/phosphorus, @@ -10100,12 +7952,6 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/mining_outpost/south_dormitories) -"aPr" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/mining_outpost_exterior) "aPs" = ( /obj/item/lightstick/planted, /obj/structure/barricade/snow{ @@ -10163,19 +8009,6 @@ }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"aPE" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"aPF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) "aPG" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -10188,12 +8021,6 @@ }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"aPH" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) "aPI" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/strata, @@ -10266,25 +8093,6 @@ }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) -"aPT" = ( -/obj/effect/decal/cleanable/generic, -/obj/item/lightstick/red/planted, -/obj/structure/platform/strata/metal, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aPW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"aPX" = ( -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/mining_outpost_exterior) "aPY" = ( /obj/structure/barricade/snow{ dir = 8 @@ -10292,20 +8100,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) -"aQa" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"aQb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "aQc" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -10315,43 +8109,6 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen/bar) -"aQd" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"aQe" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aQf" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"aQg" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aQh" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aQi" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/obj/structure/barricade/deployable, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) "aQj" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -10382,14 +8139,6 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) -"aQn" = ( -/obj/structure/flora/grass/tallgrass/ice/corner, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/flight_control_exterior) "aQp" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -10472,14 +8221,6 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/mining_outpost/south_dormitories) -"aQH" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/structure/flora/grass/tallgrass/ice, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/flight_control_exterior) "aQI" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer0, @@ -10494,10 +8235,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/structures/monitoring/west) -"aQP" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/foyer) "aQQ" = ( /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) @@ -10531,13 +8268,6 @@ /obj/item/weapon/gun/pistol/t73, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) -"aQX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/mining_outpost/canteen) "aQY" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -10591,26 +8321,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aRi" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) -"aRj" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) -"aRm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "aRn" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -10618,21 +8328,12 @@ /obj/effect/landmark/corpsespawner/chef, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/bar) -"aRo" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) "aRp" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/flight_control_exterior) -"aRq" = ( -/obj/structure/barricade/deployable, -/obj/structure/machinery/m56d_hmg, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) "aRr" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata/multi_tiles/west, @@ -10652,12 +8353,6 @@ }, /turf/open/asphalt/cement/cement4, /area/strata/ag/interior/landing_zones/lz1) -"aRy" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/flight_control_exterior) "aRz" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/delayone{ @@ -10689,37 +8384,6 @@ /obj/structure/machinery/light, /turf/open/floor/strata/floor3, /area/strata/ag/interior/mining_outpost/south_dormitories) -"aRF" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/south_dormitories) -"aRG" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/south_dormitories) -"aRI" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/south_dormitories) -"aRJ" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/mining_outpost/south_dormitories) -"aRK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/mining_outpost/south_dormitories) "aRL" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -10743,11 +8407,11 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/flight_control_exterior) -"aRR" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, +"aRP" = ( +/obj/item/lightstick/red/planted, +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/flight_control_exterior) "aRV" = ( /obj/effect/decal/cleanable/blood, @@ -10761,19 +8425,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/foyer) -"aRZ" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"aSb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) "aSc" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 @@ -10802,13 +8453,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/restricted) -"aSj" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) +"aSh" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/strata/ug/interior/jungle/structures/research/old_tunnels) "aSk" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -10820,12 +8468,6 @@ /obj/item/storage/box/pizza, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"aSm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "aSn" = ( /obj/item/reagent_container/spray/cleaner, /obj/structure/surface/rack, @@ -10906,13 +8548,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/carplake/north) -"aSG" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement14, -/area/strata/ag/interior/landing_zones/lz1) "aSH" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement/cement12, @@ -10922,18 +8557,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/flight_control_exterior) -"aSK" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aSL" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/flight_control_exterior) "aSN" = ( /turf/open/asphalt/cement/cement15, /area/strata/ag/interior/landing_zones/lz1) @@ -10957,10 +8580,6 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mining_outpost/south_dormitories) -"aSS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/mining_outpost/south_dormitories) "aST" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/landing_zones/near_lz1) @@ -10970,16 +8589,6 @@ /obj/item/book/manual/engineering_guide, /turf/open/floor/strata/floor3, /area/strata/ag/interior/mining_outpost/south_dormitories) -"aSV" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/south_dormitories) -"aSW" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/south_dormitories) "aSX" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds2{ @@ -10987,10 +8596,6 @@ }, /turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/landing_zones/lz2) -"aSY" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/south_dormitories) "aSZ" = ( /obj/structure/surface/rack, /obj/item/inflatable, @@ -11051,13 +8656,14 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/foyer) -"aTv" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, +"aTu" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform_decoration/stone/strata/east, /turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) +/area/strata/ag/exterior/marsh/center) "aTy" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -11156,25 +8762,6 @@ /obj/structure/janitorialcart, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) -"aTQ" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/blue3/west, -/area/strata/ag/interior/outpost/admin) -"aTR" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) -"aTT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/blue3/east, -/area/strata/ag/interior/outpost/admin) "aTU" = ( /obj/structure/machinery/light{ dir = 4 @@ -11212,14 +8799,6 @@ }, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) -"aUb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) "aUc" = ( /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost, @@ -11240,19 +8819,6 @@ "aUh" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/carplake/north) -"aUn" = ( -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aUo" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/landing_zones/near_lz1) "aUp" = ( /turf/closed/wall/wood, /area/strata/ag/interior/outside/wooden_hospital) @@ -11287,31 +8853,6 @@ }, /turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) -"aUx" = ( -/obj/structure/platform/strata/metal, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aUz" = ( -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aUA" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aUC" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/flight_control_exterior) "aUD" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/effect/blocker/sorokyne_cold_water, @@ -11342,6 +8883,10 @@ "aUN" = ( /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/foyer) +"aUO" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/flight_control_exterior) "aUR" = ( /obj/structure/machinery/light{ dir = 4 @@ -11439,27 +8984,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"aVf" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"aVg" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) "aVh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -11496,12 +9020,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"aVp" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/flight_control_exterior) "aVq" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/river) @@ -11541,28 +9059,12 @@ "aVB" = ( /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) -"aVD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) "aVE" = ( /obj/structure/surface/rack, /obj/item/book/manual/barman_recipes, /obj/item/book/manual/chef_recipes, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/maint) -"aVG" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) "aVH" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/strata/orange_cover, @@ -11609,17 +9111,6 @@ "aVT" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/structures/research/hot_springs) -"aVW" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/landing_zones/near_lz1) -"aVX" = ( -/obj/structure/platform_decoration/strata/metal, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata, -/area/strata/ag/interior/landing_zones/near_lz1) "aVY" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/barricade/handrail/strata{ @@ -11630,29 +9121,10 @@ "aVZ" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outside/administration) -"aWa" = ( -/obj/item/lightstick/red/planted, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/flight_control_exterior) "aWc" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outside/bball/cave) -"aWd" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aWe" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/flight_control_exterior) "aWf" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, @@ -11673,14 +9145,6 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/marsh/river) -"aWk" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "aWl" = ( /obj/effect/decal/cleanable/blood, /obj/item/storage/backpack/satchel, @@ -11734,10 +9198,6 @@ "aWG" = ( /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/foyer) -"aWH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) "aWK" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -11757,29 +9217,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aWR" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) -"aWS" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) -"aWV" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "aWW" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -11803,14 +9240,6 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) -"aXb" = ( -/obj/structure/flora/grass/tallgrass/ice, -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "aXc" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -11855,12 +9284,20 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) +"aXj" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/landing_zones/near_lz1) "aXk" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/maint) +"aXl" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/landing_zones/near_lz2) "aXn" = ( /obj/structure/sink{ dir = 1; @@ -11892,19 +9329,6 @@ "aXu" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/structures/research/hot_springs) -"aXv" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/landing_zones/near_lz1) -"aXw" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/landing_zones/near_lz1) "aXx" = ( /obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/strata/floor3, @@ -11989,20 +9413,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/caves/lz_caves) -"aYh" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aYi" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/flight_control_exterior) -"aYj" = ( -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/flight_control_exterior) "aYm" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/strata, @@ -12033,6 +9443,10 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) +"aYs" = ( +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/flight_control_exterior) "aYu" = ( /obj/structure/disposalpipe/segment, /obj/item/stack/catwalk, @@ -12072,29 +9486,6 @@ /obj/structure/machinery/vending/security, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/research) -"aYB" = ( -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/foyer) -"aYD" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/foyer) -"aYE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/foyer) -"aYH" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "aYO" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3, @@ -12103,20 +9494,6 @@ /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin1) -"aYR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"aYT" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "aYW" = ( /obj/item/stack/rods, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -12147,13 +9524,6 @@ "aZc" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/caves/lz_caves) -"aZe" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/flight_control_exterior) "aZh" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -12163,12 +9533,6 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) -"aZi" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/flight_control_exterior) "aZj" = ( /obj/item/lightstick/red/planted, /obj/structure/barricade/snow{ @@ -12192,12 +9556,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/bball/cave) -"aZo" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/caves/lz_caves) "aZp" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -12264,27 +9622,6 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/maint) -"aZA" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/caves/lz_caves) -"aZB" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/caves/lz_caves) -"aZC" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/caves/lz_caves) "aZD" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2, /turf/open/floor/strata/multi_tiles/southwest, @@ -12326,12 +9663,6 @@ /obj/item/stack/rods, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east) -"aZI" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/caves/lz_caves) "aZJ" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, @@ -12352,18 +9683,6 @@ "aZP" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/flight_control_exterior) -"aZS" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/landing_zones/near_lz1) -"aZW" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "aZZ" = ( /turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/structures/research) @@ -12380,12 +9699,6 @@ /obj/structure/prop/almayer/computers/mapping_computer, /turf/open/floor/strata/red1, /area/strata/ag/interior/outside/administration) -"baf" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/caves/lz_caves) "bag" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -12395,12 +9708,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/interior/outside/administration) -"bah" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/caves/lz_caves) "bai" = ( /obj/structure/fence, /turf/open/asphalt/cement/cement3, @@ -12431,60 +9738,18 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/outpost_decks) -"bao" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/foyer) "bap" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/bball) -"baq" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"bar" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/foyer) "bas" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/north_outpost) -"bat" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/foyer) -"bau" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/foyer) "bav" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, @@ -12547,47 +9812,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outside/bball) -"baN" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/foyer) -"baQ" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/foyer) -"baR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/foyer) -"baS" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/foyer) -"baT" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/flight_control_exterior) -"baU" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/flight_control_exterior) -"baV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/foyer) "baX" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -12605,16 +9829,6 @@ /obj/structure/machinery/floodlight/landing, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/outpost/engi/drome) -"bbc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/foyer) -"bbd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/foyer) "bbe" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -12642,13 +9856,6 @@ }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) -"bbl" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "bbn" = ( /obj/structure/curtain/medical, /turf/open/floor/strata/floor2, @@ -12683,13 +9890,6 @@ /obj/item/reagent_container/food/condiment/enzyme, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) -"bbA" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "bbB" = ( /obj/effect/decal/cleanable/blood, /obj/item/stack/sheet/wood, @@ -12775,21 +9975,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/carplake/east) +"bbV" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) "bbW" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/structures/research/hot_springs) -"bbX" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/landing_zones/near_lz1) "bbZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer1, @@ -12804,19 +9999,6 @@ /obj/structure/sign/nosmoking_2, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/caves/shed_five_caves) -"bce" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/landing_zones/near_lz1) -"bcf" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata, -/area/strata/ag/interior/landing_zones/near_lz1) "bcg" = ( /obj/item/lightstick/red/planted, /obj/structure/barricade/snow{ @@ -12837,12 +10019,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/flight_control_exterior) -"bck" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/landing_zones/near_lz1) "bcm" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, @@ -12865,13 +10041,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/engi/drome) -"bcr" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) "bcs" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -12984,19 +10153,6 @@ }, /turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/structures/research) -"bcU" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/caves/lz_caves) -"bcV" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/spring_marshes) "bcW" = ( /obj/structure/barricade/snow{ dir = 8 @@ -13006,17 +10162,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/flight_control_exterior) -"bcX" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/outpost_decks) "bda" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 2; @@ -13129,139 +10274,28 @@ /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/flight_control_exterior) -"bdB" = ( -/obj/structure/platform/strata, -/obj/item/lightstick/red/planted, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/river) -"bdC" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/river) "bdE" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"bdG" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) "bdI" = ( /obj/structure/sign/nosmoking_2, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"bdJ" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) -"bdK" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) "bdL" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/island_marshes) -"bdM" = ( -/obj/structure/platform_decoration/strata, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) -"bdN" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) -"bdO" = ( -/obj/structure/barricade/snow{ - dir = 8 - }, -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/flight_control_exterior) -"bdP" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/flight_control_exterior) "bdQ" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/flight_control_exterior) -"bdS" = ( -/obj/structure/largecrate/random, -/obj/item/storage/belt/utility/full, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/river) -"bdT" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/river) "bdU" = ( /obj/item/book/manual/security_space_law, /turf/open/floor/strata/red1, /area/strata/ag/interior/outside/checkpoints/outpost) -"bdV" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/spring_marshes) -"bdW" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) -"bdX" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) -"bdY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) -"bdZ" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) "bea" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/relay_marshes) -"bec" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/spring_marshes) "bed" = ( /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/snow/brown_base/layer2, @@ -13279,51 +10313,16 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/engi/drome) -"beg" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/admin) -"beh" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/admin) "bei" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, /area/strata/ag/exterior/marsh/river) -"bek" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/river) "bel" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/cheesecakeslice, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outside/wooden_hospital) -"bem" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) "ben" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/island_marshes) @@ -13433,10 +10432,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/interior/landing_zones/near_lz1) -"beK" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata, -/area/strata/ag/interior/landing_zones/near_lz1) "beL" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -13537,47 +10532,13 @@ "bfd" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/caves/shed_five_caves) -"bfe" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/caves/shed_five_caves) -"bff" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/caves/shed_five_caves) "bfg" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/caves/shed_five_caves) -"bfh" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/caves/shed_five_caves) -"bfi" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/caves/shed_five_caves) "bfk" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/landing_zones/near_lz2) -"bfl" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/spring_marshes) "bfm" = ( /obj/structure/window/reinforced/tinted, /turf/open/floor/strata/red1, @@ -13591,12 +10552,6 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outside/bball) -"bfo" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/spring_marshes) "bfp" = ( /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/snow/brown_base/layer3, @@ -13659,16 +10614,6 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/foyer) -"bfD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) -"bfE" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) "bfF" = ( /obj/structure/machinery/light{ dir = 8 @@ -13727,54 +10672,23 @@ /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) +"bfW" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/caves/shed_five_caves) "bfX" = ( /obj/structure/sign/safety/fire_haz, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"bga" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bgb" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bgc" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bge" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) "bgf" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/outpost/platform) -"bgg" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) "bgh" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/flight_control_exterior) -"bgi" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/caves/shed_five_caves) "bgj" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/barricade/handrail/strata{ @@ -13789,12 +10703,6 @@ /obj/structure/machinery/floodlight/landing, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/crash) -"bgl" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/spring_marshes) "bgn" = ( /obj/effect/decal/remains/xeno, /obj/effect/decal/cleanable/blood{ @@ -13806,37 +10714,12 @@ /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/water_marshes) -"bgr" = ( -/obj/structure/fence, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/spring_marshes) -"bgs" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/spring_marshes) "bgt" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e" }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/spring_marshes) -"bgu" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) -"bgv" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/spring_marshes) "bgw" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 @@ -13849,20 +10732,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/spring_marshes) -"bgA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bgB" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/flight_control_exterior) -"bgF" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/flight_control_exterior) "bgG" = ( /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/snow/brown_base/layer3, @@ -13975,18 +10844,6 @@ /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/vanyard) -"bhk" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/caves/shed_five_caves) -"bhp" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/landing_zones/near_lz1) "bhq" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 8; @@ -13994,21 +10851,6 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/landing_zones/near_lz1) -"bhr" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/caves/shed_five_caves) -"bhs" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/caves/shed_five_caves) "bht" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -14101,13 +10943,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/river) -"bhK" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "bhL" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, @@ -14134,12 +10969,6 @@ "bhO" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/crash) -"bhP" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/spring_marshes) "bhQ" = ( /obj/structure/bed/chair, /turf/open/floor/strata/blue1, @@ -14165,13 +10994,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/foyer) -"bhX" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "bhY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -14188,33 +11010,10 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"bib" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/foyer) "bic" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/crash) -"bif" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/crash) -"big" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) -"bih" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/spring_marshes) -"bii" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/inflatable/popped, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/foyer) "bij" = ( /obj/structure/machinery/space_heater, /obj/structure/machinery/light{ @@ -14231,38 +11030,6 @@ /obj/item/clipboard, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/foyer) -"bin" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) -"biq" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) -"bis" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/marsh/spring_marshes) -"bit" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 6 - }, -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) -"biu" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 10 - }, -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) -"biv" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/vanyard) "biw" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/vanyard) @@ -14307,20 +11074,6 @@ }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) -"biE" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/caves/shed_five_caves) -"biF" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "biG" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/river) @@ -14341,32 +11094,6 @@ }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) -"biN" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/marsh/spring_marshes) -"biP" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/spring_marshes) -"biQ" = ( -/obj/item/lightstick/red/planted, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/vanyard) -"biR" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/vanyard) "biT" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -14445,12 +11172,6 @@ }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"bjh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) "bjj" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/river) @@ -14477,13 +11198,6 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) -"bjp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "bjr" = ( /turf/open/asphalt/cement, /area/strata/ug/interior/outpost/platform) @@ -14491,27 +11205,12 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east) -"bjv" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/crash) -"bjA" = ( -/obj/structure/platform_decoration/strata{ +"bjz" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "bjB" = ( /obj/structure/largecrate/random, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -14522,48 +11221,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/caves/shed_five_caves) -"bjE" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/crash) -"bjG" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/spring_marshes) -"bjH" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/spring_marshes) -"bjI" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/spring_marshes) -"bjJ" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) -"bjK" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/marsh/spring_marshes) "bjL" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer0, @@ -14631,24 +11288,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) -"bkb" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/caves/shed_five_caves) -"bkd" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/crash) -"bke" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/marsh/spring_marshes) "bkh" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/vanyard) @@ -14658,42 +11297,11 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/caves/shed_five_caves) -"bkl" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/marsh/spring_marshes) -"bkm" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/marsh/spring_marshes) -"bkn" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/marsh/spring_marshes) "bko" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"bkp" = ( -/obj/item/lightstick/red/planted, -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/vanyard) -"bkq" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/vanyard) "bkr" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/snow/brown_base/layer1, @@ -14809,31 +11417,15 @@ }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/med) +"bkR" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/tool/match, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/mining_outpost/central) "bkT" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ug/interior/jungle/structures/research/old_tunnels) -"bkU" = ( -/obj/structure/largecrate/random/secure{ - layer = 3.1 - }, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) -"bkX" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) -"bkY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) "bla" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer3, @@ -14893,67 +11485,20 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/caves/shed_five_caves) -"blp" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) -"blr" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) "bls" = ( /obj/structure/machinery/light/small, /turf/open/auto_turf/ice/layer0, /area/strata/ag/interior/outside/bball/cave) -"blu" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) -"blv" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/machinery/space_heater, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) -"blx" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/machinery/space_heater, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) "bly" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outside/wooden_hospital) -"blz" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/inflatable, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) "blA" = ( /obj/structure/curtain/medical, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outside/wooden_hospital) -"blB" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/item/toy/deck, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) "blD" = ( /obj/structure/closet/secure_closet/medical3{ req_access = null @@ -14964,13 +11509,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outside/wooden_hospital) -"blE" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) "blF" = ( /obj/item/stack/sheet/wood, /turf/open/auto_turf/snow/brown_base/layer0, @@ -14995,25 +11533,6 @@ "blJ" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/south_outpost) -"blK" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) -"blL" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) -"blM" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/bed/chair, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) "blN" = ( /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) @@ -15036,11 +11555,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"blR" = ( -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) "blS" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor3, @@ -15116,12 +11630,6 @@ /obj/structure/inflatable, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/south_outpost) -"bms" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "bmt" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -15231,10 +11739,6 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/crash) -"bmX" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) "bmY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -15248,12 +11752,6 @@ /obj/structure/barricade/snow, /turf/open/floor/strata/floor3, /area/strata/ag/exterior/paths/far_north_outpost) -"bnb" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/landing_zones/near_lz1) "bnc" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/snow/brown_base/layer0, @@ -15261,14 +11759,6 @@ "bnd" = ( /turf/closed/wall/resin/strata/on_tiles, /area/strata/ug/interior/jungle/structures/research/old_tunnels) -"bne" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "bng" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -15402,18 +11892,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/spring_marshes) -"bnP" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/caves/shed_five_caves) -"bnQ" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/caves/shed_five_caves) "bnR" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer2, @@ -15637,21 +12115,6 @@ }, /turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) -"boG" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/south_outpost) -"boH" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 5 - }, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/south_outpost) "boI" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/barricade/snow{ @@ -15659,21 +12122,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/south_outpost) -"boJ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/outpost_decks) -"boL" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/foyer) "boM" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/barricade/snow{ @@ -15719,12 +12167,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/south_outpost) -"boT" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/south_outpost) "boU" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 @@ -15743,24 +12185,12 @@ }, /turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/mining_outpost/canteen) -"boX" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/south_outpost) "boY" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/foyer) -"bpa" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/south_outpost) "bpc" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -15855,18 +12285,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/south_outpost) -"bpx" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) "bpy" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer1, @@ -15888,10 +12306,6 @@ /obj/structure/inflatable/popped/door, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/south_outpost) -"bpE" = ( -/obj/item/storage/briefcase, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "bpF" = ( /obj/structure/closet/secure_closet/medical3{ req_access = null @@ -15931,34 +12345,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"bpM" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bpN" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"bpO" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) "bpP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, @@ -16106,16 +12492,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/south_outpost) -"bqM" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/crash) -"bqN" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/crash) "bqP" = ( /obj/item/trash/pistachios, /turf/open/auto_turf/snow/brown_base/layer1, @@ -16194,13 +12570,6 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/south_outpost) -"brm" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/item/lightstick/red/planted, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/south_outpost) "brn" = ( /turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/caves/lz_caves) @@ -16269,42 +12638,11 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/south_outpost) -"brD" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/foyer) -"brE" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/crash) -"brF" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/crash) "brG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) -"brH" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/crash) -"brJ" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/center) "brK" = ( /obj/item/trash/pistachios, /turf/open/auto_turf/snow/brown_base/layer0, @@ -16345,12 +12683,6 @@ /obj/structure/prop/power_transformer, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/north_outpost) -"brW" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) "brX" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/auto_turf/snow/brown_base/layer1, @@ -16359,30 +12691,6 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/south_outpost) -"bsa" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/marsh/crash) -"bsc" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/center) -"bsd" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/center) -"bse" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/center) "bsf" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -16410,13 +12718,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/spring_marshes) -"bsn" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) "bso" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -16435,12 +12736,6 @@ /obj/item/stack/rods, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"bsr" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/south_outpost) "bss" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/strata/floor3/east, @@ -16450,17 +12745,6 @@ /obj/structure/machinery/door/airlock/almayer/medical/colony, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) -"bsu" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) -"bsv" = ( -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"bsw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) "bsx" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, @@ -16488,13 +12772,6 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/admin) -"bsD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bsF" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) "bsG" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -16522,15 +12799,6 @@ }, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"bsM" = ( -/obj/structure/platform/strata/metal, -/obj/item/lightstick/red/planted, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) -"bsN" = ( -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) "bsO" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -16544,21 +12812,6 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/south_outpost) -"bsQ" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/crash) -"bsR" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/crash) "bsS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, @@ -16567,12 +12820,6 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/bball) -"bsT" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/crash) "bsU" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/marsh/crash) @@ -16588,26 +12835,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"bsX" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/largecrate/random, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/outside/engineering/parts_storage_cave) -"bsY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"bsZ" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/crash) "bta" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -16642,13 +12869,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/spring_marshes) -"btg" = ( -/obj/structure/largecrate/random, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/interior/outside/engineering/parts_storage_cave) "bth" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/auto_turf/snow/brown_base/layer4, @@ -16663,19 +12883,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/center) -"btl" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/center) -"btm" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/marsh/center) -"btn" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/marsh/center) "bto" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -16787,13 +12994,6 @@ }, /turf/open/asphalt/cement/cement15, /area/strata/ug/interior/outpost/platform) -"btN" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/east) "btO" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -16935,12 +13135,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/center) -"buD" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/spring_marshes) "buF" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, @@ -16961,18 +13155,6 @@ /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) -"buK" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/spring_marshes) -"buM" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/spring_marshes) "buN" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) @@ -17204,12 +13386,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"bvR" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/landing_zones/near_lz2) "bvU" = ( /obj/effect/decal/cleanable/ash, /obj/structure/barricade/wooden{ @@ -17221,18 +13397,6 @@ /obj/structure/bed/roller, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outside/engineering/parts_storage_cave) -"bvW" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bvZ" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/landing_zones/near_lz2) "bwb" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/landing_zones/near_lz2) @@ -17248,17 +13412,6 @@ /obj/structure/largecrate/random, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outside/engineering/parts_storage_cave) -"bwf" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"bwg" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) "bwh" = ( /obj/structure/machinery/light{ dir = 8 @@ -17277,18 +13430,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/mining_outpost_exterior) -"bwk" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi/drome) -"bwm" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/landing_zones/near_lz2) "bwn" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -17304,24 +13445,6 @@ "bwp" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outside/administration) -"bwq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"bwr" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bws" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/landing_zones/near_lz2) "bwt" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/landing_zones/near_lz2) @@ -17335,14 +13458,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/landing_zones/near_lz2) -"bww" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bwx" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/landing_zones/near_lz2) "bwy" = ( /obj/structure/machinery/sensortower{ pixel_x = -8 @@ -17355,18 +13470,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/landing_zones/near_lz2) -"bwB" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bwC" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bwD" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/landing_zones/near_lz2) "bwE" = ( /obj/structure/bed/chair{ dir = 8 @@ -17386,47 +13489,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/carplake/east) -"bwI" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/landing_zones/near_lz2) "bwL" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, /obj/structure/flora/grass/tallgrass/ice, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"bwO" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bwP" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bwQ" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/landing_zones/near_lz2) "bwR" = ( /obj/structure/inflatable/door, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/bball) -"bwT" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/landing_zones/near_lz2) "bwU" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -17435,39 +13507,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"bwW" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bwX" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bwY" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bwZ" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bxa" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/landing_zones/near_lz2) "bxc" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, @@ -17477,14 +13516,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/relay_marshes) -"bxe" = ( -/obj/structure/flora/grass/tallgrass/ice, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "bxg" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -17540,10 +13571,6 @@ "bxy" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/marsh/relay_marshes) -"bxz" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/landing_zones/near_lz2) "bxA" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -17558,10 +13585,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/landing_zones/near_lz2) -"bxD" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/landing_zones/near_lz2) "bxE" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/strata/floor3/east, @@ -17569,19 +13592,6 @@ "bxF" = ( /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outside/administration) -"bxG" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bxH" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/landing_zones/near_lz2) "bxI" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -17624,12 +13634,6 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"bxQ" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/landing_zones/near_lz2) "bxR" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer0, @@ -17647,55 +13651,12 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"bxV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"bxW" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bxX" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan3/northeast, -/area/strata/ag/interior/outpost/med) "bxY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/island_marshes) -"bxZ" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/landing_zones/near_lz2) -"bya" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/landing_zones/near_lz2) -"byb" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/landing_zones/near_lz2) "byc" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer1, @@ -17707,13 +13668,6 @@ "bye" = ( /turf/open/floor/strata/white_cyan3/north, /area/strata/ag/interior/outpost/med) -"byf" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/landing_zones/near_lz2) "byh" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/brown_base/layer1, @@ -17722,15 +13676,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/interior/restricted) -"byj" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/landing_zones/near_lz2) "byk" = ( /obj/structure/machinery/space_heater, /obj/structure/blocker/invisible_wall, @@ -17789,34 +13734,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/monitoring/east) -"byN" = ( -/obj/structure/platform_decoration/strata, -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) -"byO" = ( -/obj/structure/platform/strata, -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) -"byP" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) -"byQ" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "byY" = ( /obj/item/tool/pen/blue, /obj/structure/bed/chair/office/light, @@ -17865,10 +13782,6 @@ "bzl" = ( /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"bzm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "bzn" = ( /obj/effect/spawner/random/toolbox, /obj/structure/surface/rack, @@ -17886,17 +13799,6 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) -"bzq" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) "bzs" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -17969,16 +13871,6 @@ "bAr" = ( /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/research) -"bAu" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) "bAv" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -18018,13 +13910,6 @@ /obj/structure/machinery/computer/emails, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/administration) -"bAI" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) "bAJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 @@ -18069,16 +13954,21 @@ /obj/item/coin/uranium, /turf/open/asphalt/cement, /area/strata/ag/interior/outside/administration) +"bAQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "bAS" = ( /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/center) -"bAT" = ( +"bBf" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 + dir = 5 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) "bBg" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/strata/red1, @@ -18088,12 +13978,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east) -"bBB" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan4/east, -/area/strata/ag/interior/outpost/med) "bBN" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "leafybush_2" @@ -18112,16 +13996,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/research) -"bBT" = ( -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"bBU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/southwest, -/area/strata/ag/interior/outpost/med) -"bBV" = ( -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) "bBX" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ @@ -18146,24 +14020,10 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) -"bCd" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) "bCf" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) -"bCh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/central) "bCm" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light/small{ @@ -18192,16 +14052,6 @@ }, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"bCp" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) -"bCq" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) -"bCt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) "bCv" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ dir = 1; @@ -18275,12 +14125,6 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outside/wooden_hospital) -"bCY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "bDl" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 8; @@ -18295,14 +14139,6 @@ "bDn" = ( /turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/structures/research/old_tunnels) -"bDo" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) "bDq" = ( /obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor3/east, @@ -18342,10 +14178,6 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi/drome) -"bDA" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "bDB" = ( /obj/item/trash/plate{ pixel_x = 1; @@ -18359,21 +14191,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/outpost/platform) -"bDD" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/east) -"bDE" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) "bDH" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ag/exterior/jungle/carplake_center) @@ -18413,14 +14230,12 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outside/bball) -"bEh" = ( -/obj/structure/platform/strata{ - dir = 4 +"bEo" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/platform/strata, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/central) "bEy" = ( /obj/structure/largecrate/random, /turf/open/floor/strata/fake_wood, @@ -18440,14 +14255,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"bEV" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "bFf" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/adv, @@ -18458,17 +14265,6 @@ /obj/item/ammo_magazine/rifle/type71, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/bball) -"bFi" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) "bFl" = ( /obj/effect/decal/warning_stripes{ icon_state = "NS-center" @@ -18491,6 +14287,11 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outside/bball) +"bFt" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "bFv" = ( /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/vanyard) @@ -18544,21 +14345,6 @@ /obj/structure/machinery/door/airlock/almayer/generic, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outside/administration) -"bGd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) -"bGg" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) "bGk" = ( /obj/structure/largecrate/random, /turf/open/floor/strata/floor3/east, @@ -18577,10 +14363,6 @@ }, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"bGs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) "bGx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/phone{ @@ -18637,12 +14419,6 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/security) -"bHp" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) "bHr" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -18715,12 +14491,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"bHQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "bHS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -18750,19 +14520,18 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outside/bball) -"bHW" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "bHY" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outside/bball) -"bIb" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +"bIc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) +"bIh" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "bIp" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -18791,12 +14560,6 @@ /obj/item/clothing/head/hardhat/white, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/outpost/platform) -"bIu" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/south) "bIv" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -18840,6 +14603,10 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) +"bIN" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "bIV" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -18877,6 +14644,12 @@ }, /turf/open/floor/strata/red1, /area/strata/ag/interior/outside/bball) +"bJv" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) "bJy" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/machinery/camera/autoname{ @@ -18940,10 +14713,6 @@ /obj/structure/machinery/light, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"bKa" = ( -/obj/item/clipboard, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) "bKb" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/multi_tiles, @@ -18977,6 +14746,19 @@ }, /turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) +"bKE" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/security) +"bKF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "bKK" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -19031,13 +14813,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"bKT" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ag/interior/outside/engineering/parts_storage) "bKZ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -19059,14 +14834,6 @@ /obj/structure/floodgate, /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/north_outpost) -"bLk" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) "bLo" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) @@ -19074,15 +14841,13 @@ /obj/structure/bedsheetbin, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outside/bball) +"bLw" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/canteen) "bLz" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/outpost/platform) -"bLA" = ( -/obj/item/device/radio, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "bLB" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, @@ -19122,13 +14887,17 @@ "bMd" = ( /turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/tcomms/mining_caves) +"bMD" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 4 + }, +/obj/structure/platform_decoration/stone/strata/north, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "bME" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/mountain) -"bMF" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) "bMG" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/asphalt/cement/cement4, @@ -19156,12 +14925,6 @@ /obj/structure/machinery/vending/snack, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/administration) -"bMZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meatballsoup, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/mining_outpost/canteen) "bNa" = ( /obj/structure/machinery/door/airlock/almayer/generic, /turf/open/floor/strata/cyan2/east, @@ -19205,15 +14968,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/structures/research) -"bOj" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/plating, -/area/strata/ag/exterior/outpost_decks) "bOp" = ( /obj/structure/prop/almayer/computers/mapping_computer, /obj/structure/blocker/invisible_wall, @@ -19362,20 +15116,6 @@ /obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/plating, /area/strata/ag/exterior/jungle/carplake_center) -"bPX" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) -"bPY" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen) "bQa" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 @@ -19439,21 +15179,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/strata/ug/interior/jungle/structures/monitoring/south) -"bQS" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"bQT" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"bRb" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) "bRf" = ( /obj/structure/machinery/power/apc/power/south, /turf/open/asphalt/cement, @@ -19535,14 +15260,6 @@ /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"bSD" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/plating, -/area/strata/ag/exterior/outpost_decks) "bSE" = ( /obj/structure/machinery/space_heater, /obj/structure/barricade/handrail/strata{ @@ -19585,12 +15302,6 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outside/checkpoints/north_armor) -"bTb" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/outpost_decks) "bTk" = ( /obj/structure/machinery/light, /turf/open/floor/strata/floor3, @@ -19598,6 +15309,10 @@ "bTl" = ( /turf/open/floor/strata/floor3, /area/strata/ag/exterior/paths/north_outpost) +"bTs" = ( +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/flight_control_exterior) "bTD" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost, @@ -19655,29 +15370,6 @@ }, /turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/mining_outpost/canteen) -"bUt" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/mining_outpost/canteen) -"bUu" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/mining_outpost/canteen) -"bUv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"bUx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/outpost_decks) "bUF" = ( /turf/open/floor/strata/floor3, /area/strata/ug/interior/jungle/structures/research/old_tunnels) @@ -19695,6 +15387,10 @@ /obj/structure/machinery/cm_vending/sorted/boozeomat, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/mining_outpost/central) +"bUQ" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/flight_control_exterior) "bUU" = ( /obj/structure/surface/rack, /obj/structure/machinery/light/small{ @@ -19743,13 +15439,6 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outside/checkpoints/north_armor) -"bVc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/outpost_decks) "bVd" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib6" @@ -19773,19 +15462,10 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"bVr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) -"bVw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/curtain/open/shower, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/outpost/canteen) +"bVu" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/center) "bVx" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/ice/layer1, @@ -19798,6 +15478,11 @@ /obj/item/clothing/gloves/latex, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) +"bVG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform_decoration/metal/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "bVL" = ( /obj/structure/surface/rack, /obj/item/storage/box/condimentbottles, @@ -19813,6 +15498,12 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) +"bVR" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "bVU" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, @@ -19831,13 +15522,6 @@ "bWa" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/caves/lz_caves) -"bWd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) "bWe" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -19897,18 +15581,6 @@ }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"bWE" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) -"bWH" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) "bWK" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -19986,6 +15658,14 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/research/old_tunnels) +"bXI" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/landing_zones/near_lz2) +"bXO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/southwest, +/area/strata/ag/interior/outpost/med) "bXQ" = ( /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/research) @@ -20008,17 +15688,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/interior/mining_outpost/central) -"bYg" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/outpost_decks) "bYk" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8 @@ -20114,6 +15783,10 @@ /obj/structure/machinery/light/small, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/engi/drome) +"bZg" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/strata/ug/interior/jungle/structures/research/old_tunnels) "bZh" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/red1, @@ -20129,10 +15802,6 @@ }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/outpost_decks) -"bZB" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "bZC" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata/white_cyan2/west, @@ -20140,19 +15809,6 @@ "bZD" = ( /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) -"bZE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"bZG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "bZH" = ( /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost, @@ -20164,19 +15820,9 @@ /obj/item/device/whistle, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"bZL" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/exterior/outpost_decks) "bZN" = ( /turf/open/floor/strata, /area/strata/ug/interior/jungle/structures/research/old_tunnels) -"bZT" = ( -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/outpost/platform) "bZV" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -20204,10 +15850,6 @@ }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) -"cad" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "caf" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -20229,12 +15871,6 @@ }, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"cam" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "cao" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/interior/plastic, @@ -20262,18 +15898,6 @@ "caE" = ( /turf/open/floor/strata/red1, /area/strata/ag/interior/mining_outpost/central) -"caI" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/flight_control_exterior) -"caL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "caM" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /turf/open/floor/strata/multi_tiles/southeast, @@ -20317,10 +15941,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) -"cbz" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "cbE" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -20330,6 +15950,11 @@ "cbF" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/structures/ruin) +"cbH" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/outpost_decks) "cbL" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -20393,15 +16018,6 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/security) -"ccq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen) "ccs" = ( /turf/open/floor/strata, /area/strata/ag/exterior/paths/flight_control_exterior) @@ -20430,26 +16046,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/research/south) -"ccH" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/plating, -/area/strata/ag/exterior/outpost_decks) -"ccI" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "ccV" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -20615,12 +16211,6 @@ /obj/structure/machinery/smartfridge/drinks, /turf/open/floor/strata/orange_tile, /area/strata/ag/interior/mining_outpost/central) -"ceu" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/tool/match, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/mining_outpost/central) "cew" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer, @@ -20636,19 +16226,12 @@ }, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"ceK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"ceL" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +"ceJ" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/largecrate/random, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/interior/outside/engineering/parts_storage_cave) "ceM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/multi_tiles/southeast, @@ -20661,12 +16244,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/research/south) -"ceV" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/mining_outpost/central) "ceW" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/vending/cola, @@ -20725,22 +16302,6 @@ "cfx" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"cfz" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/security) -"cfB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/security) -"cfC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "cfD" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light/small{ @@ -20792,27 +16353,6 @@ /obj/structure/fence, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) -"cge" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"cgg" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"cgm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) -"cgn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "cgp" = ( /obj/structure/bed/chair/comfy, /obj/structure/barricade/handrail/strata{ @@ -20874,11 +16414,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/admin) -"cgW" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "cgX" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/coffee, @@ -21054,14 +16589,6 @@ "cjb" = ( /turf/open/floor/strata, /area/strata/ag/interior/mining_outpost/flight_control) -"cjg" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/plating, -/area/strata/ag/exterior/outpost_decks) "cji" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -21082,6 +16609,12 @@ "cjn" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen) +"cjo" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/structure/flora/grass/tallgrass/ice, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/flight_control_exterior) "cjq" = ( /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/bball) @@ -21109,12 +16642,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/mining_outpost_exterior) -"cjz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/mining_outpost/south_dormitories) "cjA" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -21130,29 +16657,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/flight_control_exterior) -"cjG" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/outpost_decks) -"cjH" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/outpost_decks) -"cjI" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/outpost_decks) "cjN" = ( /obj/structure/window/framed/strata, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -21181,25 +16685,6 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) -"cjU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"cjV" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"cjW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) "cjZ" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/west, @@ -21226,28 +16711,14 @@ /obj/item/stool, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/bar) -"ckf" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"ckx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"ckz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/phone{ - pixel_x = 8; - pixel_y = 6 +"ckl" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/strata/white_cyan4/north, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/greengrid, +/area/strata/ag/interior/mining_outpost/central) "ckA" = ( /obj/structure/surface/rack, /obj/item/paper_bin, @@ -21340,27 +16811,11 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) -"cle" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) "clg" = ( /turf/closed/shuttle/ert{ icon_state = "upp22" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"cll" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "clo" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/almayer/plate, @@ -21380,13 +16835,6 @@ icon_state = "upp23" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"clv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "clw" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/camera/autoname{ @@ -21424,10 +16872,6 @@ /obj/structure/bed/nest, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mining_outpost/hive) -"clI" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) "clK" = ( /obj/structure/curtain/shower, /turf/open/floor/strata/blue1, @@ -21487,29 +16931,6 @@ "cmA" = ( /turf/open/asphalt/cement/cement12, /area/strata/ag/interior/landing_zones/lz1) -"cmB" = ( -/obj/structure/bed/nest, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/mining_outpost/hive) -"cmC" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/south_dormitories) -"cmD" = ( -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/south_dormitories) -"cmE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/south_dormitories) "cmF" = ( /obj/structure/surface/rack, /obj/item/inflatable/door, @@ -21530,16 +16951,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/strata/ag/exterior/outpost_decks) -"cnb" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/plating, -/area/strata/ag/exterior/outpost_decks) "cnc" = ( /obj/item/storage/box/rxglasses, /turf/open/floor/strata/white_cyan2/west, @@ -21555,34 +16966,6 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) -"cne" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan4/east, -/area/strata/ag/interior/outpost/med) -"cnf" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"cng" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"cnh" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"cni" = ( -/obj/structure/bed/roller, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"cnk" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) "cnm" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 @@ -21687,30 +17070,9 @@ /obj/item/stack/sheet/wood, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/bar) -"col" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) "cor" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/carplake/north) -"cot" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/landing_zones/near_lz1) -"cou" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "cov" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -21753,6 +17115,14 @@ /obj/structure/bed/chair/office/light, /turf/open/floor/strata, /area/strata/ag/interior/mining_outpost/flight_control) +"coQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/mining_outpost/canteen) "coS" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/floor3, @@ -21822,12 +17192,6 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata/red1, /area/strata/ag/interior/mining_outpost/flight_control) -"cpR" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landing_zones/near_lz1) "cpU" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/maint) @@ -21858,25 +17222,27 @@ }, /turf/open/asphalt/cement, /area/strata/ag/interior/outside/administration) -"cqu" = ( -/obj/structure/platform_decoration/strata/metal{ +"cqB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landing_zones/near_lz1) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"cqC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) "cqE" = ( /turf/open/floor/strata, /area/strata/ag/interior/landing_zones/near_lz1) -"cqG" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "cqH" = ( /turf/open/floor/strata, /area/strata/ag/interior/outside/administration) @@ -21897,17 +17263,17 @@ "crb" = ( /turf/open/asphalt/cement/cement4, /area/strata/ag/interior/landing_zones/lz1) -"crd" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) "crk" = ( /obj/effect/glowshroom/single, /turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/caves/lz_caves) +"cro" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) "crp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" @@ -21939,16 +17305,6 @@ "crE" = ( /turf/open/floor/plating, /area/strata/ag/interior/landing_zones/lz1) -"crF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"crG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) "crN" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) @@ -22010,12 +17366,6 @@ }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/landing_zones/near_lz1) -"csu" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "csA" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -22106,16 +17456,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/landing_zones/near_lz1) -"cti" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/east) "ctl" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light, @@ -22131,12 +17471,6 @@ /obj/structure/machinery/light, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/mining_outpost/central) -"ctp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) "ctx" = ( /turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) @@ -22172,13 +17506,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/mining_outpost/central) -"ctH" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/east) "ctI" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/asphalt/cement/cement3, @@ -22193,20 +17520,6 @@ "ctS" = ( /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outside/administration) -"ctZ" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/east) -"cuc" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/east) "cui" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -22217,12 +17530,12 @@ /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/outpost/platform) -"cuy" = ( -/obj/structure/platform/strata{ - dir = 1 +"cuw" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/mining_outpost/canteen) "cuz" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost/reinforced, @@ -22239,6 +17552,10 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outside/checkpoints/north) +"cuE" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "cuH" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -22252,6 +17569,10 @@ "cuP" = ( /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) +"cuT" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/caves/shed_five_caves) "cuX" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, @@ -22267,12 +17588,6 @@ "cva" = ( /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/outpost_decks) -"cvb" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/outpost_decks) "cvc" = ( /obj/item/cell/high, /turf/open/floor/strata/white_cyan2/west, @@ -22290,15 +17605,6 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) -"cve" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landing_zones/near_lz1) "cvf" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -22312,19 +17618,13 @@ }, /turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) -"cvl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) +"cvm" = ( +/obj/structure/curtain/open/shower, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/outpost/canteen) "cvn" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/interior/outside/engineering/parts_storage_cave) -"cvA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) "cvC" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/strata/orange_cover, @@ -22332,13 +17632,6 @@ "cvG" = ( /turf/open/gm/coast/west, /area/strata/ag/exterior/jungle/carplake_center) -"cvY" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/platform/east) "cwd" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 @@ -22360,12 +17653,21 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east) +"cwr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/inflatable/popped, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/foyer) "cww" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/relay_marshes) +"cwA" = ( +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "cwD" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/structures/monitoring/west) @@ -22392,12 +17694,22 @@ /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outside/checkpoints/south) +"cxl" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata/red3, +/area/strata/ag/interior/outpost/med) "cxn" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/asphalt/cement/cement14, /area/strata/ag/exterior/marsh/spring_marshes) +"cxr" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) "cxA" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ag/exterior/jungle/carplake_center) @@ -22438,6 +17750,12 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) +"cyM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) "cyQ" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata, @@ -22456,6 +17774,10 @@ /obj/item/clothing/glasses/thermal/syndi, /turf/open/floor/strata/purp1, /area/strata/ug/interior/jungle/structures/monitoring) +"czT" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "cAq" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, @@ -22466,21 +17788,31 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/interior/outside/engineering/parts_storage) -"cAw" = ( -/obj/item/stack/rods, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) "cAK" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/structures/monitoring/east) +"cBb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"cBs" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/flight_control_exterior) "cBv" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/outpost/platform) +"cBI" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "cCE" = ( /obj/structure/cargo_container/watatsumi/right, /turf/open/auto_turf/strata_grass/layer1, @@ -22497,17 +17829,19 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/spring_marshes) +"cEs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) "cEu" = ( /obj/structure/bed/nest, /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/corpsespawner/chef, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) -"cFg" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) "cFj" = ( /obj/structure/machinery/disposal, /turf/open/floor/strata/floor2, @@ -22523,15 +17857,22 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/strata, /area/strata/ag/interior/outside/engineering/parts_storage) +"cGu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/mining_outpost/central) "cGL" = ( /obj/structure/closet/bodybag, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) -"cHm" = ( -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +"cGV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/central) "cHK" = ( /obj/structure/flora/pottedplant/random, /obj/structure/barricade/handrail/strata{ @@ -22543,6 +17884,10 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) +"cII" = ( +/obj/structure/bed/roller, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) "cIM" = ( /obj/structure/machinery/door/airlock/prison{ dir = 1; @@ -22564,6 +17909,10 @@ /obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) +"cKk" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "cKS" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -22582,22 +17931,30 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) -"cNg" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata{ - dir = 4 +"cMP" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/structures/ruin) "cOc" = ( /obj/structure/blocker/invisible_wall, /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/strata/ug/interior) +"cOe" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"cOk" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "cOB" = ( /obj/effect/spawner/random/tool, /turf/open/floor/strata/multi_tiles/southwest, @@ -22605,12 +17962,6 @@ "cOI" = ( /turf/open/asphalt/cement/cement14, /area/strata/ag/exterior/landing_zones/lz2) -"cOR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) "cOV" = ( /obj/structure/toilet{ dir = 8 @@ -22621,6 +17972,14 @@ /obj/structure/prop/ice_colony/surveying_device, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/monitoring) +"cPG" = ( +/obj/structure/platform/metal/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/landing_zones/near_lz1) +"cPK" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/floor/strata, +/area/strata/ag/interior/landing_zones/near_lz1) "cRw" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3/east, @@ -22643,6 +18002,19 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) +"cTE" = ( +/obj/structure/largecrate/random, +/obj/item/storage/belt/utility/full, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/river) +"cTL" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) "cTN" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/objective{ @@ -22686,6 +18058,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outside/bball/cave) +"cVW" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/spring_marshes) "cVZ" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer1, @@ -22703,6 +18080,18 @@ /obj/item/tool/pen/blue, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) +"cWv" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) +"cXx" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen) +"cXN" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "cXU" = ( /turf/closed/shuttle/ert{ icon_state = "upp2" @@ -22720,6 +18109,16 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/mining_outpost/hive) +"cZd" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/south_dormitories) +"cZv" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "cZH" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 @@ -22733,12 +18132,13 @@ "daq" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/carplake/east) -"dbg" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 +"dbd" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) "dbv" = ( /obj/item/weapon/gun/revolver/cmb, /obj/structure/surface/rack{ @@ -22750,6 +18150,10 @@ /obj/structure/machinery/light, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) +"dca" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/landing_zones/near_lz2) "dcc" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -22759,25 +18163,28 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin1) +"dcv" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/admin) "dcX" = ( /obj/structure/surface/rack, /obj/item/stack/folding_barricade, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/red1, /area/strata/ag/interior/outside/checkpoints/north_armor) +"dcZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/mining_outpost/central) "ddp" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mining_outpost/hive) -"ddI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "ddK" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -22838,6 +18245,12 @@ "djW" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/north_outpost) +"dkp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/item/device/encryptionkey/dutch, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen) "dks" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer/test_floor5, @@ -22847,19 +18260,21 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outside/engineering/parts_storage) +"dlb" = ( +/obj/item/lightstick/red/planted, +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "dlL" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/outpost/platform) -"dmd" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 +"dlZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/foyer) "dnz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/mask/cigarette/cigar/cohiba, @@ -22894,15 +18309,10 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outside/engineering/parts_storage) -"dpB" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/outpost/platform) +"doZ" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landing_zones/near_lz1) "dqi" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/water_marshes) @@ -22922,6 +18332,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/research) +"dqZ" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/spring_marshes) "drI" = ( /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/underground_dorms/admin2) @@ -22931,24 +18345,29 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/structures/monitoring/west) -"drS" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "dsx" = ( /obj/item/tool/wrench, /turf/open/floor/almayer/test_floor5, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"dtt" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outside/engineering/parts_storage) +"dsA" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"dsS" = ( +/obj/structure/platform_decoration/stone/strata/west, +/obj/structure/platform_decoration/stone/strata/east, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) +"dtN" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/flight_control_exterior) +"dud" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "duq" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/strata_decals/catwalk/prison, @@ -22958,19 +18377,16 @@ /obj/item/tool/crowbar/red, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/monitoring) -"dvf" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ +"dva" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/outpost/platform) +"dvq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "dvR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -22978,6 +18394,12 @@ }, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/engi/drome) +"dvV" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/outpost_decks) "dvX" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/fake_wood, @@ -22986,6 +18408,27 @@ /obj/structure/machinery/optable, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) +"dxe" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/outpost/platform) +"dxY" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) +"dyk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) "dyA" = ( /obj/structure/barricade/deployable, /turf/open/floor/strata/white_cyan2/west, @@ -23002,6 +18445,10 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) +"dAs" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/landing_zones/near_lz2) "dAV" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/effect/landmark/monkey_spawn, @@ -23013,17 +18460,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"dBG" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/outpost/platform) "dBV" = ( /obj/structure/largecrate/random/case/double, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -23050,11 +18486,10 @@ /obj/structure/machinery/power/apc/no_power/west, /turf/open/asphalt/cement/cement3, /area/strata/ug/interior/outpost/platform) -"dDr" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +"dDM" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "dDU" = ( /obj/structure/inflatable/popped/door, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -23062,15 +18497,6 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) -"dDW" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) "dEa" = ( /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outside/bball) @@ -23084,6 +18510,13 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) +"dEC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "dEE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -23112,17 +18545,15 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/structures/monitoring/east) -"dFU" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 +"dFV" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/barricade/handrail/strata{ + layer = 3.1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outside/engineering/parts_storage) +/obj/structure/platform/metal/strata/west, +/obj/structure/platform/metal/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/outpost_decks) "dGv" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3/east, @@ -23130,15 +18561,11 @@ "dGO" = ( /turf/open/asphalt/cement/cement14, /area/strata/ug/interior/outpost/platform) -"dGU" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/flight_control_exterior) +"dGW" = ( +/obj/structure/cryofeed/right, +/obj/structure/platform/metal/strata, +/turf/open/gm/river, +/area/strata/ag/interior/outside/engineering/parts_storage) "dIh" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, @@ -23151,16 +18578,20 @@ /obj/structure/curtain/medical, /turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/underground_dorms/sec1) -"dLx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"dJW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/central) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "dLT" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) +"dMg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "dMw" = ( /obj/structure/cargo_container/wy/left, /turf/open/auto_turf/ice/layer1, @@ -23168,15 +18599,20 @@ "dMR" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/marsh/water_marshes) +"dNd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/space_mountain_wind, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen) +"dNg" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/stone/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "dNq" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/platform/east) -"dNB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/central) "dND" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -23191,6 +18627,14 @@ /obj/structure/prop/almayer/computers/sensor_computer3, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/restricted) +"dOM" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 8 + }, +/obj/structure/platform/stone/strata/north, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "dOO" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/vanyard) @@ -23200,12 +18644,26 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/carplake/east) +"dOT" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/metal/stair_cut/strata_right, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outside/engineering/parts_storage) "dPf" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/research/hot_springs) +"dPu" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) "dQi" = ( /obj/item/stack/rods, /turf/open/floor/strata/white_cyan2/west, @@ -23235,6 +18693,13 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/sec2) +"dSQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) "dSU" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" @@ -23253,6 +18718,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/research/hot_springs) +"dTI" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "dTN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/floor2, @@ -23263,6 +18734,12 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outside/bball) +"dVb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) "dVh" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/strata/multi_tiles/southeast, @@ -23279,6 +18756,12 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/gm/river, /area/strata/ug/interior/jungle/tearlake) +"dWj" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/obj/structure/platform/metal/strata/west, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/flight_control_exterior) "dWm" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outside/bball) @@ -23287,10 +18770,23 @@ /obj/item/weapon/gun/pistol/t73, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) +"dWH" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) "dXc" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/mining_outpost_exterior) +"dXH" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) "dXQ" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/med1) @@ -23317,12 +18813,15 @@ /obj/structure/prop/turbine_extras/border, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/monitoring) -"dZp" = ( +"dZA" = ( +/obj/structure/bed/chair{ + dir = 1 + }, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "eai" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -23340,10 +18839,21 @@ /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/bball/cave) -"ecR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, +"eco" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) +"ecB" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/interior/landing_zones/near_lz1) "eek" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/decal/cleanable/blood, @@ -23355,6 +18865,9 @@ /obj/structure/machinery/microwave, /turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/underground_dorms/sec1) +"eeS" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "efR" = ( /obj/structure/cryofeed, /turf/open/gm/river, @@ -23366,6 +18879,12 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/outpost/platform) +"egf" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/mining_outpost/canteen) "egh" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -23378,6 +18897,19 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/tearlake) +"ehr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"ehu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "ehH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -23423,6 +18955,13 @@ }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/relay_marshes) +"elD" = ( +/obj/structure/platform_decoration/metal/strata/west, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landing_zones/near_lz1) "emg" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata, @@ -23435,6 +18974,11 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) +"emu" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "emv" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -23453,6 +18997,14 @@ }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/central) +"emX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/mushroompizzaslice, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/mining_outpost/canteen) +"enJ" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "enU" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -23479,6 +19031,11 @@ /obj/effect/sentry_landmark/lz_2/bottom_left, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/landing_zones/near_lz2) +"eqN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen) "eqO" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -23496,12 +19053,20 @@ "erq" = ( /turf/open/gm/river, /area/strata/ag/interior/outside/engineering/parts_storage) -"euc" = ( -/obj/structure/platform_decoration/strata{ +"etQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"euD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) "euN" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -23513,16 +19078,26 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/tearlake) +"ewe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "ewk" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/strata/ag/exterior/landing_zones/lz2) -"exi" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +"ewZ" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) +"exj" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outside/engineering/parts_storage_cave) +"exl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "exx" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/multi_tiles/southwest, @@ -23530,6 +19105,15 @@ "exO" = ( /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) +"eyg" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) "eyA" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -23543,15 +19127,72 @@ /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) +"eyU" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"ezd" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/m56d_hmg/mg_turret{ + dir = 8 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) +"ezj" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "ezl" = ( /obj/structure/inflatable/door, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outside/engineering/parts_storage) +"ezz" = ( +/obj/item/lightstick/red/planted, +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"ezG" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/landing_zones/near_lz2) "ezK" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/fuel_cell, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outside/bball/cave) +"ezZ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outside/engineering/parts_storage) +"eAf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"eAz" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/flight_control_exterior) "eBb" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/light{ @@ -23572,6 +19213,12 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/maint) +"eCS" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) "eCZ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -23593,6 +19240,22 @@ /obj/structure/machinery/door/window/eastright, /turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/underground_dorms/admin1) +"eDO" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/landing_zones/near_lz1) +"eEc" = ( +/obj/item/stool, +/obj/structure/machinery/light, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) +"eEr" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) "eEO" = ( /obj/structure/prop/turbine_extras/left, /turf/open/floor/strata/floor2, @@ -23621,11 +19284,6 @@ /obj/item/device/flashlight, /turf/open/floor/strata/red3/north, /area/strata/ag/interior/outpost/med) -"eGq" = ( -/obj/structure/cryofeed, -/obj/structure/platform/strata/metal, -/turf/open/gm/river, -/area/strata/ag/interior/outside/engineering/parts_storage) "eGD" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -23649,12 +19307,15 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, /area/strata/ag/exterior/marsh/island_marshes) -"eHv" = ( -/obj/structure/platform/strata{ - dir = 8 +"eHp" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) +"eHM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/landing_zones/near_lz2) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) "eIB" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -23662,6 +19323,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) +"eIP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) "eIR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -23700,16 +19367,30 @@ }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/spring_marshes) +"eKf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"eKq" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/plating, +/area/strata/ag/exterior/outpost_decks) +"eKB" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/crash) "eLF" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outside/checkpoints/south) -"eLQ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) "eMZ" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -23718,6 +19399,10 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/vanyard) +"eNa" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/landing_zones/near_lz2) "eNz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/guestpass, @@ -23738,6 +19423,11 @@ }, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/monitoring) +"eNO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/omelette, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/mining_outpost/canteen) "eNW" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -23767,24 +19457,34 @@ "eOK" = ( /turf/open/floor/strata/red1, /area/strata/ag/interior/outside/checkpoints/north) +"ePb" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "ePf" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"eRk" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +"ePE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/platform/strata/metal{ - dir = 8 +/turf/open/floor/strata/white_cyan3/southwest, +/area/strata/ag/interior/outpost/med) +"eQo" = ( +/obj/structure/platform/stone/strata/north, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) +"eRA" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/strata, +/obj/structure/platform_decoration/metal/strata, +/turf/open/floor/plating, /area/strata/ag/exterior/outpost_decks) -"eRp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/security) "eRJ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ name = "Emergency NanoMed"; @@ -23803,6 +19503,12 @@ "eSK" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outside/checkpoints/north) +"eSO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "eSR" = ( /obj/structure/machinery/computer/emails, /obj/structure/surface/table/almayer, @@ -23814,18 +19520,17 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/red1, /area/strata/ag/interior/outside/checkpoints/north) +"eUV" = ( +/obj/structure/platform/metal/strata/east, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/strata/ug/interior/jungle/structures/monitoring) "eUW" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/structures/monitoring) -"eVc" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/south) "eVm" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -23846,16 +19551,22 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outside/bball/cave) +"eWA" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"eXb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/central) +"eXc" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/strata, +/area/strata/ag/interior/landing_zones/near_lz1) "eXK" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outside/bball) -"eYz" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "eYE" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outside/checkpoints/north) @@ -23863,6 +19574,22 @@ /obj/structure/cargo_container/watatsumi/mid, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) +"eZc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"eZf" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"eZi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "eZw" = ( /obj/structure/bed/chair{ dir = 4 @@ -23878,6 +19605,21 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east) +"fax" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform_decoration/stone/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) +"fbq" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 5 + }, +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/south_outpost) "fbG" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/floor2, @@ -23891,6 +19633,17 @@ /obj/structure/largecrate/random, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/engi/drome) +"fcv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "fcB" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -23900,6 +19653,32 @@ }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) +"fcP" = ( +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"fdL" = ( +/obj/structure/platform/metal/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"feA" = ( +/obj/structure/platform/metal/strata, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/flight_control_exterior) +"ffS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) "fhl" = ( /obj/structure/fence, /turf/open/asphalt/cement/cement15, @@ -23908,22 +19687,10 @@ /obj/structure/fence, /turf/open/asphalt/cement/cement1, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) -"fil" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi/drome) "fiD" = ( /obj/structure/fence, /turf/open/asphalt/cement/cement4, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) -"fjZ" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/landing_zones/near_lz2) "fkw" = ( /obj/structure/machinery/light{ dir = 8 @@ -23961,9 +19728,18 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/med) +"fma" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/foyer) "fno" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/mining_outpost/central) +"fov" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/storage/bomber, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen) "fow" = ( /obj/structure/machinery/light{ dir = 4 @@ -23973,6 +19749,19 @@ "foN" = ( /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) +"fpK" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"fpQ" = ( +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/structure/platform/metal/strata/east, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/outpost_decks) "fqQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -23980,19 +19769,18 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/far_north_outpost) -"fre" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ug/interior/jungle/structures/monitoring) "frf" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) +"frn" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/central) "frL" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/blue1, @@ -24014,6 +19802,13 @@ }, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring/south) +"fsI" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/down, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "fsJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -24062,14 +19857,39 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/outpost/platform) +"fvQ" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/interior/restricted) "fwc" = ( /obj/structure/dropship_equipment/mg_holder, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/sec1) +"fwe" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "fwi" = ( /obj/structure/machinery/power/reactor/colony, /turf/open/floor/prison/floor_plate, /area/strata/ag/interior/mining_outpost/central) +"fwq" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"fwD" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) +"fwT" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "fwV" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, @@ -24091,17 +19911,23 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/outpost/underground_dorms/admin3) +"fyd" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/foyer) "fyP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/platform/east) -"fyU" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/item/fuel_cell, -/turf/open/floor/strata/red2, -/area/strata/ag/interior/outpost/engi) +"fyZ" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/flight_control_exterior) +"fzl" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/crash) "fzn" = ( /obj/structure/closet/secure_closet/freezer/fridge, /turf/open/floor/strata/white_cyan2/west, @@ -24112,16 +19938,6 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) -"fzA" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ug/interior/jungle/structures/monitoring) "fzJ" = ( /obj/structure/curtain/medical, /turf/open/floor/strata/floor2, @@ -24191,23 +20007,32 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/spring_marshes) -"fCE" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ +"fCF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/plating, -/area/strata/ag/exterior/outpost_decks) +/obj/structure/machinery/light, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/central) "fCI" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) +"fDw" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "fDG" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/far_north_outpost) +"fEs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) "fEW" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/landmark/objective_landmark/close, @@ -24225,25 +20050,23 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/south_outpost) -"fHp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/central) -"fHW" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 +"fGs" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outside/engineering/parts_storage_cave) +"fGG" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/south) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"fHa" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/landing_zones/near_lz2) "fHZ" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/tearlake) -"fIq" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/flight_control_exterior) "fIF" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -24263,12 +20086,32 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/outside/engineering/parts_storage) +"fIS" = ( +/obj/structure/platform_decoration/metal/strata/west, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/south) +"fIT" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/flight_control_exterior) "fJh" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/tearlake) +"fJN" = ( +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/strata/ug/interior/jungle/structures/research/old_tunnels) +"fKi" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) "fKt" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/multi_tiles/southwest, @@ -24276,6 +20119,12 @@ "fKT" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/structures/monitoring/south) +"fKW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "fLl" = ( /obj/structure/bed/chair{ dir = 4 @@ -24285,6 +20134,15 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/sec1) +"fLZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) "fMk" = ( /obj/structure/closet/secure_closet/medical3{ req_access = null @@ -24295,6 +20153,10 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) +"fMp" = ( +/obj/structure/closet/wardrobe/medic_white, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen) "fMr" = ( /obj/structure/machinery/light{ dir = 8 @@ -24305,16 +20167,18 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/sec1) -"fMP" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 8 +"fMB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/obj/structure/platform_decoration/strata{ +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "fMS" = ( /obj/structure/machinery/light{ dir = 8 @@ -24327,14 +20191,6 @@ "fNp" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/paths/far_north_outpost) -"fNs" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) "fNH" = ( /obj/item/reagent_container/food/drinks/cans/space_mountain_wind, /obj/structure/disposalpipe/segment{ @@ -24346,6 +20202,13 @@ "fOX" = ( /turf/open/asphalt/cement/cement14, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"fOY" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "fPO" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/mountain) @@ -24369,12 +20232,11 @@ }, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outside/administration) -"fRi" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer0, -/area/strata/ag/exterior/marsh/spring_marshes) +"fRq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/mass_spectrometer, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) "fRv" = ( /turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/crash) @@ -24399,10 +20261,21 @@ /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/plating, /area/strata/ag/exterior/paths/flight_control_exterior) +"fTd" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/platform/east) "fTJ" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/caves/lz_caves) +"fVE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen) "fVX" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 @@ -24412,6 +20285,24 @@ "fWs" = ( /turf/closed/wall/mineral/gold, /area/strata/ag/interior/outpost/med) +"fWD" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/flight_control_exterior) +"fWF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"fWM" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/landing_zones/near_lz1) +"fWR" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/flight_control_exterior) "fWV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/sake, @@ -24434,6 +20325,11 @@ }, /turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) +"fYk" = ( +/obj/structure/fence, +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/spring_marshes) "fYE" = ( /obj/structure/inflatable, /obj/structure/barricade/handrail/strata{ @@ -24472,6 +20368,13 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"gbI" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landing_zones/near_lz1) "gbS" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -24483,10 +20386,26 @@ /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement/cement12, /area/strata/ag/interior/outpost/med) +"gcc" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) "gcj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/structures/monitoring/east) +"gcq" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/obj/structure/platform/metal/strata/west, +/obj/structure/platform/metal/strata/east, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/flight_control_exterior) "gcO" = ( /turf/open/floor/strata/red1, /area/strata/ag/interior/outside/checkpoints/north_armor) @@ -24497,12 +20416,11 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/structures/monitoring) -"gea" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/security) +"gem" = ( +/obj/item/device/radio, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "gfd" = ( /obj/structure/barricade/handrail/wire{ layer = 3.5 @@ -24524,12 +20442,6 @@ "gfZ" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/marsh/spring_marshes) -"ggf" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) "ggr" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, @@ -24584,18 +20496,38 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/structures/monitoring) -"gjN" = ( +"gil" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/platform/metal/strata, +/turf/open/floor/strata, +/area/strata/ag/exterior/outpost_decks) +"giU" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/mining_outpost/central) +"gjv" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) +"gjw" = ( +/obj/structure/platform/stone/strata, /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/obj/structure/platform_decoration/strata, -/obj/structure/platform_decoration/strata{ - dir = 1 - }, /turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) +/area/strata/ag/exterior/paths/far_north_outpost) +"gjC" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/inflatable/popped, +/turf/open/floor/strata/cyan4/east, +/area/strata/ag/interior/outpost/med) +"gjD" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/south_dormitories) "gjP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/strata/multi_tiles/southwest, @@ -24620,6 +20552,13 @@ }, /turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/structures/monitoring) +"gls" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) "glG" = ( /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/floor/strata/multi_tiles/southwest, @@ -24632,12 +20571,23 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outside/checkpoints/west) +"gmA" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) "gmB" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/monitoring/east) +"gmG" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/ice/layer0, +/area/strata/ag/exterior/marsh/spring_marshes) "gmU" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/marsh/island_marshes) @@ -24665,6 +20615,15 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) +"gpl" = ( +/obj/structure/platform/metal/strata, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/flight_control_exterior) "gpp" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -24681,25 +20640,20 @@ }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"gqa" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/underground_dorms/admin3) -"gqF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 +"gqJ" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) +"gqV" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/platform/stone/strata, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "grd" = ( /obj/structure/machinery/camera/autoname{ dir = 8 @@ -24712,42 +20666,52 @@ icon_state = "upp16" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"grG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" +"grF" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, -/obj/structure/platform/strata/metal{ - dir = 4 +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/underground_dorms/med2) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"grK" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/landing_zones/near_lz2) +"grL" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) "grP" = ( /obj/effect/landmark/corpsespawner/security/liaison, /turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) -"gtZ" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, +"gsQ" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/landing_zones/near_lz2) -"guz" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 4 +"gto" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/platform_decoration/strata{ +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/foyer) +"guB" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/east, +/turf/open/asphalt/cement, +/area/strata/ug/interior/outpost/platform) "guF" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 @@ -24774,12 +20738,49 @@ /obj/structure/bookcase, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) +"gwY" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/plating, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"gya" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"gyo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/mining_outpost/south_dormitories) +"gyz" = ( +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "gzd" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/structures/monitoring/south) +"gzM" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "gAm" = ( /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/security) +"gAt" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/south_outpost) "gAv" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -24788,21 +20789,16 @@ /obj/item/storage/firstaid/regular, /turf/open/asphalt/cement, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) -"gAx" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) "gAD" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) +"gAO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "gBj" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer1, @@ -24814,35 +20810,23 @@ /obj/item/stack/snow, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) -"gCJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/mining_outpost/central) "gDg" = ( /obj/structure/prop/almayer/computers/sensor_computer2, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/restricted) -"gEo" = ( -/obj/structure/flora/grass/tallgrass/ice, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) +"gEN" = ( +/obj/structure/platform_decoration/stone/strata/east, +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/landing_zones/near_lz2) "gFf" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) -"gFH" = ( -/obj/structure/cryofeed/right, -/obj/structure/platform/strata/metal, -/turf/open/gm/river, -/area/strata/ag/interior/outside/engineering/parts_storage) +"gFg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/security) "gFT" = ( /obj/structure/largecrate/random, /obj/structure/barricade/handrail/strata, @@ -24852,6 +20836,12 @@ /obj/effect/landmark/queen_spawn, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/bball/cave) +"gHA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) "gHQ" = ( /obj/item/stack/sheet/wood, /turf/open/floor/strata, @@ -24868,23 +20858,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/structures/research) -"gIL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/outpost_decks) -"gIY" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) +"gJb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/foyer) "gLF" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/paths/north_outpost) @@ -24904,6 +20881,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"gNV" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/radiation, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "gOi" = ( /obj/item/lightstick/red/planted, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -24916,15 +20898,6 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outside/bball/cave) -"gOu" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/red3, -/area/strata/ag/interior/outpost/med) "gOC" = ( /obj/structure/machinery/power/reactor/colony, /turf/open/floor/strata/floor3/east, @@ -24943,6 +20916,10 @@ }, /turf/open/floor/almayer/plate, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"gPI" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "gPL" = ( /obj/structure/inflatable, /turf/open/auto_turf/ice/layer1, @@ -24962,6 +20939,15 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/underground_dorms/sec2) +"gQF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "gQG" = ( /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/strata/multi_tiles, @@ -24977,15 +20963,21 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, /area/strata/ag/exterior/marsh/center) +"gSA" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/plating, +/area/strata/ag/exterior/outpost_decks) +"gSP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "gSR" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/structures/monitoring/south) -"gTa" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/outpost/platform) "gTc" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 @@ -24997,13 +20989,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/outpost_decks) -"gTx" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) "gTB" = ( /obj/item/device/radio, /turf/open/floor/strata, @@ -25031,24 +21016,25 @@ /obj/structure/surface/rack, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) +"gUB" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/south_dormitories) +"gUM" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) "gUP" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) -"gVJ" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform_decoration/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) +"gUR" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "gWg" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/spring_marshes) @@ -25065,6 +21051,18 @@ }, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring) +"gWG" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) +"gXu" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/coatrack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "gXX" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, @@ -25073,16 +21071,21 @@ }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"gYr" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "gZp" = ( /obj/item/tank/emergency_oxygen/engi, /turf/open/floor/almayer/plate, /area/strata/ag/exterior/marsh/crash) +"gZG" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/bed/chair, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) +"gZI" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "gZP" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/prison/darkyellowfull2, @@ -25095,6 +21098,10 @@ }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) +"haC" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/outpost_decks) "haN" = ( /obj/structure/largecrate/random, /obj/item/trash/pistachios, @@ -25105,23 +21112,41 @@ /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) -"haZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/underground_dorms/admin3) "hba" = ( /obj/effect/decal/cleanable/blood, /obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin2) +"hbo" = ( +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "hcg" = ( /obj/item/tool/pen/blue, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) +"hci" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/outpost_decks) +"hcu" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"hcz" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/landing_zones/near_lz2) "hcF" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -25143,17 +21168,31 @@ "hel" = ( /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/underground_dorms/sec1) +"heA" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/center) +"heL" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "heO" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outside/bball) -"hfq" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +"heQ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ug/interior/jungle/structures/monitoring) +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/outpost_decks) +"hfk" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/landing_zones/near_lz2) "hfv" = ( /obj/structure/sink{ dir = 8; @@ -25177,25 +21216,15 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"hgN" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/central) "hhj" = ( /obj/structure/sign/safety/ladder, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outside/bball) -"hhW" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) +"hhH" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/foyer) "hhX" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -25206,24 +21235,43 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/water_marshes) +"hjd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/mining_outpost/central) +"hjA" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/west, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "hjC" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/underground_dorms/sec2) -"hkn" = ( -/obj/structure/platform/strata/metal, -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/gm/river, -/area/strata/ag/interior/outside/engineering/parts_storage) -"hkA" = ( -/obj/structure/platform/strata{ +"hjW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/central) +"hkC" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata/red3, +/area/strata/ag/interior/outpost/med) +"hlZ" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/caves/lz_caves) "hmf" = ( /obj/structure/largecrate/random, /obj/structure/barricade/handrail/strata, @@ -25259,6 +21307,34 @@ }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) +"hnF" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen) +"hnO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 + }, +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"hnX" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"hof" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "hoG" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, @@ -25271,23 +21347,31 @@ /obj/structure/curtain/medical, /turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/underground_dorms/med2) -"hqw" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ +"hqJ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water_marshes) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"hrF" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outside/engineering/parts_storage_cave) "hsg" = ( /obj/structure/surface/rack, /obj/effect/landmark/good_item, /obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/monitoring) +"hsq" = ( +/obj/item/lightstick/red/planted, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/vanyard) +"hsQ" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/flight_control_exterior) "hsV" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, @@ -25296,18 +21380,17 @@ /obj/item/device/flashlight, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/sec2) -"hto" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ +"htf" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"htp" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "htD" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -25318,36 +21401,17 @@ }, /turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/landing_zones/lz2) -"hux" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) -"hvj" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/cyan3/west, +"hwo" = ( +/obj/item/clipboard, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"hwD" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/south) "hwI" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin1) -"hyh" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) +"hxj" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/south_outpost) "hyu" = ( /obj/effect/landmark/corpsespawner/russian, /turf/open/auto_turf/strata_grass/layer0_mud, @@ -25358,6 +21422,17 @@ }, /turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/landing_zones/lz2) +"hAq" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) +"hAw" = ( +/obj/structure/platform/metal/strata, +/obj/item/lightstick/red/planted, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "hCp" = ( /obj/item/reagent_container/food/drinks/cans/beer, /turf/open/floor/strata/white_cyan1/east, @@ -25368,6 +21443,10 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/tearlake) +"hDK" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/south) "hDX" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -25381,6 +21460,11 @@ /obj/item/tool/mop, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) +"hEB" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/flight_control_exterior) "hEF" = ( /obj/structure/inflatable/door, /turf/open/floor/strata/multi_tiles/southwest, @@ -25395,34 +21479,12 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/tearlake) -"hGd" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/red3, -/area/strata/ag/interior/outpost/med) -"hGm" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/strata/ug/interior/outpost/platform) "hGH" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/asphalt/cement, /area/strata/ag/interior/outside/administration) -"hGO" = ( -/obj/structure/platform/strata, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) "hHm" = ( /obj/item/stack/rods, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -25450,6 +21512,10 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/almayer/plate, /area/strata/ag/exterior/marsh/crash) +"hIl" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "hIt" = ( /turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/underground_dorms/med1) @@ -25469,10 +21535,29 @@ "hJT" = ( /turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/paths/north_outpost) +"hKf" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/ice/layer0, +/area/strata/ag/exterior/marsh/spring_marshes) +"hLc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "hLf" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/asphalt/cement, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"hLX" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) "hMs" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -25481,6 +21566,20 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/spring_marshes) +"hMQ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/outpost_decks) +"hNm" = ( +/obj/item/lightstick/red/planted, +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "hNq" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -25498,6 +21597,10 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/monitoring/south) +"hNP" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) "hOa" = ( /turf/open/gm/river, /area/strata/ag/exterior/jungle/carplake_center) @@ -25518,17 +21621,15 @@ "hPr" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/landing_zones/near_lz2) +"hPv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) "hPK" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/caves/shed_five_caves) -"hPZ" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/underground_dorms/med2) "hQq" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -25560,6 +21661,24 @@ }, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/platform/south) +"hTr" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"hTM" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 1 + }, +/obj/structure/platform/metal/strata/east, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/structure/platform/metal/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/outpost_decks) "hTU" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/strata/floor3/east, @@ -25575,6 +21694,10 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/tearlake) +"hUp" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/caves/shed_five_caves) "hUJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -25582,6 +21705,21 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/outside/engineering/parts_storage) +"hVx" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/flight_control_exterior) +"hVK" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"hVY" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/marsh/spring_marshes) "hWk" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ag/exterior/jungle/carplake_center) @@ -25609,14 +21747,49 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint) +"iaa" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/flight_control_exterior) +"iam" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) "iau" = ( /obj/structure/curtain/open/medical, /turf/open/floor/strata, /area/strata/ag/interior/outpost/maint) +"iaB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/mining_outpost/south_dormitories) +"iaK" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) +"iaL" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "ibh" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/landing_zones/near_lz2) +"ibn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) +"ibC" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/south_dormitories) "ibE" = ( /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/strata/floor3/east, @@ -25626,6 +21799,15 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/interior/outside/engineering/parts_storage) +"ibP" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/crash) +"icf" = ( +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "ich" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -25661,12 +21843,38 @@ "icN" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/security) +"icZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "idq" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring) +"idv" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/suit/bluetag, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) +"idO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "idR" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/strata/fake_wood, @@ -25674,16 +21882,35 @@ "idW" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/underground_dorms/sec1) -"ify" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/mining_outpost/central) -"igm" = ( -/obj/structure/bed/chair{ +"ieu" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 1 + }, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) +"ifc" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) +"igf" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/mining_outpost/central) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/security) +"igy" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 4 + }, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/outpost_decks) "ihd" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -25696,6 +21923,11 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/underground_dorms/sec1) +"ihE" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/flight_control_exterior) "ijf" = ( /turf/open/floor/strata/blue4/east, /area/strata/ag/interior/outpost/admin) @@ -25737,6 +21969,22 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/spring_marshes) +"ing" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/caves/lz_caves) +"ioa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "ioi" = ( /turf/open/floor/strata/multi_tiles, /area/strata/ug/interior/outpost/platform) @@ -25765,6 +22013,10 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/monitoring) +"ipH" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/flight_control_exterior) "iqe" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -25775,35 +22027,34 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/mining_outpost/central) -"iqV" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata{ +"iqY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/foyer) "iry" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/checkpoints/north) +"irA" = ( +/obj/structure/platform/metal/strata/east, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/strata/ag/interior/outpost/engi) "isa" = ( /turf/open/floor/strata, /area/strata/ag/interior/outside/checkpoints/north) -"isd" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer2, -/area/strata/ag/exterior/marsh/spring_marshes) +"ise" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/outpost_decks) "isj" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -25813,6 +22064,10 @@ "isu" = ( /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/checkpoints/north) +"isx" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/caves/lz_caves) "isY" = ( /obj/structure/machinery/space_heater, /obj/structure/machinery/light/small{ @@ -25835,6 +22090,13 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/engineering/parts_storage) +"itQ" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "iuf" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/flora/pottedplant{ @@ -25863,6 +22125,10 @@ "ivF" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/underground_dorms/admin3) +"ivW" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/river) "ivY" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, @@ -25885,18 +22151,11 @@ /obj/structure/closet/bodybag, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) -"ixu" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform_decoration/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) +"ixi" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/underground_dorms/admin3) "ixD" = ( /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/monitoring) @@ -25926,11 +22185,20 @@ }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) +"izx" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/flight_control_exterior) "iAA" = ( /obj/structure/closet/emcloset, /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/strata, /area/strata/ag/interior/outside/engineering/parts_storage) +"iAQ" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) "iBM" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -25955,6 +22223,12 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/interior/plastic, /area/strata/ag/exterior/paths/far_north_outpost) +"iCd" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "iCt" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light/small{ @@ -25967,6 +22241,11 @@ /obj/item/storage/toolbox/electrical, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"iDE" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "iEo" = ( /turf/closed/shuttle/ert{ icon_state = "upp8" @@ -25975,12 +22254,6 @@ "iEU" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/underground_dorms/med1) -"iGm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/south_dormitories) "iGp" = ( /obj/structure/machinery/power/reactor/colony, /obj/structure/machinery/camera/autoname, @@ -25999,19 +22272,16 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/south) -"iIz" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) "iJh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/far_north_outpost) +"iJi" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/structure/platform_decoration/metal/strata/west, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/flight_control_exterior) "iJp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/gloves/latex, @@ -26026,17 +22296,16 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/tearlake) -"iJJ" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform_decoration/strata{ +"iJG" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) +"iKd" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/south_dormitories) "iKI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer0, @@ -26056,6 +22325,10 @@ "iLJ" = ( /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/outpost_decks) +"iMd" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/vanyard) "iMn" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -26092,6 +22365,10 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outside/engineering/parts_storage) +"iOF" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outside/engineering/parts_storage_cave) "iPd" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor3/east, @@ -26118,6 +22395,17 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) +"iPR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) +"iQb" = ( +/obj/item/lightstick/red/planted, +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/vanyard) "iQi" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -26130,14 +22418,13 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"iQS" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/barricade/handrail/strata{ - layer = 3.1 - }, -/obj/structure/platform/strata/metal, -/turf/open/gm/river, -/area/strata/ag/exterior/outpost_decks) +"iQB" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/platform/metal/strata/east, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "iRk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -26156,17 +22443,31 @@ "iSe" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/structures/monitoring/south) +"iSt" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"iTu" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/landing_zones/near_lz2) "iTC" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/structures/monitoring/east) -"iTY" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/flight_control_exterior) +"iTW" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) +"iUj" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/south) "iUw" = ( /obj/structure/prop/dam/crane/cargo, /turf/open/floor/strata, @@ -26189,6 +22490,12 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) +"iVy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "iVX" = ( /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -26216,6 +22523,11 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/monitoring/east) +"iWY" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landing_zones/lz1) "iWZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -26236,6 +22548,14 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east) +"iXp" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata, +/area/strata/ag/exterior/outpost_decks) +"iYM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "iZa" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/barricade/handrail/strata{ @@ -26261,10 +22581,23 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/spring_marshes) +"jae" = ( +/obj/structure/platform/metal/strata, +/obj/structure/barricade/handrail/wire{ + layer = 3.5 + }, +/turf/open/gm/river, +/area/strata/ag/interior/outside/engineering/parts_storage) "jam" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) +"jar" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "jaZ" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/north, @@ -26281,20 +22614,17 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/south_outpost) -"jbI" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) "jdC" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) +"jeh" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "jeF" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata/red1, @@ -26311,6 +22641,19 @@ }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/mining_outpost/central) +"jfo" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) +"jfD" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/flight_control_exterior) "jgI" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -26327,9 +22670,36 @@ }, /turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/river) +"jhb" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/west, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/east) +"jhI" = ( +/obj/structure/platform_decoration/stone/strata/west, +/obj/structure/platform_decoration/stone/strata/north, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "jit" = ( /turf/open/asphalt/cement/cement2, /area/strata/ag/exterior/landing_zones/lz2) +"jiw" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) +"jiH" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "jiQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/purp2, @@ -26341,6 +22711,11 @@ "jjJ" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/outpost_decks) +"jkb" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/flight_control_exterior) "jkc" = ( /obj/structure/bed/chair{ dir = 8 @@ -26363,6 +22738,16 @@ "jkp" = ( /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/med) +"jkT" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/marsh/spring_marshes) +"jkU" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) "jmx" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/effect/landmark/monkey_spawn, @@ -26395,10 +22780,30 @@ /obj/structure/prop/dam/drill, /turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) +"joL" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/admin) "jpC" = ( /obj/effect/sentry_landmark/lz_2/top_left, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/landing_zones/near_lz2) +"jpP" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"jpY" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/marsh/spring_marshes) "jqg" = ( /obj/structure/surface/rack, /obj/item/book/manual/detective, @@ -26423,21 +22828,21 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/far_north_outpost) -"jrU" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) +"jsc" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/landing_zones/near_lz2) "jsd" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/structure/medical_supply_link, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) +"jsg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "jso" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/orange_cover, @@ -26446,17 +22851,12 @@ /obj/structure/closet/bodybag, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outside/engineering/parts_storage_cave) -"jsP" = ( -/obj/effect/blocker/sorokyne_cold_water, +"jsx" = ( /obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, /turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) +/area/strata/ag/exterior/marsh/crash) "jsW" = ( /obj/structure/closet/bodybag/tarp/snow, /obj/structure/closet/bodybag/tarp/snow, @@ -26475,10 +22875,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/far_north_outpost) -"juw" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "juL" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/caves/lz_caves) @@ -26491,13 +22887,10 @@ /obj/structure/sign/safety/synth_storage, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/vanyard) -"jwv" = ( -/obj/structure/platform/strata/metal, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/flight_control_exterior) +"jvU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) "jww" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced, @@ -26530,19 +22923,10 @@ "jzV" = ( /turf/closed/wall/wood, /area/strata/ag/exterior/paths/far_north_outpost) -"jAo" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) -"jAE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) +"jAW" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/vanyard) "jBc" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outside/engineering/parts_storage_cave) @@ -26550,6 +22934,18 @@ /obj/structure/machinery/power/reactor/colony, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) +"jBG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) +"jBN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) "jBO" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/manifold/hidden/cyan, @@ -26571,17 +22967,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/structures/monitoring) -"jDO" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/outpost/platform) "jEB" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -26594,6 +22979,12 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/paths/north_outpost) +"jER" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) "jEW" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light/small{ @@ -26605,9 +22996,9 @@ /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/center) -"jIv" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata/multi_tiles, +"jIn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata, /area/strata/ag/interior/mining_outpost/central) "jIw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -26621,6 +23012,10 @@ /obj/effect/acid_hole, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outside/engineering/parts_storage) +"jIV" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "jJq" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/tcomms/mining_caves) @@ -26649,6 +23044,13 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/outpost_decks) +"jLH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) "jLY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, @@ -26656,46 +23058,71 @@ /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"jMD" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) "jMV" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/engineering/parts_storage) +"jNa" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan4/east, +/area/strata/ag/interior/outpost/med) +"jNs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen) +"jNE" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "jNJ" = ( /obj/structure/machinery/disposal, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring) +"jOc" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "jOl" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mining_outpost/canteen) -"jOp" = ( -/obj/item/stool, -/obj/structure/machinery/light, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen) -"jOV" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/outpost/platform) "jPc" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2 }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/monitoring) +"jPs" = ( +/obj/structure/platform_decoration/metal/strata/west, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/strata/ag/interior/outside/engineering/parts_storage) +"jPA" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"jPC" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/east, +/turf/open/asphalt/cement, +/area/strata/ag/exterior/outpost_decks) "jPQ" = ( /obj/structure/machinery/landinglight/ds2{ dir = 4 @@ -26714,6 +23141,10 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) +"jQj" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/caves/lz_caves) "jQx" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, @@ -26721,6 +23152,20 @@ "jRc" = ( /turf/open/gm/dirt, /area/strata/ag/exterior/jungle/carplake_center) +"jRs" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) +"jRJ" = ( +/obj/structure/platform/metal/strata/north, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/outpost_decks) +"jSp" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/central) "jUa" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/coast/west, @@ -26735,18 +23180,33 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) +"jUy" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/metal/stair_cut/strata_right, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "jUA" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/carplake/north) -"jUS" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 1 +"jUG" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/obj/structure/platform/strata{ +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"jUZ" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) "jVg" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/power/apc/no_power/west, @@ -26759,6 +23219,12 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) +"jVT" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/east, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/outpost_decks) "jVU" = ( /obj/effect/landmark/corpsespawner/doctor, /obj/effect/decal/cleanable/blood, @@ -26800,10 +23266,6 @@ /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outside/bball) -"jYl" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) "jZF" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -26825,12 +23287,6 @@ /obj/item/lightstick, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/underground_dorms/sec1) -"kbS" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) "kbU" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood{ @@ -26838,6 +23294,15 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin2) +"kcq" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 4 + }, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "kcy" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -26862,17 +23327,6 @@ /obj/structure/curtain/medical, /turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/underground_dorms/med1) -"kes" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "kew" = ( /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/tearlake) @@ -26931,6 +23385,12 @@ "khT" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/structures/monitoring) +"kif" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue3/north, +/area/strata/ag/interior/outpost/admin) "kim" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, @@ -26950,6 +23410,18 @@ "kkL" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/landing_zones/near_lz2) +"klv" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) +"klD" = ( +/obj/structure/pipes/vents/pump/on{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/central) "klE" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -26972,6 +23444,17 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/structures/monitoring) +"kmz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"knu" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/spring_marshes) "knJ" = ( /obj/structure/machinery/door/airlock/prison{ dir = 1; @@ -26993,11 +23476,38 @@ }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"ksA" = ( +"krT" = ( /obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata, +/obj/structure/platform_decoration/stone/strata/west, /turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) +/area/strata/ag/exterior/marsh/water) +"ksj" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"ksk" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"ksV" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) +"ksX" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) +"kuc" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "kuB" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -27025,24 +23535,14 @@ "kvD" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/marsh/island_marshes) +"kvW" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "kwu" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/asphalt/cement/cement3, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) -"kwU" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/strata/ag/exterior/paths/mining_outpost_exterior) -"kxF" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) "kxN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, @@ -27050,12 +23550,6 @@ "kyr" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/structures/monitoring/east) -"kyT" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) "kyW" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -27077,6 +23571,15 @@ /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) +"kAy" = ( +/obj/structure/platform_decoration/metal/strata/west, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/east) +"kBo" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/crash) "kBL" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, @@ -27116,13 +23619,17 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/underground_dorms/admin2) -"kFz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" +"kFZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) +"kGp" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/interior/restricted) "kHg" = ( /obj/structure/machinery/camera/autoname, /obj/structure/bed/chair{ @@ -27135,17 +23642,24 @@ /obj/structure/prop/dam/drill, /turf/open/floor/plating, /area/strata/ag/exterior/marsh/spring_marshes) -"kHV" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ +"kHG" = ( +/obj/structure/flora/grass/tallgrass/ice, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/far_north_outpost) +"kIl" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/platform/strata{ - dir = 8 +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) "kIs" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 @@ -27174,6 +23688,13 @@ "kJd" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/platform/east) +"kKx" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "kKI" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/underground_dorms/admin1) @@ -27184,18 +23705,18 @@ "kLM" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/platform/east) +"kLR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "kLZ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"kMW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) "kNJ" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/structures/monitoring/south) @@ -27209,6 +23730,13 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) +"kOo" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) "kOr" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/strata, @@ -27240,6 +23768,13 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) +"kRH" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) "kRI" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" @@ -27275,6 +23810,12 @@ "kSU" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/mining_outpost/flight_control) +"kTu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) "kTy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/multi_tiles, @@ -27292,14 +23833,10 @@ "kUC" = ( /turf/open/asphalt/cement/cement12, /area/strata/ag/interior/outside/bball) -"kUN" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/power/apc/no_power/east, +"kUU" = ( +/obj/structure/platform/metal/strata/west, /turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/central) +/area/strata/ag/interior/outpost/engi) "kWS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, @@ -27308,6 +23845,18 @@ /obj/structure/closet/secure_closet/freezer/fridge, /turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/underground_dorms/sec1) +"kXj" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/machinery/light/small, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"kXm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) "kXx" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -27315,10 +23864,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/far_north_outpost) -"kXR" = ( -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "kYe" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -27334,15 +23879,13 @@ "kYx" = ( /turf/open/asphalt/cement/cement15, /area/strata/ag/exterior/landing_zones/lz2) -"kZL" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 +"kYY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/south) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "kZU" = ( /obj/structure/prop/dam/drill, /turf/open/floor/plating, @@ -27356,25 +23899,29 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/structures/monitoring/south) -"laM" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "laN" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/interior/outside/engineering/parts_storage_cave) "lbh" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"lbm" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) "lbW" = ( /obj/structure/tunnel/maint_tunnel, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) +"lck" = ( +/obj/structure/platform/metal/strata, +/obj/structure/machinery/light, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "lcq" = ( /obj/item/clothing/suit/storage/militia, /obj/item/clothing/suit/storage/snow_suit/doctor, @@ -27383,17 +23930,6 @@ "lcs" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/marsh/water_marshes) -"ldp" = ( -/obj/structure/flora/grass/tallgrass/ice, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/outpost_decks) "ldO" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/carplake/east) @@ -27401,12 +23937,26 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/south_outpost) +"led" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/outpost_decks) "lfj" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/asphalt/cement, /area/strata/ug/interior/outpost/platform) +"lfC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/foyer) "lfQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/strata_grass/layer1, @@ -27425,6 +23975,22 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/maintenance) +"lgh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/white_cyan4/north, +/area/strata/ag/interior/outpost/med) +"lgj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/central) "lgn" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/snow/brown_base/layer1, @@ -27498,17 +24064,34 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/underground_dorms/sec1) +"llJ" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/flight_control_exterior) "lmv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east) -"lmF" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/south_dormitories) +"lmL" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "lno" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/structures/monitoring/south) +"lnO" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/south) +"lot" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) +"loC" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "loN" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/fake_wood, @@ -27547,12 +24130,25 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/underground_dorms/admin3) +"lpB" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) "lqD" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) +"lqV" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "lqX" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outside/checkpoints/north) @@ -27562,10 +24158,28 @@ }, /turf/open/asphalt/cement, /area/strata/ag/interior/outside/checkpoints/south) +"lrL" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/landing_zones/near_lz2) "lrO" = ( /obj/structure/cargo_container/wy/mid, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/spring_marshes) +"lso" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "lsz" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, @@ -27577,6 +24191,14 @@ /obj/effect/spawner/random/tool, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/sec1) +"ltw" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) +"lty" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/gm/river, +/area/strata/ag/interior/outside/engineering/parts_storage) "ltZ" = ( /obj/structure/bed/roller, /obj/structure/sink{ @@ -27584,27 +24206,10 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) -"luA" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) "lvj" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"lvw" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) "lvE" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -27638,6 +24243,14 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/med2) +"lyI" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "lyX" = ( /obj/structure/bed{ icon_state = "abed" @@ -27659,6 +24272,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outside/bball/cave) +"lzB" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/marsh/spring_marshes) "lzT" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/generic{ @@ -27670,20 +24288,33 @@ /obj/structure/blocker/invisible_wall, /turf/closed/wall/wood, /area/strata/ag/interior/restricted) +"lAk" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"lAq" = ( +/obj/structure/platform_decoration/metal/strata/north, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/flight_control_exterior) "lAx" = ( /obj/structure/surface/rack{ layer = 2.5 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) -"lDz" = ( -/obj/structure/cryofeed, -/obj/structure/platform/strata/metal, -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, +"lDd" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/stone/strata/east, /turf/open/gm/river, -/area/strata/ag/interior/outside/engineering/parts_storage) +/area/strata/ag/exterior/landing_zones/near_lz2) +"lDF" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "lEi" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/barricade/handrail/strata{ @@ -27698,6 +24329,21 @@ /obj/structure/machinery/landinglight/ds2, /turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/landing_zones/lz2) +"lEq" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) +"lEJ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/outpost_decks) "lFy" = ( /obj/structure/closet/bodybag, /turf/open/floor/strata/floor3/east, @@ -27708,10 +24354,19 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/relay_marshes) +"lFZ" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "lGv" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/strata/red1, /area/strata/ag/interior/outside/checkpoints/north) +"lHk" = ( +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) "lHs" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/floor/strata, @@ -27728,6 +24383,10 @@ /obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/strata, /area/strata/ag/interior/outside/checkpoints/north) +"lIM" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "lJa" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/strata/floor2, @@ -27744,6 +24403,11 @@ /obj/structure/machinery/light, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"lJD" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/crash) "lJF" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/west, @@ -27752,6 +24416,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/sec1) +"lJK" = ( +/obj/structure/platform/metal/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/foyer) "lKs" = ( /obj/structure/toilet{ dir = 1 @@ -27761,13 +24429,13 @@ "lKv" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/sec1) -"lLu" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) +"lKA" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/landing_zones/near_lz2) +"lLw" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/mining_outpost/central) "lLD" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/brown_base/layer1, @@ -27820,18 +24488,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/spring_marshes) -"lOT" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) "lPj" = ( /turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/spring_marshes) @@ -27840,6 +24496,12 @@ /obj/structure/closet/secure_closet/security/soro, /turf/open/floor/strata/red1, /area/strata/ag/interior/outside/checkpoints/north) +"lPn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "lPF" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" @@ -27864,13 +24526,27 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/monitoring) -"lRT" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 +"lRj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) +"lRD" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/mining_outpost/canteen) +"lRU" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/south) +"lSk" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ag/interior/outside/engineering/parts_storage) +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/mining_outpost/central) "lTG" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced, @@ -27881,6 +24557,10 @@ "lTX" = ( /turf/open/asphalt/cement/cement3, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"lUg" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/spring_marshes) "lUm" = ( /obj/structure/machinery/light{ dir = 1 @@ -27896,32 +24576,35 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outside/bball) +"lUv" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/outpost/platform) "lUw" = ( /obj/item/weapon/gun/pistol/t73, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) -"lVF" = ( +"lUF" = ( +/obj/structure/platform_decoration/stone/strata/north, /obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, /turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) +/area/strata/ag/exterior/marsh/water) "lVJ" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/monitoring) -"lWl" = ( -/obj/structure/bed/chair{ - dir = 8 +"lWc" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "lWu" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 @@ -27940,6 +24623,22 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east) +"lYC" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"lYR" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/flight_control_exterior) "lZc" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer2, @@ -27954,6 +24653,9 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/maint) +"lZO" = ( +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) "mam" = ( /obj/item/ammo_magazine/revolver/cmb{ pixel_x = 6; @@ -27964,6 +24666,13 @@ }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) +"maw" = ( +/obj/structure/bed/sofa/vert/grey/top, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "may" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/strata/multi_tiles/southeast, @@ -27974,27 +24683,10 @@ }, /turf/open/floor/strata/red1, /area/strata/ag/interior/landing_zones/near_lz1) -"maP" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"maX" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "mce" = ( /obj/structure/bed/chair, /turf/open/floor/strata/red1, /area/strata/ag/interior/outside/bball) -"mcv" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) "mcD" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/pistol/t73, @@ -28013,13 +24705,6 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/outpost/platform) -"mde" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) "mdj" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -28034,16 +24719,12 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/research) -"mem" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; +"mes" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/machinery/light{ - dir = 8 + name = "\improper Airlock" }, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) "meu" = ( /obj/effect/decal/warning_stripes{ @@ -28061,12 +24742,6 @@ "mfp" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outside/checkpoints/south) -"mfv" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) "mfP" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -28081,6 +24756,16 @@ }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/landing_zones/near_lz1) +"mgM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/mining_outpost/canteen) +"mgV" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/spring_marshes) "mhc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood, @@ -28094,35 +24779,15 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) -"mip" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/effect/blocker/sorokyne_cold_water, -/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/tearlake) -"miI" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/mining_outpost/south_dormitories) -"miL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/outpost_decks) +"miQ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "miR" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -28130,19 +24795,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/outpost_decks) -"mjp" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) "mjt" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -28151,6 +24803,14 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) +"mjD" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/plating, +/area/strata/ag/exterior/outpost_decks) "mjG" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony, /turf/open/floor/strata/multi_tiles/west, @@ -28163,12 +24823,6 @@ /obj/effect/landmark/crap_item, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring) -"mko" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "mlq" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -28176,9 +24830,12 @@ /obj/structure/machinery/door/airlock/almayer/medical/colony, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) -"mlS" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/foyer) +"mmi" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "mms" = ( /obj/effect/glowshroom, /obj/structure/barricade/handrail/strata{ @@ -28196,6 +24853,13 @@ "mnz" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"mnW" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) "mnY" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 @@ -28208,17 +24872,21 @@ }, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) +"moM" = ( +/obj/structure/platform/metal/strata, +/obj/structure/machinery/light, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"moS" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/platform/metal/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/landing_zones/near_lz1) "mpk" = ( /turf/closed/shuttle/ert{ icon_state = "upp27" }, /area/strata/ag/exterior/marsh/crash) -"mpm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) "mpr" = ( /obj/structure/sign/safety/maint, /turf/closed/wall/strata_outpost, @@ -28227,10 +24895,6 @@ /obj/effect/sentry_landmark/lz_2/bottom_right, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/landing_zones/near_lz2) -"mqs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) "mrp" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3/east, @@ -28285,15 +24949,39 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/center) -"mtm" = ( -/obj/structure/machinery/power/apc/no_power/west, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +"mte" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water_marshes) +"mtq" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/spring_marshes) +"mty" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) +"mtL" = ( +/obj/item/lightstick/red/planted, +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/flight_control_exterior) "muf" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/monitoring/south) +"mul" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/south_dormitories) "mvh" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/relay_marshes) @@ -28312,6 +25000,11 @@ }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) +"mwE" = ( +/obj/structure/largecrate/random, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/interior/outside/engineering/parts_storage_cave) "mwW" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/relay_marshes) @@ -28331,9 +25024,11 @@ /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outside/engineering/parts_storage) -"myV" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/canteen) +"myt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/outpost_decks) "mzp" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -28350,6 +25045,22 @@ /obj/item/storage/briefcase, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) +"mzH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/foyer) +"mAj" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/central) "mBb" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata/orange_cover, @@ -28367,6 +25078,13 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/flight_control_exterior) +"mBC" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/stack/cable_coil/random, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/central) "mCh" = ( /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/plating, @@ -28384,17 +25102,18 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) -"mEk" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) "mEL" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/exterior/outpost_decks) +"mFz" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) +"mGe" = ( +/obj/structure/bedsheetbin, +/obj/item/device/binoculars/range, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) "mGA" = ( /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) @@ -28431,20 +25150,21 @@ "mII" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/caves/shed_five_caves) +"mJu" = ( +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"mJB" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "mKv" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) -"mKA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "mKX" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/almayer/plate, @@ -28456,6 +25176,10 @@ }, /turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/outside/checkpoints/south) +"mLo" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/caves/shed_five_caves) "mLW" = ( /obj/structure/dropship_equipment/mg_holder, /turf/open/floor/strata/floor3/east, @@ -28474,16 +25198,11 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/outpost/platform) -"mNG" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/outpost/platform) +"mNE" = ( +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) "mOj" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/type71, @@ -28499,25 +25218,15 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/tearlake) -"mPh" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/flight_control_exterior) "mPj" = ( /turf/closed/shuttle/ert{ icon_state = "upp_leftengine" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"mPz" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) +"mPX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "mQe" = ( /turf/closed/shuttle/ert{ icon_state = "upp8" @@ -28546,12 +25255,38 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/spring_marshes) +"mRe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"mRI" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/flight_control_exterior) "mRN" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/monitoring) +"mRS" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) +"mSp" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) +"mSH" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "mSK" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/disposalpipe/segment, @@ -28562,6 +25297,11 @@ icon_state = "upp9" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"mUS" = ( +/obj/item/lightstick/red/planted, +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "mUU" = ( /turf/closed/shuttle/ert{ icon_state = "upp_rightengine" @@ -28594,6 +25334,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/monitoring/east) +"mXu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) "mYs" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -28604,6 +25350,12 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/water_marshes) +"mYQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "mYV" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer0, @@ -28617,14 +25369,32 @@ }, /turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/underground_dorms/med1) +"mZh" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/ice/layer0, +/area/strata/ag/exterior/marsh/spring_marshes) "nai" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) +"nap" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/carrotfries, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) "naw" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, /area/strata/ag/exterior/landing_zones/near_lz2) +"naL" = ( +/obj/structure/platform/metal/strata, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"nbt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "ncp" = ( /obj/structure/desertdam/decals/road_stop, /turf/open/floor/strata/floor3/east, @@ -28632,12 +25402,6 @@ "ncQ" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outside/bball/cave) -"ndC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "ndS" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -28645,6 +25409,13 @@ /obj/item/tank/emergency_oxygen/engi, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) +"neE" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata/west, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "neL" = ( /obj/structure/bed/chair{ dir = 4 @@ -28655,15 +25426,44 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/closed/wall/resin/membrane/strata/on_tiles, /area/strata/ag/interior/outside/bball/cave) -"njA" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +"nfU" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"nfV" = ( +/obj/structure/platform_decoration/stone/strata, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) +"ngc" = ( +/obj/structure/cryofeed, +/obj/structure/platform/metal/strata, +/turf/open/gm/river, +/area/strata/ag/interior/outside/engineering/parts_storage) +"nis" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/landing_zones/near_lz2) +"niD" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" }, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/strata/orange_cover, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) +"njn" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/outpost/platform) +"njL" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/south_dormitories) "njW" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/ice/layer1, @@ -28677,15 +25477,16 @@ /obj/structure/floodgate, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/outpost_decks) -"nla" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ +"nlT" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) "nmS" = ( /obj/structure/machinery/message_server, /turf/open/floor/strata, @@ -28694,6 +25495,15 @@ /obj/structure/bed/chair, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/sec1) +"nnB" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "nnG" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -28701,20 +25511,12 @@ /obj/structure/machinery/light, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/research/old_tunnels) -"nnY" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) -"nof" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +"nnO" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/mining_outpost/canteen) "nog" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/landing_zones/near_lz1) @@ -28755,6 +25557,15 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/outside/engineering/parts_storage) +"nql" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/marsh/spring_marshes) +"nqS" = ( +/obj/item/lightstick/planted, +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/flight_control_exterior) "nqX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, @@ -28768,6 +25579,16 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/river) +"nrx" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"nrM" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/flight_control_exterior) "nrP" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -28775,6 +25596,13 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"nso" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "nsq" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/carplake/east) @@ -28797,20 +25625,27 @@ }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) -"nun" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ +"nvd" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/platform/strata{ - dir = 4 - }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"nvH" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform_decoration/stone/strata/west, /turf/open/gm/river, /area/strata/ag/exterior/marsh/spring_marshes) "nwv" = ( /obj/structure/machinery/power/apc/no_power/south, /turf/open/floor/plating, /area/strata/ug/interior/jungle/carplake/north) +"nwN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/canteen) "nxc" = ( /obj/effect/sentry_landmark/lz_2/top_left, /turf/open/auto_turf/ice/layer1, @@ -28820,28 +25655,49 @@ /obj/item/paper_bin, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin1) +"nxC" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "nxF" = ( /turf/closed/shuttle/ert{ icon_state = "upp_leftengine" }, /area/strata/ag/exterior/marsh/crash) +"nxN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) "nyB" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /turf/open/asphalt/cement/cement3, /area/strata/ug/interior/outpost/platform) +"nyP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/outpost_decks) +"nzU" = ( +/turf/open/floor/strata/blue3/east, +/area/strata/ag/interior/outpost/admin) "nAf" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/carplake/east) -"nAM" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/ice/layer0, +"nAz" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/spring_marshes) "nAV" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -28852,26 +25708,35 @@ "nAZ" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/carplake/east) -"nBT" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/security) -"nCD" = ( -/obj/effect/blocker/sorokyne_cold_water, +"nBe" = ( +/obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, +/obj/structure/platform/stone/strata/east, /turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) +/area/strata/ag/exterior/marsh/spring_marshes) +"nBx" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/outpost/platform) +"nBB" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/foyer) "nCJ" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/engineering/parts_storage) +"nCR" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 5 + }, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/structure/platform/metal/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/outpost_decks) "nDj" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -28881,6 +25746,20 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin1) +"nDt" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/flight_control_exterior) +"nDx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) "nEU" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light/small{ @@ -28889,20 +25768,55 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) +"nFd" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/foyer) +"nFE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/structure/bed/chair, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen) "nFN" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) +"nFT" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "nGi" = ( /obj/structure/cargo_container/grant/left, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/spring_marshes) +"nGk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) "nGm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/relay_marshes) +"nGM" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) "nIS" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -28914,15 +25828,24 @@ /obj/item/dogtag, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/bar) -"nJO" = ( -/obj/structure/machinery/shower, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/outpost/canteen) -"nLe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"nJr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata/floor2, +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) +"nJI" = ( +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"nKg" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) "nLG" = ( /obj/structure/bed/chair{ @@ -28930,6 +25853,18 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east) +"nLW" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) +"nLZ" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "nMO" = ( /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/bball/cave) @@ -28939,13 +25874,6 @@ /obj/item/book/manual/research_and_development, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/maint) -"nOE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) "nOW" = ( /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/snow/brown_base/layer2, @@ -28986,6 +25914,14 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) +"nSL" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) "nSQ" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/ice/layer0, @@ -29054,10 +25990,35 @@ /obj/structure/bed/roller, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/monitoring/south) +"nXd" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "nXq" = ( /obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/plating, /area/strata/ug/interior/jungle/structures/research/hot_springs) +"nXR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) +"nYA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"nYH" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"nYL" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "nYM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/barbed_wire, @@ -29071,6 +26032,16 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) +"nYV" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"nZu" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/east, +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "nZz" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer3, @@ -29078,6 +26049,10 @@ "nZR" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/outpost_decks) +"nZU" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/central) "oaR" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -29091,6 +26066,19 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/water_marshes) +"oaW" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/flight_control_exterior) +"obt" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/mining_outpost/central) "ocw" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -29126,6 +26114,9 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outside/bball/cave) +"odl" = ( +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) "odr" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony, /turf/open/floor/strata/multi_tiles/southwest, @@ -29134,6 +26125,10 @@ /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/landing_zones/lz2) +"oeu" = ( +/obj/item/storage/briefcase, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "oeA" = ( /turf/open/floor/almayer/plate, /area/strata/ag/exterior/marsh/crash) @@ -29164,6 +26159,17 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outside/checkpoints/north) +"ofW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "ogw" = ( /obj/item/lightstick/red/planted, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -29171,6 +26177,11 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/flight_control_exterior) +"ogB" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/spring_marshes) "ogL" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, @@ -29178,6 +26189,10 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring) +"ohf" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/caves/lz_caves) "ohV" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 @@ -29185,6 +26200,10 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outside/engineering/parts_storage) +"ohY" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) "oiF" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -29192,22 +26211,18 @@ /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement/cement12, /area/strata/ag/interior/outpost/med) -"oiV" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/outpost_decks) "ojB" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/mining_outpost/central) +"okz" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "okE" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/caves/shed_five_caves) @@ -29219,12 +26234,37 @@ icon_state = "upp20" }, /area/strata/ag/exterior/marsh/crash) +"okW" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/marsh/center) "olh" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outside/engineering/parts_storage) +"olk" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/river) +"oln" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + layer = 3 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/underground_dorms/admin3) +"olo" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "olH" = ( /obj/structure/bed{ icon_state = "abed" @@ -29238,6 +26278,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/island_marshes) +"omK" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata, +/area/strata/ag/exterior/outpost_decks) "onq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/ice/layer1, @@ -29245,6 +26289,10 @@ "onr" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/med2) +"onF" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/flight_control_exterior) "ooc" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -29290,6 +26338,13 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi/drome) +"orV" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) "orW" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -29302,6 +26357,14 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) +"otL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/strata/ag/interior/mining_outpost/central) +"otZ" = ( +/turf/open/floor/strata/blue4/north, +/area/strata/ag/interior/outpost/admin) "ouB" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, @@ -29315,10 +26378,40 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/monitoring/south) +"owg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"owo" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/metal/stair_cut/strata_right, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/outpost_decks) "owp" = ( /obj/structure/sign/safety/security, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/landing_zones/near_lz1) +"owy" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/foyer) +"owH" = ( +/obj/structure/platform/metal/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/flight_control_exterior) "oxE" = ( /obj/structure/surface/rack, /obj/item/storage/pill_bottle/bicaridine, @@ -29343,6 +26436,10 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/med1) +"ozg" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/landing_zones/near_lz1) "ozr" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -29353,6 +26450,10 @@ "ozP" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/jungle/tearlake) +"ozT" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/flight_control_exterior) "oBn" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/west, @@ -29361,13 +26462,15 @@ /obj/item/stack/rods, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"oCc" = ( -/obj/item/fuel_cell, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/red2, -/area/strata/ag/interior/outpost/engi) +"oCD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/south_dormitories) +"oDp" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/strata/ug/interior/jungle/structures/research/old_tunnels) "oDw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -29379,10 +26482,26 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) +"oFc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) +"oFz" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "oFG" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/landing_zones/lz2) +"oGQ" = ( +/obj/structure/platform_decoration/stone/strata/east, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "oGW" = ( /obj/structure/inflatable/popped, /turf/open/floor/strata/orange_cover, @@ -29398,6 +26517,15 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) +"oIj" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/machinery/space_heater, +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/underground_dorms/sec2) +"oIm" = ( +/obj/item/clothing/gloves/white, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "oIv" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/medium, @@ -29408,28 +26536,37 @@ /obj/effect/spawner/random/tool, /turf/open/floor/strata/blue1, /area/strata/ug/interior/outpost/underground_dorms/admin2) +"oIJ" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/mining_outpost/central) "oIU" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/structures/monitoring/west) -"oJD" = ( -/obj/item/stack/rods, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/outpost/platform) -"oJH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) -"oKd" = ( +"oJm" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) +"oJD" = ( +/obj/item/stack/rods, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/outpost/platform) +"oKa" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"oKj" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "oKl" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, @@ -29447,6 +26584,10 @@ }, /turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/outpost_decks) +"oLp" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "oLv" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -29454,12 +26595,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/mining_outpost_exterior) -"oLz" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/outpost_decks) "oMa" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement/cement12, @@ -29473,12 +26608,14 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/flight_control_exterior) -"oMA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) +"oMx" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/landing_zones/near_lz2) +"oMX" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/caves/shed_five_caves) "oMZ" = ( /obj/structure/toilet{ dir = 8 @@ -29486,6 +26623,13 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outside/engineering/parts_storage) +"oNd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "oOr" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 @@ -29550,29 +26694,75 @@ /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/plating, /area/strata/ug/interior/jungle/platform/east) +"oRg" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) +"oRl" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) "oRm" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) +"oRH" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"oRS" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/mining_outpost/canteen) +"oSC" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/mining_outpost/hive) "oSN" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, /turf/open/asphalt/cement/cement4, /area/strata/ug/interior/outpost/platform) -"oSP" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) "oSV" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) +"oTt" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/landing_zones/near_lz2) +"oUt" = ( +/obj/structure/platform/stone/strata/west, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) +"oUB" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/dogtag, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"oUD" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "oUS" = ( /turf/open/floor/strata/red1, /area/strata/ag/interior/outside/administration) @@ -29580,6 +26770,13 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/exterior/outpost_decks) +"oVH" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "oVR" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -29600,6 +26797,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"oWK" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/south_dormitories) "oWO" = ( /obj/structure/window/reinforced/tinted{ dir = 8 @@ -29629,6 +26830,14 @@ /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/monitoring) +"oZy" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/security) "oZD" = ( /obj/item/lightstick, /obj/effect/decal/cleanable/blood, @@ -29643,6 +26852,10 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) +"pbi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/canteen) "pbC" = ( /obj/effect/spawner/random/toolbox, /obj/structure/surface/rack, @@ -29655,47 +26868,68 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) -"pbF" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/cryofeed, -/turf/open/gm/river, -/area/strata/ag/interior/outside/engineering/parts_storage) "pbR" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/water_marshes) +"pcD" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) "pdc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/tearlake) +"pdQ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "pex" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/tearlake) +"peJ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) +"pfo" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) +"pfu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/south_dormitories) "pfz" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/structures/monitoring/south) -"pfQ" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/landing_zones/near_lz1) "pge" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) -"pgW" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/central) "phD" = ( /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin3) +"phP" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/spring_marshes) +"pil" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/outpost_decks) "piu" = ( /obj/structure/surface/rack, /obj/structure/machinery/light/small{ @@ -29703,63 +26937,69 @@ }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/maint) +"piA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "piD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/cheesecakeslice, /obj/effect/landmark/crap_item, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin1) -"piO" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) "piY" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ag/exterior/jungle/carplake_center) -"pje" = ( -/obj/structure/cryofeed/right, -/obj/structure/platform/strata/metal, -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/gm/river, -/area/strata/ag/interior/outside/engineering/parts_storage) +"pja" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"pjm" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"pjx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "pjB" = ( /obj/structure/cargo_container/wy/left, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) -"pkA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +"pjH" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/stone/strata/east, +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) +"pjQ" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"pjU" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, +/obj/structure/barricade/deployable, +/turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) -"pkG" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) +"pkE" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/caves/shed_five_caves) "pkO" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/caves/lz_caves) -"plC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) +"plh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) "plI" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -29785,18 +27025,32 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/structures/monitoring) +"pmV" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/central) "png" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/structures/monitoring/west) -"pnn" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"pnD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/foyer) +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"pnE" = ( +/obj/structure/platform_decoration/metal/strata, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/wire{ + layer = 3.5 + }, +/turf/open/floor/greengrid, +/area/strata/ag/interior/outside/engineering/parts_storage) "pnP" = ( /obj/structure/machinery/shower{ dir = 8 @@ -29825,6 +27079,11 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/underground_dorms/med2) +"poG" = ( +/obj/structure/platform/stone/strata, +/obj/item/lightstick/red/planted, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/river) "ppe" = ( /turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/landing_zones/lz2) @@ -29832,18 +27091,6 @@ /obj/structure/machinery/light, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) -"ppC" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"pqy" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) "pqE" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer0, @@ -29862,28 +27109,25 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/outpost/platform) -"pro" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" +"prA" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/security) "prN" = ( /obj/structure/sign/safety/security, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outside/checkpoints/west) -"psl" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 +"prQ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "psv" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/pistol/t73, @@ -29917,21 +27161,6 @@ }, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/carplake/east) -"psV" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) -"ptr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) "ptT" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -29944,13 +27173,10 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/structures/research) -"pug" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) +"puA" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) "puV" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southwest, @@ -29966,6 +27192,12 @@ /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/plating, /area/strata/ug/interior/jungle/structures/research/south) +"pvc" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/south_dormitories) "pvz" = ( /obj/structure/machinery/light, /turf/open/floor/strata, @@ -29973,10 +27205,6 @@ "pvA" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/relay_marshes) -"pvY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "pwn" = ( /obj/structure/largecrate/guns/russian, /obj/structure/barricade/handrail/strata{ @@ -29984,21 +27212,20 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) -"pwz" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "pwW" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east) +"pxj" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "pzb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -30010,25 +27237,31 @@ /obj/structure/prop/ice_colony/surveying_device/measuring_device, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/monitoring) +"pzX" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/northeast, +/area/strata/ag/interior/outpost/med) "pAc" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior) -"pAM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"pAr" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/spring_marshes) +"pAF" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) "pAR" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/machinery/light/small, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/central) +"pAS" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/foyer) "pAY" = ( /obj/structure/machinery/light{ dir = 4 @@ -30039,6 +27272,15 @@ /obj/effect/sentry_landmark/lz_2/top_right, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/landing_zones/near_lz2) +"pBW" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/landing_zones/near_lz2) +"pDa" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/landing_zones/near_lz2) "pDb" = ( /obj/structure/dropship_equipment/sentry_holder, /turf/open/floor/strata/floor3/east, @@ -30060,16 +27302,6 @@ }, /turf/open/floor/plating/platebot, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"pDY" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/floor/greengrid, -/area/strata/ag/interior/outside/engineering/parts_storage) "pEm" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -30099,6 +27331,10 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/outpost_decks) +"pFd" = ( +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/flight_control_exterior) "pFi" = ( /obj/structure/largecrate/random/barrel/green, /obj/structure/disposalpipe/segment{ @@ -30107,6 +27343,13 @@ }, /turf/open/floor/plating/platebot, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"pFm" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/landing_zones/near_lz2) +"pFV" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/mining_outpost/south_dormitories) "pGf" = ( /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/plating, @@ -30150,28 +27393,36 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) -"pIy" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/central) -"pJz" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, +"pJo" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"pJr" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, /turf/open/gm/river, -/area/strata/ag/interior/outside/engineering/parts_storage) +/area/strata/ag/exterior/landing_zones/near_lz2) "pJA" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/platform/east) -"pKq" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 +"pLe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" }, -/turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/underground_dorms/med2) +"pLw" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/west, +/turf/open/asphalt/cement, +/area/strata/ug/interior/outpost/platform) "pLA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -30193,19 +27444,12 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) -"pMU" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 16 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"pNL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) +"pMO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "pNT" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, @@ -30235,12 +27479,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/underground_dorms/admin2) -"pOW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) "pPi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0, @@ -30253,6 +27491,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/platform) +"pRd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/foyer) "pRj" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outside/checkpoints/outpost) @@ -30277,6 +27521,13 @@ "pSw" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/carplake/east) +"pTP" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water_marshes) "pTR" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/snow/brown_base/layer2, @@ -30294,6 +27545,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin2) +"pUY" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata, +/area/strata/ag/exterior/outpost_decks) "pVf" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen) @@ -30309,16 +27564,6 @@ /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outside/engineering/parts_storage) -"pWp" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) "pWz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -30333,17 +27578,28 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outside/engineering/parts_storage) +"pWR" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/outpost_decks) +"pXp" = ( +/obj/structure/platform/metal/strata, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/strata/ug/interior/jungle/structures/research/old_tunnels) "pXB" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/checkpoints/south) -"pYG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +"pYE" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/central) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "pYI" = ( /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/underground_dorms/admin1) @@ -30355,10 +27611,6 @@ /obj/structure/sign/safety/outpatient, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/mining_outpost/central) -"pZe" = ( -/obj/structure/platform/strata/metal, -/turf/open/gm/river, -/area/strata/ag/interior/outside/engineering/parts_storage) "pZh" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/coast/beachcorner2/north_west, @@ -30375,6 +27627,19 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) +"pZZ" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/crash) +"qaq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/central) +"qax" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/mining_outpost/south_dormitories) "qbk" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 @@ -30406,6 +27671,10 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/structures/monitoring/south) +"qcM" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/south_outpost) "qcO" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -30435,21 +27704,32 @@ }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/relay_marshes) -"qeI" = ( -/obj/structure/machinery/light/small{ +"qeO" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) -"qfi" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/central) +"qft" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"qfy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/crash) +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "qfC" = ( /turf/open/floor/strata, /area/strata/ag/interior/outside/engineering/parts_storage) @@ -30476,6 +27756,10 @@ /obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) +"qhC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "qin" = ( /obj/structure/machinery/door/airlock/strata/autoname{ dir = 1 @@ -30486,6 +27770,15 @@ /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/marsh/spring_marshes) +"qjL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/mining_outpost/canteen) "qjS" = ( /obj/structure/machinery/space_heater, /obj/structure/machinery/light, @@ -30508,6 +27801,10 @@ "qlq" = ( /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/underground_dorms/med1) +"qlx" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/mining_outpost/canteen) "qmw" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -30517,21 +27814,37 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) -"qnh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/central) +"qnl" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "qns" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/underground_dorms/med1) +"qnH" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/flight_control_exterior) +"qoh" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/marsh/spring_marshes) "qot" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/outside/engineering/parts_storage) +"qow" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "qoD" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -30549,34 +27862,74 @@ }, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring/east) +"qpw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) +"qqO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/blue3/southwest, +/area/strata/ag/interior/outpost/admin) +"qrb" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/landing_zones/near_lz2) "qrz" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement/cement3, /area/strata/ug/interior/outpost/platform) +"qsu" = ( +/obj/item/lightstick/red/planted, +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"qsz" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "qsI" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/structures/monitoring) +"qsY" = ( +/obj/structure/flora/grass/tallgrass/ice, +/obj/structure/platform/stone/strata, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "qsZ" = ( /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/paths/flight_control_exterior) -"qtn" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) -"quT" = ( -/obj/structure/inflatable/popped/door, +"qtc" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"qtj" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/outpost/canteen) +"qtq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"qve" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) +"qvk" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/plating, +/area/strata/ag/exterior/outpost_decks) "qvy" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, @@ -30606,13 +27959,22 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) +"qxp" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) "qxr" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/tearlake) -"qxt" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) +"qxy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi/drome) "qxD" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -30621,6 +27983,27 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) +"qxF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"qyp" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"qyq" = ( +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"qza" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) "qzd" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -30638,10 +28021,11 @@ /obj/item/storage/pill_bottle/spaceacillin, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) -"qzv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/northeast, -/area/strata/ag/interior/outpost/med) +"qAq" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/item/fuel_cell, +/turf/open/floor/strata/red2, +/area/strata/ag/interior/outpost/engi) "qAr" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/strata/floor2, @@ -30652,6 +28036,11 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/flight_control_exterior) +"qAX" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "qBd" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer0, @@ -30665,6 +28054,12 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) +"qBQ" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "qCv" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/strata/floor3/east, @@ -30677,6 +28072,11 @@ /obj/structure/machinery/power/reactor/colony, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/checkpoints/south) +"qDM" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "qFH" = ( /obj/structure/filingcabinet, /turf/open/floor/strata/floor2, @@ -30687,10 +28087,28 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/structures/monitoring) +"qFZ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/greengrid, +/area/strata/ag/interior/mining_outpost/central) +"qGi" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/central) "qGK" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/asphalt/cement/cement1, /area/strata/ug/interior/outpost/platform) +"qHk" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) +"qIi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) "qIt" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -30698,13 +28116,16 @@ /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement/cement1, /area/strata/ug/interior/outpost/platform) -"qIV" = ( -/obj/structure/bed/sofa/vert/grey/top, -/obj/structure/pipes/vents/pump{ +"qIC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"qIG" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/landing_zones/near_lz2) "qJi" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison/darkyellowfull2, @@ -30714,6 +28135,16 @@ /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"qJM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen) +"qKk" = ( +/obj/structure/flora/grass/tallgrass/ice, +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "qKx" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/vanyard) @@ -30746,10 +28177,24 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) +"qNu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "qNS" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/outpost_decks) +"qNX" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) "qOj" = ( /turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/landing_zones/lz2) @@ -30789,6 +28234,16 @@ "qPu" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/water_marshes) +"qPA" = ( +/obj/structure/flora/grass/tallgrass/ice, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/far_north_outpost) +"qPN" = ( +/obj/item/lightstick/red/planted, +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "qQq" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/body, @@ -30798,12 +28253,10 @@ /obj/structure/machinery/light/small, /turf/open/asphalt/cement/cement15, /area/strata/ug/interior/outpost/platform) -"qQH" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +"qQx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) "qQN" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/down, @@ -30812,6 +28265,11 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) +"qQR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) "qRj" = ( /obj/structure/filingcabinet, /obj/structure/barricade/handrail/strata{ @@ -30820,31 +28278,31 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"qRF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/southwest, -/area/strata/ag/interior/outpost/med) +"qRl" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/spring_marshes) +"qSc" = ( +/obj/item/lightstick/red/planted, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/flight_control_exterior) "qSo" = ( /turf/closed/shuttle/ert{ icon_state = "upp4" }, /area/strata/ag/exterior/marsh/crash) +"qSC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/central) "qSH" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outside/checkpoints/north_armor) -"qTk" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/barricade/handrail/strata{ - layer = 3.1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/platform/strata/metal, -/turf/open/gm/river, -/area/strata/ag/exterior/outpost_decks) +"qSS" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "qTp" = ( /obj/structure/largecrate/random/barrel/yellow, /obj/structure/machinery/camera/autoname{ @@ -30865,17 +28323,42 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/med2) +"qTS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) "qTV" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/recharge_station, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/vanyard) +"qUq" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "qUB" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/spring_marshes) +"qUH" = ( +/obj/structure/closet/wardrobe/suit, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) +"qUL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "qUQ" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, @@ -30883,22 +28366,41 @@ "qUW" = ( /turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/mining_outpost/canteen) -"qVb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) "qVc" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) +"qVY" = ( +/obj/structure/cryofeed/right, +/obj/structure/platform/metal/strata, +/obj/structure/barricade/handrail/wire{ + layer = 3.5 + }, +/turf/open/gm/river, +/area/strata/ag/interior/outside/engineering/parts_storage) +"qVZ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "qWc" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/underground_dorms/med1) +"qWw" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) "qWC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/flora/pottedplant{ @@ -30911,19 +28413,23 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/research) +"qWT" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "qWY" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/landing_zones/near_lz1) -"qXN" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ug/interior/jungle/structures/monitoring) +"qXa" = ( +/obj/structure/platform/metal/strata/north, +/obj/item/toy/deck, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "qXY" = ( /obj/structure/computerframe, /obj/structure/barricade/handrail/strata{ @@ -30936,13 +28442,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) -"qYF" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) "qYZ" = ( /obj/item/weapon/gun/rifle/type71/carbine, /obj/effect/decal/cleanable/blood/gibs/core, @@ -30952,6 +28451,17 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) +"raD" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/far_north_outpost) +"raG" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen) "rba" = ( /obj/structure/closet, /obj/effect/landmark/objective_landmark/far, @@ -30963,20 +28473,33 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) +"rcK" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/foyer) +"rcX" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "rdm" = ( /obj/structure/largecrate/random, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) -"reb" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/strata/ug/interior/outpost/platform) +"rdt" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/landing_zones/near_lz2) +"rdL" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "rel" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -30990,15 +28513,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/caves/shed_five_caves) -"rfN" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "rgt" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -31011,6 +28525,15 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/outpost/platform) +"rgA" = ( +/obj/structure/platform/metal/strata/west, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/structure/platform/metal/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/outpost_decks) "rgH" = ( /obj/structure/barricade/snow{ dir = 8 @@ -31031,6 +28554,10 @@ }, /turf/open/asphalt/cement/cement1, /area/strata/ag/interior/landing_zones/lz1) +"rhw" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "rhJ" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -31038,27 +28565,10 @@ /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement/cement14, /area/strata/ug/interior/outpost/platform) -"riM" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/barricade/handrail/strata{ - layer = 3.1 - }, -/obj/structure/platform/strata/metal, -/turf/open/gm/river, -/area/strata/ag/exterior/outpost_decks) -"riS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) +"riQ" = ( +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "riY" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -31092,6 +28602,15 @@ }, /turf/open/asphalt/cement/cement4, /area/strata/ug/interior/outpost/platform) +"rkU" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/landing_zones/near_lz2) +"rmT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/foyer) "rni" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/spring_marshes) @@ -31107,12 +28626,24 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/structures/research/old_tunnels) +"ros" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "roI" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"rpa" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/platform_decoration/metal/strata/east, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/strata/ug/interior/jungle/structures/monitoring) "rpp" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/strata/floor3, @@ -31134,6 +28665,14 @@ "rpX" = ( /turf/open/asphalt/cement/cement4, /area/strata/ug/interior/outpost/platform) +"rqs" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/landing_zones/near_lz2) +"rqH" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/flight_control_exterior) "rqL" = ( /obj/item/tool/wrench, /turf/open/floor/strata, @@ -31142,30 +28681,59 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/tearlake) -"rrV" = ( -/obj/structure/platform/strata{ - dir = 1 +"rrM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/auto_turf/ice/layer0, -/area/strata/ag/exterior/marsh/spring_marshes) +/obj/structure/machinery/light, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/foyer) +"rrN" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/landing_zones/near_lz1) "rsm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) +"rts" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 8 + }, +/obj/structure/platform_decoration/stone/strata/east, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/far_north_outpost) "rtX" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/caves/lz_caves) "run" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outside/checkpoints/north_armor) +"rus" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/spring_marshes) "ruM" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/structures/monitoring/south) +"rvj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/mining_outpost/central) "rvD" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/structures/monitoring/south) +"rvR" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata, +/area/strata/ag/exterior/outpost_decks) "rwg" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/west, @@ -31178,9 +28746,22 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/structures/research/old_tunnels) +"rxj" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gibarm_flesh" + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "rxp" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/underground_dorms/admin3) +"rxB" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) "rxL" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, @@ -31193,14 +28774,11 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/landing_zones/near_lz2) -"ryf" = ( -/obj/structure/platform_decoration/strata/metal, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/floor/greengrid, -/area/strata/ag/interior/outside/engineering/parts_storage) +"ryh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen) "ryw" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -31223,16 +28801,45 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) +"rzy" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "rzG" = ( /obj/structure/barricade/handrail/strata, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"rAv" = ( -/obj/structure/platform/strata{ - dir = 4 +"rzY" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outside/engineering/parts_storage_cave) +/obj/structure/platform/metal/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outside/engineering/parts_storage) +"rAX" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"rBp" = ( +/obj/structure/flora/grass/tallgrass/ice, +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/north_outpost) +"rCl" = ( +/obj/structure/bed/nest, +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/mining_outpost/hive) +"rCQ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "rDl" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -31241,18 +28848,29 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"rEr" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +"rEx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/metal/strata/west, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/outpost/platform) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/outpost_decks) +"rEL" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "rFn" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"rFN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) "rFZ" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -31268,12 +28886,33 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) +"rHO" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/canteen) +"rHV" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) "rHX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/water_marshes) +"rId" = ( +/obj/structure/curtain/open/medical, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"rIC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/ale, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen) "rIM" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/carplake/north) @@ -31284,12 +28923,20 @@ /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/spring_marshes) -"rLg" = ( -/obj/structure/machinery/light/small{ +"rJu" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/stone/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) +"rJJ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/obj/structure/inflatable/popped, -/turf/open/floor/strata/cyan4/east, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) +"rJX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/northeast, /area/strata/ag/interior/outpost/med) "rLn" = ( /obj/effect/landmark/survivor_spawner, @@ -31307,6 +28954,10 @@ opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"rMx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/mining_outpost/canteen) "rMy" = ( /obj/structure/bed{ icon_state = "abed" @@ -31332,6 +28983,15 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) +"rMX" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/machinery/space_heater, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) +"rMY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "rNI" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/landing_zones/near_lz2) @@ -31340,14 +29000,18 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/structures/monitoring) +"rOr" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/structure/barricade/wooden, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "rOB" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/vanyard) -"rPA" = ( -/obj/structure/platform/strata/metal, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/strata/ug/interior/jungle/structures/research/old_tunnels) +"rPH" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "rQV" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -31359,12 +29023,6 @@ }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/mining_outpost/flight_control) -"rQX" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/marsh/spring_marshes) "rRl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -31376,10 +29034,20 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) +"rRC" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "rSl" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) +"rSv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "rSE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -31387,19 +29055,27 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outside/checkpoints/outpost) -"rTf" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +"rTj" = ( +/obj/structure/flora/grass/tallgrass/ice, +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/far_north_outpost) +"rTA" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/crash) "rTC" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) +"rTL" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/landing_zones/near_lz2) +"rTR" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) "rUb" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -31415,18 +29091,10 @@ "rUM" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/tearlake) -"rUQ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outside/engineering/parts_storage) +"rWc" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/caves/lz_caves) "rWk" = ( /obj/structure/sink{ dir = 8; @@ -31437,6 +29105,11 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/underground_dorms/sec2) +"rWB" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/cryofeed, +/turf/open/gm/river, +/area/strata/ag/interior/outside/engineering/parts_storage) "rXy" = ( /obj/structure/largecrate/random/barrel/yellow, /obj/effect/decal/cleanable/blood/oil, @@ -31453,10 +29126,19 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/flight_control_exterior) -"rZD" = ( +"rYp" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/flight_control_exterior) +"rZr" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/flight_control_exterior) +"rZs" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/foyer) "rZF" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/paths/flight_control_exterior) @@ -31464,10 +29146,6 @@ /obj/item/storage/briefcase, /turf/open/floor/strata/red1, /area/strata/ag/interior/landing_zones/near_lz1) -"sad" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/foyer) "sah" = ( /obj/item/weapon/gun/pistol/t73, /turf/open/auto_turf/strata_grass/layer1, @@ -31482,6 +29160,12 @@ "saY" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/tearlake) +"sbA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "sbU" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ @@ -31506,26 +29190,55 @@ }, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring) +"sch" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) "scp" = ( /obj/item/fuel_cell, /turf/open/floor/strata/red2, /area/strata/ag/interior/outpost/engi) -"scM" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +"scA" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) +"scZ" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) "seb" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outside/bball/cave) -"sen" = ( +"sem" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - dir = 8; + dir = 4; icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"ser" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"set" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/flight_control_exterior) +"sfZ" = ( +/obj/structure/platform/metal/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/flight_control_exterior) "sgq" = ( /obj/structure/bed{ icon_state = "abed" @@ -31539,6 +29252,10 @@ "sgG" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outside/engineering/parts_storage) +"sgO" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/south_outpost) "sha" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer0, @@ -31555,6 +29272,12 @@ /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/outpost/platform) +"shA" = ( +/obj/structure/platform/stone/strata/north, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "sig" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer0, @@ -31563,6 +29286,10 @@ /obj/structure/inflatable, /turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) +"sit" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "sjp" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -31572,18 +29299,27 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) +"sjW" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"skh" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/mining_outpost/south_dormitories) "ski" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/mechanical, /obj/item/device/flashlight, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"skl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) +"skm" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "skJ" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds2{ @@ -31591,6 +29327,18 @@ }, /turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/landing_zones/lz2) +"skM" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/south_outpost) +"skT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"sle" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/foyer) "sly" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -31609,6 +29357,15 @@ /obj/item/toy/deck, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) +"smV" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) +"snR" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/caves/shed_five_caves) "snV" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/outpost/platform) @@ -31620,6 +29377,12 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/research) +"sop" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) "sot" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -31661,6 +29424,14 @@ /obj/structure/machinery/light, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outside/engineering/parts_storage) +"ssb" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) "ssd" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/platform/east) @@ -31678,6 +29449,10 @@ "ssE" = ( /turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/vanyard) +"stb" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/center) "stf" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/carplake/east) @@ -31690,11 +29465,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"suF" = ( -/obj/structure/platform/strata/metal, -/obj/structure/machinery/light, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/mining_outpost_exterior) +"stX" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/marsh/spring_marshes) "svg" = ( /obj/effect/decal/cleanable/blood, /obj/structure/machinery/camera/autoname{ @@ -31707,16 +29481,21 @@ /obj/structure/fence, /turf/open/asphalt/cement/cement9, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"swK" = ( +/obj/structure/largecrate/random/secure{ + layer = 3.1 + }, +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "swQ" = ( /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/checkpoints/south) -"sxr" = ( +"sxe" = ( +/obj/structure/platform/stone/strata/north, /obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, /turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) +/area/strata/ag/exterior/marsh/water) "sxT" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -31727,6 +29506,16 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring) +"syh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) +"sys" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/mining_outpost/central) "syU" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, @@ -31748,6 +29537,17 @@ "sAv" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/underground_dorms/med1) +"sBe" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/foyer) "sBf" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -31770,12 +29570,15 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring) -"sCO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/prison/darkyellowfull2, +"sCl" = ( +/obj/item/stack/rods, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) +"sDh" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/central) "sDs" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -31788,20 +29591,24 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"sEG" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) +"sEs" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/east) "sEV" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/structures/monitoring/west) +"sFp" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/interior/landing_zones/near_lz1) "sFB" = ( /obj/structure/machinery/landinglight/ds2{ dir = 1 @@ -31820,6 +29627,11 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/monitoring/south) +"sFZ" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "sGb" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/spring_marshes) @@ -31835,6 +29647,11 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) +"sHN" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "sHP" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/underground_dorms/sec1) @@ -31847,6 +29664,12 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/mining_outpost/central) +"sJP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cubancarp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/mining_outpost/canteen) "sKX" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -31855,6 +29678,11 @@ /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/plating, /area/strata/ug/interior/jungle/structures/monitoring/west) +"sMf" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/flight_control_exterior) "sMj" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, @@ -31866,10 +29694,30 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/almayer/test_floor5, /area/strata/ag/exterior/marsh/crash) +"sNq" = ( +/obj/item/bodybag/tarp/snow, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"sNM" = ( +/obj/item/lightstick/planted, +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/interior/restricted) +"sOb" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/inflatable, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "sOB" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/outpost_decks) +"sOU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/central) "sPD" = ( /obj/structure/bed{ icon_state = "abed" @@ -31883,6 +29731,13 @@ "sPF" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/platform) +"sPP" = ( +/obj/item/stack/rods, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) "sQs" = ( /turf/open/asphalt/cement/cement9, /area/strata/ag/exterior/landing_zones/lz2) @@ -31900,6 +29755,12 @@ }, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/monitoring) +"sRw" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) "sRz" = ( /obj/structure/inflatable, /obj/structure/barricade/handrail/strata, @@ -31911,13 +29772,30 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/monitoring/west) +"sRV" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/crash) "sRX" = ( /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/underground_dorms/med2) +"sSs" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/landing_zones/near_lz2) "sSv" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/marsh/spring_marshes) +"sSM" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "sSZ" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" @@ -31930,6 +29808,11 @@ }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/structures/monitoring/south) +"sTF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/lightreplacer, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) "sTZ" = ( /obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/strata/multi_tiles/southwest, @@ -31940,9 +29823,21 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/exterior/outpost_decks) +"sUY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/mining_outpost/canteen) "sWt" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/mining_outpost/hive) +"sWz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/outpost_decks) "sWO" = ( /turf/open/asphalt/cement/cement15, /area/strata/ag/exterior/marsh/spring_marshes) @@ -31954,6 +29849,10 @@ /obj/structure/window/framed/strata, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/monitoring) +"sXs" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/central) "sXt" = ( /obj/structure/bed/chair{ dir = 8 @@ -31970,27 +29869,37 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/caves/shed_five_caves) -"sXF" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ +"sXz" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landing_zones/near_lz1) +"sXE" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) -"sXU" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"sXL" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/platform/strata{ - dir = 8 +/obj/structure/platform/metal/strata/east, +/turf/open/floor/plating, +/area/strata/ag/exterior/outpost_decks) +"sYe" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/outpost/platform) +"sYU" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/outpost_decks) "sZP" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -32003,10 +29912,30 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) +"tab" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"tad" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) +"tao" = ( +/obj/structure/platform_decoration/metal/strata/west, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/strata/ug/interior/jungle/structures/monitoring) "tas" = ( /obj/structure/machinery/power/apc/no_power/south, /turf/open/floor/plating, /area/strata/ug/interior/jungle/structures/research/old_tunnels) +"tax" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/east) "taL" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -32029,6 +29958,15 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) +"tdy" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/outpost_decks) "tdB" = ( /obj/item/explosive/grenade/high_explosive/upp, /obj/effect/decal/cleanable/blood, @@ -32037,6 +29975,10 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/underground_dorms/admin2) +"tdG" = ( +/obj/structure/platform/metal/strata, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/mining_outpost/central) "ter" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" @@ -32091,12 +30033,6 @@ /obj/item/weapon/gun/pistol/t73, /turf/open/floor/greengrid, /area/strata/ag/exterior/outpost_decks) -"tio" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/central) "tiE" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -32121,18 +30057,11 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) -"tkq" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/outpost/platform) -"tky" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/central) +"tkX" = ( +/obj/structure/platform_decoration/stone/strata, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "tlc" = ( /obj/structure/surface/rack, /obj/item/storage/box/beakers, @@ -32141,6 +30070,12 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) +"tlm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/sodawater, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen) "tlo" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/limb, @@ -32172,6 +30107,11 @@ /obj/structure/machinery/microwave, /turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/underground_dorms/admin1) +"tnp" = ( +/obj/structure/platform/stone/strata, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "tnM" = ( /turf/open/asphalt/cement/cement12, /area/strata/ug/interior/outpost/platform) @@ -32183,6 +30123,12 @@ "toV" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/tearlake) +"tpo" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/mining_outpost/canteen) "tpW" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/effect/landmark/monkey_spawn, @@ -32192,48 +30138,41 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/far_north_outpost) +"trg" = ( +/obj/structure/barricade/snow{ + dir = 8 + }, +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/flight_control_exterior) "trr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) -"tru" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) -"trz" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "trM" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/structures/research) +"tsp" = ( +/obj/structure/platform_decoration/stone/strata, +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "tsz" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /turf/open/floor/strata/orange_edge/west, /area/strata/ag/exterior/outpost_decks) -"tsX" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/exterior/outpost_decks) +"ttd" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/center) +"ttk" = ( +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/crash) "ttQ" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, @@ -32242,23 +30181,27 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/tearlake) +"tup" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "tuu" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) +"tuL" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 + }, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) "tuV" = ( /obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"tvk" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/strata/ug/interior/jungle/structures/research/old_tunnels) "twa" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/asphalt/cement, @@ -32288,24 +30231,43 @@ }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) -"tyD" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 - }, +"tyZ" = ( +/obj/structure/platform_decoration/metal/strata/west, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata, +/area/strata/ag/interior/landing_zones/near_lz1) +"tAi" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/blocker/invisible_wall, /turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) +/area/strata/ag/exterior/marsh/water) "tAs" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/south_outpost) +"tAH" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) "tAX" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/spring_marshes) +"tBc" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"tBi" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/marsh/center) "tBn" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/ice/layer1, @@ -32317,6 +30279,13 @@ }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outside/engineering/parts_storage) +"tCk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/curtain/open/shower, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/outpost/canteen) "tCI" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/west, @@ -32333,10 +30302,36 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) +"tDw" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) +"tDH" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/spring_marshes) +"tDU" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) +"tDV" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/mining_outpost/central) "tEf" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/engineering/parts_storage) +"tEq" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/landing_zones/near_lz2) "tEC" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost/reinforced, @@ -32347,15 +30342,13 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/landing_zones/near_lz1) +"tFe" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) "tFA" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/spring_marshes) -"tFS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) "tGR" = ( /obj/structure/machinery/light{ dir = 1 @@ -32369,6 +30362,15 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/structures/monitoring) +"tHb" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/outpost/platform) "tHv" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/snow/brown_base/layer2, @@ -32382,10 +30384,21 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/structures/monitoring) -"tIw" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/white_cyan2/west, +"tIV" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 16 + }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen) +"tJg" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/south_dormitories) "tJu" = ( /obj/item/ammo_magazine/rifle/type71, /turf/open/floor/strata/multi_tiles/southwest, @@ -32406,19 +30419,24 @@ /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/landing_zones/near_lz1) -"tJR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen) "tJX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/water_marshes) +"tKx" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform_decoration/stone/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) +"tKA" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "tKC" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/multi_tiles/southeast, @@ -32438,6 +30456,15 @@ "tLI" = ( /turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/structures/monitoring) +"tMC" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "tMP" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -32453,11 +30480,11 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/south_outpost) -"tNr" = ( -/obj/structure/platform/strata/metal, -/obj/structure/machinery/light, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/mining_outpost_exterior) +"tNa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) "tNz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 @@ -32472,6 +30499,10 @@ /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement/cement14, /area/strata/ug/interior/outpost/platform) +"tOi" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/spring_marshes) "tOA" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/orange_cover, @@ -32524,42 +30555,12 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/far_north_outpost) -"tSi" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) -"tSl" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/paths/far_north_outpost) "tSo" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/tearlake) -"tSt" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) "tSZ" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, @@ -32568,6 +30569,12 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east) +"tTu" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/south_dormitories) "tTP" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/multi_tiles/west, @@ -32591,16 +30598,23 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outside/bball) -"tUZ" = ( -/obj/structure/platform/strata{ - dir = 1 +"tVd" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 8; + layer = 2.9 }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outside/engineering/parts_storage_cave) +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) "tVu" = ( /obj/structure/sign/safety/medical, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi/drome) +"tVB" = ( +/obj/structure/platform/stone/strata, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "tVN" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light, @@ -32626,9 +30640,20 @@ }, /turf/open/asphalt/cement, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"tWO" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "tWY" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"tYg" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landing_zones/near_lz1) "tYB" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 @@ -32642,9 +30667,11 @@ /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) "tZm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/foyer) +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) "tZF" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -32657,10 +30684,20 @@ }, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) +"uab" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/outpost_decks) "uad" = ( /obj/structure/largecrate/random, /turf/open/asphalt/cement/cement12, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"uau" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "uaC" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -32676,6 +30713,11 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) +"ubj" = ( +/obj/item/fuel_cell, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/red2, +/area/strata/ag/interior/outpost/engi) "ubo" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/etool/folded, @@ -32717,10 +30759,12 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/outpost_decks) -"udS" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"ueA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan4/east, +/area/strata/ag/interior/outpost/med) "ueD" = ( /obj/structure/window/reinforced/tinted{ dir = 4 @@ -32731,32 +30775,28 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/red1, /area/strata/ug/interior/outpost/underground_dorms/sec1) -"ueK" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) "ueP" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/carplake/east) +"ufg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"ufk" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/landing_zones/near_lz2) "ufG" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"ufH" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) "ufI" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -32765,6 +30805,14 @@ }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) +"ufK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"ufY" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/foyer) "ugH" = ( /obj/structure/closet/secure_closet/personal, /obj/item/storage/secure/briefcase, @@ -32777,6 +30825,12 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) +"ugT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "uhe" = ( /obj/structure/toilet{ dir = 1 @@ -32797,6 +30851,13 @@ "uhM" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/water_marshes) +"uic" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "uiE" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/south_outpost) @@ -32817,13 +30878,14 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) -"ulL" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/cryofeed/right, -/turf/open/gm/river, -/area/strata/ag/interior/outside/engineering/parts_storage) +"ukK" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/strata/ug/interior/jungle/structures/research/old_tunnels) +"ulM" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) "umE" = ( /obj/structure/toilet{ dir = 4 @@ -32839,6 +30901,15 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/security) +"uns" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) +"uny" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi/drome) "unE" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony, /turf/open/floor/strata/multi_tiles/west, @@ -32848,6 +30919,19 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/cyan1/east, /area/strata/ug/interior/outpost/underground_dorms/med1) +"unP" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/stone/strata/west, +/obj/structure/platform_decoration/stone/strata, +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) +"uoB" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "uoP" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement/cement3, @@ -32876,14 +30960,6 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) -"urQ" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) "usx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/plantspray/weeds, @@ -32896,12 +30972,6 @@ "usP" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/caves/lz_caves) -"utk" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) "utn" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -32909,6 +30979,11 @@ /obj/structure/inflatable/door, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/outpost_decks) +"utx" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/strata/ag/interior/outside/engineering/parts_storage) "utX" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, @@ -32923,6 +30998,14 @@ "uux" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/structures/research) +"uuQ" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"uvp" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/landing_zones/near_lz2) "uvw" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/structures/monitoring/west) @@ -32937,6 +31020,12 @@ /obj/structure/blocker/invisible_wall, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) +"uwy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "uxf" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, @@ -32949,13 +31038,26 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/outpost_decks) +"uxw" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"uyb" = ( +/obj/structure/platform_decoration/stone/strata/east, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "uyf" = ( /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outside/checkpoints/north_armor) -"uyp" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi/drome) +"uyG" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/blue3/east, +/area/strata/ag/interior/outpost/admin) "uyQ" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -32965,6 +31067,14 @@ }, /turf/open/asphalt/cement/cement2, /area/strata/ug/interior/outpost/platform) +"uyS" = ( +/obj/structure/cryofeed, +/obj/structure/platform/metal/strata, +/obj/structure/barricade/handrail/wire{ + layer = 3.5 + }, +/turf/open/gm/river, +/area/strata/ag/interior/outside/engineering/parts_storage) "uzb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e" @@ -32978,16 +31088,19 @@ /obj/item/stack/catwalk, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) -"uzv" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 4 - }, +"uBv" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, /obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 1 - }, +/obj/structure/platform/metal/strata/east, /turf/open/gm/river, -/area/strata/ag/exterior/outpost_decks) +/area/strata/ag/exterior/paths/far_north_outpost) +"uBw" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) "uBz" = ( /obj/item/stack/sheet/wood, /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, @@ -32997,6 +31110,21 @@ /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/spring_marshes) +"uCe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen) +"uCH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/south_dormitories) "uCI" = ( /obj/structure/dispenser, /turf/open/floor/strata/floor3/east, @@ -33007,27 +31135,58 @@ }, /turf/open/floor/strata/floor2, /area/strata/ag/interior/restricted) -"uDU" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +"uDl" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/platform/strata/metal{ - dir = 4 +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/stack/sheet/wood, -/turf/open/floor/strata, -/area/strata/ag/exterior/outpost_decks) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "uEj" = ( /obj/structure/largecrate/random, /obj/item/toy/deck, /turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/marsh/center) +"uEt" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/lightstick/red/planted, +/obj/structure/platform/metal/strata, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"uER" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/outpost_decks) +"uFt" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "uFT" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) +"uGb" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) +"uGp" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outside/engineering/parts_storage) "uGx" = ( /obj/structure/sign/safety/security, /turf/closed/wall/strata_outpost/reinforced, @@ -33043,10 +31202,24 @@ /obj/effect/landmark/crap_item, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring) +"uHQ" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/interior/restricted) "uHX" = ( /obj/effect/decal/cleanable/cobweb2, /turf/open/floor/carpet, /area/strata/ag/interior/restricted) +"uIn" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/south_dormitories) +"uII" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "uJY" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -33071,10 +31244,18 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) +"uLe" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "uLl" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring) +"uLF" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/spring_marshes) "uLJ" = ( /turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/structures/monitoring) @@ -33082,11 +31263,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/outside/engineering/parts_storage) -"uML" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/canteen) "uNi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, @@ -33100,6 +31276,32 @@ /obj/item/storage/firstaid/regular, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) +"uOJ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"uOX" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"uPz" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/east, +/obj/item/stack/sheet/wood, +/turf/open/floor/strata, +/area/strata/ag/exterior/outpost_decks) "uPE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -33119,6 +31321,10 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/south_outpost) +"uQi" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "uRy" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -33135,9 +31341,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) -"uSI" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/mining_outpost/central) "uSR" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -33153,6 +31356,10 @@ "uTv" = ( /turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/outpost/underground_dorms/admin3) +"uTC" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/landing_zones/near_lz2) "uTL" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 @@ -33167,6 +31374,10 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) +"uUT" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/caves/shed_five_caves) "uVv" = ( /turf/open/asphalt/cement/cement1, /area/strata/ug/interior/outpost/platform) @@ -33196,21 +31407,27 @@ "uXg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/platform/south) -"uXY" = ( -/obj/structure/platform/strata/metal{ - dir = 4 +"uYO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/south) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) +"uZs" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "vaq" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/structures/research) -"vaW" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outside/engineering/parts_storage_cave) "vaZ" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, @@ -33240,18 +31457,52 @@ }, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring) +"vcr" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"vcS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/mining_outpost/south_dormitories) "vdi" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) +"vdv" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"veh" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "veX" = ( /obj/structure/machinery/door/airlock/prison{ name = "Reinforced Airlock" }, /turf/open/floor/strata/multi_tiles/west, /area/strata/ug/interior/outpost/underground_dorms/med2) +"vfg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "vgb" = ( /obj/structure/machinery/light, /turf/open/floor/strata/floor3/east, @@ -33265,6 +31516,17 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/flight_control_exterior) +"vgq" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/caves/shed_five_caves) +"vgJ" = ( +/obj/structure/flora/grass/tallgrass/ice, +/obj/structure/platform/metal/strata/north, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/outpost_decks) "vgW" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 @@ -33281,6 +31543,10 @@ /obj/item/storage/belt/knifepouch, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"vhz" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/spring_marshes) "vhG" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -33291,21 +31557,17 @@ "viA" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/sec2) -"viU" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/foyer) "vjc" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outside/engineering/parts_storage) +"vjf" = ( +/obj/structure/closet/wardrobe/red, +/obj/item/clothing/suit/imperium_monk, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen) "vjD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/monkeyburger, @@ -33333,6 +31595,10 @@ "vlm" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) +"vlu" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) "vlC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/snow/brown_base/layer0, @@ -33347,6 +31613,10 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/mountain) +"vmk" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/caves/lz_caves) "vmm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/small{ @@ -33355,10 +31625,11 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outside/engineering/parts_storage) -"vms" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) +"vmo" = ( +/obj/structure/platform_decoration/stone/strata/east, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "vmI" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southeast, @@ -33371,35 +31642,19 @@ /obj/structure/curtain/open/medical, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"vnI" = ( -/obj/structure/curtain/open/medical, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"vnV" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/south_outpost) "voe" = ( /obj/structure/curtain/medical, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"vox" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) +"vol" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/outpost/platform) +"voK" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/vanyard) "vpi" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -33407,6 +31662,11 @@ /obj/structure/filingcabinet, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outside/engineering/parts_storage_cave) +"vpF" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/south) "vpG" = ( /obj/structure/sink{ dir = 8; @@ -33424,6 +31684,19 @@ /obj/effect/landmark/hunter_secondary, /turf/open/floor/plating, /area/strata/ag/exterior/landing_zones/lz2) +"vqA" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/landing_zones/near_lz1) +"vqV" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "vrH" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -33448,6 +31721,10 @@ }, /turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/landing_zones/lz2) +"vsx" = ( +/obj/item/stool, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) "vsy" = ( /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring) @@ -33455,6 +31732,16 @@ /obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/engineering/parts_storage) +"vsR" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) +"vsT" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/flight_control_exterior) "vsZ" = ( /obj/item/stack/medical/splint, /turf/open/floor/strata/multi_tiles/southwest, @@ -33473,6 +31760,12 @@ "vtz" = ( /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) +"vtJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meatballsoup, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/mining_outpost/canteen) "vtM" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -33484,14 +31777,11 @@ "vuJ" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/structures/monitoring/east) -"vvh" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) +"vvd" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/caves/shed_five_caves) "vvl" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/strata_grass/layer1, @@ -33502,6 +31792,10 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) +"vvs" = ( +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/flight_control_exterior) "vvB" = ( /obj/structure/filingcabinet, /obj/effect/landmark/objective_landmark/close, @@ -33518,19 +31812,27 @@ /obj/item/device/camera, /turf/open/floor/carpet, /area/strata/ag/interior/restricted) -"vwR" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/flora/grass/ice/brown/snowgrassbb_1, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/flight_control_exterior) -"vwV" = ( -/obj/structure/platform/strata/metal{ - dir = 8 +"vwg" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) +"vwn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/outpost/platform) +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen) +"vwC" = ( +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) "vwX" = ( /obj/structure/machinery/centrifuge, /obj/structure/surface/table/reinforced/prison, @@ -33542,6 +31844,11 @@ "vxd" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outside/engineering/parts_storage) +"vxC" = ( +/obj/structure/platform_decoration/stone/strata/west, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "vye" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -33555,6 +31862,15 @@ /obj/structure/machinery/autolathe, /turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/structures/monitoring) +"vyL" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"vAw" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "vBi" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/river, @@ -33567,6 +31883,13 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"vBG" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "vBV" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -33577,17 +31900,6 @@ /obj/item/clothing/shoes/jackboots, /turf/open/floor/strata/red3/north, /area/strata/ag/interior/outpost/med) -"vCl" = ( -/obj/structure/barricade/handrail/strata{ - layer = 3.1 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal, -/turf/open/gm/river, -/area/strata/ag/exterior/outpost_decks) "vCD" = ( /obj/structure/bed/sofa/vert/grey/top, /obj/structure/barricade/handrail/strata{ @@ -33595,10 +31907,6 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"vCN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) "vDm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/strata/multi_tiles/southwest, @@ -33609,6 +31917,12 @@ opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"vDU" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "vEp" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/research) @@ -33617,6 +31931,12 @@ icon_state = "upp1" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"vEX" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/outpost/canteen) "vFS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/phone{ @@ -33645,20 +31965,41 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/monitoring/east) +"vHd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "vHj" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/research/south) -"vHI" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata, -/area/strata/ag/interior/mining_outpost/central) +"vHL" = ( +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/outpost/platform) +"vHP" = ( +/obj/structure/machinery/shower, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/outpost/canteen) "vId" = ( /obj/structure/machinery/space_heater, /obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) +"vIp" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/south) +"vIZ" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "vJj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, @@ -33686,6 +32027,11 @@ /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/outside/checkpoints/south) +"vKS" = ( +/obj/structure/platform_decoration/metal/strata, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata, +/area/strata/ag/interior/landing_zones/near_lz1) "vKV" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/outpost/underground_dorms) @@ -33700,10 +32046,28 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/red1, /area/strata/ag/interior/mining_outpost/flight_control) +"vMY" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement14, +/area/strata/ag/interior/landing_zones/lz1) +"vNl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meatballspagetti, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/mining_outpost/canteen) "vNG" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) +"vNW" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) "vOf" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -33727,6 +32091,17 @@ "vPi" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outside/checkpoints/outpost) +"vPG" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) +"vPN" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/south) "vPQ" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) @@ -33745,6 +32120,16 @@ icon_state = "upp_rightengine" }, /area/strata/ag/exterior/marsh/crash) +"vQM" = ( +/obj/structure/platform/stone/strata/east, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) +"vRO" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/crash) "vRP" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e" @@ -33755,6 +32140,11 @@ /obj/structure/bed/medevac_stretcher, /turf/open/gm/dirt, /area/strata/ag/exterior/jungle/carplake_center) +"vTG" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/mining_outpost/central) "vTN" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, @@ -33763,9 +32153,29 @@ "vUp" = ( /turf/open/asphalt/cement/cement2, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"vUy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"vUM" = ( +/obj/structure/platform_decoration/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/river) +"vUP" = ( +/obj/structure/platform_decoration/stone/strata/north, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) "vVK" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/research/old_tunnels) +"vXd" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/storage/apron/overalls, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen) "vXt" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -33773,16 +32183,24 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/south_outpost) -"vXN" = ( -/obj/structure/platform/strata/metal{ +"vXx" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/mining_outpost/hive) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/central) +"vYa" = ( +/obj/structure/sign/safety/medical, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/canteen) "vYf" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/flight_control_exterior) +"vYk" = ( +/obj/structure/platform/metal/strata, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) "vYD" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -33800,19 +32218,16 @@ /obj/effect/decal/cleanable/blood/gibs/up, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) -"wab" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/underground_dorms/sec2) "waZ" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/monitoring/south) +"wbr" = ( +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) "wbK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ dir = 1; @@ -33824,6 +32239,15 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/spring_marshes) +"wcl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "wdf" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -33834,6 +32258,9 @@ }, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) +"wdr" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) "wdI" = ( /turf/open/asphalt/cement/cement12, /area/strata/ag/interior/outpost/med) @@ -33844,6 +32271,10 @@ }, /turf/open/floor/strata/orange_cover, /area/strata/ag/exterior/landing_zones/near_lz2) +"wfm" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/center) "wfv" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -33857,6 +32288,15 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) +"wfX" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "wgu" = ( /obj/item/weapon/gun/revolver/cmb, /turf/open/auto_turf/ice/layer1, @@ -33883,22 +32323,55 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/outpost/platform) +"wjq" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/outpost/platform) "wjv" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) -"wjF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +"wkl" = ( +/obj/structure/platform_decoration/metal/strata/north, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landing_zones/lz1) "wkv" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east) +"wkU" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "wlj" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) +"wly" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"wlH" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) +"wmG" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi/drome) "wmX" = ( /obj/structure/sink{ pixel_y = 16 @@ -33908,9 +32381,26 @@ "wne" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/platform/east) +"wng" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/flight_control_exterior) "wni" = ( /turf/open/asphalt/cement/cement4, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"wnC" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/machinery/space_heater, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/south_outpost) +"wnZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 2; + name = "Security Barracks" + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/security) "wod" = ( /obj/item/tank/emergency_oxygen/engi, /turf/open/auto_turf/ice/layer1, @@ -33918,14 +32408,20 @@ "wol" = ( /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outside/bball) -"woP" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 +"woo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"woz" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"woU" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "wpE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -33935,14 +32431,23 @@ }, /turf/open/floor/strata/blue3/north, /area/strata/ag/interior/outpost/admin) -"wqm" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 4 +"wpW" = ( +/obj/structure/machinery/washing_machine, +/obj/item/facepaint/skull, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) +"wqy" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"wqN" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) "wrp" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/mining_outpost/flight_control) @@ -33956,13 +32461,10 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"wsh" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/outpost_decks) +"wrJ" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/spring_marshes) "wsi" = ( /obj/structure/morgue{ dir = 8 @@ -33986,6 +32488,19 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/spring_marshes) +"wss" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/floor/strata, +/area/strata/ag/interior/landing_zones/near_lz1) +"wsC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/fishfingers, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/mining_outpost/canteen) +"wsH" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/mining_outpost/south_dormitories) "wto" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 2; @@ -34026,12 +32541,10 @@ "wvW" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outside/checkpoints/west) -"wwO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) +"wwC" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/central) "wxU" = ( /obj/structure/bed{ icon_state = "abed" @@ -34045,6 +32558,12 @@ /obj/item/stack/sheet/wood, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/outpost_decks) +"wyv" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) "wyx" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -34104,6 +32623,10 @@ /obj/structure/fence, /turf/open/asphalt/cement/cement2, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"wDx" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata, +/area/strata/ag/interior/landing_zones/near_lz1) "wDF" = ( /obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood, @@ -34148,6 +32671,10 @@ "wGp" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/marsh/crash) +"wGP" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "wGS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -34159,9 +32686,17 @@ /obj/item/stack/sheet/wood, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outside/engineering/parts_storage_cave) +"wHS" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) "wHW" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/structures/monitoring/east) +"wIy" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/outpost_decks) "wJL" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southwest, @@ -34170,6 +32705,19 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/structures/monitoring/south) +"wKl" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/east) +"wKI" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/outpost_decks) +"wKO" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/crash) "wLj" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -34198,14 +32746,14 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/spring_marshes) -"wPp" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 1 +"wOg" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/gm/river, -/area/strata/ag/exterior/landing_zones/near_lz2) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "wPq" = ( /obj/structure/machinery/power/apc/no_power/south, /turf/open/floor/strata, @@ -34213,6 +32761,10 @@ "wPI" = ( /turf/open/asphalt/cement/cement9, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"wQu" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/caves/lz_caves) "wQx" = ( /obj/structure/machinery/light{ dir = 1 @@ -34223,20 +32775,36 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/structures/monitoring/south) -"wQU" = ( +"wRE" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) "wSb" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/spring_marshes) +"wSf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "wSu" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/tearlake) +"wTv" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform/metal/strata/east, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/underground_dorms/med2) +"wTE" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/marsh/crash) "wUa" = ( /obj/structure/surface/rack, /obj/effect/landmark/objective_landmark/medium, @@ -34246,13 +32814,10 @@ /obj/structure/machinery/light/small, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) -"wUR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) +"wUS" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) "wVf" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -34263,21 +32828,19 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/structures/research/hot_springs) +"wWe" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/south_dormitories) "wWx" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/central) -"wWK" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outside/engineering/parts_storage) "wWS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -34289,6 +32852,12 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin1) +"wXe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "wXm" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/south) @@ -34299,10 +32868,11 @@ "wXw" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/water_marshes) -"wXL" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/mining_outpost/south_dormitories) +"wYa" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/spring_marshes) "wYx" = ( /turf/open/floor/carpet, /area/strata/ag/interior/restricted) @@ -34312,6 +32882,12 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outside/engineering/parts_storage) +"wZj" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/security) "wZk" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/effect/landmark/monkey_spawn, @@ -34329,6 +32905,23 @@ /obj/structure/machinery/recharge_station, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) +"xaY" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"xbf" = ( +/obj/structure/barricade/deployable, +/obj/structure/machinery/m56d_hmg, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) +"xbt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/platform_decoration/metal/strata, +/obj/structure/machinery/light, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "xbT" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -34337,6 +32930,14 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/interior/outside/engineering/parts_storage) +"xcZ" = ( +/obj/structure/platform_decoration/metal/strata/north, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/wire{ + layer = 3.5 + }, +/turf/open/floor/greengrid, +/area/strata/ag/interior/outside/engineering/parts_storage) "xdr" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/caves/shed_five_caves) @@ -34357,12 +32958,6 @@ /obj/structure/closet/jcloset, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/engineering/parts_storage) -"xes" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outside/engineering/parts_storage_cave) "xeJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -34398,12 +32993,15 @@ "xje" = ( /turf/open/asphalt/cement/cement1, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) -"xjp" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/mining_outpost/south_dormitories) "xjr" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east) +"xjw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "xjH" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -34414,6 +33012,10 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/outpost/platform) +"xjX" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "xkj" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east) @@ -34423,9 +33025,14 @@ }, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"xlP" = ( -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) +"xlq" = ( +/obj/structure/platform/stone/strata/east, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/crash) +"xlF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "xlQ" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2 @@ -34439,6 +33046,11 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin1) +"xmN" = ( +/obj/structure/platform_decoration/stone/strata/west, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "xmR" = ( /obj/structure/machinery/photocopier, /turf/open/floor/strata/floor3/east, @@ -34447,24 +33059,22 @@ /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/caves/shed_five_caves) -"xnP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) +"xnL" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata, +/area/strata/ag/interior/landing_zones/near_lz1) "xnZ" = ( /obj/structure/surface/rack, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/outpost_decks) +"xop" = ( +/obj/item/stack/rods, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) "xoE" = ( /obj/structure/largecrate/random, /obj/structure/barricade/handrail/strata{ @@ -34489,6 +33099,10 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"xrs" = ( +/obj/item/stool, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "xrx" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -34514,6 +33128,13 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin3) +"xtV" = ( +/obj/structure/platform_decoration/stone/strata/north, +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "xuq" = ( /obj/item/trash/plate{ pixel_x = 1; @@ -34522,23 +33143,38 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/monitoring) -"xuE" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 +"xut" = ( +/obj/structure/platform_decoration/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/crash) +"xuD" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, -/turf/open/gm/river, -/area/strata/ag/exterior/outpost_decks) +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/landing_zones/near_lz1) "xuY" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/structures/monitoring/south) +"xvu" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/structures/ruin) "xvy" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi) +"xvV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen) "xwn" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, @@ -34548,6 +33184,13 @@ }, /turf/open/floor/strata/purp1, /area/strata/ug/interior/jungle/structures/monitoring) +"xwu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "xxa" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /obj/effect/landmark/monkey_spawn, @@ -34570,10 +33213,22 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/asphalt/cement/cement12, /area/strata/ag/interior/outside/engineering/parts_storage_exterior) +"xzq" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/barricade/handrail/strata{ + layer = 3.1 + }, +/obj/structure/platform/metal/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/outpost_decks) "xzL" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/bball/cave) +"xzP" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) "xzR" = ( /turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) @@ -34583,6 +33238,12 @@ }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/island_marshes) +"xAf" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) "xAp" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata/floor3/east, @@ -34594,6 +33255,24 @@ }, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) +"xAO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/outpost_decks) +"xBs" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"xBD" = ( +/obj/item/weapon/wirerod, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/strata/ag/interior/mining_outpost/central) +"xBG" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "xBN" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -34629,6 +33308,12 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/hive) +"xEl" = ( +/obj/structure/flora/grass/tallgrass/ice, +/obj/structure/platform/stone/strata/north, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "xEV" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, @@ -34680,21 +33365,18 @@ /obj/structure/machinery/landinglight/ds2/delaythree, /turf/open/asphalt/cement/cement12, /area/strata/ag/exterior/landing_zones/lz2) +"xGI" = ( +/obj/structure/flora/grass/tallgrass/ice, +/obj/structure/platform_decoration/stone/strata/north, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "xHw" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/med1) -"xHW" = ( -/obj/structure/platform/strata/metal, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/flight_control_exterior) "xId" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -34710,10 +33392,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/vanyard) -"xJr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/foyer) "xJD" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/core, @@ -34737,6 +33415,10 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) +"xKt" = ( +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/caves/shed_five_caves) "xKv" = ( /obj/structure/machinery/camera/autoname{ dir = 1 @@ -34750,16 +33432,14 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outside/engineering/parts_storage) -"xKy" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata{ - dir = 1 +"xKA" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/west, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/spring_marshes) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "xKC" = ( /obj/structure/machinery/light{ dir = 8 @@ -34772,17 +33452,15 @@ /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) -"xLd" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) "xLB" = ( /obj/effect/decal/cleanable/blood, /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/sec1) +"xLG" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/spring_marshes) "xLH" = ( /obj/structure/cryofeed/right, /turf/open/gm/river, @@ -34793,10 +33471,44 @@ }, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/structures/monitoring) +"xLK" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"xMq" = ( +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/mining_outpost_exterior) +"xME" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform_decoration/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) +"xMP" = ( +/obj/structure/platform_decoration/stone/strata, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/landing_zones/near_lz2) "xMR" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/marsh/river) +"xNE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/foyer) +"xNN" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/strata, +/area/strata/ag/interior/mining_outpost/central) "xOa" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/multi_tiles/southwest, @@ -34811,18 +33523,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) -"xOx" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) "xOL" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, @@ -34831,10 +33531,21 @@ /obj/structure/machinery/door/airlock/almayer/security/glass/colony, /turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outside/checkpoints/north) +"xPl" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/caves/shed_five_caves) "xPv" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/underground_dorms/admin2) +"xPz" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata/north, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) "xPT" = ( /obj/item/reagent_container/food/drinks/cans/cola, /turf/open/auto_turf/ice/layer1, @@ -34870,13 +33581,45 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/underground_dorms/sec1) +"xRA" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"xRP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "xRR" = ( /obj/structure/machinery/disposal, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) +"xSh" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/flora/grass/ice/brown/snowgrassbb_1, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/flight_control_exterior) +"xSq" = ( +/obj/structure/platform_decoration/stone/strata/north, +/obj/item/lightstick/red/planted, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/south_outpost) +"xSs" = ( +/obj/structure/platform/stone/strata/north, +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/paths/far_north_outpost) "xSJ" = ( /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/mining_outpost/canteen) +"xSL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "xTh" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -34906,13 +33649,10 @@ /obj/item/weapon/gun/pistol/t73, /turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/structures/monitoring) -"xVF" = ( -/obj/structure/platform/strata/metal, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/flight_control_exterior) +"xUY" = ( +/obj/item/device/aicard, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen) "xVQ" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 @@ -34929,19 +33669,48 @@ /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) +"xWQ" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"xXf" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/outpost_decks) "xXi" = ( /obj/effect/decal/cleanable/blood/gibs/body, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) +"xXj" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/flight_control_exterior) "xXo" = ( /obj/structure/barricade/wooden, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/south) +"xXX" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) +"xYk" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) "xYw" = ( /obj/item/clothing/mask/cigarette/cigar/cohiba, /turf/open/floor/strata, /area/strata/ag/exterior/outpost_decks) +"xYB" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "xZg" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/structure/flora/grass/tallgrass/jungle, @@ -34953,28 +33722,69 @@ }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outside/engineering/parts_storage) +"xZC" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen) +"xZF" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) "yah" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outside/bball) -"yaC" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "ybh" = ( /obj/structure/surface/rack, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/mining_outpost/central) +"ybw" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen) "ybN" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outside/checkpoints/outpost) +"ybR" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) +"ybS" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/strata/ug/interior/jungle/structures/research/old_tunnels) "yca" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/structures/monitoring) +"ycw" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"ycZ" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/spring_marshes) "yde" = ( /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/strata, @@ -34995,12 +33805,6 @@ "ydJ" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outside/checkpoints/west) -"ydR" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/mining_outpost/central) "ydV" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" @@ -35013,9 +33817,34 @@ }, /turf/open/asphalt/cement/cement4, /area/strata/ag/exterior/landing_zones/lz2) +"yeK" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/mining_outpost/south_dormitories) +"yfx" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "yfI" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/relay_marshes) +"yfQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"ygo" = ( +/obj/structure/platform/metal/strata/north, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/strata/ug/interior/jungle/structures/monitoring) "ygq" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/underground_dorms/admin2) @@ -35024,12 +33853,6 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/floor3, /area/strata/ag/interior/mining_outpost/flight_control) -"ygB" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) "yhJ" = ( /obj/structure/largecrate/random, /turf/open/floor/strata/floor3/east, @@ -35045,6 +33868,26 @@ /obj/structure/flora/pottedplant/random, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/tearlake) +"yjl" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/platform_decoration/metal/strata/north, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/platform/east) +"yju" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/landing_zones/near_lz2) +"yjA" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/strata, +/turf/open/asphalt/cement, +/area/strata/ag/exterior/paths/mining_outpost_exterior) "yjG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -35057,6 +33900,11 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/caves/shed_five_caves) +"ykM" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/cryofeed/right, +/turf/open/gm/river, +/area/strata/ag/interior/outside/engineering/parts_storage) "ykU" = ( /obj/structure/closet/bodybag, /turf/open/floor/strata/cyan3/east, @@ -35471,7 +34319,7 @@ wrp wrp wrp wrp -alA +tYg cqE ang aoj @@ -35646,7 +34494,7 @@ coO coO ako coS -cpR +doZ cqE anh aok @@ -35665,27 +34513,27 @@ ctI azy ctI ctI -aGX -aIg -aIg -aIg -aIg -aIg -aIg -aIg -aIg -aSG -aUo -aVW -aXv +wkl +iWY +iWY +iWY +iWY +iWY +iWY +iWY +iWY +vMY +vqA +fWM +moS aIf -bbX -aVW -aVW -aVW -aVW -aVW -aVW +xuD +fWM +fWM +fWM +fWM +fWM +fWM nog bAe bAe @@ -35700,9 +34548,9 @@ aac aac aac cmg -ixu -cNg -hto +fax +tDw +olo fkG aac aac @@ -35720,8 +34568,8 @@ aac aac aac jXQ -bjv -qfi +eKB +jsx gUP aac aac @@ -35821,7 +34669,7 @@ cjb coP coV coS -cpR +doZ cqE cnv crb @@ -35852,9 +34700,9 @@ apc cmA cnv cqE -cot -aZS -bce +cPK +wDx +xnL beJ cqE cqE @@ -35875,7 +34723,7 @@ bET bET aac cmg -xOx +lyI crN crN bhJ @@ -35996,7 +34844,7 @@ cof cjb akp coS -cpR +doZ cqE cnv crb @@ -36030,10 +34878,10 @@ cqE cqE cqE cqE -beK -bhp -bhp -bnb +wss +rrN +rrN +eXc cqE aoj nog @@ -36045,8 +34893,8 @@ aac aac aac cmg -trz -nla +fDw +ksX crN aac nTS @@ -36088,7 +34936,7 @@ aac aac aac aac -aKv +qAX acX acX acX @@ -36171,7 +35019,7 @@ cjb coP akq coS -cpR +doZ cqE cnv crb @@ -36205,10 +35053,10 @@ cqE aQv aQv cqE -acY +cPG aQv aQv -bck +ozg cqE aoj aoj @@ -36220,8 +35068,8 @@ aac aac aac cmg -tru -laM +gzM +xYk crN bjN bjN @@ -36263,7 +35111,7 @@ aac aac aac aac -bCd +sxe acX acX acX @@ -36290,11 +35138,11 @@ aac bVx bVx bVx -jrU -bAI -bAI -bAI -bAI +lFZ +tAi +tAi +tAi +tAi aac aab "} @@ -36346,7 +35194,7 @@ coO coO coV coS -cpR +doZ cqE cnv crb @@ -36380,10 +35228,10 @@ cqE aQv aQv cqE -acY +cPG aQv aQv -bck +ozg beJ aST cqE @@ -36418,10 +35266,10 @@ bhN bhN bhN bhN -bqM -brE -brE -bsQ +fzl +xlq +xlq +xut bgS bgS bgS @@ -36438,13 +35286,13 @@ uxf bzV hms rUb -bCd +sxe acX -bdM -bcr -bcr -bcr -bDE +nfV +vQM +vQM +vQM +vxC bko acX acX @@ -36462,10 +35310,10 @@ aac aac aac bVx -jrU -bAI -bAI -aNz +lFZ +tAi +tAi +oGQ uvZ uvZ uvZ @@ -36521,7 +35369,7 @@ coS coS wrp wrp -alB +gbI amq ani crb @@ -36555,10 +35403,10 @@ cqE cqE cqE cqE -cot -aXw -aXw -bce +cPK +aXj +aXj +xnL cqE aST cqE @@ -36593,11 +35441,11 @@ bhN qvy bhN bgS -bif +ibP aac fCI -bsR -bjE +lJD +wKO bgS bgS bgS @@ -36613,14 +35461,14 @@ uxf qPu wXw wXw -jbI -bDE -hGO +ksV +vxC +tnp wXw wXw wXw -jbI -bDE +ksV +vxC bko acX acX @@ -36636,8 +35484,8 @@ aac bVx bVx bVx -jrU -aNz +lFZ +oGQ uvZ uvZ uvZ @@ -36768,11 +35616,11 @@ bgS bhN bgS bgS -bif +ibP fCI bgS fCI -bkd +sRV bgS bgS bgS @@ -36789,13 +35637,13 @@ wXw wXw uhM wXw -jbI -bEh +ksV +klv wXw qPu wXw oaV -bCd +sxe bko acX acX @@ -36807,11 +35655,11 @@ acX acX uvZ uvZ -aSj -bAI -bAI -bAI -aNz +vUP +tAi +tAi +tAi +oGQ uvZ uvZ uvZ @@ -36901,10 +35749,10 @@ crE fuA aSH coX -aVX -pfQ -pfQ -bcf +vKS +eDO +eDO +tyZ cqM cqM cqM @@ -36943,11 +35791,11 @@ bgS bgS bgS bhN -bqN -brF +pZZ +vRO xzR wGp -bkd +sRV bgS bgS bgS @@ -36970,7 +35818,7 @@ dqi wXw stw wXw -bCd +sxe acX bko acX @@ -37076,10 +35924,10 @@ crE dnS cmA cnv -acY +cPG aQv aQv -bck +ozg cqE aQv aQv @@ -37119,10 +35967,10 @@ bgS bgS bhN bgS -brH -bsa -bsT -bsZ +rTA +wTE +kBo +ttk bgS bgS fCI @@ -37139,13 +35987,13 @@ wXw uhM wXw uhM -bAu -dDW +kuc +ezj wXw dqi wXw wXw -bCd +sxe acX bko acX @@ -37221,7 +36069,7 @@ coS coS wrp wrp -cve +elD cqE cnv crb @@ -37251,10 +36099,10 @@ crE aRz cmA cnv -acY +cPG aQv aQv -bck +ozg beJ aQv aQv @@ -37313,14 +36161,14 @@ buG wXw uhM wXw -dvf -pWp -mde -bGg +neE +dsS +lUF +tDU wXw wXw -bAu -bwg +kuc +vmo acX bko acX @@ -37338,13 +36186,13 @@ aac aac aac aac -aTv -aTv -aTv -aTv -aTv -aTv -aTv +cOk +cOk +cOk +cOk +cOk +cOk +cOk aac aab "} @@ -37396,7 +36244,7 @@ coO coU cpq coS -cpR +doZ cqE cnv crb @@ -37426,10 +36274,10 @@ crE crW cmA cnv -cot -aXw -aXw -bce +cPK +aXj +aXj +xnL cqE cqE cqE @@ -37483,18 +36331,18 @@ bhO bgS buS wXw -aKu +pTP aac uhM wXw qPu wXw -mip -bcr -sEG -hkA -hkA -bwg +fOY +vQM +jhI +oUt +oUt +vmo acX acX acX @@ -37503,8 +36351,8 @@ acX acX bko acX -bdM -aRj +nfV +krT aac aac aac @@ -37571,7 +36419,7 @@ cjb cjb coV coS -cpR +doZ cqE cnv crb @@ -37658,7 +36506,7 @@ bgS bhO bgS wXw -hqw +mte aac uhM uhM @@ -37666,8 +36514,8 @@ wXw qPu wXw wXw -jbI -bDE +ksV +vxC acX acX acX @@ -37677,8 +36525,8 @@ kLZ bko bko acX -bdM -bEh +nfV +klv aac aac aac @@ -37746,7 +36594,7 @@ cof cjb cpE coS -cpR +doZ cqE cnv crb @@ -37787,8 +36635,8 @@ nog nog nog nog -axv -ccI +lot +kKx bAe caX aZv @@ -37842,17 +36690,17 @@ wXw uhM dqi wXw -jbI -bDE +ksV +vxC acX bko bko bko acX acX -bdM -bcr -bEh +nfV +vQM +klv cwS aac aac @@ -37921,7 +36769,7 @@ cjb coP akq coS -cpR +doZ cqE cnv crb @@ -37963,8 +36811,8 @@ aac aac aac aoQ -bEV -ccI +dTI +kKx bAe bIH bjj @@ -38018,14 +36866,14 @@ wXw uhM dqi wXw -bCd +sxe acX bko acX acX bko acX -hGO +tnp kvD eHo xAc @@ -38096,7 +36944,7 @@ coO coO coV coS -cpR +doZ cqE cnv crt @@ -38129,18 +36977,18 @@ cnv aoj aXy aUt -cqG -bbA -bbA -bjA -bne +oRg +uns +uns +xtV +jar brb bwL bwL bAv bnm -bEV -ccI +dTI +kKx bAe bIH aVq @@ -38193,14 +37041,14 @@ uhM wXw uhM wXw -jbI -bcr -bDE +ksV +vQM +vxC acX acX acX -bdM -bEh +nfV +klv cwS mvD cTQ @@ -38271,7 +37119,7 @@ ajg wrp wrp wrp -cqu +sXz cqE coX aol @@ -38304,7 +37152,7 @@ aUq aoj aXy aUt -bhK +skm ahA ahA amK @@ -38321,7 +37169,7 @@ bbh aVq aZx aZx -bdB +poG crN crN aVq @@ -38370,11 +37218,11 @@ wXw aac aac aac -aRi +rdL acX acX -bdM -bEh +nfV +klv cwS xAc cTQ @@ -38444,7 +37292,7 @@ ahs sIZ sIZ akV -akr +ecB tSZ alC cqE @@ -38479,7 +37327,7 @@ aUr aUr azx aUt -bhK +skm ahA ahA bnm @@ -38496,8 +37344,8 @@ bbh aVq aZx aVq -bdC -bdS +vUM +cTE lZf aVq bjN @@ -38548,7 +37396,7 @@ aac acX acX acX -hGO +tnp aac aac cTQ @@ -38619,7 +37467,7 @@ ahs sIZ cry akV -aks +sFp tSZ alC cqE @@ -38654,10 +37502,10 @@ aUs aVY lEi cfi -bhK -ahB -aiP -aiP +skm +dNg +vDU +vDU aac aac aac @@ -38672,7 +37520,7 @@ aVq aZx aVq aZx -bdT +ivW bjj crN aVq @@ -38826,11 +37674,11 @@ aQv cnv aSQ aUt -agA -apA -apA -bhX -aZW +vBG +nFT +nFT +qDM +iTW crN bjB bnn @@ -38847,8 +37695,8 @@ aZx bcv bcK aZx -bdC -bek +vUM +olk bjj crN aVq @@ -39001,11 +37849,11 @@ aQv aRA azx aUt -cou +vIZ bnm -ahB -aiP -ajw +dNg +vDU +uFt crN bjj aZv @@ -39023,8 +37871,8 @@ bbZ bcO bcK aZx -bdC -bek +vUM +olk lZf bgk bgS @@ -39076,13 +37924,13 @@ aac aac aac aac -gIY -gIY -gIY -urQ +tEq +tEq +tEq +scZ rNI -lVF -gIY +sRw +tEq aac aac aac @@ -39140,7 +37988,7 @@ cnO bjY xDX cnO -cmB +rCl coY xDX bjY @@ -39176,9 +38024,9 @@ aQv cnv azx aac -cou +vIZ bnm -aZW +iTW crN crN aVq @@ -39199,7 +38047,7 @@ bcO bcO bcK aZx -bdT +ivW crN tFA tFA @@ -39254,10 +38102,10 @@ aac bNj bNj bNj -cFg +pcD rNI -gtZ -gTx +pJr +iAQ bNj bNj bNj @@ -39315,7 +38163,7 @@ cLE qKU agB cnO -cmB +rCl aiB ajj ntw @@ -39351,9 +38199,9 @@ aQw ani aac aac -cou +vIZ bnm -aZW +iTW crN aWf crN @@ -39374,8 +38222,8 @@ bcO bcO bcs aZx -bdC -bfl +vUM +phP sGb tAX sGb @@ -39428,11 +38276,11 @@ aac aac bNj bNj -ksA -psl +rJu +sop bwt rNI -pKq +mRS bNj bNj bNj @@ -39497,8 +38345,8 @@ ajM coZ akW bSJ -fHp -ank +hjW +wwC aCE app apY @@ -39506,8 +38354,8 @@ aCE arW arW aun -fHp -awG +hjW +otL ayk arW arW @@ -39521,7 +38369,7 @@ chq aMB aJP ctC -iGm +iKd aPh pWz aSR @@ -39550,9 +38398,9 @@ bcO bcs aVq tFA -bfo -bgl -bdW +vhz +rus +gUM wSb sGb sGb @@ -39601,19 +38449,19 @@ xxS rNI aac aac -qYF -qYF -pqy +akJ +akJ +gqJ rNI xTU bwt -gtZ -qYF -qYF -gTx +pJr +akJ +akJ +iAQ bNj bNj -cFg +pcD iLr aac aac @@ -39665,15 +38513,15 @@ cnO cEu rRx cnO -vXN +oSC kRb cnO qKU exO ddp crY -dNB -dLx +bEo +qaq ctC eOI apZ @@ -39696,10 +38544,10 @@ aIn aLf aMB aNJ -xjp +qax aPh clW -aSS +gyo ctx cty xMR @@ -39729,7 +38577,7 @@ tFA wSb tFA tFA -bih +dqZ sGb tAX sGb @@ -39752,8 +38600,8 @@ aac bur coC rGp -kHV -luA +kOo +pAF aac aac aac @@ -39785,10 +38633,10 @@ rNI rNI rNI rNI -gtZ -gTx +pJr +iAQ bNj -cFg +pcD iLr rNI byn @@ -39840,7 +38688,7 @@ cnO aiE agD crz -vXN +oSC bHD exO kRb @@ -39848,7 +38696,7 @@ cnO ddp bXW bWy -dLx +qaq ctC afW aFO @@ -39857,7 +38705,7 @@ arY arY caE bWy -awI +ckl caE arY cto @@ -39874,7 +38722,7 @@ fno ckX aPh cov -miI +pFV spJ cty cty @@ -39904,7 +38752,7 @@ tFA wSb tFA tFA -bin +wbr sGb sGb sGb @@ -39927,7 +38775,7 @@ aac aac stF aUX -woP +jER pqH aac aac @@ -39952,18 +38800,18 @@ rNI rNI xxS rNI -lVF -gIY -mPz +sRw +tEq +bJv rNI -lVF -gIY -mPz +sRw +tEq +bJv rNI rNI -pKq +mRS bNj -cFg +pcD iLr xxS byo @@ -40022,8 +38870,8 @@ jPT cnO ddp alG -hgN -anm +jSp +nZU ctC afW aqa @@ -40047,7 +38895,7 @@ bWy aMB cjv ckX -lmF +cZd aRD aSR aUv @@ -40079,9 +38927,9 @@ tFA tFA wSb wSb -big -bdG -bjG +smV +vlu +wYa sGb sGb djr @@ -40098,7 +38946,7 @@ bnj bur bnj coC -woP +jER aac aac aac @@ -40127,18 +38975,18 @@ aac rNI rNI rNI -pKq +mRS bNj -cFg +pcD rNI -pKq +mRS bNj -jAo -urQ +tAH +scZ rNI -gtZ -qYF -pqy +pJr +akJ +gqJ rNI rNI byp @@ -40198,7 +39046,7 @@ ddp ddp bXW bWy -dLx +qaq ctC afW aFO @@ -40226,9 +39074,9 @@ aPh cov aac aac -aWk +nLZ bnm -aZW +iTW bjj aWg crN @@ -40256,24 +39104,24 @@ wSb wSb mne rni -bjH -bjG +cVW +wYa sGb sGb gWg sGb sGb -hhW +cro fCD aac aac aac aac -brJ -bsc +heA +wfm coC oqQ -woP +jER aac aac bur @@ -40295,21 +39143,21 @@ wXw wXw wXw qPu -fjZ -eHv -eHv +aXl +lKA +lKA aac aac -gIY -gIY -kxF -ksA -psl +tEq +tEq +lDd +rJu +sop xxS -pKq +mRS bNj bNj -cFg +pcD xxS rNI rNI @@ -40373,7 +39221,7 @@ ajQ ddp crY bWy -bCh +fCF ctC ctC emU @@ -40381,7 +39229,7 @@ ctC ctC ctC jqg -avr +xBD bWy bPs azC @@ -40396,14 +39244,14 @@ aJQ aLh aMB cjv -xjp +qax aPh clW cnB aac -aWk +nLZ bnm -aZW +iTW crN aVq crN @@ -40432,23 +39280,23 @@ wSb tFA rni kim -bis +nql sGb sGb sGb sGb -sXU -xKy -bRb +ybR +pjH +dPu aac aac aac bnj coC -bsd +ttd rGp -kHV -luA +kOo +pAF aac bur buf @@ -40478,17 +39326,17 @@ aac bNj bNj bNj -cFg +pcD rNI rNI -pKq +mRS bNj bNj -cFg +pcD rNI -lVF -gIY -mPz +sRw +tEq +bJv rNI xxS xxS @@ -40547,8 +39395,8 @@ brG bIL akW bSJ -fHp -anm +hjW +nZU bUM ctC aFO @@ -40571,7 +39419,7 @@ ceq aLi aMD crY -iGm +iKd aPh cov cjw @@ -40604,15 +39452,15 @@ tFA wSb wSb tFA -biq -bhP -bjI -big -bkl +xLG +tDH +qRl +smV +hVY cJy lQu sGb -oSP +scA wGS kYe aac @@ -40620,9 +39468,9 @@ aac aac bnj rGp -bsd +ttd coC -jsP +gcc aac aac bur @@ -40653,18 +39501,18 @@ aac bNj bNj bNj -cFg +pcD rNI rNI -pKq +mRS bNj bNj -pqy +gqJ rNI -pKq +mRS bNj -jAo -mPz +tAH +bJv rNI rNI rNI @@ -40723,7 +39571,7 @@ akt ddp fno bWy -dLx +qaq bXW ctC aFO @@ -40732,20 +39580,20 @@ iqD ctC auq cbj -pgW +qGi bWy cbj bWy bWy -aDG -ify +rvj +oIJ bZV bPs -aIo +klD bPs bPs -ify -aDG +oIJ +rvj ckX ckX cov @@ -40779,15 +39627,15 @@ wSb wSb wSb tFA -bis +nql cDL -bjJ -biP -dbg +grL +mgV +hNP aac xeJ sGb -oSP +scA nka aac aac @@ -40795,7 +39643,7 @@ aac aac bqP cJf -bsd +ttd coC bta aac @@ -40836,12 +39684,12 @@ aac aac iLr iLr -gtZ -gTx +pJr +iAQ bNj -jAo -gIY -mPz +tAH +tEq +bJv rNI rNI bvE @@ -40897,8 +39745,8 @@ ddp ddp ddp crY -dNB -tky +bEo +vXx aoo aHa aqc @@ -40906,24 +39754,24 @@ fno dVh ctC ctF -avs -pYG -kUN -qnh -aBl -aCG -aDH -ceu -ceV -igm -gCJ -aJS -aLj -aDH -aDH -aPa -aPa -aRF +cGV +lgj +xNN +jIn +qeO +frn +dcZ +bkR +giU +cGu +obt +lSk +vTG +dcZ +dcZ +oCD +oCD +gjD ckX cnA aWl @@ -40945,19 +39793,19 @@ baJ aYd usP aXP -bcU -bdN -bdX +wQu +wUS +mFz wSb tFA wSb wSb tFA tFA -bin +wbr sGb dMw -cuy +tad sGb aac aac @@ -40970,7 +39818,7 @@ aac aac bqQ brK -bse +stb bme btb btk @@ -41016,8 +39864,8 @@ aac bNj bNj bNj -jAo -urQ +tAH +scZ rNI bvE aac @@ -41073,7 +39921,7 @@ bRs bRs jOl bOs -ano +qjL crY crY aFO @@ -41081,7 +39929,7 @@ afW pAR ctC ctC -avt +mBC bZV aCl pYZ @@ -41096,10 +39944,10 @@ aJT aMB oOX ctC -aPb +ibC ckX cov -aSV +gUB cnB bXd aXB @@ -41122,17 +39970,17 @@ aXP aXP usP aYd -bdZ +tFe tFA tFA wSb wSb tFA tFA -bit +tuL sGb lrO -rrV +gmG sGb pax aac @@ -41171,7 +40019,7 @@ bvC xxS rNI rNI -bwm +qIG bvD bvD bvD @@ -41189,10 +40037,10 @@ bxo rNI aac aac -qYF -qYF -qYF -pqy +akJ +akJ +akJ +gqJ rNI bvE aac @@ -41256,7 +40104,7 @@ aeM aeM aeM aCE -avu +qFZ sJd cew azG @@ -41297,18 +40145,18 @@ aXP aXP usP bWa -bdV +mtq tFA tFA wSb wSb tFA wSb -biu +rHV sGb nSQ -nAM -fRi +hKf +mZh hpe aac aac @@ -41346,7 +40194,7 @@ rNI rNI rNI bvE -bwZ +sSs bvM bvD bvD @@ -41420,36 +40268,36 @@ ddp ajn hCp xSJ -akX -akX +egf +egf xSJ -aQX +sUY crY eOI bKb lMC -jIv -ydR +sys +tDV ctC bWy -awK +mAj cew azH aBo aCI aDJ crY -aLM -aNe -aNe -aOX -aPn +vyL +sNq +sNq +rPH +pjm aKm cwd aPe aQx -aRG -aSW +pvc +mul cnB cjw cjw @@ -41464,7 +40312,7 @@ usP aYd usP usP -aZA +hlZ aXO usP aXP @@ -41472,18 +40320,18 @@ aXP usP usP bWa -bdV +mtq tFA tFA wSb wSb wSb wSb -bin +wbr sGb sGb sGb -cuy +tad qUB aac aac @@ -41521,7 +40369,7 @@ rNI hPr bvE aac -bwZ +sSs bvD bvD aac @@ -41594,16 +40442,16 @@ ddp ddp jOl bQs -aku -akY -alI +qlx +sJP +emX xSJ bUs aHa afW wWx afW -asb +tdG jfh bYE cbj @@ -41614,12 +40462,12 @@ oXH aCK cdK crY -aMV +aHE aNj aNm aOY xOL -aPT +uEt aNL aPh cjw @@ -41639,26 +40487,26 @@ aYX usP aXP aXP -aZB +rWc usP aXP aXP usP usP bWa -bcV -bdW +ogB +gUM tFA rni tFA wSb wSb wSb -big -biN +smV +jpY gWg sGb -bkm +qoh tFA aac aac @@ -41696,7 +40544,7 @@ bvE bvE aac aac -bwZ +sSs bvM bvD aac @@ -41769,11 +40617,11 @@ ahT agJ ajo pDJ -akv -alJ -alJ -ams -bUt +cuw +oRS +oRS +rMx +lRD ctC ctC ctC @@ -41781,25 +40629,25 @@ afg ctC ctC ctC -uSI -awL +lLw +hjd ctC ctC crY crY crY aCl -kwU +gwY aNl aNo aNl aOY -tNr +lck cjw aPi cwd cov -cmC +oWK cnB bXd aXE @@ -41814,14 +40662,14 @@ aYX usP usP aXO -aZC -baf +ing +vmk aXP aXP usP bWa -bcV -euc +ogB +hLX rni tFA rni @@ -41830,10 +40678,10 @@ wSb wSb wSb tFA -bis +nql sGb sGb -bkn +jkT tcN tcN aac @@ -41867,11 +40715,11 @@ bvD bvE bvD bvD -bvR -bvZ -bwT -bvZ -bxa +gsQ +uvp +grK +uvp +bXI bvD bvD bvD @@ -41946,7 +40794,7 @@ ajp qUW ahU xSJ -akX +egf xSJ bUs ctB @@ -41964,17 +40812,17 @@ ciA aCL ciB abL -aMG +qsu aNm aNo dXc aNl -aPX +qyq cjx cjw cnB -aRI -cmD +tJg +uIn cnC aLq aXF @@ -41990,12 +40838,12 @@ aYd juL aYd ckZ -aZA +hlZ aXP usP usP ckZ -cuy +tad sGb sGb lOJ @@ -42005,10 +40853,10 @@ tcN wSb wSb tcN -big -biN +smV +jpY cDL -bdZ +tFe tFA tFA aac @@ -42018,8 +40866,8 @@ coC emv aac aac -wqm -iIz +hAq +qxp rbO ftr btc @@ -42108,8 +40956,8 @@ aac aac aac aac -bAu -hkA +kuc +oUt bHt afI xdE @@ -42119,37 +40967,37 @@ ahU dQi vjD qUW -aIi -ala -bMZ +coQ +wsC +vtJ xSJ -bUu -uML -fHp -fHp -fHp -tio -fHp -aus +tpo +nwN +hjW +hjW +hjW +pmV +hjW +sOU aEI -vHI -ayn +qSC +eXb aNJ ciA ciA -aDK -aLy -aMH +rCQ +uuQ +nYV aNo aNo aNo aNl -aQa +mSH vnh aPk ckX -aRJ -cmE +skh +uCH cnB cjw cjw @@ -42165,12 +41013,12 @@ aYd tUu aYd bWa -aZB +rWc aXP aXP aYd bWa -isd +nAz sGb sGb fCD @@ -42181,9 +41029,9 @@ wSb wSb wSb tFA -bjK -bke -bdW +lzB +stX +gUM tFA wSb bme @@ -42194,8 +41042,8 @@ rbO qxD aac aUX -iJJ -nCD +gmA +gWG rbO nSJ bnh @@ -42282,8 +41130,8 @@ aac aac aac aac -bAu -bwg +kuc +vmo acX bHt afJ @@ -42295,11 +41143,11 @@ aiF vjD qUW xSJ -alb -alb +nnO +nnO xSJ bUs -myV +bLw bWy bWy bWy @@ -42312,18 +41160,18 @@ bPs fno ciA ciA -aDL -aLz -aMI +sem +pJo +oKj aNo aNo aNo aNo -aOB +nJI vnh aPk ckX -aRK +iaB ckX cnA clU @@ -42338,9 +41186,9 @@ brn aYZ usP aYd -aZo -aZI -bah +ohf +isx +jQj aXP usP aZc @@ -42369,9 +41217,9 @@ bme bnj bqA nSJ -jsP -gjN -qtn +gcc +unP +lbm rGp coC bur @@ -42456,8 +41304,8 @@ aac aac aac aac -bAu -bwg +kuc +vmo acX acX bHt @@ -42470,9 +41318,9 @@ xSJ ajr qUW xSJ -akX +egf xSJ -amt +mgM bUs ctB bXW @@ -42481,7 +41329,7 @@ cbj aqf bXW ctC -dNB +bEo bZV aym ctC @@ -42489,17 +41337,17 @@ ciA bwj aDM aEP -aMG +qsu aNo -aNq -aOZ -aPr -aOB +rzy +qPN +xaY +nJI cnB cjw aQy -aRK -aSV +iaB +gUB cnB coy aXB @@ -42545,7 +41393,7 @@ bme bnj bnh coC -tSt +ssb mvE aUX coC @@ -42559,7 +41407,7 @@ bnj coC rbO nSJ -wPp +lpB xTU rNI xTU @@ -42631,7 +41479,7 @@ aac aac aac aac -bCd +sxe acX acX acX @@ -42645,8 +41493,8 @@ aiG bPv qUW xSJ -alc -alK +vNl +eNO xSJ anq aCl @@ -42656,24 +41504,24 @@ crY crY crY crY -uSI -awL +lLw +hjd ctC aHb aBq ctC ciA aER -aMJ +cXN aNo -aNB +xMq aJX -aMJ -aNB +cXN +xMq aOt cnA aQz -aRK +iaB ckX cnC aWn @@ -42732,9 +41580,9 @@ ble ble btd coC -mjp -fMP -fNs +qNX +nvH +nLW hPr rNI bvE @@ -42806,7 +41654,7 @@ aac aac aac aac -bCd +sxe acX acX acX @@ -42820,8 +41668,8 @@ aiH jOl bQv xSJ -alb -alb +nnO +nnO xSJ bUs axK @@ -42839,17 +41687,17 @@ yis ctC aDN aER -aMJ +cXN aNo -aPX +qyq aJY -aLo -aMK +jUy +yjA cjy cnA ckY -aRK -wXL +iaB +njL cnB cjw cjw @@ -42908,8 +41756,8 @@ ble bme coC tAX -nun -psl +eCS +sop rNI rNI xTU @@ -42981,7 +41829,7 @@ aac aac aac aac -bCd +sxe acX acX acX @@ -43014,16 +41862,16 @@ aBs ctC aDO aER -aMG +qsu aNo -aNU +ezz cjy ciA ciA ciA aQu aQA -aRK +iaB ckX cnA whO @@ -43156,8 +42004,8 @@ aac aac aac aac -jbI -bDE +ksV +vxC acX acX bHt @@ -43189,17 +42037,17 @@ aBt ctC aDO aER -aMV +aHE aNo -aNB +xMq cjy ciA ciA aNM cnA ckY -aRK -aSV +iaB +gUB cnB bXd aXE @@ -43332,8 +42180,8 @@ aac aac aac aac -jbI -bDE +ksV +vxC acX bHt bID @@ -43364,16 +42212,16 @@ ctC ctC afP aER -aMS +lmL aNo -aNB +xMq cjy ciA ciA aNN cnA aQD -aRK +iaB ckX cnC aLq @@ -43416,8 +42264,8 @@ bnj bnN coC coC -bFi -vox +xPz +fKi aUX bur bur @@ -43429,8 +42277,8 @@ bme bme aac aac -buD -biP +tOi +mgV wSb rni tFA @@ -43508,8 +42356,8 @@ aac aac aac aac -jbI -bcr +ksV +vQM bUd bID xdE @@ -43527,7 +42375,7 @@ aqi brS jOl bWi -arj +sXs ash atw ctC @@ -43539,12 +42387,12 @@ aBu ctB oLv aER -aMT +vAw aNo -suF +moM cnB -aLp -cjz +wsH +vcS cjw cnB aQF @@ -43590,22 +42438,22 @@ bAS bnj coC coC -gVJ -guz -tyD +tKx +mty +jiw ftr aUX bur ble ble -btl +bVu aac aac aac aac sGb sGb -buK +uLF tFA wSb wSb @@ -43702,7 +42550,7 @@ aqA aky jOl aqh -arj +sXs ash atx ctC @@ -43714,16 +42562,16 @@ aBv ctB ciA aER -aMU +dlb aNo -aOz +mUS vnh ckX ckX -aNO -aPl -aPa -aRF +pfu +wWe +oCD +gjD aLq cjw aac @@ -43764,8 +42612,8 @@ ble bme bDl coC -iqV -jMD +mSp +aTu mvE cfF boE @@ -43773,14 +42621,14 @@ nSJ bur ble ble -btm +tBi sGb sGb sGb sGb gWg sGb -buK +uLF wSb tFA rni @@ -43877,7 +42725,7 @@ aqT brS jOl crY -pIy +sDh bXf bXZ aCE @@ -43889,17 +42737,17 @@ aBw ctB ciA aER -aMS +lmL aNo -aOB +nJI vnh aLq -aML +tTu aLq ckX ckX cov -aSY +yeK cjw aac aac @@ -43948,14 +42796,14 @@ bur ble ble bnj -btn +okW sGb gWg gWg gWg sGb sGb -buK +uLF wSb rni tFA @@ -44064,9 +42912,9 @@ aHf ctC oLv aER -aMS +lmL aNo -aPX +qyq aKa aLr cjw @@ -44101,7 +42949,7 @@ xPg lqX mvm eYE -bgr +fYk rJr tFA wSb @@ -44127,10 +42975,10 @@ aac aac sGb aac -jUS -rQX -bdG -buM +ieu +rTR +vlu +pAr tFA tFA mQW @@ -44239,9 +43087,9 @@ ciA aES aDP aER -aMV +aHE aNo -aOB +nJI cjw aLs aMM @@ -44276,7 +43124,7 @@ cwF lNr eYE qjD -bgs +knu rni tFA wSb @@ -44414,9 +43262,9 @@ aBx aCM ciB aEM -aMG +qsu aNo -aOE +hNm cjw aLt aMN @@ -44583,15 +43431,15 @@ aHq xdE avG awP -aHy -aQg -aIH -fIq -fIq -mPh -aYh +aRP +hVx +rYp +rqH +rqH +onF +oaW aZP -aOF +vvs cnB cjw cjw @@ -44626,7 +43474,7 @@ cwF lPk eYE qjD -bgs +knu rni tFA wSb @@ -44667,22 +43515,22 @@ bvD xTU bwt bwt -bwB -bwO -bwW -bwX +pFm +rTL +ezG +dAs bvE bvD bvD bvD bvD bvM -bxD -bxQ -bwW -bwW -bwW -bwm +xMP +rdt +ezG +ezG +ezG +qIG bvE bvD bvD @@ -44757,8 +43605,8 @@ xdE xdE auv xIM -awQ -aHB +gcq +iJi bch aTe bch @@ -44766,7 +43614,7 @@ bch bcB bcB bcB -xVF +owH aKb aLv aMO @@ -44801,7 +43649,7 @@ rwg lQT mvm bUX -bgu +jRs hoG tFA wSb @@ -44827,7 +43675,7 @@ aac aac wyV cpX -lOT +ycZ sGb wSb kjD @@ -44842,29 +43690,29 @@ bvE bwb jLc bwt -bwC +fHa rNI bvE -bwY -bwX +ufk +dAs bvD bvD bvD bvD xTU -bwD +dca aac rNI bvE aac -bya +iTu bvE bvE bvD -bww -bwO -bwO -bwX +lrL +rTL +rTL +dAs bwt bwt aac @@ -44933,7 +43781,7 @@ aac xdE ciB awR -aHC +mtL aZK aZK aZP @@ -44941,7 +43789,7 @@ aZP bbj bbj aZP -jwv +sfZ aKc afz afz @@ -44971,12 +43819,12 @@ aZP bdw aZK bcW -bdO +trg iym lXd lXd qkU -bgu +jRs rni wSb wSb @@ -45001,8 +43849,8 @@ aac aac aac xeJ -sXF -psV +kRH +xME sGb tAX bgx @@ -45017,29 +43865,29 @@ xFH aac bwt bwt -bwD +dca aac hPr bvE -bwZ +sSs bvD bvD bvD bvD -bxz -bxG +pDa +hcz rNI hPr rNI -bxZ -byb +rkU +gEN bwt bvD -bww -byf +lrL +pBW rNI aac -bwr +jsc bvD bvE aac @@ -45108,7 +43956,7 @@ aac aac aac aac -aHS +rZr bbj aZP aZP @@ -45116,13 +43964,13 @@ aKV aac aac aZK -dGU -aPc -auM -iTY -aQh -aQn -aQH +lAq +sMf +llJ +dtN +jfD +dWj +cjo ozr bcB bcB @@ -45146,12 +43994,12 @@ aZP bdw aZK aZK -bdP -fIq -vwR -bec -bfE -bgv +fWD +rqH +xSh +wrJ +puA +lUg tFA wSb wSb @@ -45176,9 +44024,9 @@ bte wsn ehH cpX -nnY -vvh -dmd +jkU +vsR +orV sGb bjO wSb @@ -45192,29 +44040,29 @@ qfC aac bwu xTU -bwI -bwP +uTC +yju aac rNI -bwZ +sSs bvD bvD bvD bvD -bwC +fHa rNI hPr rNI bxo rNI -bwZ +sSs bvD bvE -bwx +eNa xxS hPr rNI -bwr +jsc bvD bvE rNI @@ -45350,10 +44198,10 @@ wSb tFA hoG sGb -piO -ueK -mEk -lvw +vwg +nGM +nBe +xZF sGb rps wSb @@ -45368,28 +44216,28 @@ aac aac bwu xTU -bwQ -bwT -bwT -bxa +hfk +grK +grK +bXI bvD bvD bvD bvD -bwC +fHa aac rNI rNI -bxW -bvZ -bws +nis +uvp +oTt bvE bvE -bwx +eNa ibh rNI aac -bwr +jsc bvD bvE rNI @@ -45551,20 +44399,20 @@ bvE bvE mpU bvD -bwI -bxH -bwT -bvZ -bxa +uTC +rqs +grK +uvp +bXI bvD bvE bvD bvD -bwx +eNa rNI aac -byj -bws +qrb +oTt bvE bvE aac @@ -45735,10 +44583,10 @@ bvE bvE bvD bvD -bvR -bvZ -bvW -bws +gsQ +uvp +oMx +oTt bvE bvD bvE @@ -45851,20 +44699,20 @@ aZP aZP aZP bdw -biq -bdN -bhP -bdN -bdX +xLG +wUS +tDH +wUS +mFz bgx tFA -biq -bdN -bdN -bdN -bhP -bhP -bdX +xLG +wUS +wUS +wUS +tDH +tDH +mFz wSb wSb tFA @@ -46026,20 +44874,20 @@ aZP aZP aZK aXW -bgB +bUQ bhf bhf bhf -biQ +iQb bjR bkh -bkp +hsq bhf bhf bhf bhf bhf -bdV +mtq tFA wSb tcN @@ -46131,9 +44979,9 @@ aac aac aac aac -aml -amo -amU +sNM +aCp +uHQ ami amj amj @@ -46201,20 +45049,20 @@ aZP aZK bbj rYa -bgF +fWR bhh bhR -biv -biR +jAW +iMd bjS bkh -bkq -biR +voK +iMd biw tHv bhS bhf -bdV +mtq tFA wSb wSb @@ -46308,7 +45156,7 @@ cmo cmo cmo cmo -anb +kGp amj amj amj @@ -46335,8 +45183,8 @@ nZR nZR nZR aac -aVp -aKf +eAz +nqS aZK aZK aZP @@ -46376,7 +45224,7 @@ aZP aZK aZK qAU -bgF +fWR bhf bhS mDF @@ -46389,7 +45237,7 @@ biw bjd bhS bhf -bdV +mtq tFA wSb tFA @@ -46483,7 +45331,7 @@ utX qFH qWC cmo -anb +kGp aoA amj ami @@ -46511,7 +45359,7 @@ bZY ayx azV iLJ -aKk +fIT bbj bbj aZP @@ -46551,7 +45399,7 @@ aZP aZK bfa qAU -bgF +fWR bhf bhS bix @@ -46564,7 +45412,7 @@ bjd bkh bjd bhh -bdV +mtq tFA wSb tFA @@ -46686,7 +45534,7 @@ awS oVA oVA iLJ -aKk +fIT bbj bbj aZK @@ -46739,7 +45587,7 @@ eMZ unE fQo dOO -boG +hxj bmE blJ blJ @@ -46833,7 +45681,7 @@ uGH juY uGH cmo -anN +fvQ aoA amj ami @@ -46861,7 +45709,7 @@ awT oVA oVA iLJ -aKk +fIT bdA bbj aKV @@ -46914,7 +45762,7 @@ qTV qKx ibE sbW -boG +hxj blJ blJ tQg @@ -47008,7 +45856,7 @@ uGH uGH dTN cmo -anb +kGp amj iPw ami @@ -47028,15 +45876,15 @@ uyf uyf iJq vLn -asl -atz +jPC +haC ukx cuP foN iLJ iLJ iLJ -aKk +fIT bgh bbj aZK @@ -47089,7 +45937,7 @@ ajl opg xJb dOO -boH +fbq blJ blJ bmp @@ -47183,7 +46031,7 @@ vvV uNi wYx cmo -anb +kGp ami ami amj @@ -47204,14 +46052,14 @@ bRw run ark asm -bTb +wIy ukx cuP foN iLJ -aIz -aJp -aKl +fyZ +ozT +cBs iws bed bbj @@ -47227,7 +46075,7 @@ aac aac aac aac -aUn +bTs bCA cqQ chX @@ -47358,7 +46206,7 @@ wYx tmw uNi cmo -anb +kGp aoB ami amj @@ -47379,12 +46227,12 @@ qSH aql ark bXi -oLz +sYU ukx foN foN iLJ -baT +ipH bfa bbj bbj @@ -47402,7 +46250,7 @@ aac aac aac bgh -aUn +bTs cqr cqQ chX @@ -47533,7 +46381,7 @@ wYx dTN wYx cmo -anb +kGp amj amj arl @@ -47554,12 +46402,12 @@ sDs uGx ark bXi -bTb +wIy ukx foN -awW -ayA -baU +lEJ +wng +aUO aJV aZK bbj @@ -47577,7 +46425,7 @@ rZF aac bgh bdA -aUn +bTs cqr aVZ chX @@ -47729,7 +46577,7 @@ aps xQb udO bXi -oLz +sYU ukx foN aHu @@ -47752,7 +46600,7 @@ fTa bbj aTi tWf -aUx +gpl cqr cqQ crp @@ -47789,7 +46637,7 @@ aac aac aac aac -boT +skM bmp blJ blJ @@ -47904,7 +46752,7 @@ sDs aqo arn bXi -bTb +wIy uaQ iPd aHj @@ -47964,7 +46812,7 @@ aac bfd bhT bhT -boG +hxj bmp bpB blJ @@ -48079,7 +46927,7 @@ apu aqo arn bXi -oLz +sYU ukx foN aHu @@ -48116,7 +46964,7 @@ bAO cqQ cqQ bNh -aWe +xXj aZP aZP aZK @@ -48138,13 +46986,13 @@ aac fSr bfd bfc -bnP -bpa +xKt +gAt blJ blJ blJ bmp -bsu +tKA aac aac aac @@ -48254,12 +47102,12 @@ bTa aqp oKV asn -bTb +wIy bYK foN -bYg -caI -aWd +hMQ +nrM +vsT aZP aZP aZP @@ -48277,7 +47125,7 @@ aZP aZP aZP aXW -xHW +feA cqr aVZ fMr @@ -48291,7 +47139,7 @@ aac bcN bcN bNi -baT +ipH aZP aZP aZK @@ -48319,7 +47167,7 @@ bpA bpA bqE bmp -bsN +cwA wDq xTw fOX @@ -48421,20 +47269,20 @@ aac aac aac bGo -alM -amv -bUx -bVc -bUx -bVc -bUx -bVc -atA +xXf +rEx +xAO +sWz +xAO +sWz +xAO +sWz +myt urM foN foN iLJ -aSL +mRI aJW aZK bbj @@ -48452,7 +47300,7 @@ aZP aZP aZP bdw -aUz +aYs bag bcN bcN @@ -48463,10 +47311,10 @@ aac aac aac aac -mPh -mPh -mPh -baU +onF +onF +onF +aUO aZP aZK bgh @@ -48488,13 +47336,13 @@ bfc bfc bfc bfc -bnQ -boX +mLo +qcM blJ blJ tAs bmE -bsN +cwA fiD uul asd @@ -48609,10 +47457,10 @@ ukx cuP foN iLJ -aIG -aVp -aKs -aRR +ihE +eAz +hEB +lYR aac aac aac @@ -48621,19 +47469,19 @@ bbj vYf bbj aac -aRy -aRy -aRR -aSK +hsQ +hsQ +lYR +qnH aZP bdw -aUA -mPh -aWa -fIq -fIq -fIq -aYh +izx +onF +qSc +rqH +rqH +rqH +oaW bgh aac aac @@ -48664,12 +47512,12 @@ bfc bfc bfc bhT -boG +hxj blJ blJ tAs bmE -bsN +cwA fiD gAv lbh @@ -48799,7 +47647,7 @@ aac gZP iLJ iLJ -aSL +mRI aZP aIL bcB @@ -48839,12 +47687,12 @@ bfc bfc bhT bhT -boG +hxj blJ bmp fGc bmp -bsN +cwA fiD tWJ lbh @@ -49014,12 +47862,12 @@ bfc bhT aac aac -bpa +gAt blJ bmp vXt bmp -bsN +cwA fiD lbh lbh @@ -49174,7 +48022,7 @@ aac jZF iLJ iLJ -bfe +oMX bgJ bfd xdr @@ -49194,7 +48042,7 @@ blJ bmp gOi bmD -bsN +cwA fiD lbh lbh @@ -49348,8 +48196,8 @@ qsZ cuP fkw iLJ -gIL -bff +nyP +vgq bgJ bfd xhM @@ -49369,7 +48217,7 @@ blJ blJ tAs bmE -bsN +cwA svP fhW lbh @@ -49502,18 +48350,18 @@ iLJ aac aac aac -aUC -aVp -aWd +nDt +eAz +vsT aZP bdw bed aZP aZK aZP -aYi -aZi -aRR +set +iaa +lYR aac aac aDd @@ -49544,8 +48392,8 @@ blJ blJ mQD tQg -brW -bsn +lDF +bFt wni lbh asd @@ -49679,14 +48527,14 @@ aUE jZF iLJ iLJ -aSL +mRI aZK bdw aZP aZP aZP aZP -aUz +aYs iLJ iLJ aac @@ -49720,7 +48568,7 @@ blJ mQD blJ tQg -bsN +cwA wni lbh asd @@ -49854,14 +48702,14 @@ cfY cfY foN iLJ -aWe +xXj bed bdw aZP -aYi -aRR -aRR -aZe +set +lYR +lYR +jkb iLJ qmW aac @@ -49895,7 +48743,7 @@ bmp mQD blJ blJ -bsM +hAw wPI lbh asd @@ -49912,9 +48760,9 @@ xoE mms fuZ qXY -rUQ +ezZ xrx -wWK +uGp mms mms pwn @@ -50029,11 +48877,11 @@ aUF cuP foN iLJ -aSL +mRI aZP bdw aZP -aYj +pFd gZP iLJ bxI @@ -50048,8 +48896,8 @@ cmZ cuP fxM iLJ -miL -bfh +heQ +xPl bfc bfc bfc @@ -50070,8 +48918,8 @@ bmp mQD blJ blJ -brW -tSi +lDF +sSM lbh asd jIz @@ -50083,16 +48931,16 @@ vrH tOA vgb myk -pbF +rWB efR efR -lDz -bKT +uyS +utx gnG -pDY -pbF +xcZ +rWB efR -eGq +ngc hYc aac aac @@ -50204,11 +49052,11 @@ ukx aWs cRw xAp -bcX +owo bfu bkJ bfu -boJ +tdy iLJ foN fxM @@ -50224,10 +49072,10 @@ cuP frf iNf iLJ -bfi -bgi -biE -bfh +vvd +hUp +uUT +xPl bfd bfc bfd @@ -50258,16 +49106,16 @@ mBb vlG alu vxd -pJz +lty erq erq -hkn +jae vlG vlG gfd -pJz +lty erq -pZe +aLD hYc aac aac @@ -50402,7 +49250,7 @@ iLJ iLJ iLJ gZP -bhk +pkE bfd bfc bfc @@ -50433,16 +49281,16 @@ tjL tRC uCI vxd -ulL +ykM xLH xLH -pje -lRT +qVY +jPs gnG -ryf -ulL +pnE +ykM xLH -gFH +dGW hYc aac aac @@ -50577,7 +49425,7 @@ iPd iPd iPd tYB -bhr +bfW bkI bfd bfc @@ -50595,8 +49443,8 @@ blJ blJ blJ blJ -bsu -vnV +tKA +tMC lbh asd doO @@ -50612,9 +49460,9 @@ hYc hYc hYc hYc -dFU +dOT bYG -dtt +rzY hYc hYc hYc @@ -50752,12 +49600,12 @@ cuP cuP foN uaC -bhs -bgi -biE -biE -bkb -bfh +snR +hUp +uUT +uUT +cuT +xPl bkF bkL blm @@ -50770,7 +49618,7 @@ bmp blJ blJ blJ -bsM +hAw vUp lbh asd @@ -50945,7 +49793,7 @@ bnu blJ blJ blJ -bsN +cwA wni lbh asd @@ -51059,10 +49907,10 @@ mrG avK foN ccc -aAe -tsX -tsX -aDY +uER +omK +omK +hci ccc cuP cuP @@ -51090,10 +49938,10 @@ bxJ cuP cuP cva -bOj -bSD -ccH -cjg +eRA +gSA +sXL +qvk bNR cuY fAb @@ -51120,7 +49968,7 @@ bqq bmE blJ bmp -bsN +cwA wPI xje gRK @@ -51234,10 +50082,10 @@ gLF gLF cuP cuP -aAf +gil oVA mHo -aDZ +iXp cuP pvz oKo @@ -51253,7 +50101,7 @@ blb bfv blb aYw -bao +iqY blb bfv blb @@ -51263,12 +50111,12 @@ blb blb vlm mGA -riS +gls mKv itw bSE miR -cjG +cbH fBC cuZ cuP @@ -51295,9 +50143,9 @@ bmE aIs brk tQg -bsr -bsX -btg +sgO +ceJ +mwE aac aac aac @@ -51409,10 +50257,10 @@ aac jEO tGR cuP -aAf +gil mHo mHo -aDZ +iXp cuP cuP oKo @@ -51422,28 +50270,28 @@ aLH aIV aIV aPz -aQP +lJK aRW aTp aUK blb -aYB -bar +nFd +pRd blb bfw bhV bkO -boL +agj brB blb bJV -exi +qUL rUn bJV vmI oOB nUX -cjG +cbH fBC cuP fBh @@ -51584,10 +50432,10 @@ aac aac cuP ccc -aAg -bZL -bZL -aEa +pil +pUY +pUY +uab ccc cuP oKo @@ -51595,30 +50443,30 @@ aIV aUV aUV aUV -aOb +xbt blb -aQP +lJK bfx bfx bfx blb -aYB -pnn +nFd +rrM blb bfx bfx bfx -viU -brD +hhH +sle blb bxM -bAT -bCq +oFc +xXX bJW vmI bSI nUX -cjH +wKI fBC cva fBC @@ -51634,7 +50482,7 @@ qTD nZR pEY foN -gEo +qKk aac bmy bmp @@ -51770,15 +50618,15 @@ aIV aUV aUV aUV -aOc +fdL blb brB agf bfy bfy bda -aYB -bar +nFd +pRd bda bfy bfy @@ -51787,16 +50635,16 @@ boN bsk vlm bxN -bAT -bCq +oFc +xXX bJX vlm foN nUX -cjI -cnb -cvb -fCE +jVT +mjD +ise +eKq cuP cuP cuP @@ -51809,7 +50657,7 @@ nZR nZR eqS foN -gEo +qKk bmA bpw bmp @@ -51945,7 +50793,7 @@ aIW aKp aJb aMQ -aOc +fdL oKo afH oKo @@ -51953,7 +50801,7 @@ blb bbq blb aYw -bat +lfC blb aac aac @@ -51962,10 +50810,10 @@ boO bsl buU bxO -bAT -bCq +oFc +xXX mCx -oMA +wSf foN iLJ oHN @@ -51984,7 +50832,7 @@ mEL iLJ iLJ foN -gEo +qKk bmA bmA bnx @@ -52116,19 +50964,19 @@ cuP cuP cuP xvy -aIX +iQB aIV aIV aMW -aOc +fdL aPB aQQ oKo aTs aUM aWE -aYD -bau +rcK +sBe bdb bfz aTz @@ -52137,9 +50985,9 @@ boP bsq buV bxP -bAT -bCq -bKa +oFc +xXX +hwo bOE foN foN @@ -52159,7 +51007,7 @@ mEL foN foN foN -gEo +qKk bmA bmA bpf @@ -52295,7 +51143,7 @@ aUS bhZ dgB aMW -aOd +vYk aPC aQW oKo @@ -52303,7 +51151,7 @@ aTt aUN aUN aUN -baV +dlZ aUN aUN aTy @@ -52312,7 +51160,7 @@ boQ vtz vlm bxT -dZp +uwy mCx rUn vlm @@ -52334,7 +51182,7 @@ pRj vtM pRj pRj -gEo +qKk bmA bmB bmp @@ -52461,8 +51309,8 @@ axc ayE aAh aHv -aCU -aCU +skT +skT aHv aHv aHt @@ -52470,15 +51318,15 @@ aIV aIV dgB aMW -aOd +vYk aPD aRb oKo aTt aUN aWF -xJr -baN +fma +rZs bdd aUN aTy @@ -52487,7 +51335,7 @@ vlm bst vlm kHg -bUv +hof bTF mCx aNa @@ -52509,7 +51357,7 @@ jWi bdU psv ybN -aGf +tVd bmB bmD bmp @@ -52639,30 +51487,30 @@ roI dgB dgB dgB -aGm -aHr +nxC +fKW aUV dgB aIV aMX -aOe -aPE -aPE -aRZ +xBs +jPA +jPA +dWH aUN aUN aWG -aYB -bar -sad +nFd +pRd +xNE aUN -bib -cvl -bsv -bsv -bsv -bsv -bBB +nBB +dMg +lHk +lHk +lHk +lHk +ueA bTF dzG mzC @@ -52684,7 +51532,7 @@ aot kuB uJY ybN -blp +oLp blJ bmE bnA @@ -52811,33 +51659,33 @@ haN ayF ouB aBM -cAw +sPP ouB ouB -aGn -aHs +ehu +dJW aJb ouB aLO -aMY -aOf -aPF -aPF -aSb -tZm -tZm -xJr -aYE -baQ -xJr -tZm -bii -bkY -bsw -nOE -bsw -qzv -rZD +heL +bVG +qQR +qQR +rFN +gJb +gJb +fma +rmT +fyd +fma +gJb +cwr +woo +nYA +pnD +nYA +rJX +nYH bTF bTF bGr @@ -52859,7 +51707,7 @@ adS rSE ant ybN -bkU +swK bpo bmF bnB @@ -52871,10 +51719,10 @@ bnD tQg gPL eFA -vaW -rAv -rAv -xes +exj +iOF +iOF +hrF gBj bul jBc @@ -52995,7 +51843,7 @@ aIV aIV dgB aMW -aOd +vYk aPG aQY oKo @@ -53003,7 +51851,7 @@ axm aUN aWG aWG -baR +owy bdg ctl blc @@ -53012,14 +51860,14 @@ blb bsx bTF bye -qRF -bsv -bsv -bsv -bsv -wwO -bxV -cne +ePE +lHk +lHk +lHk +lHk +kTu +iam +jNa neL aDe neL @@ -53034,7 +51882,7 @@ aqn vvR axu ybN -bkU +swK blJ bmG bnC @@ -53043,13 +51891,13 @@ bpo blJ blJ blJ -brm +xSq aac aac aac bth xPT -tUZ +fGs jBc jBc vxc @@ -53170,7 +52018,7 @@ oKo bhZ dgB aMZ -aOd +vYk aPC aQR aac @@ -53178,7 +52026,7 @@ aTy aUN aUN aUN -baS +gto aUN npf blb @@ -53187,14 +52035,14 @@ boU bsy buY byv -ggf -bsw -bsw -bsw -bsw -bsw -bxX -bBT +wRE +nYA +nYA +nYA +nYA +nYA +pzX +mJu bTF cdG bTF @@ -53209,8 +52057,8 @@ hfP pRj vPi vPi -bkX -blr +fwT +loC bmH bnD boc @@ -53224,7 +52072,7 @@ aac aac bti laN -tUZ +fGs vxc bum aac @@ -53345,7 +52193,7 @@ oKo aKx dgB aMZ -aOd +vYk aPC aQZ aac @@ -53353,7 +52201,7 @@ aTz bfz aYw aUN -baV +dlZ vFS bil blb @@ -53368,8 +52216,8 @@ bTF bTF bTF cdG -cjU -cnf +dVb +qWw cvf fWs cvf @@ -53380,12 +52228,12 @@ ukx ras cuP xpK -xuE -qTk +pWR +dFV aac aac aac -blu +qow bmI bnC boi @@ -53520,7 +52368,7 @@ oKo aLP dgB aMX -aOd +vYk aPC aRa aac @@ -53528,7 +52376,7 @@ aac aUS aWK aUN -baV +dlZ blb blb blb @@ -53543,8 +52391,8 @@ ryK bOx ryK bTF -cjU -bBT +dVb +mJu bTF cdG bTF @@ -53555,12 +52403,12 @@ uRy xKs cuP hmf -wsh -iQS +led +xzq xnZ oxE aac -blv +wnC bmJ bnC bok @@ -53686,7 +52534,7 @@ axg ayI aAm aBQ -aCV +hbo bXq aUV vBs @@ -53695,7 +52543,7 @@ oKo aLQ dgB aMX -aOd +vYk hHO aQQ aSc @@ -53703,7 +52551,7 @@ aTA aUT anc aWL -bbc +ufY aWL aWL bsy @@ -53718,8 +52566,8 @@ ryK ryK ryK bTF -nof -cng +gHA +ufK cvg fXV jkc @@ -53730,12 +52578,12 @@ uRy xKD cuP wzZ -wsh -iQS +led +xzq foN tmi sRz -blx +rMX bmI bnC bol @@ -53861,7 +52709,7 @@ oKo tuV aAn aBR -aCW +nXd aIV aFb oKo @@ -53870,15 +52718,15 @@ oKo oKo oKo aFf -aOg +jLH aPD aRb aSd aTB oKo aoP -mlS -bbd +pAS +mzH bfy bfI aac @@ -53893,8 +52741,8 @@ bKC bOz vlm cdT -cjU -mcv +dVb +oRH che vlm vlm @@ -53905,12 +52753,12 @@ uTQ xOs cuP wzZ -wsh -iQS +led +xzq cRw cuP sRz -blz +sOb bmK bnB boo @@ -54045,15 +52893,15 @@ oKo aKy aLR aMX -aOh -aPH -aPH -aPH -aPH +ohY +kUU +kUU +kUU +kUU aUU bfy -mlS -bbd +pAS +mzH bfy bfJ aac @@ -54068,24 +52916,24 @@ bKD bCf cyH buY -cjV -cni -cvl +ltw +cII +dMg bTF bTF -oMA +wSf oqJ xJD ukx xTZ cuP wzZ -wsh -iQS +led +xzq jVD ras vhl -blB +qXa bmL bnF boq @@ -54202,14 +53050,14 @@ awJ ayw ayw ayw -kyT +tab bXq dgB dgB bXq -axi -ayL -aAp +tBc +sCl +fsI oWQ aMZ aIV @@ -54243,24 +53091,24 @@ bKL bOA vlm bTF -nof -cng -bkY +gHA +ufK +woo buY buY -bkY +woo hQq qYm vgW cuP cuP vId -oiV -vCl +dvV +fpQ qMQ euN iLJ -blL +hIl bmM bmM blJ @@ -54377,16 +53225,16 @@ ayw ayw ayw awJ -kyT +tab bXq dgB dgB bXq -ufH +oKa aIV -ygB +cTL ouB -kMW +qtq aIV aUV vBs @@ -54418,8 +53266,8 @@ cjN vlm bTD kaP -cjU -cnh +dVb +hnX vlm mKv mKv @@ -54434,8 +53282,8 @@ tsz gha foN foN -eRk -blE +rvR +rOr blJ blJ bpU @@ -54553,10 +53401,10 @@ ayw awJ awJ oKo -asq -atE -atE -avR +hcu +irA +irA +kXj aNu rpp aMZ @@ -54593,8 +53441,8 @@ bKM msG bTE bTF -cjU -bBT +dVb +mJu vlm jkf jkf @@ -54739,7 +53587,7 @@ aRb aRb aRb aFc -aKr +nYL aUV aUV aUV @@ -54752,7 +53600,7 @@ aUV aMX bop biH -aYH +pdQ bsK azd bfN @@ -54768,8 +53616,8 @@ bGO vlm bTE bTF -nof -cng +gHA +ufK cyH gbS hcF @@ -54910,11 +53758,11 @@ avT aIV bXq aAs -aBU -aCY -aCY -aFd -aGu +xKA +tWO +tWO +bIN +rxB dgB dgB dgB @@ -54943,8 +53791,8 @@ bGO rpA bTF bTF -cjU -bBT +dVb +mJu bTD vlm vlm @@ -54959,8 +53807,8 @@ dSV fYE hcg foN -uDU -blK +uPz +tup bmS blJ bow @@ -55085,21 +53933,21 @@ bXq axn bXq aAs -aKr +nYL dgB dgB -sCO +eZi ouB bbs bbs bbs bbs -bWE +uBw bbs bbs -oKd +oJm bbs -oKd +oJm bbs bbs frL @@ -55118,8 +53966,8 @@ vlm cdD bTG bTF -cjU -bBT +dVb +mJu cFj ggH jmH @@ -55130,12 +53978,12 @@ vlm mKv mKv vlm -aGd -aGe +jRJ +rgA foN iLJ iLJ -blL +hIl tQg bmp uiE @@ -55264,16 +54112,16 @@ aBW dgB dgB aFf -aGw +nvd biH -aJf -aKC +sjW +jIV aLS -qIV -aKC +maw +jIV aLS -aJf -aKC +sjW +jIV blN blN blN @@ -55283,18 +54131,18 @@ blN bfP bll bll -bpE -bsD +oeu +mPX bll bll -cvA -hux -bCp +vUy +uxw +wdr bOE bGr bTF -cjU -bBT +dVb +mJu bTF bOE mCx @@ -55305,12 +54153,12 @@ vmI qzf pEo vmI -uzv -aNA +igy +nCR foN cuP kzc -blM +gZG bmU bnI tBn @@ -55438,54 +54286,54 @@ aAu aBX ouB ouB -scM -aGx -aHD -aJl -aJl -aJl -aJl -aJl -aJl -aJl -aJl -aJl -aJl -bWH +cuE +oVH +xzP +ksk +ksk +ksk +ksk +ksk +ksk +ksk +ksk +ksk +ksk +wqN bll -qQH +iSt frL qNi -utk -blR -ecR -ecR -ecR -ecR -bfD -bHp -bfD -bkY +cxr +mNE +jvU +jvU +jvU +jvU +qQx +rJJ +qQx +woo buY buY -cjV -bBT +ltw +mJu bTF bOE mCx vlm -ptr -riS +cqC +gls vlm jUo tRf vmI -ldp -riM +vgJ +hTM foN ras iLJ -blL +hIl bmV bmE lsz @@ -55614,7 +54462,7 @@ ufI orc dgB aMX -aGy +jiH cik aVn aKD @@ -55626,30 +54474,30 @@ qRj aKD aTG wuE -aWR +bbV bll aMc blN bfP aMc bll -agm +ugT bll bll bll -bCp -bCp -bCp +wdr +wdr +wdr bOE bTF bTF -cjU -bBT +dVb +mJu bTF bOE ryK mxa -plC +dvq ryK vmI vyl @@ -55785,11 +54633,11 @@ avW axq bXq aAv -aKr +nYL dgB -jYl -aFi -aGz +pjQ +ofW +pxj cik blN blN @@ -55801,7 +54649,7 @@ blN aOu blN taa -aWR +bbV bll oSV bdp @@ -55818,13 +54666,13 @@ eSx eSx bUJ vlm -cjW -bBT +fLZ +mJu cKc bOE ryK nST -pkG +uLe ryK vlm mow @@ -55960,11 +54808,11 @@ avX axr ayN aAw -aBY +jeh aEb -axt +qNu aMX -aGx +oVH cik bll bll @@ -55976,7 +54824,7 @@ bll bll blN aUZ -aWR +bbV bll oSV bdq @@ -55993,13 +54841,13 @@ bKO bOF bUK ceG -cjU -cnf +dVb +qWw bTF bOE ryK ryK -plC +dvq ryK vnC tZV @@ -56133,9 +54981,9 @@ ijo auF ijo aHv -oCc -oCc -fyU +ubj +ubj +qAq scp oKo aMX @@ -56151,9 +54999,9 @@ biH bll aTH aVa -aWR +bbV bll -bbl +qnl bvl cik biV @@ -56168,13 +55016,13 @@ bKP bKR cvf ceG -cjU -bBT +dVb +mJu bTF bTF mGA mGA -ptr +cqC mGA vnC tZV @@ -56326,9 +55174,9 @@ aRf aYO aTI aUY -aWR +bbV aYO -juw +xjX bds bfS biV @@ -56343,13 +55191,13 @@ mxu bOG bOG ceY -cjV -bBT +ltw +mJu oWt bTF bTF bTF -bUv +hof bTF vlm xAF @@ -56501,7 +55349,7 @@ aRf bll bsK aVc -aWR +bbV bll oSV bdt @@ -56518,29 +55366,29 @@ bKR bKR cvf ceG -ckx -bBU -cOR -bGs -bGs -bGs -ppC -bGs -vnI -kbS -vCN -vCN -mfv +eIP +bXO +sch +mRe +mRe +mRe +xWQ +mRe +rId +woz +ewe +ewe +qWT cyH -mqs -maP -mqs -mqs -mqs -mqs -mqs -mpm -quT +pjx +qIC +pjx +pjx +pjx +pjx +pjx +iVy +nfU vtz vtz eSx @@ -56664,7 +55512,7 @@ bXq bXq oKo ceI -aGC +abp cik tCI tCI @@ -56676,9 +55524,9 @@ aRg bll aTK aVa -aWR +bbV bll -qQH +iSt frL bfU biX @@ -56693,29 +55541,29 @@ bKS bOH bVF ceG -ckz -qxt -cnk -cnk -jAE -bBV -pOW -jAE +lgh +kXm +ehr +ehr +eZc +odl +hPv +eZc voe vyl -baq +pYE vyl tZV vlm -hvj -bGd -xlP -xlP -eLQ -xlP -xlP -bGd -rLg +eEr +dSQ +lZO +lZO +xAf +lZO +lZO +dSQ +gjC vtz vtz eSx @@ -56838,8 +55686,8 @@ afU uqY bXq aUS -aFl -eRp +xYB +gFg bfU blS bbk @@ -56851,7 +55699,7 @@ aRf bll bsK aUY -aWR +bbV bll oSV aLS @@ -56874,7 +55722,7 @@ cRB tVu bCz bzl -pro +nDx vlm vlm eSx @@ -56892,7 +55740,7 @@ vlm vlm vlm mGA -riS +gls vlm vlm vlm @@ -57026,7 +55874,7 @@ aRf bll bsK aVd -aWR +bbV bll oSV bdu @@ -57065,10 +55913,10 @@ xjH nsB vlm gbU -gOu +hkC vtz vtz -qeI +xLK fkK vlm aad @@ -57188,8 +56036,8 @@ aAz ccn cdZ ijo -aFl -gea +xYB +wZj cik aJs aKK @@ -57201,9 +56049,9 @@ aRg bll aTL aVa -aWR +bbV bll -bbl +qnl bdv cik bja @@ -57240,10 +56088,10 @@ mCx rMP vlm gbU -hGd +cxl vtz vtz -vms +naL fkK vlm aad @@ -57364,8 +56212,8 @@ gAm cdc cdW ceI -nBT -cge +igf +jNE bsG oSV bll @@ -57376,9 +56224,9 @@ aRf bll bsK aVe -aWR +bbV biH -bbl +qnl bdv aac bjb @@ -57415,10 +56263,10 @@ mCx pSc vlm oiF -hGd +cxl vtz vtz -xnP +hnO vlm vlm aad @@ -57539,8 +56387,8 @@ gAm cdd cdX ceI -nBT -cgg +igf +fwq iQt oSV aMb @@ -57550,8 +56398,8 @@ aPR aRf bll bsK -aVf -aWS +mJB +fpK biH aMc aac @@ -57573,8 +56421,8 @@ bCz aac aac jLY -bzm -pvY +uII +lIM vlm vtz aBp @@ -57590,7 +56438,7 @@ mCx nsB vlm gbU -hGd +cxl vtz vtz wAj @@ -57714,8 +56562,8 @@ cdZ cdc cdW ceI -nBT -cgg +igf +fwq aJu oSV bll @@ -57725,8 +56573,8 @@ aPR biH bll bsK -aVg -bWH +wfX +wqN biH aMc bdE @@ -57765,7 +56613,7 @@ xjH nsB vlm gbU -hGd +cxl vtz vtz eFO @@ -57888,9 +56736,9 @@ cco cco cco ijo -ceK -nBT -cgg +gQF +igf +fwq aJv aKL bbk @@ -57901,7 +56749,7 @@ bbs blS aTM aVj -aWR +bbV bll aMc bfV @@ -57947,7 +56795,7 @@ vBV vlm bjr tiU -dpB +sYe bPF bPF aad @@ -58064,8 +56912,8 @@ aCb cfx cfx ceI -nBT -cge +igf +jNE bsG biH aMc @@ -58076,7 +56924,7 @@ biH bll aTN wdf -aWR +bbV bll aMc bfV @@ -58117,12 +56965,12 @@ iEU iEU vlm mGA -riS +gls vlm vlm bjr tiU -rEr +wjq xjO jmx bPF @@ -58225,20 +57073,20 @@ bTl wto cdZ cdZ -wjF +rMY cdY -mtm +qsz cdY -asE +uau fVX cdY -cad -ayW +czT +wnZ cdY -asE +uau cdY cdY -ceL +bIh cfx cik cgT @@ -58250,10 +57098,10 @@ qBv bll bll qVc -gAx -pug +hjA +qtc blS -aYR +eco cik bll bje @@ -58297,7 +57145,7 @@ ace bjr bjr tiU -rEr +wjq hJv dlL bPF @@ -58404,7 +57252,7 @@ cdZ cdZ cdZ cdZ -atL +xRA ceI cdZ ceI @@ -58425,8 +57273,8 @@ aOu bll bll blN -aVg -bWH +wfX +wqN bll bll bdI @@ -58449,7 +57297,7 @@ csQ bzl bzl bzl -pwz +yfx csQ bvz bvz @@ -58472,7 +57320,7 @@ bjr bjr bjr tiU -rEr +wjq bmv iji iwH @@ -58588,8 +57436,8 @@ cco cco cco ijo -aFl -gea +xYB +wZj cik cgT cik @@ -58601,9 +57449,9 @@ bll aSk blN aVn -aWV -aYT -apJ +prQ +veh +eyU cik cik cik @@ -58647,7 +57495,7 @@ bjr bjr bjr tiU -rEr +wjq bmv wZZ cIM @@ -58779,27 +57627,27 @@ cik bll bll bll -bdJ -bga -bjh +nrx +dsA +gAO btC -bpx -wQU -fil -bzm -wQU -wQU -bLk +lYC +bVR +wmG +uII +bVR +bVR +jOc btC -bLk +jOc btC -cle +vcr btC -ddI -gqF -kes -mKA -pAM +ufg +cqB +ioa +hLc +fcv rDl btC bCN @@ -58815,14 +57663,14 @@ brd iEU aad wij -dBG +tHb bjr bjr bjr bjr bjr tiU -rEr +wjq bmv wZZ iwH @@ -58939,7 +57787,7 @@ aCd aDf cea ceI -cfz +bKE cik cgT cik @@ -58954,11 +57802,11 @@ cik eFF blN bll -bdK -bga -crG +nlT +dsA +wXe csQ -bpN +nKg bCK bvz bzl @@ -58997,7 +57845,7 @@ bjr bjr bjr lwI -rEr +wjq bmv wZZ iwH @@ -59113,28 +57961,28 @@ cdY aCe aDg ijo -aFm -eRp +bKF +gFg cdY blS frL -aMg -aJc -aOx -aNs -aNs -aNs -aTQ -aNs -aNs -aNs +kif +qqO +nJr +plh +plh +plh +peJ +plh +plh +plh bbs -bdY -bgb -bgg +cBb +iDE +qhC csQ -bpN -yaC +nKg +mYQ bvz bzl bCK @@ -59171,8 +58019,8 @@ bjr bjr bjr tnM -mNG -gTa +lUv +dva bmv wZZ aad @@ -59288,27 +58136,27 @@ gAm gAm aAD cea -aFn +jUG cfx cdZ -agm +ugT blN -aMh -aNt -aNt -aNt -aNt -aNt -aTT -aNt -aNt -aNt +otZ +nzU +nzU +nzU +nzU +nzU +uyG +nzU +nzU +nzU biH -beg -bsF -crG +joL +eeS +wXe csQ -bpN +nKg csQ cgc bzl @@ -59471,23 +58319,23 @@ cik cik blN blN -aQb -aRm -aSm +icZ +vfg +pMO blN blN blN aTU biH -beh -bgc -crG +dcv +asa +wXe csQ -bpO +ycw csQ bvz bzl -maX +lqV bzl bLo csE @@ -59606,8 +58454,8 @@ ahZ jrA age ahZ -aKt -tSl +gZI +uoB aac agR agR @@ -59615,7 +58463,7 @@ ahZ ahZ ahZ aac -ayt +rBp ays aAV aAR @@ -59638,9 +58486,9 @@ aAG aCg aAD ijo -aFo -aGD -aGB +gya +oZy +wqy ckK aKQ aMi @@ -59654,8 +58502,8 @@ cjZ cjZ ckK biH -bem -bga +uOX +dsA bCK bCz bCz @@ -59696,8 +58544,8 @@ aad bjr bjr tnM -jDO -jOV +dxe +vol wZZ wZZ rpX @@ -59780,17 +58628,17 @@ agR aac kXx akl -aKt -sxr +gZI +emu aaI aac agR agR agR ahZ -ato -awZ -ayu +kHG +qPA +rTj ays ays aAS @@ -59813,9 +58661,9 @@ azb azb aDi ijo -aFp -aGD -aHJ +lso +oZy +grF ckK aKR aMj @@ -59830,7 +58678,7 @@ aXa aac aac aac -bge +dDM bCK bjl bpP @@ -59865,7 +58713,7 @@ xFc bmv bmv wZZ -bZT +vHL rkI bjr bjr @@ -59877,7 +58725,7 @@ wij wZZ rpX tiU -hwD +iUj vPQ aad aad @@ -59955,15 +58803,15 @@ aac aac kYl akz -aTR +sHN aaI aac aac aac aac aac -ato -auZ +kHG +rts ali aiZ aiZ @@ -59988,9 +58836,9 @@ cbv bZD cbv bZD -aFq -eRp -aHK +rxj +gFg +nbt aJA aKS aMk @@ -60005,7 +58853,7 @@ aXc aYW bbv aac -bsF +eeS bCK bLo bqe @@ -60040,7 +58888,7 @@ bmv bmv bmv fli -bZT +vHL tQS cxS cxS @@ -60052,7 +58900,7 @@ wZZ pri rpX tiU -hwD +iUj vPQ aad aad @@ -60137,7 +58985,7 @@ aac aac aac aac -atB +raD agR age aka @@ -60164,7 +59012,7 @@ cbv bZD aEf ceI -cfB +prA cdZ ckK cji @@ -60180,7 +59028,7 @@ aXd aZb bbw aac -bsF +eeS bCK bLo bLo @@ -60188,7 +59036,7 @@ bmo bvz bzl bCK -bHQ +fGG orL csF gaA @@ -60215,9 +59063,9 @@ bmv bmv fuX bmv -tkq -vwV -vwV +njn +nBx +nBx aad aad aad @@ -60227,7 +59075,7 @@ wZZ wZZ rpX tiU -hwD +iUj vPQ lPF aad @@ -60338,9 +59186,9 @@ ijo aCh aCh ijo -aFr -aGE -aHL +fMB +gPI +hVK aJB aKT aMm @@ -60355,7 +59203,7 @@ aXe aZh bbx ckK -bsF +eeS bCK bjl bpX @@ -60363,7 +59211,7 @@ bCz bvz bzp bCK -bHW +bAQ orL csF bba @@ -60402,7 +59250,7 @@ wij wZZ rpX tiU -hwD +iUj vPQ vPQ vPQ @@ -60499,22 +59347,22 @@ ayw ayw ayw ayw -aoI -asL -bwf +iJG +enJ +qve cjn -asJ -atP -auP -awi -axE -asL -aAJ -asL -asL -aEg -aFs -aGF +vPG +gXu +rRC +pfo +itQ +enJ +lPn +enJ +enJ +mmi +eyg +dXH aHP ckK aKU @@ -60530,7 +59378,7 @@ cpd aZp bby ckK -aPW +xRP bCK bCz bCz @@ -60538,7 +59386,7 @@ bCz bCz nVs bCK -bHW +bAQ orL csF gkt @@ -60674,30 +59522,30 @@ awJ ayw ayw ayw -bVr +syh chd chd -bVr -asK +syh +cZv aHP -auQ +ewZ aHP aHP -aze +ibn aHP -aCi +cyM aHP aHP -aFt -aGG -aHM -aJC +ezd +wyv +vsx +oRl aHP aHP aHP -ckf -aQd -clI +jUZ +xZC +qza aac cnp fRX @@ -60705,7 +59553,7 @@ cpe aZq bbz ckK -bsF +eeS bCK bmo agE @@ -60828,7 +59676,7 @@ age agR ahZ aac -bxe +xEl aUD aUD aac @@ -60853,23 +59701,23 @@ pVf chd chd pVf -asL -atQ +enJ +dxY chd chd chd cdj chd chd -aDk +kmz cdj -aFu -dDr +qfy +rcX chd chd -lWl +uOJ chd -aNw +ksj chd chd aHP @@ -60880,7 +59728,7 @@ aXf aZr aVB ckK -bsF +eeS bCK bCz oeQ @@ -60888,7 +59736,7 @@ bqb bCz nYM bCK -bIb +ros orL bzl bzl @@ -60924,8 +59772,8 @@ wZZ rpX bjr kdm -kZL -eVc +vpF +vPN aad aad aad @@ -61003,7 +59851,7 @@ aac agR ahZ agR -acu +dOM acO aUD aac @@ -61019,33 +59867,33 @@ aac aac cdm cdm -bMF -bMF -bMF +ulM +ulM +ulM cdm anJ cdm -apD -asL +wlH +enJ cjn -asL +enJ aHP chd -awj -axF -azf -auR -ccq -aDl -aEh +uYO +qpw +tNa +xSL +xvV +qTS +nap ckN -aGH -cgm -aJD -auR -aMo -aNx -aOy +nGk +jBG +aai +xSL +ffS +aJe +nXR chd aHP aSp @@ -61055,7 +59903,7 @@ aXg aZt bbB beq -bCt +iYM crR bCz bST @@ -61098,8 +59946,8 @@ wZZ wZZ rpX tnM -reb -fHW +pLw +hDK vPQ vPQ rSl @@ -61178,10 +60026,10 @@ aac agR ahZ ahZ -aay +eQo aaI adl -adI +qsY aac aac ahZ @@ -61193,34 +60041,34 @@ aac aac aac cdm -ajV -akC -alk -aJD +qHk +raG +fMp +aai cdm djW cdm -aqE -apC +uGb +gNV cjn -asN -ckf +uQi +jUZ chd -eYz -eYz -eYz +sbA +sbA +sbA ckN cgY cgY -aEi +sXE ckN -aGI -cgn -aJE +jpP +lAk +htp ckN -eYz +sbA cgY -aOA +rAX chd aHP aSq @@ -61230,7 +60078,7 @@ aXh cnr bbC ber -crF +wGP crR bCz bCz @@ -61353,10 +60201,10 @@ aac ahz ahz aiI -aay +eQo aaI aaI -adJ +gqV ahZ anS ahZ @@ -61368,35 +60216,35 @@ aac aac cdm cdm -ajX -asL -asL -bwf +qUH +enJ +enJ +qve cdm cdm cdm cjn cjn cjn -asO +sit aHP -cHm -cgn -cgn +fcP +lAk +lAk cgY -gYr -lLu -bZB -bZB -aFw -aGJ -lLu -cgW -cbz +qft +xwu +exl +exl +ser +icf +xwu +sFZ +ePb cgY cgY cgY -aQe +pja aHP ckK aTY @@ -61405,23 +60253,23 @@ aXi aZu bbD ber -bsF +eeS bCK csQ -mem +niD csQ -bwk +qxy bzp -bCY -bsY -bLA +rSv +fWF +gem btC btC btC -clv +kYY btC btC -clv +kYY btC btC btC @@ -61448,8 +60296,8 @@ bmv bmv rpX tnM -hGm -bIu +guB +vIp vPQ vPQ rSl @@ -61528,10 +60376,10 @@ agR agR aia aiK -aay +eQo aaI aaI -acc +tVB ahZ anS amm @@ -61543,33 +60391,33 @@ aac aac cdm cjn -ajY -asL -asL -asL +vjf +enJ +enJ +enJ cjn -anK -aoJ -apE +wpW +wkU +idv cjn cjn -asP +idO aHP -auU +oUB cgY cgY -caL +bjz ckN cgY -cfC +piA cgY ckN -cfC -wUR +piA +dEC cgY ckN cgY -cfC +piA cgY chd aHP @@ -61580,14 +60428,14 @@ cjZ cjZ cjZ bes -bsF -bCY +eeS +rSv btC -bpM +nnB btC btC -bzq -bDo +qVZ +wOg bIq bIq bIq @@ -61598,8 +60446,8 @@ cwn cwn bCz krm -ndC -bzm +gSP +uII sjp bzl bzl @@ -61624,10 +60472,10 @@ wZZ rpX bjr tNQ -ajf -uXY -uXY -amG +lRU +lnO +lnO +fIS vPQ vPQ wXm @@ -61702,11 +60550,11 @@ agR agR agR ahZ -aau -aaH +jfo +uyb aaI aaI -acc +tVB amw agR ahZ @@ -61720,50 +60568,50 @@ cdm cjn cgY cgY -tIw -bZB -bZB -bZB -pkA +dud +exl +exl +exl +eSO cgY -aqG +gyz cjn -asL +enJ aHP -auV -bZE +oIm +yfQ cgY cgY -aAK +uic cgY -kXR -wUR +riQ +dEC ckN cgY cgY cgY -aKW +dZA cgY cgY -eYz +sbA chd aHP aHP -crd -col -col -col -col -crd -bsF -crG +vNW +fwD +fwD +fwD +fwD +vNW +eeS +wXe csQ -sen +uZs csQ -ctp -nLe -ctp -ctp +mXu +eHM +mXu +mXu bLB bPt bPt @@ -61802,7 +60650,7 @@ bjr nyB nyB rhJ -hwD +iUj vPQ vPQ vPQ @@ -61877,11 +60725,11 @@ agR agR ahZ ahZ -aay +eQo aaI aaI aaI -acc +tVB ahZ agR ahZ @@ -61892,43 +60740,43 @@ aac aac aac cdm -bPX -bQS -bQS -bQS -bQS -bQS +lEq +xBG +xBG +xBG +xBG +xBG cgY -cam +jsg cgY -asL -bVr -asL -atR +enJ +syh +enJ +xop chd -awl -axG -azg -rfN -aCj -aDn -aEk +dNd +nFE +jNs +uDl +rIC +ryh +dkp ckN -aGK -aHN -aJF -auX -aMp -aNy -aOG +uCe +fVE +qJM +hTr +eqN +vwn +tlm chd -aRo +gjv aHP aUf -pNL -pNL -pNL -pNL +ifc +ifc +ifc +ifc aUf bvz bsW @@ -62051,12 +60899,12 @@ aaW agR agR ahZ -aau -aaH +jfo +uyb aaI aaI -abw -byQ +tkX +okz aia ahZ amm @@ -62067,43 +60915,43 @@ aac aac aac cdm -ajx +wHS cgY cgY cgY cgY cgY cgY -xLd -bZB -aqI +hqJ +exl +oNd ceM -aWH -oJH +bIc +bBf chd -lWl +uOJ chd -azi +owg chd -aQe -aDo +pja +nso chd ckN -lWl -lWl -lWl +uOJ +uOJ +uOJ chd -lWl -aQe -lWl -aQf -aRq +uOJ +pja +uOJ +vdv +xbf aHP aUf -pNL -pNL -pNL -pNL +ifc +ifc +ifc +ifc aUf bvz bsW @@ -62226,11 +61074,11 @@ agR agR agR ahZ -aay +eQo aaI aaI aaI -acc +tVB ajc akH ahZ @@ -62243,45 +61091,45 @@ aac aac cdm cjn -ajZ -akD -alm +fov +vXd +ybw cjn -amM +woU cgY -cam -apF +jsg +cBI cjn cjn -asR -tFS -qVb -qVb -axH -tJR -qVb -qVb -qVb -qVb -aFx -qVb -qVb -qVb -qVb -qVb -tJR -qVb -aQi -qVb +kvW +iPR +lRj +lRj +tZm +kFZ +lRj +lRj +lRj +lRj +kIl +lRj +lRj +lRj +lRj +lRj +kFZ +lRj +pjU +lRj ceM -aUb -aVD -aVD -aVD -aVD -aUb +euD +nxN +nxN +nxN +nxN +euD bvB -uyp +uny csQ vOs btG @@ -62401,11 +61249,11 @@ agR agR agR ahZ -aaE -abq +iaL +xmN aaI aaI -acc +tVB aka afZ agR @@ -62417,18 +61265,18 @@ aac aac aac cdm -ajy +cXx cgY cgY cgY cgY cgY cgY -cam +jsg cgY -aqJ +cWv cjn -asS +cOe chd chd chd @@ -62577,10 +61425,10 @@ agR agR agR amw -aay +eQo aaU aaI -acc +tVB ajh ahY agR @@ -62592,22 +61440,22 @@ aac aac aac cdm -bPY -bQS -bQS -bQS -bQS -bQS +hnF +xBG +xBG +xBG +xBG +xBG cgY -cam +jsg cgY -aqK +xrs cjn -asT +cKk cgY cgY cgY -cam +jsg caM chd cdj @@ -62648,7 +61496,7 @@ crR cwn cwn vOs -njA +qyp cUi vOs aad @@ -62752,10 +61600,10 @@ agR agR agR agR -aay +eQo aaU aaI -acc +tVB ahZ apz agR @@ -62767,22 +61615,22 @@ aac aac aac cdm -ajy +cXx cgY cgY -bZG +xjw cgY cgY cgY -cam -cgn -aqJ +jsg +lAk +cWv cjn cfE cgY cgY -bZG -axI +xjw +wly ceM aAO ceN @@ -62823,7 +61671,7 @@ crT dBV hgI btC -cll +eAf bvz vOs mrM @@ -62927,10 +61775,10 @@ agR agR agR agR -aay +eQo aaU -abw -byQ +tkX +okz ahZ agR agR @@ -62943,15 +61791,15 @@ ali wvB cjn cjn -bmX -bmX +iaK +iaK cjn -alW -alW -alW -cam +oFz +oFz +oFz +jsg cgY -aqK +xrs cjn cjn chB @@ -63021,9 +61869,9 @@ jWz jWz jWz kaw -grG +pLe rel -hPZ +wTv jWz rpX tnM @@ -63102,9 +61950,9 @@ agR agR ahZ agR -aay +eQo aaU -acc +tVB ajc akH tSb @@ -63116,17 +61964,17 @@ ahZ awb agR agR -aoI -pMU +iJG +tIV vkG vkG vkG vkG vkG -alW -cam +oFz +jsg cgY -aqJ +cWv cjn eBb bYl @@ -63158,9 +62006,9 @@ cpU bzl ckH bzl -rTf +oUD bPq -bwq +kLR ckH bzl bCz @@ -63175,7 +62023,7 @@ bvz bvz bvz bvz -skl +etQ bmv bmv bmv @@ -63277,9 +62125,9 @@ ahZ ahZ agS ahZ -aay +eQo aaU -acc +tVB aka aiZ akH @@ -63291,17 +62139,17 @@ agR ahZ amw ahZ -bVr +syh vkG vkG vkG -aln -alX -alX -anM -aoL -cgn -jOp +htf +qIi +qIi +vqV +xlF +lAk +eEc cjn bXC bYm @@ -63328,16 +62176,16 @@ eBz aHR aHR lZo -aVG -udS +mnW +rEL bzl -bgA -bzm -csu -bzm -bzm -pvY -bDA +akc +uII +iCd +uII +uII +lIM +qSS bCz bLH bQp @@ -63452,9 +62300,9 @@ ahZ ahZ ahZ ahZ -aay -byN -byQ +eQo +tsp +okz ajh aiZ afZ @@ -63468,15 +62316,15 @@ agR agR pVf vkG -bQT -avH +qtj +jBN vkG vkG vkG cjn -aoM -cgn -aqK +wcl +lAk +xrs cjn asV atS @@ -63503,16 +62351,16 @@ aVH aHR aHR aHR -hyh -udS +nSL +rEL bzl bzl -bms -mko +aDc +lWc bzl bzl -bgA -bzm +akc +uII bIr bLJ bQq @@ -63524,7 +62372,7 @@ vOs vOs vOs bWZ -kFz +mes vOs bmv bmv @@ -63627,8 +62475,8 @@ ahZ ahZ ahZ ahZ -aay -byO +eQo +gjw akB alj ajh @@ -63641,17 +62489,17 @@ aiW akH agR agR -aoI -ajz -akb -akE -alo +iJG +sTF +fRq +rHO +eZf vkG -alo -bmX -cam -cgn -aqK +eZf +iaK +jsg +lAk +xrs arI asW atT @@ -63681,12 +62529,12 @@ cpU vOs vOs bzl -bjp +vHd vOs vOs vOs bzl -bjp +vHd vOs vOs cwn @@ -63802,8 +62650,8 @@ agR agH aiK agR -aay -acc +eQo +tVB akG alv age @@ -63820,13 +62668,13 @@ cdm cdm cdm cdm -alr -alo -amO -anP -cam +dyk +eZf +eHp +mGe +jsg cgY -aqK +xrs cjn cdn atU @@ -63976,9 +62824,9 @@ ahZ amm ado ado -abO -acg -acv +uBv +nZu +qUq bAi bna amm @@ -63995,13 +62843,13 @@ aac aac aac alH -nJO -alo -amP +vHP +eZf +vEX cjn -bVw -apI -apI +tCk +cvm +cvm cjn asY atV @@ -64170,13 +63018,13 @@ aac aac aac alH -nJO -alo -amP -anR -cam +vHP +eZf +vEX +pbi +jsg cgY -asL +enJ amN cdn atW @@ -64345,13 +63193,13 @@ aac aac aac alH -nJO -alY -amP -anU -cam +vHP +gUR +vEX +vYa +jsg cgY -asL +enJ arJ asZ cdn @@ -64501,9 +63349,9 @@ ahZ amm ado ado -abR -ach -byP +shA +fwe +qBQ bAi bna amn @@ -64520,13 +63368,13 @@ aac aac aac alH -nJO -alo -amP -anR -cam +vHP +eZf +vEX +pbi +jsg cgY -aqP +xUY bYU ata vCD @@ -64569,8 +63417,8 @@ rpX bjr bjr tiU -cti -btN +jhb +wKl aad aad srk @@ -64675,10 +63523,10 @@ apz agR ajc akH -aau -aaH -abw -byQ +jfo +uyb +tkX +okz ahZ alw ahZ @@ -64695,13 +63543,13 @@ aac aac aac alH -nJO -alo -amP +vHP +eZf +vEX cjn -aoM -cgn -asL +wcl +lAk +enJ cdn bZI bZI @@ -64744,7 +63592,7 @@ rpX bjr bjr kdm -cuc +tax cwq xkj aad @@ -64850,9 +63698,9 @@ age ajc aiZ afZ -aay +eQo aaI -acc +tVB ajc akH alR @@ -64870,13 +63718,13 @@ aac aac aac alH -amO -alo -amO -anV -cam +eHp +eZf +eHp +vwC +jsg cgY -asL +enJ bYU ata vCD @@ -64918,8 +63766,8 @@ wZZ rpX bjr tnM -reb -ctH +pLw +sEs xkj xkj xkj @@ -65025,9 +63873,9 @@ aiW aiZ aiZ afZ -aay +eQo aaI -byO +gjw ajh ahY agR @@ -65045,13 +63893,13 @@ aac aac aac alH -alo -aln -drS -anW -aoO +eZf +htf +miQ +fEs +eKf aMq -aqQ +rhw bYU cdn cdn @@ -65200,9 +64048,9 @@ aac aac aiZ afZ -biF +xSs aaI -acc +tVB age agR ahZ @@ -65220,13 +64068,13 @@ aac aac aac bME -als -alZ -als -anV +qxF +dbd +qxF +vwC cgY -apK -aqQ +eWA +rhw cdn cdn cdn @@ -65268,8 +64116,8 @@ wZZ rpX bjr tnM -hGm -ctZ +guB +kAy xjr xjr xkj @@ -65375,9 +64223,9 @@ aac aac aiZ afZ -biF +xSs aaU -acc +tVB age apz agR @@ -65400,7 +64248,7 @@ bME bME cjn vkG -bWd +cEs cjn cjn atb @@ -65444,7 +64292,7 @@ bjr bjr bjr tNQ -cuc +tax xkj xkj xkj @@ -65550,9 +64398,9 @@ aac aac aac aac -aay +eQo aaU -acc +tVB age tSb agR @@ -65619,7 +64467,7 @@ szX uVv uVv kdm -cuc +tax cwq xkj xkj @@ -65727,8 +64575,8 @@ aac aac aac aQT -aci -acw +bMD +kcq age adN bkT @@ -65784,17 +64632,17 @@ aXp aXp aad aad -btN -ctH +wKl +sEs lmv -bDD -btN +yjl +wKl aad srk aad aad aad -cvY +fTd xkj xkj cxJ @@ -65903,7 +64751,7 @@ aac aac aUD aUD -aXb +xGI aac adq adM @@ -65927,11 +64775,11 @@ pPk pPk pPk rok -rPA +pXp atd atY ave -tvk +oDp pPk pPk nqX @@ -65984,7 +64832,7 @@ cxW ugH ekh aHl -wab +oIj viA hsX viA @@ -66102,11 +64950,11 @@ bon bon bon bon -arK +fJN ate atZ avf -awr +bZg bon bon vVK @@ -66277,11 +65125,11 @@ agT bon bon bon -arL -atf -atf -atf -aws +aSh +ukK +ukK +ukK +ybS bon bon bon @@ -66527,7 +65375,7 @@ aad rxp oQe qwx -gqa +ixi eaO eaO ttQ @@ -66877,7 +65725,7 @@ aad rxp oQe sse -haZ +oln sXt xtw gTB @@ -67685,7 +66533,7 @@ vVK axV caV aBb -aCq +xvu aDw aCt aFI @@ -68035,7 +66883,7 @@ vVK cbF azu cbF -aCs +cMP aDy aEx aFJ @@ -70549,13 +69397,13 @@ khT rJf wbK khT -qXN -qXN -qXN -qXN -qXN -qXN -fre +eUV +eUV +eUV +eUV +eUV +eUV +tao jiQ uvw vit @@ -70730,7 +69578,7 @@ sQK sQK sQK ipd -hfq +ygo vsy vit iRk @@ -70905,7 +69753,7 @@ ixD ixD aCw ocE -hfq +ygo vsy vit vit @@ -71080,7 +69928,7 @@ khT khT khT ocE -hfq +ygo vsy vit aad @@ -71255,7 +70103,7 @@ vwX qOZ puV ocE -hfq +ygo vsy vit aad @@ -71430,7 +70278,7 @@ lZd sya puV ocE -hfq +ygo vsy aad aad @@ -71605,7 +70453,7 @@ gih sya puV hsg -hfq +ygo vsy khT khT @@ -71780,7 +70628,7 @@ lZd vyK puV hsg -hfq +ygo vsy pmT ixD @@ -71955,7 +70803,7 @@ vsy vsy khT khT -fzA +rpa vsy khT khT diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 9b2ce3953293..dce44a720577 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -1407,6 +1407,22 @@ "akh" = ( /turf/open/floor/almayer/bluecorner/east, /area/almayer/hallways/upper/midship_hallway) +"aki" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"akl" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 6; + pixel_x = 2 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) "akn" = ( /obj/structure/machinery/light{ dir = 4 @@ -1516,6 +1532,10 @@ }, /turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/lower_medical_medbay) +"akX" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) "ald" = ( /turf/open/floor/almayer/red, /area/almayer/shipboard/weapon_room) @@ -2226,6 +2246,10 @@ }, /turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering) +"aqi" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "aqm" = ( /obj/item/bedsheet/brown, /obj/structure/bed, @@ -2684,15 +2708,6 @@ /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) -"asY" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) "asZ" = ( /obj/structure/machinery/computer/cameras/almayer/ares{ dir = 4; @@ -2754,16 +2769,6 @@ /obj/structure/closet/secure_closet/staff_officer/armory/shotgun, /turf/open/floor/almayer/redfull, /area/almayer/command/cic) -"atp" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) "atq" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) @@ -2953,15 +2958,6 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/command/telecomms) -"auK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) "auL" = ( /obj/structure/surface/table/almayer, /obj/item/stack/sheet/plasteel{ @@ -3031,16 +3027,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/midship_hallway) -"avc" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) "avd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -3584,19 +3570,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) -"ayc" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north2) "aye" = ( /obj/structure/bed/chair, /turf/open/floor/almayer/orange/north, @@ -3619,12 +3592,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"ayn" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) "ayo" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Evacuation Airlock PU-2"; @@ -3732,18 +3699,6 @@ }, /turf/open/floor/almayer/silver/east, /area/almayer/command/cic) -"ayQ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"ayR" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) "ayV" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/orange/north, @@ -3818,19 +3773,6 @@ /obj/item/cell/high, /turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) -"azk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north2) "azl" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/bluecorner/east, @@ -3922,6 +3864,10 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) +"azN" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer, +/area/almayer/living/briefing) "azU" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -4041,18 +3987,6 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) -"aAG" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) "aAK" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, @@ -4424,13 +4358,6 @@ "aCo" = ( /turf/open/gm/grass/grass1, /area/almayer/medical/upper_medical) -"aCp" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) "aCt" = ( /obj/structure/bed/sofa/south/white/right, /turf/open/floor/almayer/sterile_green, @@ -4971,19 +4898,6 @@ /obj/structure/machinery/light, /turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) -"aFJ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) "aGa" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -5255,12 +5169,6 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"aHU" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) "aHX" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -5286,6 +5194,11 @@ "aId" = ( /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"aIe" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "aIf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -5321,31 +5234,6 @@ /obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"aIr" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"aIv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"aIw" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) "aIx" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/floor/grass, @@ -6176,12 +6064,6 @@ }, /turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) -"aOE" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north2) "aOF" = ( /obj/structure/bed/chair{ dir = 1 @@ -6244,13 +6126,6 @@ /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/almayer/cargo, /area/almayer/maint/upper/u_a_s) -"aOU" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) "aOV" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/kpack, @@ -6888,12 +6763,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"aTf" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north1) "aTg" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) @@ -7030,12 +6899,6 @@ }, /turf/open/floor/almayer/green/west, /area/almayer/living/offices) -"aUa" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north1) "aUd" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ @@ -7275,6 +7138,41 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_aft_hallway) +"aVQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 + }, +/obj/item/trash/pistachios{ + layer = 2; + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/machinery/recharger{ + layer = 3.1; + pixel_y = 22 + }, +/obj/item/ammo_magazine/rifle/incendiary{ + current_rounds = 0; + desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; + pixel_x = 10; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 8; + layer = 3.2; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) "aVR" = ( /obj/structure/ladder{ height = 2; @@ -7531,10 +7429,29 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) +"aXZ" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "aYd" = ( /obj/structure/dropship_equipment/medevac_system, /turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) +"aYs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "aYt" = ( /turf/open/floor/almayer, /area/almayer/hallways/hangar) @@ -7559,17 +7476,6 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/hallways/hangar) -"aYE" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south2) "aYH" = ( /obj/structure/safe/cl_office, /turf/open/floor/wood/ship, @@ -8187,6 +8093,14 @@ }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) +"bed" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "beg" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 @@ -8266,12 +8180,6 @@ /obj/structure/closet/secure_closet/medical2, /turf/open/floor/almayer/sterile_green_corner/east, /area/almayer/medical/operating_room_one) -"beE" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) "beH" = ( /turf/open/floor/almayer, /area/almayer/living/briefing) @@ -8341,12 +8249,6 @@ }, /turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_medbay) -"beZ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) "bfd" = ( /obj/structure/machinery/light{ dir = 1 @@ -8813,12 +8715,6 @@ }, /turf/open/floor/almayer/red, /area/almayer/command/lifeboat) -"biL" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) "biV" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 @@ -8887,6 +8783,12 @@ }, /turf/open/floor/almayer/cargo_arrow, /area/almayer/living/offices) +"bjM" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) "bjQ" = ( /obj/structure/machinery/shower{ dir = 8 @@ -9122,6 +9024,10 @@ "blJ" = ( /turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/starboard) +"blQ" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "blZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/med_data/laptop, @@ -10253,6 +10159,18 @@ }, /turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/general_equipment) +"bvS" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) "bvX" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -10566,6 +10484,10 @@ }, /turf/open/floor/almayer/silver/east, /area/almayer/living/cryo_cells) +"byE" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer, +/area/almayer/living/briefing) "bzg" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -11214,34 +11136,6 @@ }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"bED" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bEE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/tool/warning_cone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "bEF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -11252,19 +11146,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/red/southeast, /area/almayer/squads/alpha) -"bEK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "bEN" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -13452,12 +13333,6 @@ /obj/structure/machinery/light, /turf/open/floor/almayer/blue, /area/almayer/squads/delta) -"bVr" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "bVs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -13471,6 +13346,10 @@ "bVw" = ( /turf/open/floor/almayer/bluecorner/east, /area/almayer/living/briefing) +"bVx" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) "bVy" = ( /obj/structure/machinery/chem_dispenser/corpsman{ pixel_y = 3 @@ -13790,21 +13669,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"bZq" = ( -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) "bZr" = ( /turf/open/floor/almayer/plating_striped/north, /area/almayer/squads/req) @@ -13966,15 +13830,6 @@ }, /turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/operating_room_three) -"cbc" = ( -/obj/structure/platform_decoration, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "cbg" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; @@ -14016,6 +13871,18 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/medical/lower_medical_medbay) +"cbA" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "cbF" = ( /obj/structure/closet/secure_closet/personal/cabinet{ pixel_x = 1; @@ -14203,6 +14070,10 @@ }, /turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/alpha) +"cel" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/living/briefing) "ceC" = ( /obj/structure/prop/almayer/ship_memorial, /turf/open/floor/plating/almayer, @@ -14561,24 +14432,9 @@ /obj/structure/machinery/light, /turf/open/floor/almayer/green, /area/almayer/squads/req) -"ciu" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) "civ" = ( /turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering) -"ciw" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) "cix" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -14602,12 +14458,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"ciD" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) "ciN" = ( /turf/open/floor/almayer/silver/southeast, /area/almayer/shipboard/brig/cic_hallway) @@ -14646,10 +14496,6 @@ }, /turf/open/floor/almayer/emerald, /area/almayer/squads/charlie) -"cji" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) "cjk" = ( /obj/structure/bed, /obj/structure/machinery/flasher{ @@ -15048,17 +14894,6 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/powered) -"cmF" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) "cmK" = ( /obj/structure/window/reinforced, /turf/open/floor/almayer/silver/west, @@ -15191,12 +15026,6 @@ }, /turf/open/floor/almayer/plate, /area/almayer/living/port_emb) -"cnP" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "cnR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -15243,27 +15072,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/morgue) -"cnW" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) "cnZ" = ( /obj/structure/filingcabinet/filingcabinet{ density = 0; @@ -15354,12 +15162,6 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"coH" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "coJ" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 10 @@ -15734,6 +15536,10 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"cxB" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south2) "cxF" = ( /obj/structure/barricade/handrail{ dir = 8 @@ -15748,6 +15554,11 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) +"cyf" = ( +/obj/structure/platform/metal/almayer/north, +/obj/item/tool/mop, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "cyh" = ( /obj/structure/machinery/door/airlock/almayer/generic/glass{ name = "\improper Passenger Cryogenics Bay" @@ -15791,12 +15602,6 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"cyU" = ( -/obj/structure/bed/sofa/south/white/left, -/obj/structure/platform, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) "cyZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -15842,13 +15647,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"cAz" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "cAF" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -15925,13 +15723,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"cCD" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/living/briefing) "cCE" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -16561,27 +16352,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer_hull/outerhull_dir/east, /area/almayer/engineering/upper_engineering/starboard) -"cOV" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -24; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) "cOY" = ( /obj/structure/machinery/status_display{ pixel_x = -32 @@ -16651,6 +16421,10 @@ "cQv" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/general_equipment) +"cQy" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) "cQC" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -16729,6 +16503,12 @@ }, /turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) +"cSi" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) "cSk" = ( /obj/structure/machinery/door/window/southleft, /turf/open/floor/almayer/silver/east, @@ -17235,6 +17015,16 @@ }, /turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) +"dbK" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"dbM" = ( +/obj/structure/machinery/door/poddoor/almayer/blended/liaison{ + id = "RoomDivider" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) "dbX" = ( /turf/open/floor/almayer/orange/east, /area/almayer/maint/upper/mess) @@ -17302,6 +17092,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) +"ddF" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "ddL" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, @@ -17320,12 +17114,6 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/hallways/upper/aft_hallway) -"deg" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) "deq" = ( /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) @@ -17438,6 +17226,10 @@ /obj/structure/bed/chair/bolted, /turf/open/floor/almayer/plating_striped, /area/almayer/shipboard/brig/execution) +"dhj" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "dho" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -17771,21 +17563,6 @@ }, /turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) -"dpp" = ( -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) "dpA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -17855,6 +17632,27 @@ /obj/effect/spawner/random/bomb_supply, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) +"drP" = ( +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 2 + }, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 4; + layer = 3.2; + pixel_x = -15; + pixel_y = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) "drT" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -17886,6 +17684,13 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) +"dsn" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) "dsA" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/almayer/redcorner/west, @@ -17900,18 +17705,20 @@ }, /turf/open/floor/almayer/cargo, /area/almayer/maint/upper/u_a_s) +"dtE" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) "dtH" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"dtZ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) "duo" = ( /obj/structure/machinery/power/apc/almayer/west, /turf/open/floor/prison/kitchen, @@ -18191,18 +17998,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_p) -"dAl" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/desk_bell{ - anchored = 1; - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) "dAm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -18243,6 +18038,12 @@ }, /turf/open/floor/almayer/plate, /area/almayer/command/cic) +"dBc" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south2) "dBg" = ( /obj/structure/stairs{ dir = 1 @@ -18255,6 +18056,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/port_midship_hallway) +"dBi" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north2) "dBj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -18763,6 +18570,19 @@ }, /turf/open/floor/almayer/aicore/no_build/ai_silver/west, /area/almayer/command/airoom) +"dJS" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "dKp" = ( /turf/open/floor/almayer/research/containment/corner/east, /area/almayer/medical/containment/cell/cl) @@ -19022,6 +18842,11 @@ }, /turf/open/floor/almayer/orangecorner/east, /area/almayer/engineering/lower) +"dQH" = ( +/obj/item/device/multitool, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "dQV" = ( /obj/structure/machinery/light{ dir = 1 @@ -19222,19 +19047,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/medical_science) -"dVH" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "dVO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -19483,6 +19295,10 @@ }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) +"eaA" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/living/chapel) "ebd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, @@ -19740,11 +19556,6 @@ /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer/aicore/no_build/ai_silver/west, /area/almayer/command/airoom) -"egp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform_decoration, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) "egt" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Chapel" @@ -19861,20 +19672,6 @@ }, /turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/processing) -"eii" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) "eim" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -20686,10 +20483,6 @@ "eyD" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/starboard_hallway) -"eyG" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) "eyM" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, @@ -20838,6 +20631,10 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/briefing) +"eBj" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) "eBx" = ( /obj/structure/closet/emcloset/legacy, /turf/open/floor/almayer/cargo, @@ -20858,6 +20655,12 @@ }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) +"eBJ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) "eBO" = ( /obj/structure/machinery/medical_pod/bodyscanner, /turf/open/floor/almayer/mono, @@ -20886,19 +20689,6 @@ /obj/item/storage/firstaid/adv, /turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) -"eCo" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) "eCt" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/plasteel{ @@ -20960,6 +20750,21 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) +"eDv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) "eDT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -21068,30 +20873,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"eFY" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/structure/machinery/door_control/cl/office/window{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/structure/machinery/door_control/cl/office/door{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/spacecash/c500{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/item/paper_bin/wy{ - pixel_x = 17; - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) "eGq" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/almayer/green/east, @@ -21105,10 +20886,6 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"eGB" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer, -/area/almayer/living/briefing) "eGH" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -21315,6 +21092,10 @@ }, /turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/mp_bunks) +"eMb" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "eMr" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -21452,6 +21233,18 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/workshop/hangar) +"ePX" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/bed/sofa/south/white/right, +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/plush/therapy/random_color{ + pixel_y = -3 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 29 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) "eQj" = ( /obj/structure/machinery/door_control{ id = "ARES StairsUpper"; @@ -21870,6 +21663,11 @@ }, /turf/open/floor/almayer/plate, /area/almayer/living/briefing) +"eYv" = ( +/obj/item/tool/screwdriver, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "eYD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -21931,17 +21729,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"eZp" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "eZC" = ( /turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_fore_hallway) @@ -22068,13 +21855,6 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/processing) -"fbu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "fbw" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -22328,6 +22108,10 @@ }, /turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/shipboard/brig/medical) +"fgy" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "fgE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -22404,32 +22188,6 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"fiE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Containment Cell 4"; - name = "Control Panel"; - pixel_x = -17; - req_access_txt = "200"; - pixel_y = 9 - }, -/obj/item/storage/photo_album, -/obj/structure/machinery/computer/cameras/containment/hidden{ - dir = 4; - pixel_x = -17; - pixel_y = -5; - plane = -5 - }, -/obj/item/device/camera_film{ - pixel_x = -3 - }, -/obj/structure/machinery/door_control/cl/office/divider{ - pixel_x = 7; - pixel_y = -7 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) "fiQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -22457,6 +22215,19 @@ }, /turf/open/floor/almayer/blue/west, /area/almayer/hallways/upper/midship_hallway) +"fkC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "fkK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -22488,6 +22259,11 @@ /obj/structure/largecrate/supply/supplies/water, /turf/open/floor/almayer/red, /area/almayer/maint/upper/u_a_p) +"flK" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "flL" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ autoname = 0; @@ -22496,21 +22272,6 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"flR" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) "flW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light{ @@ -23200,6 +22961,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) +"fCv" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "fCG" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -23236,6 +23004,14 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/hallways/upper/fore_hallway) +"fDg" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) "fDh" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -23266,10 +23042,6 @@ /obj/effect/landmark/late_join/charlie, /turf/open/floor/almayer/plate, /area/almayer/squads/charlie) -"fDS" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) "fDU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -23395,6 +23167,10 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) +"fGn" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "fGu" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -23422,6 +23198,16 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) +"fGM" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/largecrate/random/case/double{ + layer = 2.98 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "fHb" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, @@ -23986,13 +23772,6 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) -"fVa" = ( -/obj/item/stack/catwalk, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_p) "fVe" = ( /turf/closed/wall/almayer/outer, /area/almayer/maint/hull/upper/u_a_p) @@ -24184,16 +23963,6 @@ }, /turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"fZI" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 7; - pixel_y = -3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "fZR" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, @@ -24288,6 +24057,25 @@ "gbw" = ( /turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/brig/processing) +"gbX" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = 24; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "gcm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -24583,17 +24371,6 @@ }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"gjq" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) "gjt" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer/red/east, @@ -24634,6 +24411,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) +"gkg" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) "gkr" = ( /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_bow) @@ -24729,12 +24510,11 @@ "gnv" = ( /turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/south1) -"gnB" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +"gnG" = ( +/obj/item/stack/catwalk, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_p) "gnK" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -24749,12 +24529,6 @@ /obj/item/frame/table, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_p) -"gof" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "goj" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 2; @@ -24917,12 +24691,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"grd" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "gre" = ( /turf/open/floor/almayer/greencorner/north, /area/almayer/hallways/upper/fore_hallway) @@ -24940,6 +24708,12 @@ }, /turf/open/floor/almayer/red/southwest, /area/almayer/shipboard/navigation) +"grJ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) "grR" = ( /turf/open/floor/almayer/orangecorner/east, /area/almayer/living/briefing) @@ -25277,12 +25051,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_fore_hallway) -"gyv" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) "gyw" = ( /turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_aft_hallway) @@ -25296,6 +25064,22 @@ }, /turf/open/floor/plating, /area/almayer/maint/lower/constr) +"gyI" = ( +/obj/structure/machinery/computer/skills{ + req_one_access_txt = "200" + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/pen/clicky{ + pixel_x = 14; + plane = -5; + pixel_y = 2 + }, +/obj/item/tool/pen/clicky{ + pixel_x = 14; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) "gyN" = ( /obj/structure/machinery/prop{ desc = "It's a server box..."; @@ -25317,29 +25101,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"gzn" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/obj/structure/platform_decoration, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "gzq" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) @@ -25629,12 +25390,6 @@ /obj/structure/machinery/cm_vending/gear/commanding_officer, /turf/open/floor/almayer/cargo, /area/almayer/living/commandbunks) -"gGb" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "gGf" = ( /obj/structure/machinery/light{ dir = 1 @@ -25757,6 +25512,20 @@ }, /turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) +"gIB" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "gII" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -25942,19 +25711,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"gLE" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) "gLG" = ( /obj/structure/machinery/light{ dir = 1 @@ -26160,14 +25916,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"gQu" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/storage/firstaid/rad, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "gQF" = ( /obj/structure/bed/chair/comfy{ buckling_y = 2; @@ -26192,14 +25940,6 @@ /obj/item/tool/wet_sign, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_p) -"gRd" = ( -/obj/structure/platform, -/obj/structure/target{ - desc = "'Such an insult (referring to Canton) can only be repaid in American blood. Mark my words, this will happen'-Kolonel Ganbaatar UPP Armed Forces"; - name = "Kolonel Ganbaatar" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) "gRJ" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ @@ -26272,6 +26012,10 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) +"gST" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) "gTk" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light{ @@ -26497,21 +26241,6 @@ }, /turf/open/floor/almayer/silver, /area/almayer/hallways/lower/repair_bay) -"gYj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "gYl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -26540,23 +26269,24 @@ }, /turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/starboard_hallway) -"gYI" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "gYU" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) +"gYW" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) "gZw" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"gZz" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/living/briefing) "gZK" = ( /turf/open/floor/almayer, /area/almayer/living/auxiliary_officer_office) @@ -26856,6 +26586,10 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer/plate, /area/almayer/maint/lower/s_bow) +"hfy" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "hfO" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -26977,11 +26711,14 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"hip" = ( -/obj/item/device/multitool, -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +"hii" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "hiu" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice13"; @@ -27195,16 +26932,6 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) -"hlX" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) "hme" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -27224,20 +26951,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) +"hmn" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) "hmv" = ( /obj/structure/machinery/power/reactor, /turf/open/floor/almayer/test_floor4, /area/almayer/engineering/lower/engine_core) -"hmw" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "hmy" = ( /obj/structure/machinery/light{ dir = 1 @@ -27615,12 +27338,6 @@ }, /turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/upper_engineering/port) -"htI" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) "htL" = ( /obj/structure/surface/table/almayer, /obj/item/prop/magazine/boots/n150{ @@ -27769,6 +27486,10 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) +"hxX" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) "hxZ" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/spade{ @@ -27883,6 +27604,14 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) +"hzS" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) "hAc" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/flare, @@ -28034,6 +27763,10 @@ }, /turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) +"hCY" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer, +/area/almayer/living/chapel) "hDw" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -28206,17 +27939,6 @@ /obj/item/storage/pouch/general/large, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"hHr" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) "hIp" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -28264,16 +27986,6 @@ }, /turf/open/floor/almayer/orange, /area/almayer/engineering/lower) -"hJk" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) "hJD" = ( /obj/structure/bed/sofa/south/grey/right{ pixel_y = 12 @@ -28475,6 +28187,14 @@ /obj/structure/bed/chair/comfy, /turf/open/floor/almayer/silver/north, /area/almayer/living/auxiliary_officer_office) +"hPo" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "hPu" = ( /obj/structure/largecrate/supply, /obj/item/tool/crowbar, @@ -28624,6 +28344,11 @@ "hSk" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"hSo" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) "hSt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -28833,26 +28558,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) -"hWq" = ( -/obj/structure/platform{ - layer = 3.1 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/ashtray/plastic{ - layer = 3.4; - pixel_x = 4 - }, -/obj/structure/largecrate/random/case, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) "hWr" = ( /obj/effect/landmark/start/marine/smartgunner/bravo, /obj/effect/landmark/late_join/bravo, @@ -28909,13 +28614,6 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer/blue/north, /area/almayer/command/cichallway) -"hWP" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) "hXb" = ( /turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/charlie_delta_shared) @@ -28939,6 +28637,13 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"hXg" = ( +/obj/vehicle/powerloader, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) "hXm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -28995,6 +28700,10 @@ /obj/structure/machinery/medical_pod/sleeper, /turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) +"hYo" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) "hYE" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -29084,6 +28793,11 @@ }, /turf/open/floor/almayer/plate, /area/almayer/command/cichallway) +"iaj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) "ial" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29120,6 +28834,10 @@ }, /turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) +"iaK" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer, +/area/almayer/living/briefing) "iaO" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 @@ -29276,6 +28994,10 @@ /obj/item/tool/extinguisher, /turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/lower_medical_lobby) +"ieH" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) "ieX" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/distribution_pipes{ @@ -29771,12 +29493,6 @@ }, /turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"iry" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south2) "irJ" = ( /obj/item/tool/wirecutters{ pixel_y = -7 @@ -29951,12 +29667,6 @@ /obj/structure/closet, /turf/open/floor/almayer/plate, /area/almayer/living/port_emb) -"ivL" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "ivM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -29974,6 +29684,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"iwm" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) "iwB" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -30058,6 +29772,10 @@ }, /turf/open/floor/almayer/plate, /area/almayer/squads/delta) +"ixL" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) "ixN" = ( /obj/structure/largecrate, /obj/item/folded_tent/reqs{ @@ -30079,6 +29797,13 @@ }, /turf/open/floor/almayer/silver, /area/almayer/hallways/lower/repair_bay) +"iyf" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) "iyC" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -30106,6 +29831,10 @@ }, /turf/open/floor/almayer/blue, /area/almayer/squads/delta) +"iyY" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "izf" = ( /obj/structure/disposalpipe/up/almayer{ dir = 4; @@ -30251,6 +29980,13 @@ "iEg" = ( /turf/open/floor/almayer/silver/northwest, /area/almayer/living/auxiliary_officer_office) +"iEn" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "iEr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -30385,15 +30121,6 @@ /obj/structure/machinery/camera/autoname/almayer, /turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/upper_medical) -"iGQ" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "iHc" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) @@ -30409,14 +30136,6 @@ }, /turf/open/floor/almayer/cargo, /area/almayer/maint/upper/u_m_p) -"iIj" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "iIl" = ( /obj/structure/sink{ dir = 8; @@ -30425,6 +30144,19 @@ }, /turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) +"iIo" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "iIO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -30532,29 +30264,12 @@ "iKM" = ( /turf/open/floor/almayer/mono, /area/almayer/engineering/port_atmos) -"iKV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "iKZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/starboard) -"iLd" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) "iLf" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/disk_reader, @@ -30617,12 +30332,6 @@ /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) -"iMx" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) "iMD" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -30966,12 +30675,6 @@ }, /turf/open/floor/almayer/silvercorner, /area/almayer/hallways/upper/midship_hallway) -"iSB" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "iSV" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; @@ -31109,6 +30812,11 @@ }, /turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/shipboard/brig/medical) +"iUJ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "iUW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -31284,6 +30992,12 @@ /obj/item/book/manual/evaguide, /turf/open/floor/almayer, /area/almayer/living/briefing) +"iXV" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south2) "iXW" = ( /obj/structure/machinery/power/apc/almayer/east, /obj/effect/decal/warning_stripes{ @@ -31319,6 +31033,13 @@ }, /turf/open/floor/almayer/green/east, /area/almayer/squads/req) +"iYv" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "iYx" = ( /obj/structure/bed/chair, /turf/open/floor/almayer/plate, @@ -31347,17 +31068,6 @@ }, /turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop/hangar) -"iZP" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) "iZU" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/disposalpipe/segment, @@ -31522,6 +31232,29 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) +"jcj" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_y = -3; + pixel_x = 4; + plane = -5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4; + pixel_y = -3; + plane = -5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) "jcu" = ( /obj/effect/projector{ name = "Almayer_Down3"; @@ -31540,11 +31273,6 @@ "jcP" = ( /turf/open/floor/almayer/plating_striped, /area/almayer/engineering/upper_engineering/starboard) -"jdl" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/platform_decoration, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) "jdm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -31748,24 +31476,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"jgy" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"jgF" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) "jgJ" = ( /turf/open/floor/almayer/blue/east, /area/almayer/command/cichallway) @@ -32042,25 +31752,6 @@ }, /turf/open/floor/almayer/blue/north, /area/almayer/hallways/upper/fore_hallway) -"jkY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/lower/repair_bay) "jlc" = ( /turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/starboard) @@ -32221,6 +31912,12 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower) +"jnJ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) "jnX" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -32245,6 +31942,10 @@ }, /turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) +"joS" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) "jpl" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -32337,6 +32038,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) +"jqZ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "jre" = ( /obj/structure/closet/secure_closet/cargotech, /obj/item/clothing/accessory/storage/webbing, @@ -32436,6 +32149,11 @@ }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_s) +"jsw" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) "jsx" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -32516,12 +32234,6 @@ }, /turf/open/floor/almayer/mono, /area/almayer/hallways/lower/vehiclehangar) -"juX" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) "jva" = ( /obj/structure/closet, /obj/structure/sign/safety/med_cryo{ @@ -32648,10 +32360,13 @@ /obj/structure/machinery/light, /turf/open/floor/almayer/red, /area/almayer/shipboard/brig/starboard_hallway) -"jwJ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +"jwB" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/living/chapel) "jwK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer/red/north, @@ -32763,10 +32478,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_midship_hallway) -"jzZ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) "jAe" = ( /obj/structure/surface/rack, /obj/item/storage/beer_pack, @@ -32782,17 +32493,18 @@ }, /turf/open/floor/almayer/orangecorner, /area/almayer/hallways/lower/starboard_aft_hallway) -"jAz" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 +"jAt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 +/obj/structure/platform/metal/almayer/north, +/obj/structure/largecrate/random/case/double, +/obj/item/cell/crap{ + pixel_y = 14 }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "jAB" = ( /obj/structure/machinery/light{ dir = 4 @@ -33019,6 +32731,10 @@ }, /turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) +"jGG" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "jGI" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/drinks/cans/waterbottle, @@ -33114,20 +32830,6 @@ "jKn" = ( /turf/open/floor/almayer/plating/northeast, /area/almayer/shipboard/port_missiles) -"jKz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/case/double, -/obj/item/cell/crap{ - pixel_y = 14 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "jKF" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -33247,17 +32949,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"jMR" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) "jNc" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ id = "Containment Cell 3"; @@ -33501,16 +33192,14 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/cargo, /area/almayer/engineering/upper_engineering/starboard) -"jRS" = ( +"jRO" = ( +/obj/structure/platform/metal/almayer, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform{ - dir = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "jSc" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -34078,12 +33767,6 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/containment) -"kbV" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) "kbX" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -34225,11 +33908,6 @@ "kfU" = ( /turf/open/floor/plating, /area/almayer/powered/agent) -"kgp" = ( -/obj/structure/bed/sofa/south/white/right, -/obj/structure/platform, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) "kgs" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -34289,16 +33967,6 @@ }, /turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) -"khf" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "khD" = ( /turf/open/floor/almayer/plate, /area/almayer/living/offices/flight) @@ -34366,12 +34034,6 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/u_a_s) -"kiT" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) "kiU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -34470,6 +34132,10 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/almayer/plate, /area/almayer/hallways/lower/starboard_aft_hallway) +"kkQ" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "kkW" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/atmospipes, @@ -34549,6 +34215,14 @@ "knm" = ( /turf/open/floor/almayer, /area/almayer/hallways/lower/port_fore_hallway) +"knq" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "knH" = ( /obj/structure/machinery/vending/coffee, /obj/structure/sign/safety/coffee{ @@ -34623,6 +34297,30 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/almayer/squads/delta) +"kpf" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/structure/machinery/door_control/cl/office/window{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/machinery/door_control/cl/office/door{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/spacecash/c500{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/item/paper_bin/wy{ + pixel_x = 17; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) "kph" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ @@ -34882,15 +34580,6 @@ }, /turf/open/floor/almayer/green, /area/almayer/hallways/lower/starboard_midship_hallway) -"ktI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) "ktQ" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 @@ -35203,12 +34892,10 @@ }, /turf/open/floor/almayer/plate, /area/almayer/living/port_emb) -"kzO" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) +"kzQ" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "kAh" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 @@ -35233,12 +34920,6 @@ /obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer/red, /area/almayer/shipboard/brig/processing) -"kAU" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) "kBo" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -35383,6 +35064,14 @@ }, /turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/lower_medical_lobby) +"kDY" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) "kEc" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -35450,6 +35139,14 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_aft_hallway) +"kEV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) "kEW" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, @@ -35509,6 +35206,14 @@ /obj/structure/machinery/light, /turf/open/floor/almayer/plate, /area/almayer/hallways/lower/port_fore_hallway) +"kGA" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "kGF" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -35713,10 +35418,6 @@ }, /turf/open/floor/almayer/greencorner/west, /area/almayer/squads/req) -"kMa" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "kMp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -35811,6 +35512,10 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) +"kNF" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north2) "kNO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -36033,17 +35738,6 @@ }, /turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, /area/almayer/command/airoom) -"kRU" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/repair_bay) "kSi" = ( /obj/structure/machinery/cm_vending/gear/intelligence_officer{ density = 0; @@ -36636,6 +36330,18 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) +"leT" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"leU" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) "leY" = ( /obj/structure/bed/sofa/south/white/left, /turf/open/floor/almayer/sterile_green_side/northeast, @@ -36669,6 +36375,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_f_s) +"lgf" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) "lgk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, @@ -36698,6 +36411,10 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) +"lgC" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/living/briefing) "lgF" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -36960,12 +36677,6 @@ "llo" = ( /turf/open/floor/almayer/green/east, /area/almayer/hallways/upper/fore_hallway) -"llK" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "llO" = ( /turf/open/floor/almayer/orange/east, /area/almayer/hallways/hangar) @@ -36975,13 +36686,6 @@ }, /turf/closed/wall/almayer, /area/almayer/hallways/lower/starboard_umbilical) -"lmi" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) "lml" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -37223,6 +36927,14 @@ }, /turf/open/floor/almayer/red/east, /area/almayer/hallways/upper/aft_hallway) +"lqM" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) "lqN" = ( /obj/item/device/assembly/mousetrap/armed, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -37267,6 +36979,10 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"lsj" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "lsn" = ( /obj/structure/surface/table/almayer, /obj/item/paper{ @@ -37634,6 +37350,10 @@ "lAl" = ( /turf/open/floor/almayer/orange/east, /area/almayer/squads/bravo) +"lAm" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "lAu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ dir = 1 @@ -37813,16 +37533,6 @@ }, /turf/open/floor/almayer/red/west, /area/almayer/shipboard/brig/lobby) -"lEF" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) "lEO" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -38034,6 +37744,12 @@ /obj/structure/machinery/sleep_console, /turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/lower_medical_medbay) +"lJI" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north2) "lJK" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -38280,6 +37996,10 @@ }, /turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) +"lPc" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "lPm" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -38381,15 +38101,6 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/p_bow) -"lRE" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) "lRP" = ( /obj/structure/surface/table/almayer, /obj/item/prop/helmetgarb/chaplain_patch, @@ -38484,15 +38195,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"lVR" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "lVS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -38531,12 +38233,6 @@ }, /turf/open/floor/almayer/plate, /area/almayer/command/cic) -"lVZ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "lWr" = ( /obj/structure/largecrate/random/case, /turf/open/floor/almayer/red/northwest, @@ -38679,6 +38375,10 @@ }, /turf/open/floor/almayer/plate, /area/almayer/command/cic) +"lZH" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) "lZI" = ( /obj/structure/prop/invuln/lattice_prop{ dir = 1; @@ -38859,6 +38559,17 @@ damage_cap = 15000 }, /area/almayer/squads/alpha) +"mfC" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/structure/platform_decoration/metal/almayer/northeast, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) "mfL" = ( /obj/item/reagent_container/glass/bucket/janibucket{ pixel_x = -1; @@ -38930,12 +38641,6 @@ }, /turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/charlie_delta_shared) -"mgX" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "mha" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -39185,12 +38890,6 @@ "mlm" = ( /turf/open/floor/almayer/redfull, /area/almayer/living/cryo_cells) -"mlz" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) "mlF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -39257,6 +38956,13 @@ "mnI" = ( /turf/open/floor/almayer/blue, /area/almayer/living/briefing) +"mnP" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "mnW" = ( /obj/structure/surface/table/almayer, /obj/item/device/reagent_scanner{ @@ -39423,12 +39129,6 @@ }, /turf/open/floor/almayer/dark_sterile, /area/almayer/medical/operating_room_two) -"mqZ" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "mrD" = ( /obj/structure/machinery/light{ dir = 1 @@ -39664,15 +39364,6 @@ "mwP" = ( /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_stern) -"mwQ" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "mwR" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down4"; @@ -39837,20 +39528,6 @@ /obj/effect/spawner/random/tool, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mAs" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) "mAF" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -39930,16 +39607,6 @@ }, /turf/open/floor/almayer/red/east, /area/almayer/shipboard/brig/processing) -"mBJ" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) "mBO" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer/orangefull, @@ -40024,6 +39691,10 @@ }, /turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower) +"mDR" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) "mDT" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, @@ -40077,17 +39748,6 @@ }, /turf/open/floor/almayer/aicore/no_build/ai_silver/east, /area/almayer/command/airoom) -"mEE" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) "mFc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40098,6 +39758,13 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/processing) +"mFi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) "mFq" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -40253,6 +39920,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/midship_hallway) +"mIa" = ( +/obj/structure/platform/metal/almayer/west, +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "mId" = ( /obj/structure/closet, /obj/item/clothing/suit/armor/riot/marine/vintage_riot, @@ -40262,20 +39934,6 @@ }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_m_s) -"mIi" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) "mIy" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -40514,6 +40172,24 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) +"mMg" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"mMB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "mMP" = ( /obj/effect/landmark/start/intel, /obj/effect/landmark/late_join/intel, @@ -40528,12 +40204,6 @@ }, /turf/open/floor/almayer/silver, /area/almayer/shipboard/brig/cic_hallway) -"mNm" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) "mNG" = ( /obj/structure/sign/safety/stairs{ pixel_x = 15; @@ -40667,6 +40337,10 @@ }, /turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower/engine_core) +"mQw" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "mQx" = ( /obj/effect/projector{ name = "Almayer_Up3"; @@ -40888,6 +40562,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_f_s) +"mUI" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "mUP" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -41355,12 +41036,6 @@ /obj/structure/bed/chair/bolted, /turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/processing) -"neE" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) "neG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -41411,6 +41086,25 @@ }, /turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) +"nfw" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -24; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "nfC" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -41429,16 +41123,6 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/south1) -"ngl" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) "ngn" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -41511,29 +41195,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) -"ngV" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = -6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) "nhi" = ( /obj/structure/bed/chair/comfy, /obj/structure/window/reinforced/ultra, @@ -42079,16 +41740,6 @@ /obj/structure/closet/secure_closet/fridge/fish/stock, /turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) -"nqV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) "nqW" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 32 @@ -42736,6 +42387,32 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/lower/s_bow) +"nFc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Containment Cell 4"; + name = "Control Panel"; + pixel_x = -17; + req_access_txt = "200"; + pixel_y = 9 + }, +/obj/item/storage/photo_album, +/obj/structure/machinery/computer/cameras/containment/hidden{ + dir = 4; + pixel_x = -17; + pixel_y = -5; + plane = -5 + }, +/obj/item/device/camera_film{ + pixel_x = -3 + }, +/obj/structure/machinery/door_control/cl/office/divider{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) "nFm" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/surgery/scalpel, @@ -42829,6 +42506,10 @@ /obj/structure/closet/emcloset, /turf/open/floor/almayer/cargo, /area/almayer/lifeboat_pumps/north2) +"nHs" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) "nHu" = ( /obj/structure/largecrate/random/barrel/yellow, /obj/structure/machinery/light{ @@ -43092,29 +42773,6 @@ }, /turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/upper_engineering) -"nOb" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_y = -3; - pixel_x = 4; - plane = -5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -4; - pixel_y = -3; - plane = -5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) "nOp" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -43432,12 +43090,6 @@ }, /turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) -"nUT" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "nVa" = ( /obj/structure/bed/chair, /obj/effect/decal/warning_stripes{ @@ -43472,6 +43124,12 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) +"nVo" = ( +/obj/vehicle/powerloader, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) "nVq" = ( /obj/structure/sign/safety/security{ pixel_x = -17; @@ -43674,12 +43332,6 @@ /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"nZG" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "nZK" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -43860,20 +43512,6 @@ }, /turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) -"odG" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "odN" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -44242,30 +43880,22 @@ }, /turf/open/floor/almayer_hull/outerhull_dir, /area/space) -"okO" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) +"okG" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) "old" = ( /obj/structure/machinery/light/small, /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/s_bow) -"olz" = ( -/obj/structure/platform_decoration{ - dir = 4 +"olw" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/living/chapel) "olF" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer/cargo, @@ -44400,20 +44030,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/upper_medical) -"onU" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) "onY" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -44780,12 +44396,6 @@ /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"ouQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) "ouU" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/toolbox, @@ -44903,15 +44513,6 @@ "oxy" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_s) -"oxz" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "oxU" = ( /obj/structure/machinery/photocopier, /turf/open/floor/almayer, @@ -45027,13 +44628,6 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_umbilical) -"oAB" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/living/briefing) "oAK" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -45085,6 +44679,17 @@ }, /turf/open/floor/almayer/aicore/no_build/ai_silver/east, /area/almayer/command/airoom) +"oBG" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/flasher{ + id = "briefing_flash"; + range = 12 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/living/briefing) "oCa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45328,6 +44933,10 @@ /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/fore_hallway) +"oFP" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "oFV" = ( /obj/structure/sign/poster{ pixel_x = -32; @@ -45384,12 +44993,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"oGF" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "oGI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -45422,22 +45025,6 @@ }, /turf/open/floor/almayer/mono, /area/almayer/hallways/upper/fore_hallway) -"oGY" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/door_control/cl/office/evac{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/structure/machinery/door_control/cl/quarter/windows{ - pixel_x = -5; - pixel_y = -3 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) "oHc" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -45618,6 +45205,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) +"oLr" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/storage/xeno_tag_case/full{ + pixel_y = -6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) "oLF" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -46035,15 +45645,6 @@ "oSM" = ( /turf/open/floor/almayer, /area/almayer/hallways/lower/port_midship_hallway) -"oSR" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "oTe" = ( /obj/item/prop/almayer/box, /obj/item/prop{ @@ -46085,16 +45686,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_umbilical) -"oTO" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "oUi" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -46110,13 +45701,6 @@ /obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) -"oUz" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) "oUG" = ( /obj/structure/machinery/light{ dir = 8 @@ -46238,6 +45822,10 @@ }, /turf/open/floor/almayer/green, /area/almayer/hallways/lower/port_midship_hallway) +"oWU" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "oXb" = ( /obj/effect/landmark/start/marine/charlie, /obj/effect/landmark/late_join/charlie, @@ -46398,6 +45986,10 @@ /obj/item/reagent_container/spray/cleaner, /turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) +"oZX" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) "paa" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/almayer/sterile_green_side/northwest, @@ -46565,16 +46157,6 @@ "pdp" = ( /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/p_bow) -"pdK" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "pdT" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -46641,10 +46223,10 @@ /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) -"pfH" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) +"pfJ" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer, +/area/almayer/living/briefing) "pfL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -47217,13 +46799,6 @@ /obj/structure/bed/chair/bolted, /turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/brig/processing) -"ptv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) "ptA" = ( /obj/structure/stairs{ dir = 1; @@ -47248,16 +46823,6 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/s_stern) -"ptZ" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "pub" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 @@ -47451,27 +47016,6 @@ }, /turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/bravo) -"pyx" = ( -/obj/item/storage/fancy/cigarettes/blackpack{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/tool/lighter/zippo/gold{ - pixel_x = 2 - }, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - dir = 4; - layer = 3.2; - pixel_x = -15; - pixel_y = 1 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) "pyy" = ( /obj/structure/filingcabinet, /turf/open/floor/almayer/plate, @@ -47555,16 +47099,22 @@ "pAm" = ( /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"pAV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/tool/mop, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "pBG" = ( /turf/closed/wall/almayer, /area/almayer/command/corporateliaison) +"pBU" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "pCq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -47637,6 +47187,18 @@ }, /turf/open/floor/almayer/plate, /area/almayer/squads/charlie) +"pDM" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "pDW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -47776,12 +47338,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"pHD" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "pHF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47894,6 +47450,14 @@ /obj/effect/landmark/late_join/nurse, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) +"pKx" = ( +/obj/structure/platform/metal/almayer/east, +/obj/item/reagent_container/glass/rag, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "pKB" = ( /obj/structure/surface/rack, /obj/item/circuitboard/firealarm, @@ -48037,12 +47601,6 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) -"pNM" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south1) "pNP" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -48509,6 +48067,10 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/blue, /area/almayer/living/pilotbunks) +"pWU" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) "pXl" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -48594,6 +48156,10 @@ "pYX" = ( /turf/open/floor/almayer/silvercorner/west, /area/almayer/shipboard/brig/cic_hallway) +"pZj" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) "pZH" = ( /obj/structure/machinery/shower{ dir = 8 @@ -49536,6 +49102,29 @@ }, /turf/open/floor/almayer/blue/northeast, /area/almayer/squads/delta) +"qrp" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "qrv" = ( /turf/open/floor/almayer/silver, /area/almayer/command/computerlab) @@ -49699,21 +49288,6 @@ }, /turf/open/floor/almayer/plate, /area/almayer/living/offices) -"qwJ" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) "qwL" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -49721,6 +49295,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/cargo, /area/almayer/squads/charlie) +"qwS" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "qwU" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -49763,6 +49347,14 @@ }, /turf/closed/wall/almayer/research/containment/wall/purple, /area/almayer/medical/containment/cell) +"qxn" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) "qxr" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -49849,10 +49441,6 @@ "qyo" = ( /turf/open/floor/almayer/blue/north, /area/almayer/command/cichallway) -"qys" = ( -/obj/structure/platform, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) "qyA" = ( /obj/structure/machinery/cm_vending/clothing/intelligence_officer{ density = 0; @@ -49962,13 +49550,6 @@ }, /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/medical_science) -"qAG" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "qAK" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ashtray/plastic, @@ -50329,12 +49910,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_m_p) -"qIa" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "qIf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -50586,6 +50161,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) +"qMo" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"qMu" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "qMD" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/flashbangs, @@ -51088,20 +50675,6 @@ }, /turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/upper/port) -"qXZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "qYd" = ( /turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/south2) @@ -51533,12 +51106,6 @@ }, /turf/open/floor/almayer/cargo, /area/almayer/shipboard/brig/cryo) -"rgk" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "rgt" = ( /turf/closed/wall/almayer, /area/almayer/hallways/lower/port_umbilical) @@ -51710,41 +51277,6 @@ }, /turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) -"rjV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 - }, -/obj/item/trash/pistachios{ - layer = 2; - pixel_x = 6; - pixel_y = -6 - }, -/obj/structure/machinery/recharger{ - layer = 3.1; - pixel_y = 22 - }, -/obj/item/ammo_magazine/rifle/incendiary{ - current_rounds = 0; - desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; - pixel_x = 10; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - dir = 8; - layer = 3.2; - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/port_emb) "rjX" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 15; @@ -51762,24 +51294,14 @@ }, /turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) +"rko" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) "rkz" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/gym) -"rkK" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/bed/sofa/south/white/right, -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/plush/therapy/random_color{ - pixel_y = -3 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 29 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) "rkV" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -51832,9 +51354,31 @@ }, /turf/open/floor/almayer/silver/east, /area/almayer/hallways/lower/repair_bay) +"rlJ" = ( +/obj/structure/platform/metal/almayer/east, +/obj/item/storage/firstaid/rad, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "rlQ" = ( /turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) +"rlW" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/door_control/cl/office/evac{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/structure/machinery/door_control/cl/quarter/windows{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) "rlZ" = ( /turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) @@ -51953,6 +51497,10 @@ }, /turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) +"roB" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) "roG" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -52213,6 +51761,23 @@ "rth" = ( /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"rtt" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular{ + pixel_y = 6 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -8 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/storage/box/wy_mre{ + pixel_x = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) "rtA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/pen{ @@ -52434,13 +51999,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"rzk" = ( -/obj/item/tool/screwdriver, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "rzy" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/supply, @@ -52511,6 +52069,14 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_s) +"rAT" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) "rBa" = ( /obj/structure/machinery/cm_vending/clothing/synth, /obj/structure/prop/invuln/overhead_pipe{ @@ -52827,22 +52393,6 @@ }, /turf/open/floor/almayer/orange/east, /area/almayer/maint/upper/mess) -"rGU" = ( -/obj/structure/machinery/computer/skills{ - req_one_access_txt = "200" - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/pen/clicky{ - pixel_x = 14; - plane = -5; - pixel_y = 2 - }, -/obj/item/tool/pen/clicky{ - pixel_x = 14; - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) "rHc" = ( /turf/open/floor/carpet, /area/almayer/command/cichallway) @@ -52888,6 +52438,12 @@ }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) +"rHz" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) "rHB" = ( /obj/item/ammo_box/magazine/misc/mre/empty{ pixel_x = 8; @@ -53117,6 +52673,14 @@ "rLU" = ( /turf/open/floor/almayer/research/containment/floor2/west, /area/almayer/medical/containment/cell/cl) +"rMe" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "rMh" = ( /obj/structure/machinery/light, /turf/open/floor/almayer/red/southwest, @@ -53190,6 +52754,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"rNu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/recharge_station{ + layer = 2.9 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) "rNK" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer/orange, @@ -53664,6 +53246,15 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) +"rXT" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "rXU" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -53855,16 +53446,6 @@ }, /turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) -"scu" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) "scy" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -54110,33 +53691,6 @@ /obj/structure/machinery/autolathe, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"shp" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/obj/structure/machinery/flasher{ - id = "briefing_flash"; - range = 12 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/living/briefing) -"shs" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) "sht" = ( /turf/open/floor/almayer, /area/almayer/living/pilotbunks) @@ -54153,6 +53707,10 @@ }, /turf/open/floor/almayer/cargo, /area/almayer/engineering/lower/engine_core) +"sij" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) "sin" = ( /turf/open/floor/almayer/bluecorner, /area/almayer/hallways/upper/midship_hallway) @@ -54718,6 +54276,10 @@ /obj/structure/machinery/sentry_holder/almayer, /turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) +"sty" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "stO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm/brig, @@ -54777,10 +54339,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/almayer/no_build, /area/almayer/hallways/lower/starboard_midship_hallway) -"suY" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "svf" = ( /obj/structure/machinery/light{ dir = 1 @@ -55017,6 +54575,13 @@ }, /turf/open/floor/almayer/blue, /area/almayer/squads/delta) +"sAn" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) "sAw" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -55492,16 +55057,11 @@ }, /turf/open/floor/plating/almayer, /area/almayer/medical/medical_science) -"sLo" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) +"sLq" = ( +/obj/structure/bed/sofa/south/white/right, +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) "sLx" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -55623,16 +55183,6 @@ /obj/item/clothing/suit/storage/hazardvest/yellow, /turf/open/floor/almayer/cargo/southwest, /area/almayer/engineering/upper_engineering) -"sOy" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) "sOD" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -55809,12 +55359,6 @@ }, /turf/open/floor/almayer/silver/northeast, /area/almayer/shipboard/brig/cic_hallway) -"sTw" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) "sTU" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -56044,17 +55588,6 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer/test_floor4, /area/almayer/hallways/lower/port_umbilical) -"sYw" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south2) "sYD" = ( /obj/structure/machinery/status_display{ pixel_x = 16; @@ -56224,6 +55757,10 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/medical/containment/cell) +"taI" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) "taV" = ( /obj/effect/projector{ name = "Almayer_Down1"; @@ -56451,6 +55988,11 @@ }, /turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) +"tgl" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) "tgm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -57020,6 +56562,10 @@ /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer/plating/northeast, /area/almayer/engineering/lower/engine_core) +"tqG" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) "tqO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -57212,38 +56758,6 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) -"ttS" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"ttX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular{ - pixel_y = 6 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -8 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -10; - pixel_y = 14 - }, -/obj/item/storage/box/wy_mre{ - pixel_x = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"tuf" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) "tuk" = ( /obj/structure/machinery/computer/crew, /turf/open/floor/almayer/plate, @@ -57448,18 +56962,6 @@ /obj/structure/bed/stool, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_s) -"txO" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) "txS" = ( /obj/structure/surface/table/almayer, /obj/item/fuel_cell, @@ -57485,6 +56987,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"tyo" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) "tyC" = ( /obj/structure/sign/safety/medical{ pixel_x = 8; @@ -57649,16 +57155,6 @@ }, /turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/execution_storage) -"tBU" = ( -/obj/structure/platform, -/obj/structure/largecrate/random/case/double{ - layer = 2.98 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "tBY" = ( /obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/plate, @@ -57906,6 +57402,10 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) +"tIa" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/living/briefing) "tId" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/almayer/aicore/no_build/ai_cargo, @@ -58142,6 +57642,18 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/plate, /area/almayer/maint/upper/u_a_s) +"tOa" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "tOr" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -58184,6 +57696,10 @@ }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_p) +"tPh" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "tPj" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ access_modified = 1; @@ -58256,6 +57772,14 @@ "tQV" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/south1) +"tRh" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) "tRs" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, @@ -58406,12 +57930,6 @@ }, /turf/open/floor/almayer/bluefull, /area/almayer/living/bridgebunks) -"tVn" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "tVq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -58602,6 +58120,14 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"tYQ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) "tYV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -59014,6 +58540,12 @@ }, /turf/open/floor/almayer/redfull, /area/almayer/hallways/lower/starboard_midship_hallway) +"uhu" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) "uhA" = ( /turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/starboard_hallway) @@ -59126,14 +58658,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/commandbunks) -"ulp" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "uly" = ( /obj/structure/bed/stool, /turf/open/floor/almayer/plating_striped/east, @@ -59152,12 +58676,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/cargo_arrow, /area/almayer/living/offices) -"umh" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) "umk" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -59172,6 +58690,10 @@ /obj/structure/machinery/light/small, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/almayer/powered/agent) +"ump" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "umy" = ( /obj/structure/machinery/light{ dir = 1 @@ -59238,15 +58760,6 @@ /obj/item/storage/bible, /turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) -"unZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "uoi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -59258,6 +58771,12 @@ /obj/item/tool/pen, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_s) +"uol" = ( +/obj/structure/bed/sofa/south/white/left, +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) "uoA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -60042,26 +59561,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_aft_hallway) -"uES" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/recharge_station{ - layer = 2.9 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) "uFd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -60073,6 +59572,23 @@ }, /turf/open/floor/almayer/plate, /area/almayer/living/offices) +"uFf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) "uFg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -60103,6 +59619,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) +"uFv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "uFH" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -60264,6 +59787,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) +"uLc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "uLn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -60282,6 +59813,10 @@ /obj/item/reagent_container/food/snacks/mre_pack/xmas3, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/s_stern) +"uLL" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "uMc" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -60315,27 +59850,6 @@ }, /turf/open/floor/almayer/emerald, /area/almayer/living/port_emb) -"uMO" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = 24; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) "uMS" = ( /turf/open/floor/almayer/blue/northeast, /area/almayer/squads/delta) @@ -60576,17 +60090,6 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"uSW" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "uTk" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/plating, @@ -60724,6 +60227,10 @@ }, /turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/brig/perma) +"uUy" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "uUz" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -60813,6 +60320,12 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) +"uWj" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) "uWk" = ( /obj/structure/machinery/light{ dir = 8 @@ -61591,6 +61104,10 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/maint/hull/upper/p_bow) +"vkE" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/living/chapel) "vkI" = ( /obj/item/coin/silver{ desc = "A small coin, bearing the falling falcons insignia."; @@ -62084,6 +61601,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/stern) +"vsq" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) "vsz" = ( /obj/structure/machinery/camera/autoname/almayer/brig{ dir = 8 @@ -62315,6 +61838,11 @@ }, /turf/open/floor/almayer/cargo_arrow/west, /area/almayer/command/cic) +"vwW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) "vwY" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, @@ -62787,6 +62315,14 @@ "vGn" = ( /turf/open/floor/almayer/red/north, /area/almayer/shipboard/brig/interrogation) +"vGz" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) "vGA" = ( /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer/silver/north, @@ -63348,6 +62884,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_s) +"vPU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "vPW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63444,18 +62988,6 @@ }, /turf/open/floor/almayer/red/north, /area/almayer/hallways/upper/port) -"vRX" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/upper_medical) "vSl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -63827,24 +63359,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower) -"vXv" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 6; - pixel_x = 2 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) "vXF" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -64172,6 +63686,24 @@ /obj/structure/machinery/light/small, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_m_p) +"web" = ( +/obj/structure/platform/metal/almayer, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/ashtray/plastic{ + layer = 3.4; + pixel_x = 4 + }, +/obj/structure/largecrate/random/case, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) "wed" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, @@ -64324,6 +63856,12 @@ }, /turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) +"whF" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) "whO" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, @@ -64523,6 +64061,10 @@ }, /turf/open/floor/almayer/mono, /area/almayer/engineering/upper_engineering/starboard) +"wkZ" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) "wlb" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -64579,16 +64121,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"wlF" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) "wlK" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -64776,29 +64308,25 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_aft_hallway) -"wqW" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 12; - pixel_x = 2 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) "wra" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) +"wrm" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "wrr" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -64918,6 +64446,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) +"wtm" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "wtn" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; @@ -65080,6 +64612,14 @@ /obj/structure/filingcabinet, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"wvu" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/target{ + desc = "'Such an insult (referring to Canton) can only be repaid in American blood. Mark my words, this will happen'-Kolonel Ganbaatar UPP Armed Forces"; + name = "Kolonel Ganbaatar" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) "wvE" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ @@ -65227,6 +64767,17 @@ }, /turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) +"wyb" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "wyt" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/microwave{ @@ -65445,6 +64996,12 @@ }, /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/almayer/powered/agent) +"wEq" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) "wEw" = ( /obj/effect/landmark/start/pilot/dropship_pilot, /turf/open/floor/plating/plating_catwalk, @@ -65472,12 +65029,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"wEO" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) "wET" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/guncabinet, @@ -65527,6 +65078,13 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"wFB" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "wFN" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -65715,6 +65273,11 @@ "wJH" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell/cl) +"wJI" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) "wKb" = ( /obj/structure/bed/chair{ dir = 8 @@ -65804,16 +65367,6 @@ "wLm" = ( /turf/open/floor/almayer/plating_striped/east, /area/almayer/living/cryo_cells) -"wLu" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) "wLy" = ( /obj/structure/pipes/vents/pump/no_boom{ name = "Secure Reinforced Air Vent"; @@ -66017,36 +65570,18 @@ }, /turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) -"wNT" = ( -/obj/structure/platform, -/turf/open/floor/almayer, -/area/almayer/living/briefing) "wOt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"wOv" = ( -/obj/structure/platform, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "wOK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer/orange/southwest, /area/almayer/engineering/upper_engineering/port) -"wPa" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/reagent_container/glass/rag, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "wPf" = ( /obj/structure/sign/safety/reception{ pixel_x = 32; @@ -66079,6 +65614,14 @@ }, /turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) +"wQh" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) "wQu" = ( /obj/effect/projector{ name = "Almayer_Up3"; @@ -66180,11 +65723,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"wSx" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) "wSB" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/upper/u_a_p) @@ -66427,8 +65965,12 @@ }, /turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north2) -"wXl" = ( -/obj/structure/platform, +"wXo" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = -3 + }, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/upper/u_a_p) "wXz" = ( @@ -66683,6 +66225,18 @@ }, /turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) +"xdS" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 12; + pixel_x = 2 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) "xee" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -66723,6 +66277,13 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/engineering/laundry) +"xeW" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "xfm" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -66740,6 +66301,12 @@ /obj/item/tool/pen, /turf/open/floor/almayer/plate, /area/almayer/maint/hull/lower/l_a_p) +"xfr" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) "xfK" = ( /obj/structure/machinery/light{ dir = 1 @@ -66803,6 +66370,10 @@ }, /turf/open/floor/plating/almayer, /area/almayer/maint/hull/lower/l_a_p) +"xgw" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "xgJ" = ( /obj/structure/machinery/light{ dir = 1 @@ -66885,6 +66456,14 @@ /obj/structure/window/reinforced, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"xiu" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/upper_medical) "xiH" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, @@ -66895,6 +66474,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/s_bow) +"xiQ" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "xiU" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/tool/minihoe{ @@ -67200,15 +66783,6 @@ }, /turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"xpZ" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) "xqh" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldingtool, @@ -67249,12 +66823,6 @@ }, /turf/closed/wall/almayer, /area/almayer/command/securestorage) -"xqQ" = ( -/obj/structure/machinery/door/poddoor/almayer/blended/liaison{ - id = "RoomDivider" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) "xrg" = ( /obj/structure/sign/safety/hazard{ pixel_x = 32; @@ -67310,16 +66878,6 @@ }, /turf/open/floor/almayer/plate, /area/almayer/engineering/lower/workshop) -"xrT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "xsi" = ( /obj/structure/stairs{ dir = 1 @@ -67385,6 +66943,10 @@ }, /turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/lower_medical_lobby) +"xtT" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) "xub" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67401,6 +66963,11 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) +"xud" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "xui" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, @@ -67669,6 +67236,11 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south2) +"xyf" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "xyk" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -67787,19 +67359,6 @@ /obj/item/clipboard, /turf/open/floor/almayer/green/southwest, /area/almayer/squads/req) -"xAI" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) "xAY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -67817,6 +67376,17 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/engineering/upper_engineering/port) +"xBr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "xBK" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer/cargo, @@ -67897,6 +67467,14 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/upper/fore_hallway) +"xDd" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "xDe" = ( /obj/effect/projector{ name = "Almayer_Down4"; @@ -67973,12 +67551,6 @@ /obj/item/seeds/goldappleseed, /turf/open/floor/almayer/green/north, /area/almayer/shipboard/brig/cells) -"xGm" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "xGo" = ( /obj/structure/machinery/autolathe, /turf/open/floor/almayer/cargo, @@ -68199,6 +67771,10 @@ }, /turf/open/floor/almayer/orange/east, /area/almayer/engineering/lower) +"xKs" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) "xKG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -68306,6 +67882,11 @@ "xMs" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_two) +"xMy" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) "xMz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -68437,6 +68018,19 @@ }, /turf/open/floor/almayer/dark_sterile, /area/almayer/command/corporateliaison) +"xOw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform_decoration/metal/almayer/east, +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "xOL" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -68462,23 +68056,6 @@ }, /turf/open/floor/almayer/research/containment/corner/east, /area/almayer/medical/containment/cell) -"xPn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) "xPq" = ( /obj/structure/filingcabinet, /obj/item/folder/yellow, @@ -68844,6 +68421,18 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/perma) +"xXk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "xXl" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -68932,6 +68521,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/almayer/living/briefing) +"xZs" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) "xZt" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light{ @@ -68975,12 +68568,6 @@ }, /turf/open/floor/almayer/cargo, /area/almayer/squads/charlie) -"yac" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) "yap" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -69124,13 +68711,6 @@ }, /turf/open/floor/almayer/blue/north, /area/almayer/squads/delta) -"ydf" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) "ydh" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -69286,6 +68866,10 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/lower/port_fore_hallway) +"yfz" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) "yfG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -69465,16 +69049,6 @@ }, /turf/open/floor/almayer/test_floor4, /area/almayer/living/grunt_rnr) -"yko" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/repair_bay) "ykv" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "InnerShutter"; @@ -88726,7 +88300,7 @@ sGw dvD xzB eWs -kRU +hXg dON oJj vLp @@ -89132,10 +88706,10 @@ sGw fzx dWJ eWs -yko +nVo qlL -oxz -gnB +aYs +dhj vnY mRH jHt @@ -89159,9 +88733,9 @@ vbf vbf vbf yeN -gzn -iGQ -bED +qrp +mUI +xBr baM bcb bHB @@ -89338,7 +88912,7 @@ eWs kqm vnY wjL -oGF +ddF gKK dBR jHt @@ -89362,9 +88936,9 @@ sIU gdp lcV lcV -hWq +web hif -jKz +jAt xyw bcc bHB @@ -89538,10 +89112,10 @@ sGw dvD kFU eWs -oUz -mqZ -mqZ -lVZ +jsw +tPh +tPh +fgy ctQ wer pKW @@ -89565,9 +89139,9 @@ btO btO btO btO -neE -mNm -bEE +gST +cQy +xOw rOc fVz bHB @@ -89741,9 +89315,9 @@ sGw xzB xer eWs -uES -xrT -gYj +rNu +hii +fkC vnY ctQ wer @@ -90350,9 +89924,9 @@ sGw oGf dvD eWs -jkY -ktI -xPn +uFf +mFi +eDv xyQ ixT hBG @@ -90783,9 +90357,9 @@ kRP bvf bvf bvf -egp -ptv -qXZ +vwW +iaj +xXk vsF bGJ hBF @@ -90986,9 +90560,9 @@ cSx nPB hYG ggh -gRd +wvu hif -jRS +uLc xyw bGK bHB @@ -91189,9 +90763,9 @@ bkh ohE vWJ qUL -txO -mwQ -bEK +qwS +iEn +mMB baS bGL bHB @@ -93086,11 +92660,11 @@ dpo ajI add add -aFJ -aTf -aTf -aTf -iZP +uWj +yfz +yfz +yfz +cSi add add ajI @@ -93132,11 +92706,11 @@ aJU tiW aJU qQp -xAI -kiT -kiT -kiT -gjq +whF +xZs +xZs +xZs +eBJ aJU aJU tiW @@ -93289,11 +92863,11 @@ myl ajI add fsU -aHU +ieH aTm xxB aTm -jgF +oZX fsU add ajI @@ -93335,11 +92909,11 @@ aJU tiW aJU gBW -ouQ +ixL iun sfA vPm -qys +iwm gBW aJU tiW @@ -93491,13 +93065,13 @@ aee avd acW awW -auK -aIr +sAn +okG aTm cpP aTm -juX -scu +gYW +hzS awW acW aeZ @@ -93537,13 +93111,13 @@ yhI tTu sgU baw -lRE -tuf +dsn +hxX vbB aqB vbB -mlz -sOy +rko +rAT baw sgU xVF @@ -93694,13 +93268,13 @@ aec avd acW awW -avc -aIv +tYQ +eBj aTm cpP cbM -jzZ -sLo +xKs +lqM awW acW afr @@ -93740,13 +93314,13 @@ csI goL sgU baw -hJk -yac +wQh +bVx vbB aqB vbB -fDS -iLd +tyo +vGz baw sgU xVF @@ -93898,11 +93472,11 @@ tGj ajI add fsU -aHU +ieH aTm fnk aTm -jgF +oZX fsU add ajI @@ -93944,11 +93518,11 @@ aJU tiW aJU gBW -ouQ +ixL vbB aqB tBq -qys +iwm gBW aJU tiW @@ -94101,11 +93675,11 @@ aeY ajI add add -aIw -aUa -aUa -aUa -jAz +uhu +lZH +lZH +lZH +hmn add add ajI @@ -94147,11 +93721,11 @@ aJU tiW aJU aJU -gLE -pNM -pNM -pNM -hHr +wEq +xtT +xtT +xtT +xfr aJU aJU tiW @@ -97577,7 +97151,7 @@ ajl ajl nHP xNu -cnW +mfC aCo aEO sqf @@ -97779,9 +97353,9 @@ ajl ajl xNu aCo -okO -vRX -aAG +rHz +xiu +mMg kbn aCo ajl @@ -97981,11 +97555,11 @@ axm eDo ajl pth -vXv -olz +akl +pWU gXl -aCp -wqW +hSo +xdS awj ajl aLZ @@ -98184,11 +97758,11 @@ xsz jTj ajl yjb -lmi +tgl xgP axm wJo -cyU +uol anp ajl nzv @@ -98387,11 +97961,11 @@ tEi asu ajl ajl -rkK +ePX vtx axm akw -kgp +sLq ajl ajl ajl @@ -99831,7 +99405,7 @@ rdZ bCs pBG rLp -ttX +rtt pBG vpf mRU @@ -100237,7 +99811,7 @@ rdZ rdZ pBG cVq -nOb +jcj pBG vpI mRU @@ -100440,7 +100014,7 @@ rdZ rdZ pBG dzp -ngV +oLr pBG jtU jtU @@ -100843,8 +100417,8 @@ pBG gqQ cHG nQA -dAl -pyx +bvS +drP lKO pBG lEf @@ -101046,10 +100620,10 @@ qvL wmP wmP dRP -eFY +kpf nQA eAN -xqQ +dbM rfb cXF rLU @@ -101249,10 +100823,10 @@ pBG lvb eAN jVg -rGU +gyI xCf eAN -xqQ +dbM rLv bHk vZw @@ -101452,10 +101026,10 @@ pBG hEl eAN fQS -oGY +rlW neT eAN -xqQ +dbM cNH vzp vZw @@ -101658,7 +101232,7 @@ jVg nQA nQA eAN -xqQ +dbM rfb bHk vZw @@ -101861,7 +101435,7 @@ epJ jML jML fnH -xqQ +dbM rLv pRy wwW @@ -102470,7 +102044,7 @@ fdx pBG pVF ppF -fiE +nFc pBG jtU jtU @@ -103240,8 +102814,8 @@ aNi cYT aNm cYT -lEF -beZ +jwB +vkE vif bhx aOR @@ -103444,7 +103018,7 @@ aZe aNm aNm lRP -beE +hCY bhx bhx hMi @@ -103647,7 +103221,7 @@ aZr aNm aNm lTE -beE +hCY bhx bhx aOR @@ -103850,7 +103424,7 @@ aZs aNm aNm mwL -beE +hCY bhx bhx aOR @@ -104052,8 +103626,8 @@ aNi jWr aNm jWr -mBJ -dtZ +olw +eaA bhx bhx wWg @@ -104172,11 +103746,11 @@ bmr beH beH beH -eGB -jMR +pfJ +kDY ufh -mEE -sTw +fDg +cel beH beH beH @@ -104375,11 +103949,11 @@ boq boq boq boq -wNT +byE pVB hsg iPv -kbV +azN uMk uMk uMk @@ -104578,11 +104152,11 @@ boq boq boq boq -wNT +byE vBp kNl nhi -kbV +azN uMk uMk uMk @@ -104781,11 +104355,11 @@ boq boq boq boq -wNT +byE vBp hWs nhi -kbV +azN uMk uMk uMk @@ -104984,11 +104558,11 @@ boq boq boq boq -wNT +byE pUA wga mfM -kbV +azN uMk uMk uMk @@ -105187,11 +104761,11 @@ beH beH duv beH -htI -cCD -shp -oAB -gyv +iaK +lgC +oBG +gZz +tIa beH duv beH @@ -105831,7 +105405,7 @@ jJk wLG tyb sZH -rjV +aVQ ivz nsY qZy @@ -107518,10 +107092,10 @@ xIj qdJ xIj mOi -onU -onU -qwJ -cOV +pDM +pDM +pBU +nfw imS rxl xQV @@ -107924,10 +107498,10 @@ xIj yiu xIj mOi -mAs -mAs -flR -uMO +jqZ +jqZ +dJS +gbX tFe xVc xQV @@ -110340,11 +109914,11 @@ ahz ajs aeC aeC -ayc -aOE -aOE -aOE -ciu +lJI +kNF +kNF +kNF +jnJ aeC aeC ajs @@ -110388,11 +109962,11 @@ vcE kUV vcE vcE -eCo -iry -iry -iry -sYw +vsq +cxB +cxB +cxB +dBc vcE vcE kUV @@ -110543,11 +110117,11 @@ pMk ajs aeC wXh -ayn +hYo atr lMy aex -ciw +wkZ wXh aeC ydz @@ -110591,11 +110165,11 @@ sSl kkx vcE kpo -iMx +mDR tGi cea bXe -eyG +leU kpo vcE kUV @@ -110745,13 +110319,13 @@ nGY gyU ajk aeA -asY -ayQ +lgf +dbK atr iDK atr -ciD -ngl +tqG +kEV aeA ajk aeA @@ -110793,13 +110367,13 @@ qYd lJY xVS lJY -ttS -wEO +iyf +roB faO cOd bXe -deg -wLu +joS +leT lJY xVS kPH @@ -110948,13 +110522,13 @@ dEJ gyU ajk aeA -atp -ayR +dtE +akX atr iDK atr -cji -nqV +taI +qMo aeA ajk ily @@ -110996,13 +110570,13 @@ yat cBb xVS lJY -hlX -umh +tRh +sij bXe cOd tGi -pfH -wlF +gkg +qxn lJY xVS kPH @@ -111152,11 +110726,11 @@ gCB ajs aeC wXh -ayn +hYo atr rmG bXz -ciw +wkZ wXh aeC ajs @@ -111200,11 +110774,11 @@ dHe kUV vcE kpo -iMx +mDR bXe sZY mzF -eyG +leU kpo vcE kUV @@ -111355,11 +110929,11 @@ aeB ajs aeC aeC -azk -aOU -biL -biL -cmF +dBi +xMy +pZj +pZj +bjM aeC aeC ajs @@ -111403,11 +110977,11 @@ vcE kUV vcE vcE -shs -kAU -kAU -kAU -aYE +grJ +nHs +nHs +nHs +iXV vcE vcE kUV @@ -113230,12 +112804,12 @@ yat fPF jei nNT -jwJ -mgX -nZG -nZG -nZG -xGm +lsj +ump +oWU +oWU +oWU +uUy jei fVe aag @@ -113433,12 +113007,12 @@ loP kNq fJp aPO -wXl +sty dJe unQ nxe tjH -tVn +fGn oUx fVe aag @@ -113590,9 +113164,9 @@ wIu wXJ taw oNK -kMa -qIa -iSB +xgw +jGG +qMu oxy oQL hdy @@ -113636,12 +113210,12 @@ loP ang hqu aPO -wXl +sty fJp iCD iCD iCD -tVn +fGn jei fVe aag @@ -113793,9 +113367,9 @@ taw taw taw wTn -wOv +aqi tuJ -iKV +xyf oxy oQL oFr @@ -113839,12 +113413,12 @@ loP fvo jei aPO -wXl +sty kNq jcE jei -lVR -pHD +fCv +lAm dhp fVe aag @@ -113996,12 +113570,12 @@ hEr oQL kiR oxy -wOv +aqi qlu -qAG +aIe oxy -kMa -gQu +xgw +rlJ cMx nDH qbw @@ -114042,12 +113616,12 @@ loP nSk jei aPO -wXl +sty kNq cke hqu -oSR -fZI +xeW +wXo jei fVe aag @@ -114199,11 +113773,11 @@ hEr xBS taw tTG -wOv +aqi wIu -ydf +iUJ oxy -wOv +aqi ixu cMx tNY @@ -114245,12 +113819,12 @@ loP kNq fJp nOx -wXl +sty kNq kNq kNq kNq -pAV +cyf jei fVe aag @@ -114402,11 +113976,11 @@ oqc smw taw oxy -rgk -nUT -cnP +kzQ +mQw +wtm oxy -wOv +aqi qlu cMx qbU @@ -114448,12 +114022,12 @@ oHx aPO iXB aPO -gof -bVr -ivL -ivL -ivL -fVa +lPc +oFP +eMb +eMb +eMb +gnG jei fVe aag @@ -114609,7 +114183,7 @@ oQL oQL lUQ oxy -tBU +fGM iDs cMx qbU @@ -114651,12 +114225,12 @@ loP kNq hnt aPO -wSx -gYI -wPa -gYI -gYI -rzk +xud +flK +pKx +flK +flK +eYv jei fVe aag @@ -114859,7 +114433,7 @@ yat kNq kNq kNq -gGb +blQ oUx fVe aag @@ -115062,7 +114636,7 @@ yat tiY qAK xGK -gGb +blQ jei fVe aag @@ -115265,7 +114839,7 @@ yat jei ltm oAT -gGb +blQ cmV fVe aag @@ -115468,7 +115042,7 @@ yat jei ltm ejj -gGb +blQ jei fVe aag @@ -115670,8 +115244,8 @@ flD yat xQe jei -lVR -pHD +fCv +lAm dhp fVe aag @@ -115873,8 +115447,8 @@ tie yat cfm jei -oSR -grd +xeW +kkQ jei fVe aag @@ -116077,7 +115651,7 @@ yat kNq fJp ekz -gGb +blQ oUx fVe aag @@ -116277,10 +115851,10 @@ kNq spd kNq kNq -dVH -cAz -bVr -pHD +wyb +mIa +oFP +lAm jei fVe aag @@ -116633,9 +116207,9 @@ aag fTl pWw hbE -cbc -qIa -qIa +rXT +jGG +jGG taw ptK afX @@ -116836,7 +116410,7 @@ aag fTl prX oYs -odG +gIB biC qlu taw @@ -121629,13 +121203,13 @@ wed uXk mlF jWb -unZ +mnP aPU aPU aPU aPU aPU -fbu +uFv jWb tos uXk @@ -121831,15 +121405,15 @@ hsy txS bVN oGJ -xpZ -llK +iYv +hfy mVr mZL mZL mZL gSa -coH -oTO +xiQ +rMe uqh iAE sct @@ -122237,15 +121811,15 @@ hsy igs nCn oGJ -uSW -kzO +knq +uLL vaZ kYL hmv sCV rjO -suY -pdK +iyY +kGA uqh pJr slv @@ -122441,13 +122015,13 @@ hsy wTB mlF uXk -hmw +xDd gSa mtZ hmv fQn wSV -ulp +jRO uXk tos slv @@ -123051,11 +122625,11 @@ ylh mlF hsy hmv -eZp -kzO +hPo +uLL pzM -hip -ptZ +dQH +wFB hmv hsy tos @@ -123255,9 +122829,9 @@ suJ hsy hsy gLG -khf +vPU bhI -iIj +bed hQw hsy hsy @@ -127070,11 +126644,11 @@ ktQ teZ wkM ege -hWP -bZq -bZq -mIi -mIi +wJI +wrm +wrm +tOa +tOa daz lmz lmz @@ -127476,11 +127050,11 @@ vyE mTr wkM qNc -jdl -dpp -dpp -jgy -eii +aki +iIo +iIo +cbA +aXZ daz lmz lmz diff --git a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm index a4bf6beb2f44..2129895439fb 100644 --- a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm +++ b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm @@ -136,6 +136,10 @@ /obj/structure/cargo_container/arious/leftmid, /turf/open/jungle, /area/whiskey_outpost/outside/south) +"az" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/gm/coast/beachcorner/north_east, +/area/whiskey_outpost/outside/river) "aA" = ( /mob/living/simple_animal/corgi{ name = "\improper Mr. Wiggles Sir" @@ -296,6 +300,14 @@ /obj/structure/disposalpipe/segment, /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north/northwest) +"bk" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/platform) "bl" = ( /turf/open/jungle, /area/whiskey_outpost/outside/lane/one_north) @@ -303,6 +315,13 @@ /obj/effect/landmark/ert_spawns/distress_wo, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) +"bn" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/gm/river, +/area/whiskey_outpost/outside/river/east) "bo" = ( /turf/open/gm/dirt/desert0, /area/whiskey_outpost/outside/lane/two_south) @@ -626,6 +645,10 @@ }, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) +"cK" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river, +/area/whiskey_outpost/outside/river/west) "cL" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin, @@ -638,6 +661,14 @@ /obj/structure/machinery/light/small, /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) +"cN" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/disposalpipe/segment, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) "cO" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, /turf/open/floor/whitegreen, @@ -768,6 +799,10 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/south/far) +"dw" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/coast/beachcorner2/north_east, +/area/whiskey_outpost/outside/lane/four_north) "dx" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, @@ -947,6 +982,14 @@ "ee" = ( /turf/open/floor/almayer/red/southwest, /area/whiskey_outpost/inside/cic) +"ef" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "eg" = ( /obj/structure/sign/safety/medical{ name = "\improper Triage Center" @@ -971,6 +1014,10 @@ /obj/structure/largecrate/supply/supplies/sandbags, /turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) +"en" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/coast/north, +/area/whiskey_outpost/outside/river/east) "eo" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/whiskey_outpost/outside/lane/four_south) @@ -1025,6 +1072,10 @@ /obj/structure/machinery/body_scanconsole, /turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) +"eE" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/coast/west, +/area/whiskey_outpost/outside/river/east) "eF" = ( /obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/prison, @@ -1263,12 +1314,6 @@ }, /turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) -"fI" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "fJ" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, @@ -1284,6 +1329,10 @@ }, /turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) +"fO" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/gm/coast/beachcorner/north_west, +/area/whiskey_outpost/outside/river) "fQ" = ( /obj/structure/flora/jungle/planttop1, /turf/open/jungle, @@ -1790,12 +1839,6 @@ "hQ" = ( /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/living) -"hR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/jungle, -/area/whiskey_outpost/outside/south) "hS" = ( /turf/open/floor/plating/warnplate/east, /area/whiskey_outpost/outside/lane/one_north) @@ -1897,26 +1940,18 @@ /obj/structure/machinery/power/apc/almayer/east, /turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) -"in" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) "io" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/one_south) -"ip" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/coast/south, -/area/whiskey_outpost/outside/lane/four_north) "iq" = ( /obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/living) +"ir" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "is" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, @@ -1932,18 +1967,6 @@ "iu" = ( /turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital/triage) -"iv" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) "iw" = ( /turf/open/floor/plating/warnplate/northeast, /area/whiskey_outpost/outside/north/northeast) @@ -2113,13 +2136,6 @@ /obj/item/weapon/gun/pistol/m4a3, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) -"jg" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile{ - breakable = 0; - explo_proof = 1 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/south/very_far) "ji" = ( /obj/structure/machinery/autodoc_console{ dir = 1 @@ -2190,6 +2206,10 @@ /obj/effect/landmark/start/whiskey/tank_crew, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) +"jr" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/river, +/area/whiskey_outpost/outside/river/west) "js" = ( /obj/effect/decal/medical_decals{ icon_state = "docstriping" @@ -2227,6 +2247,10 @@ /obj/structure/largecrate/supply/ammo/m56d, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) +"jw" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/gm/coast/north, +/area/whiskey_outpost/outside/lane/four_north) "jA" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" @@ -2236,6 +2260,12 @@ "jB" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/bunker/bunker/front) +"jC" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/gm/river, +/area/whiskey_outpost/outside/south) "jD" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/white, @@ -2277,10 +2307,6 @@ "jJ" = ( /turf/open/floor/whitegreencorner/east, /area/whiskey_outpost/inside/hospital) -"jL" = ( -/obj/structure/platform_decoration, -/turf/open/jungle, -/area/whiskey_outpost/outside/lane/two_south) "jM" = ( /turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/living) @@ -2535,18 +2561,20 @@ /obj/effect/landmark/start/whiskey/doctor, /turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) -"kQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/grass/grassbeach/east, -/area/whiskey_outpost/outside/south) +"kR" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/gm/river, +/area/whiskey_outpost/outside/river/east) "kS" = ( /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) "kV" = ( /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) +"kW" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/coast/north, +/area/whiskey_outpost/outside/river/east) "kX" = ( /obj/structure/machinery/medical_pod/sleeper{ dir = 1 @@ -2657,6 +2685,16 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) +"ly" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"lz" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/gm/river, +/area/whiskey_outpost/outside/south) "lA" = ( /turf/closed/wall/rock/brown, /area/whiskey_outpost) @@ -2749,6 +2787,10 @@ /obj/structure/largecrate/supply/medicine/iv, /turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) +"lT" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river, +/area/whiskey_outpost/outside/lane/four_north) "lU" = ( /obj/effect/landmark/start/whiskey/engineer, /turf/open/floor/prison, @@ -3219,6 +3261,12 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) +"nT" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/gm/coast/north, +/area/whiskey_outpost/outside/lane/four_north) "nV" = ( /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "Mortar Pit" @@ -3244,6 +3292,10 @@ /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) +"oc" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/coast/south, +/area/whiskey_outpost/outside/river/east) "od" = ( /obj/structure/curtain/shower, /turf/open/floor/prison/sterile_white, @@ -3265,6 +3317,10 @@ /obj/structure/largecrate/random/case, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) +"on" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "oo" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -3285,6 +3341,10 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) +"ot" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/gm/grass/grassbeach/west, +/area/whiskey_outpost/outside/south) "ou" = ( /obj/structure/sign/prop3, /turf/closed/wall/r_wall, @@ -3466,12 +3526,6 @@ "pu" = ( /turf/open/gm/coast/east, /area/whiskey_outpost/outside/lane/four_north) -"pv" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/coast/north, -/area/whiskey_outpost/outside/river/east) "pw" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ @@ -3593,10 +3647,20 @@ /obj/item/mortar_shell/incendiary, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) +"pS" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) "pT" = ( /obj/structure/machinery/colony_floodlight, /turf/open/jungle, /area/whiskey_outpost/outside/south) +"pU" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) "pW" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/south/far) @@ -3687,6 +3751,15 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) +"qm" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/platform) "qn" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, @@ -3850,6 +3923,12 @@ /obj/item/device/motiondetector, /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) +"qS" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/gm/river, +/area/whiskey_outpost/outside/river/east) "qT" = ( /obj/structure/barricade/handrail{ dir = 1 @@ -4051,16 +4130,6 @@ /obj/item/reagent_container/food/drinks/bottle/whiskey, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/caverns) -"rQ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "rS" = ( /obj/structure/filingcabinet, /turf/open/floor/prison/floor_plate, @@ -4155,6 +4224,10 @@ /obj/effect/spawner/gibspawner/human, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) +"sj" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "sk" = ( /obj/structure/surface/rack, /turf/open/floor/prison/floor_plate, @@ -4194,12 +4267,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) -"ss" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "su" = ( /obj/structure/sign/ROsign, /turf/closed/wall/r_wall, @@ -4266,18 +4333,18 @@ "sP" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) -"sQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) "sR" = ( /obj/structure/machinery/colony_floodlight_switch{ pixel_x = -32 }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) +"sS" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/gm/river, +/area/whiskey_outpost/outside/south) "sU" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/outside/mortar_pit) @@ -4339,6 +4406,11 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker) +"tm" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/gm/coast/beachcorner/north_east, +/area/whiskey_outpost/outside/river/west) "tn" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -4501,6 +4573,10 @@ /obj/structure/surface/rack, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) +"tU" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/coast/south, +/area/whiskey_outpost/outside/river) "tV" = ( /obj/structure/holohoop{ density = 0; @@ -4508,6 +4584,14 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) +"tX" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost/outside/north/platform) "tY" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -4515,6 +4599,10 @@ /obj/effect/landmark/start/whiskey/bridge, /turf/open/floor/almayer/emerald/northeast, /area/whiskey_outpost/inside/cic) +"tZ" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river, +/area/whiskey_outpost/outside/river/east) "ua" = ( /obj/effect/landmark/start/whiskey/engineer, /turf/open/gm/dirt, @@ -4538,6 +4626,11 @@ }, /turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) +"uc" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "ue" = ( /obj/structure/window/reinforced{ dir = 8; @@ -4607,6 +4700,12 @@ "um" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/north) +"un" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "uo" = ( /obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/prison/floor_marked/southwest, @@ -4777,6 +4876,10 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) +"uS" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "uT" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, @@ -4810,9 +4913,17 @@ "ve" = ( /turf/closed/wall, /area/whiskey_outpost/outside/lane/one_north) +"vf" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "vg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/north/beach) +"vh" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/coast/beachcorner2/south_east, +/area/whiskey_outpost/outside/river/east) "vi" = ( /obj/structure/curtain/black, /turf/open/floor/almayer/bluefull, @@ -4887,6 +4998,10 @@ /obj/structure/sign/poster, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/three) +"vz" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/gm/coast/east, +/area/whiskey_outpost/outside/river/west) "vA" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/prison/darkyellow2, @@ -4998,6 +5113,14 @@ /obj/structure/curtain/black, /turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) +"wd" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) "we" = ( /obj/item/cell/high, /turf/open/shuttle/dropship/light_grey_middle, @@ -5100,12 +5223,6 @@ }, /turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) -"wx" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "wz" = ( /obj/structure/machinery/conveyor{ dir = 4; @@ -5134,6 +5251,10 @@ "wC" = ( /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) +"wD" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/river, +/area/whiskey_outpost/outside/river/east) "wF" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/outside/lane/four_south) @@ -5143,6 +5264,10 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) +"wH" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) "wI" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ name = "Emergency NanoMed"; @@ -5302,12 +5427,6 @@ "xp" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/lane/two_north) -"xq" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/coast/south, -/area/whiskey_outpost/outside/lane/four_north) "xr" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine/m39, @@ -5326,6 +5445,10 @@ icon_state = "rasputin9" }, /area/whiskey_outpost/outside/lane/four_north) +"xy" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/northwest) "xB" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine/m4ra, @@ -5415,18 +5538,6 @@ }, /turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) -"xR" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "xT" = ( /obj/effect/landmark/start/whiskey/doctor, /turf/open/floor/white, @@ -5494,23 +5605,9 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/prison/darkyellowcorners2/west, /area/whiskey_outpost/inside/supply) -"yk" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) "yl" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/inside/caves/caverns/west) -"yn" = ( -/obj/structure/platform_decoration, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/asteroidwarning/north, -/area/whiskey_outpost/outside/north/platform) "yo" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; @@ -5518,12 +5615,6 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/lane/four_south) -"yp" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) "yr" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /obj/structure/barricade/metal/wired, @@ -5557,12 +5648,6 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) -"yA" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) "yB" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -5661,21 +5746,6 @@ }, /turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) -"yS" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/platform) -"yT" = ( -/obj/structure/platform_decoration, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "yU" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, @@ -5715,18 +5785,6 @@ /obj/structure/barricade/sandbags/wired, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"zg" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) "zh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/two_north) @@ -5750,21 +5808,23 @@ /obj/item/storage/box/explosive_mines, /turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) +"zn" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "zo" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) +"zp" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/gm/coast/north, +/area/whiskey_outpost/outside/lane/four_north) "zq" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/river/west) -"zr" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/platform) "zs" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, @@ -5918,12 +5978,6 @@ /obj/structure/machinery/autodoc_console, /turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) -"Ac" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/coast/beachcorner2/north_east, -/area/whiskey_outpost/outside/lane/four_north) "Ad" = ( /obj/structure/machinery/colony_floodlight, /turf/open/jungle/impenetrable, @@ -5986,6 +6040,13 @@ /obj/structure/machinery/gel_refiller, /turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) +"Az" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile{ + breakable = 0; + explo_proof = 1 + }, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/south/very_far) "AA" = ( /turf/open/jungle, /area/whiskey_outpost/outside/south/far) @@ -6016,6 +6077,10 @@ /obj/item/tool/crowbar, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) +"AG" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "AH" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; @@ -6041,18 +6106,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) -"AQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/south) +"AP" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/disposalpipe/segment, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "AR" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -6095,12 +6153,10 @@ }, /turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) -"Bb" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +"Ba" = ( +/obj/structure/platform/metal/almayer/west, /turf/open/gm/river, -/area/whiskey_outpost/outside/south) +/area/whiskey_outpost/outside/lane/four_north) "Bc" = ( /obj/structure/machinery/defenses/sentry/premade, /turf/open/floor/asteroidfloor/north, @@ -6120,16 +6176,6 @@ /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/three_north) -"Bg" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/asteroidwarning/north, -/area/whiskey_outpost/outside/north/platform) "Bh" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, @@ -6138,6 +6184,10 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/inside/caves/caverns/west) +"Bk" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river, +/area/whiskey_outpost/outside/south) "Bl" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -6217,12 +6267,6 @@ "Bz" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/whiskey_outpost/outside/river/east) -"BA" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "BB" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie{ dir = 1; @@ -6261,12 +6305,6 @@ "BK" = ( /turf/open/jungle/clear, /area/whiskey_outpost/outside/south/very_far) -"BL" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "BM" = ( /obj/structure/cargo_container/watatsumi/right, /turf/open/jungle/impenetrable, @@ -6308,16 +6346,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"BV" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) "BW" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/dirt, @@ -6335,14 +6363,12 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"Ca" = ( +"Cb" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/disposalpipe/segment, /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Cc" = ( @@ -6387,16 +6413,6 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_north) -"Cn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/platform) "Co" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, @@ -6416,20 +6432,6 @@ }, /turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital) -"Ct" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) -"Cu" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) "Cv" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/reagentgrinder, @@ -6480,6 +6482,11 @@ /obj/structure/machinery/cm_vending/clothing/medic, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) +"CF" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/disposalpipe/segment, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "CG" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) @@ -6511,6 +6518,10 @@ }, /turf/open/floor/wood, /area/whiskey_outpost/inside/caves/caverns) +"CP" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) "CQ" = ( /obj/structure/barricade/plasteel/wired, /turf/open/floor/prison/floor_plate/southwest, @@ -6528,21 +6539,9 @@ }, /turf/open/floor/plating/asteroidwarning/northeast, /area/whiskey_outpost/outside/north/platform) -"CY" = ( -/obj/structure/platform, -/turf/open/gm/river, -/area/whiskey_outpost/outside/river/west) -"CZ" = ( -/obj/structure/platform, -/turf/open/gm/coast/east, -/area/whiskey_outpost/outside/river/west) "Db" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_north) -"Dc" = ( -/obj/structure/platform, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "Dd" = ( /turf/open/floor/wood, /area/whiskey_outpost/inside/caves/caverns) @@ -6650,14 +6649,6 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"DA" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/platform) "DB" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -6689,13 +6680,6 @@ }, /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river/east) -"DH" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "DJ" = ( /obj/structure/machinery/cryopod, /turf/open/floor/prison/floor_plate/southwest, @@ -6732,12 +6716,6 @@ /obj/effect/landmark/start/whiskey/smartgunner, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) -"DP" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/river/east) "DQ" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 4; @@ -6745,6 +6723,10 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) +"DT" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/coast/west, +/area/whiskey_outpost/outside/river/east) "DU" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirt, @@ -6820,6 +6802,10 @@ }, /turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) +"Ej" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/coast/east, +/area/whiskey_outpost/outside/river/west) "Ek" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "distribution" @@ -6838,12 +6824,6 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) -"Er" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/coast/beachcorner2/south_east, -/area/whiskey_outpost/outside/lane/four_north) "Eu" = ( /turf/open/gm/coast/beachcorner/north_east, /area/whiskey_outpost/outside/river/west) @@ -6959,12 +6939,6 @@ "EV" = ( /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_north) -"EX" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/coast/west, -/area/whiskey_outpost/outside/river/west) "EY" = ( /obj/effect/landmark/whiskey_outpost/xenospawn, /turf/open/jungle/clear, @@ -6993,6 +6967,10 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) +"Fe" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/coast/beachcorner2/south_west, +/area/whiskey_outpost/outside/river/west) "Fg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7008,12 +6986,6 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"Fi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/coast/south, -/area/whiskey_outpost/outside/river) "Fj" = ( /obj/effect/decal/cleanable/blood/writing{ dir = 1 @@ -7035,23 +7007,10 @@ "Fn" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/whiskey_outpost/outside/south/very_far) -"Fp" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/coast/beachcorner2/north_east, -/area/whiskey_outpost/outside/river/west) "Fr" = ( /obj/structure/machinery/light/small, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"Fs" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform_decoration, -/turf/open/gm/coast/beachcorner/north_east, -/area/whiskey_outpost/outside/river/west) "Fu" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/inside/caves/caverns/east) @@ -7064,14 +7023,6 @@ /obj/structure/surface/rack, /turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) -"Fw" = ( -/obj/structure/platform, -/turf/open/gm/coast/west, -/area/whiskey_outpost/outside/river/east) -"Fx" = ( -/obj/structure/platform, -/turf/open/gm/coast/beachcorner2/south_east, -/area/whiskey_outpost/outside/river/east) "Fy" = ( /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, @@ -7087,12 +7038,6 @@ "FC" = ( /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/river/west) -"FD" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/coast/east, -/area/whiskey_outpost/outside/river/west) "FE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7102,18 +7047,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) -"FF" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/coast/north, -/area/whiskey_outpost/outside/lane/four_north) -"FG" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/gm/coast/north, -/area/whiskey_outpost/outside/lane/four_north) "FH" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, @@ -7122,6 +7055,14 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/south/very_far) +"FK" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) "FL" = ( /turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_south) @@ -7177,18 +7118,6 @@ "FW" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/inside/caves/caverns/east) -"FX" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "FY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7235,16 +7164,6 @@ "Gl" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/whiskey_outpost/outside/north/beach) -"Gm" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "Gn" = ( /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, @@ -7256,6 +7175,10 @@ /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) +"Gs" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/grass/grassbeach/east, +/area/whiskey_outpost/outside/south) "Gt" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; @@ -7309,30 +7232,10 @@ }, /turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) -"GF" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) "GG" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/beach) -"GI" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/asteroidfloor/north, -/area/whiskey_outpost/outside/north/platform) "GJ" = ( /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_north) @@ -7427,14 +7330,6 @@ "Hj" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/inside/caves/caverns/west) -"Hk" = ( -/obj/structure/platform, -/turf/open/gm/coast/beachcorner/south_west, -/area/whiskey_outpost/outside/river/west) -"Hl" = ( -/obj/structure/platform, -/turf/open/gm/coast/beachcorner2/south_west, -/area/whiskey_outpost/outside/river/west) "Hm" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" @@ -7464,13 +7359,6 @@ "Hr" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/one_north) -"Hs" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "Ht" = ( /obj/structure/disposalpipe/segment, /turf/open/jungle, @@ -7479,13 +7367,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/inside/caves/caverns/west) -"Hv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "Hw" = ( /turf/open/shuttle/dropship/light_grey_top_right, /area/whiskey_outpost/outside/lane/four_north) @@ -7507,6 +7388,18 @@ "HB" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/three_south) +"HC" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/gm/coast/beachcorner/north_west, +/area/whiskey_outpost/outside/river/east) +"HD" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river, +/area/whiskey_outpost/outside/river/east) +"HE" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/coast/north, +/area/whiskey_outpost/outside/river) "HH" = ( /obj/effect/landmark/start/whiskey/leader, /turf/open/floor/prison, @@ -7514,6 +7407,10 @@ "HI" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/inside/caves/caverns/west) +"HJ" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/river, +/area/whiskey_outpost/outside/river/east) "HK" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; @@ -7558,6 +7455,12 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) +"HS" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "HT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7606,6 +7509,10 @@ }, /turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) +"Ib" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) "Ic" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/barricade/sandbags/wired{ @@ -7720,6 +7627,10 @@ /obj/item/lightstick/red/planted, /turf/open/jungle, /area/whiskey_outpost/outside/north/northwest) +"IE" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/coast/beachcorner2/north_east, +/area/whiskey_outpost/outside/river/west) "IF" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /obj/structure/barricade/sandbags/wired, @@ -7743,12 +7654,6 @@ "IM" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/whiskey_outpost/outside/lane/four_south) -"IN" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/coast/west, -/area/whiskey_outpost/outside/river/east) "IO" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin8" @@ -7759,18 +7664,6 @@ /obj/item/tool/hand_labeler, /turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) -"IQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/river/east) -"IR" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/coast/east, -/area/whiskey_outpost/outside/river/east) "IU" = ( /obj/effect/landmark/start/whiskey/marine, /turf/open/floor/prison/cell_stripe, @@ -7868,10 +7761,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"Jp" = ( -/obj/structure/platform, -/turf/open/gm/river, -/area/whiskey_outpost/outside/river/east) "Jq" = ( /obj/structure/filingcabinet, /turf/open/floor/prison, @@ -7882,6 +7771,10 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) +"Js" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/jungle, +/area/whiskey_outpost/outside/lane/two_south) "Jt" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/structure/disposalpipe/segment{ @@ -7911,12 +7804,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"JC" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/south) "JE" = ( /obj/effect/landmark/start/whiskey/doctor, /turf/open/floor/whitegreen/southwest, @@ -7932,12 +7819,6 @@ /obj/item/storage/box/m56d_hmg, /turf/open/shuttle/dropship/light_grey_top, /area/whiskey_outpost/outside/lane/four_north) -"JH" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/grass/grassbeach/west, -/area/whiskey_outpost/outside/south) "JJ" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/whitegreen/west, @@ -7978,6 +7859,10 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) +"JS" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/coast/south, +/area/whiskey_outpost/outside/river/east) "JT" = ( /turf/open/floor/whitegreencorner/west, /area/whiskey_outpost/inside/hospital) @@ -7987,6 +7872,10 @@ "JX" = ( /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/four_south) +"JY" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/gm/river, +/area/whiskey_outpost/outside/river/east) "JZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/north/beach) @@ -8012,6 +7901,11 @@ /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) +"Ki" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "Kl" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, @@ -8060,6 +7954,14 @@ /obj/structure/disposalpipe/segment, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) +"Kw" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/platform) "Kx" = ( /turf/open/floor/whitegreencorner, /area/whiskey_outpost/inside/hospital/triage) @@ -8106,12 +8008,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"KR" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/river) "KT" = ( /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/lane/four_north) @@ -8132,12 +8028,6 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"Lc" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/northwest) "Ld" = ( /turf/open/gm/coast/west, /area/whiskey_outpost/outside/river/west) @@ -8291,6 +8181,10 @@ /obj/item/stack/medical/bruise_pack, /turf/open/floor/plating/warnplate, /area/whiskey_outpost/outside/lane/one_north) +"LV" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/coast/south, +/area/whiskey_outpost/outside/lane/four_north) "LX" = ( /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/river/east) @@ -8316,6 +8210,14 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) +"Md" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "Me" = ( /turf/open/gm/grass/gbcorner/south_west, /area/whiskey_outpost/outside/lane/one_south) @@ -8347,12 +8249,6 @@ "Mi" = ( /turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/northeast) -"Mj" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/coast/north, -/area/whiskey_outpost/outside/river/east) "Mk" = ( /obj/structure/sign/safety/north, /obj/structure/sign/safety/medical{ @@ -8394,6 +8290,11 @@ /obj/effect/landmark/start/whiskey/leader, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) +"Mu" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "Mw" = ( /obj/structure/fence, /turf/open/jungle/impenetrable, @@ -8414,20 +8315,6 @@ }, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/north) -"MB" = ( -/obj/structure/platform{ - layer = 3.6 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "ME" = ( /obj/structure/sink/puddle, /turf/open/jungle, @@ -8466,15 +8353,6 @@ "MP" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) -"MQ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "MR" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, @@ -8529,16 +8407,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"Nk" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "Nl" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; @@ -8584,6 +8452,10 @@ /obj/structure/flora/jungle/alienplant1, /turf/open/gm/grass/grassbeach/north, /area/whiskey_outpost/outside/lane/one_north) +"Nx" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/gm/river, +/area/whiskey_outpost/outside/south) "Ny" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -8625,22 +8497,9 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) -"NG" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/coast/east, -/area/whiskey_outpost/outside/river/west) "NI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/inside/caves/caverns/east) -"NJ" = ( -/obj/structure/machinery/colony_floodlight, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "NL" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/north/beach) @@ -8686,6 +8545,10 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) +"Oa" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/coast/east, +/area/whiskey_outpost/outside/river/east) "Ob" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, @@ -8757,6 +8620,10 @@ "Oq" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/outside/lane/two_north) +"Or" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/coast/beachcorner2/south_east, +/area/whiskey_outpost/outside/lane/four_north) "Ot" = ( /obj/structure/disposalpipe/segment, /turf/open/jungle/impenetrable, @@ -8780,6 +8647,15 @@ /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_north) +"OB" = ( +/obj/structure/barricade/sandbags/wired, +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) +"OC" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/gm/dirtgrassborder/north, +/area/whiskey_outpost/outside/lane/two_south) "OD" = ( /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, @@ -8842,12 +8718,6 @@ "OU" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/whiskey_outpost/outside/river) -"OV" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/gm/coast/beachcorner/north_west, -/area/whiskey_outpost/outside/river) "OX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -8855,15 +8725,13 @@ /obj/effect/landmark/start/whiskey/medic, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) -"OY" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/coast/north, -/area/whiskey_outpost/outside/river) "OZ" = ( /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) +"Pb" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/river, +/area/whiskey_outpost/outside/river) "Pc" = ( /obj/structure/disposalpipe/segment, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -8886,13 +8754,10 @@ "Ph" = ( /turf/open/shuttle/dropship/light_grey_bottom_right, /area/whiskey_outpost/outside/lane/four_north) -"Pi" = ( -/obj/structure/barricade/sandbags/wired, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) +"Pj" = ( +/obj/structure/platform/metal/almayer, +/turf/open/gm/coast/beachcorner/south_west, +/area/whiskey_outpost/outside/river/west) "Pk" = ( /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/river/east) @@ -8944,6 +8809,10 @@ }, /turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) +"Py" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/river, +/area/whiskey_outpost/outside/river) "Pz" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin6" @@ -8978,33 +8847,19 @@ "PH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/outside/lane/three_north) +"PK" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/jungle, +/area/whiskey_outpost/outside/lane/two_south) "PL" = ( /turf/open/gm/grass/grassbeach/north, /area/whiskey_outpost/outside/lane/one_north) "PM" = ( /turf/open/floor/plating/plating_catwalk, /area/whiskey_outpost/inside/cic) -"PN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/river) "PO" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_north) -"PP" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/coast/north, -/area/whiskey_outpost/outside/river) -"PQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/river/west) "PR" = ( /obj/structure/surface/rack, /obj/item/fuel_cell, @@ -9046,12 +8901,6 @@ /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/whiskey_outpost/outside/river/east) -"Qc" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/gm/coast/beachcorner/north_west, -/area/whiskey_outpost/outside/river/east) "Qe" = ( /turf/open/floor, /area/whiskey_outpost/outside/south/far) @@ -9155,6 +9004,10 @@ /obj/structure/cargo_container/grant/right, /turf/open/jungle, /area/whiskey_outpost/outside/south) +"QI" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/coast/north, +/area/whiskey_outpost/outside/lane/four_north) "QJ" = ( /turf/open/gm/grass/gbcorner/north_west, /area/whiskey_outpost/outside/lane/one_north) @@ -9194,34 +9047,18 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/north) -"QY" = ( -/obj/structure/platform_decoration, -/turf/open/gm/river, -/area/whiskey_outpost/outside/river/east) -"QZ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/river/east) "Ra" = ( /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) +"Rb" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/coast/east, +/area/whiskey_outpost/outside/river/west) "Rc" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_south) -"Rd" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/river/east) "Re" = ( /obj/structure/machinery/cm_vending/clothing/marine/charlie{ density = 0; @@ -9287,12 +9124,6 @@ /obj/effect/landmark/start/whiskey/leader, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) -"RB" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/river/east) "RC" = ( /obj/effect/decal/warning_stripes/asteroid{ dir = 8; @@ -9333,6 +9164,14 @@ "RP" = ( /turf/open/gm/grass/grassbeach/north, /area/whiskey_outpost/outside/south) +"RQ" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/platform) "RR" = ( /obj/structure/barricade/plasteel/wired, /turf/open/floor/prison/floor_plate/southwest, @@ -9341,6 +9180,10 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirtgrassborder/south, /area/whiskey_outpost/outside/lane/one_north) +"RT" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/jungle, +/area/whiskey_outpost/outside/south) "RU" = ( /obj/structure/machinery/cm_vending/clothing/medic, /turf/open/floor/asteroidfloor/north, @@ -9356,22 +9199,6 @@ /obj/structure/largecrate/random/case, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"Sa" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/coast/south, -/area/whiskey_outpost/outside/river) -"Sb" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/river/east) "Se" = ( /obj/structure/sign/safety/four, /obj/structure/sign/safety/ammunition{ @@ -9506,12 +9333,11 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) -"SL" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/north, -/area/whiskey_outpost/outside/lane/two_south) +"SM" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) "SN" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -9533,12 +9359,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"SQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/jungle, -/area/whiskey_outpost/outside/lane/two_south) "SS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -9582,12 +9402,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/gm/grass/gbcorner/north_west, /area/whiskey_outpost/outside/north/northwest) -"Tc" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/coast/south, -/area/whiskey_outpost/outside/river/east) "Td" = ( /obj/structure/sink{ dir = 8; @@ -9608,6 +9422,14 @@ /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/one_north) +"Ti" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/asteroidwarning/north, +/area/whiskey_outpost/outside/north/platform) "Tj" = ( /obj/structure/barricade/metal/wired, /obj/structure/barricade/sandbags/wired{ @@ -9628,18 +9450,6 @@ /obj/effect/landmark/wo_supplies/ammo/box/m41a, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) -"Tn" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/south) -"To" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/coast/south, -/area/whiskey_outpost/outside/river/east) "Tp" = ( /obj/structure/machinery/door/airlock/almayer/marine/alpha{ dir = 1; @@ -9751,12 +9561,6 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north) -"TU" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/coast/beachcorner/north_east, -/area/whiskey_outpost/outside/river) "TW" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo{ dir = 1; @@ -9898,6 +9702,10 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) +"UE" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/coast/west, +/area/whiskey_outpost/outside/river/west) "UF" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/whiskey_outpost/outside/lane/four_north) @@ -9928,12 +9736,6 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) -"UN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north/beach) "UO" = ( /obj/item/lightstick/red/planted, /turf/open/gm/grass/grass1, @@ -9950,6 +9752,10 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) +"UU" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/coast/south, +/area/whiskey_outpost/outside/river) "UW" = ( /obj/structure/barricade/plasteel/wired, /turf/open/gm/dirt, @@ -10135,18 +9941,6 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) -"VQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/south) "VR" = ( /obj/structure/surface/rack, /obj/item/device/binoculars, @@ -10396,6 +10190,12 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) +"WQ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/gm/coast/north, +/area/whiskey_outpost/outside/lane/four_north) "WR" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/landmark/start/whiskey/medic, @@ -10558,6 +10358,10 @@ }, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) +"XL" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "XM" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison/floor_plate/southwest, @@ -10593,6 +10397,10 @@ /obj/effect/landmark/start/whiskey/marine, /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) +"XT" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/gm/coast/north, +/area/whiskey_outpost/outside/river) "XV" = ( /obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/prison/floor_plate/southwest, @@ -10602,6 +10410,16 @@ icon_state = "rasputin4" }, /area/whiskey_outpost/outside/lane/four_north) +"XX" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "XY" = ( /turf/closed/shuttle/dropship, /area/whiskey_outpost/outside/lane/four_north) @@ -10660,12 +10478,6 @@ "Yo" = ( /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river) -"Yp" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/coast/north, -/area/whiskey_outpost/outside/lane/four_north) "Yq" = ( /turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) @@ -10692,30 +10504,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) -"Yy" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/gm/coast/north, -/area/whiskey_outpost/outside/lane/four_north) -"YA" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/gm/coast/north, -/area/whiskey_outpost/outside/lane/four_north) "YB" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" @@ -10730,6 +10518,16 @@ }, /turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) +"YC" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) +"YD" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/gm/river, +/area/whiskey_outpost/outside/river/east) "YE" = ( /obj/structure/bed/chair, /turf/open/floor/prison, @@ -10740,6 +10538,10 @@ /obj/effect/landmark/wo_supplies/ammo/box/m41a, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) +"YG" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north/beach) "YH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/whiskey_outpost/inside/caves/caverns/west) @@ -10781,6 +10583,10 @@ "YV" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/whiskey_outpost/outside/river) +"YW" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/gm/coast/south, +/area/whiskey_outpost/outside/lane/four_north) "YY" = ( /turf/closed/shuttle/dropship{ dir = 1; @@ -10838,21 +10644,9 @@ }, /turf/open/floor/prison/cell_stripe/east, /area/whiskey_outpost/inside/bunker/bunker/front) -"Zh" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/lane/four_north) "Zi" = ( /turf/open/gm/grass/grassbeach/east, /area/whiskey_outpost/outside/lane/two_north) -"Zj" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/lane/four_north) "Zl" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/screwdriver{ @@ -10995,6 +10789,11 @@ /obj/effect/landmark/wo_supplies/storage/machete, /turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) +"ZR" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidfloor/north, +/area/whiskey_outpost/outside/north/platform) "ZT" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirtgrassborder/west, @@ -11022,19 +10821,6 @@ icon_state = "rasputin10" }, /area/whiskey_outpost/outside/lane/four_north) -"ZX" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/gm/river, -/area/whiskey_outpost/outside/river/east) (1,1,1) = {" mT @@ -15750,12 +15536,12 @@ zq Ls Ld Ld -Hk +Pj HY Ix Ix Ev -Lc +xy KY KY KY @@ -15952,12 +15738,12 @@ zq zq zq zq -Hl +Fe HY Ix Ix Ev -EX +UE FC KY KY @@ -16154,12 +15940,12 @@ zq FH zq zq -CY +jr HY Ix Ix Ev -PQ +cK Ls Ld Ld @@ -16356,12 +16142,12 @@ zq zq zq XD -CY +jr HY Ix Ix Ev -PQ +cK zq zq zq @@ -16558,12 +16344,12 @@ zq zq zq zq -CY +jr HY Ix Ix Ev -PQ +cK FH zq zq @@ -16760,12 +16546,12 @@ zq zq Bh zq -CY +jr Dt DD DD Ew -PQ +cK zq zq zq @@ -16962,12 +16748,12 @@ zq zq zq zq -CY +jr Dt DD DD Ew -PQ +cK XD zq zq @@ -17164,12 +16950,12 @@ zq XD zq zq -CY +jr Dt DD DD Ew -PQ +cK zq zq zq @@ -17366,12 +17152,12 @@ EG EG EG EG -CZ +Ej Dt DD DD Ew -Fp +IE zq zq zq @@ -17568,16 +17354,16 @@ zR fy fy zR -Dc +uS Dt DD DD Ew -Fs -FD -FD -FD -NG +tm +Rb +Rb +Rb +vz BF zq zq @@ -17775,11 +17561,11 @@ zR fy zR jU -Dc +uS LI Mp Nn -fI +XL AV zq zq @@ -17977,11 +17763,11 @@ fy fy fy jU -Dc +uS BJ Gz Nq -NJ +Ki mT zq zq @@ -18179,11 +17965,11 @@ GY fy fy jU -Dc +uS LK -MB +XX Nt -fI +XL mT mT zq @@ -18381,11 +18167,11 @@ fy fy fy jU -ss -BL -MQ -BL -wx +vf +AG +Mu +AG +sj mT mT zq @@ -20988,18 +20774,18 @@ yj Ks nr nr -UN -UN -UN -BA +on +on +on +YG fy fy fy -yT -UN -UN -UN -BA +ir +on +on +on +YG fy fy fy @@ -21193,20 +20979,20 @@ nr zS AB AZ -FX -BA +HS +YG fy -yT -DH +ir +uc DY AB EH -FX -BA +HS +YG fy -yT -UN -BA +ir +on +YG fy jU fy @@ -21396,28 +21182,28 @@ BT BT BT BC -Cn +bk Di -DA +RQ DN BT BT BT BC -Cn +bk Di -DA +RQ Ia -fI +XL fy jU fy -yT -UN -UN -UN -UN -TU +ir +on +on +on +on +az OU eY eY @@ -21610,16 +21396,16 @@ Cr Cr Cr kI -fI +XL fy jU fy -Dc +uS LI Ny Ny Nn -fI +XL Pt eY eY @@ -21812,16 +21598,16 @@ xN Cx ed kI -fI +XL fy jU fy -ss -Gm +vf +Md Gz Gz GR -fI +XL Yo eY eY @@ -21996,7 +21782,7 @@ rZ jv kS nr -sQ +CP ed BN BN @@ -22014,7 +21800,7 @@ aj CU Dn kI -fI +XL fy tJ fy @@ -22023,7 +21809,7 @@ Nj GG Kq Nq -fI +XL Yo eY eY @@ -22198,7 +21984,7 @@ kS kS vP ZH -sQ +CP ed BN BN @@ -22216,16 +22002,16 @@ aj aj AR kI -fI +XL fy jU fy -yT -Nk +ir +ef Gz Gz GR -fI +XL Yo Pr eY @@ -22400,7 +22186,7 @@ fl eW kS nr -sQ +CP ed BN BN @@ -22418,16 +22204,16 @@ fj Cy Dn kI -fI +XL fy jU fy -Dc +uS Nl Nz Nz Nt -fI +XL Yo eY eY @@ -22602,12 +22388,12 @@ tS wQ kS nr -zg -yk -yk -yk -yk -yA +ly +pU +pU +pU +pU +YC ed ed Dp @@ -22620,16 +22406,16 @@ Tl Cz Dn kI -fI +XL fy jU fy -ss -BL -BL -BL -BL -OV +vf +AG +AG +AG +AG +fO PE eY eY @@ -22809,7 +22595,7 @@ zG Av qa AC -sQ +CP ed ed Dp @@ -22822,7 +22608,7 @@ fj Cy Dn kI -fI +XL fy jU fy @@ -23011,7 +22797,7 @@ fj fj aj aj -sQ +CP ed ed yV @@ -23024,7 +22810,7 @@ qn aj AR kI -fI +XL fy jU fy @@ -23213,7 +22999,7 @@ wC fj fj Cy -sQ +CP ed ed Dp @@ -23226,8 +23012,8 @@ aj Ef Dn kI -FX -BA +HS +YG jU fy fy @@ -23280,11 +23066,11 @@ Df mT mT gM -jL -SQ -SQ -SQ -SL +Js +PK +PK +PK +OC CG Pw CG @@ -23415,7 +23201,7 @@ Bm Op fj yr -sQ +CP ed ed ed @@ -23429,7 +23215,7 @@ BT ed Dp AZ -fI +XL tJ fy fy @@ -23494,7 +23280,7 @@ mT mT mT mT -JH +ot SU nj UP @@ -23617,8 +23403,8 @@ Bu zV fj Cy -zg -yA +ly +YC ed zM ed @@ -23631,7 +23417,7 @@ ed zf Dp IF -fI +XL jU fy fy @@ -23696,7 +23482,7 @@ ks ks ks ks -Tn +Bk SX lk kV @@ -23820,7 +23606,7 @@ rB qn aj BG -sQ +CP ed zM ed @@ -23833,7 +23619,7 @@ ed zf Dp CM -fI +XL jU fy fy @@ -23898,7 +23684,7 @@ ks Ss WX kt -Tn +Bk SX lk kV @@ -24022,7 +23808,7 @@ mY qa Bc zf -sQ +CP ed ed qK @@ -24034,8 +23820,8 @@ ed ed Hn Ic -xR -wx +un +sj jU fy fy @@ -24100,7 +23886,7 @@ HL Ss YE Te -Tn +Bk SX lk kV @@ -24224,7 +24010,7 @@ zW AO pP BU -sQ +CP ed ed qK @@ -24234,9 +24020,9 @@ Bn FO ed GE -xR -BL -wx +un +AG +sj fy jU fy @@ -24245,12 +24031,12 @@ Ga JZ fy Fy -OY -PN -PN -PN -PN -Sa +XT +Pb +Pb +Pb +Pb +tU Sz QU TT @@ -24302,8 +24088,8 @@ ks Ss lU kt -VQ -JC +jC +lz lk kV kV @@ -24424,9 +24210,9 @@ zc fj pc Cz -Bg -BV -Ct +Ti +wd +ZR Dm DB Dz @@ -24435,8 +24221,8 @@ Ey Fd FP sm -GF -Hs +Cb +AP GB GB GB @@ -24505,7 +24291,7 @@ dx ks ks ks -Tn +Bk lk kV kV @@ -24707,7 +24493,7 @@ ks VR SJ kt -Tn +Bk lk kV kV @@ -24828,9 +24614,9 @@ zc fj pc Cz -yn -Ca -Cu +tX +FK +SM Du iP BN @@ -24909,7 +24695,7 @@ Gh lU xl qI -Tn +Bk lk UP kV @@ -25032,7 +24818,7 @@ xt AO Bl BG -sQ +CP rA ed qK @@ -25111,7 +24897,7 @@ Ss lU YE UJ -Tn +Bk lk kV kV @@ -25156,7 +24942,7 @@ ce ce ce ce -jg +Az ce ce ce @@ -25164,7 +24950,7 @@ ce ce ce ce -jg +Az ce ce ce @@ -25234,7 +25020,7 @@ zY qa Bc zf -sQ +CP Dv sm DO @@ -25243,8 +25029,8 @@ sm Fg FU sm -GI -Hv +cN +CF GB GB GB @@ -25313,7 +25099,7 @@ Gh lU Ps kt -Tn +Bk lk kV kV @@ -25436,7 +25222,7 @@ fj qn aj BU -sQ +CP ed qK ed @@ -25446,9 +25232,9 @@ rA rA qK GL -FX -UN -BA +HS +on +YG fy jU fy @@ -25457,12 +25243,12 @@ fy fy fy fy -Pi -PP -KR -KR -KR -Fi +OB +HE +Py +Py +Py +UU uW bW Un @@ -25515,7 +25301,7 @@ ks tP HP kt -Tn +Bk lk kV kV @@ -25637,8 +25423,8 @@ wS fj fj Cy -iv -in +pS +wH ed qK ed @@ -25650,8 +25436,8 @@ qK ed vI If -FX -BA +HS +YG jU fy fy @@ -25717,7 +25503,7 @@ ks ks ks ks -Tn +Bk lk kV kV @@ -25839,7 +25625,7 @@ Bm Op fj yr -sQ +CP ed ed zM @@ -25853,7 +25639,7 @@ ed ed Dp AZ -fI +XL jU fy fy @@ -25918,8 +25704,8 @@ ks lU lU kt -AQ -Bb +sS +Nx lk kV UP @@ -26041,7 +25827,7 @@ wC fj fj Cy -sQ +CP ed ed zf @@ -26055,7 +25841,7 @@ Cx ed Dp IF -fI +XL jU fy fy @@ -26120,7 +25906,7 @@ HL Ss YE Te -Tn +Bk SX lk kV @@ -26243,7 +26029,7 @@ fj fj aj aj -sQ +CP ed ed Dp @@ -26257,7 +26043,7 @@ CU Dn Dp CM -fI +XL jU fy fy @@ -26322,7 +26108,7 @@ ks Ss HP kt -Tn +Bk SX lk kV @@ -26445,7 +26231,7 @@ wX xM qa hJ -sQ +CP ed ed yV @@ -26458,8 +26244,8 @@ qn aj AR kI -xR -wx +un +sj jU fy fy @@ -26524,7 +26310,7 @@ ks dx ks ks -kQ +Gs Gi ti kV @@ -26636,18 +26422,18 @@ aj tl uV uV -iv -yp -yp -yp -yp -yp -yp -yp -yp -yp -yp -in +pS +Ib +Ib +Ib +Ib +Ib +Ib +Ib +Ib +Ib +Ib +wH ed ed Dp @@ -26660,7 +26446,7 @@ fj Cy Dn kI -fI +XL fy jU fy @@ -26726,7 +26512,7 @@ mT mT mT mT -hR +RT kV kV kV @@ -26838,7 +26624,7 @@ sO ts uu sU -sQ +CP ed Cx xN @@ -26862,17 +26648,17 @@ Tl Cz Dn kI -fI +XL fy jU fy fy -yT -UN -UN -UN -UN -TU +ir +on +on +on +on +az OU eY eY @@ -27040,7 +26826,7 @@ ry ho uv sU -sQ +CP Dp pn aj @@ -27064,17 +26850,17 @@ fj Cy Dn kI -fI +XL fy jU fy fy -Dc +uS LI Ny Ny Nn -fI +XL Pt eY eY @@ -27242,7 +27028,7 @@ pe ry ux sU -sQ +CP yV aj aj @@ -27266,17 +27052,17 @@ aj aj AR kI -fI +XL fy jU fy fy -ss -Gm +vf +Md Gz Gz GR -fI +XL Yo eY eY @@ -27444,7 +27230,7 @@ ry rE uz sU -sQ +CP Dp Au fj @@ -27468,7 +27254,7 @@ aj Ef Dn kI -fI +XL fy jU fy @@ -27478,7 +27264,7 @@ Nj GG Kq Nq -fI +XL Yo eY eK @@ -27645,8 +27431,8 @@ rN pe ry sU -iv -in +pS +wH Dp Ar fj @@ -27670,17 +27456,17 @@ xQ BT ed kI -fI +XL fy jU fy fy -yT -Nk +ir +ef Gz Gz GR -fI +XL Yo eK eK @@ -27847,7 +27633,7 @@ ry ry ij sU -sQ +CP ed Dp Au @@ -27862,8 +27648,8 @@ ed ed ed nt -yS -zr +qm +Kw qO Be Be @@ -27872,17 +27658,17 @@ Cx Cx Cx CM -fI +XL fy jU fy fy -Dc +uS Nl Nz Nz Nt -fI +XL Gf eK eK @@ -28049,7 +27835,7 @@ rN pe rE sU -sQ +CP ed yV aj @@ -28063,28 +27849,28 @@ AR ed ed kI -xR -wx -ss -BL -BL -BL -rQ +un +sj +vf +AG +AG +AG +zn Bq Cg CM -xR -wx +un +sj fy jU fy fy -ss -BL -BL -BL -BL -Qc +vf +AG +AG +AG +AG +HC Bz eK eK @@ -28251,7 +28037,7 @@ ry ry dg mT -in +wH ed Dp Xi @@ -28265,17 +28051,17 @@ Dn ed AC kI -fI +XL fy fy fy fy fy -ss -BL -BL -BL -wx +vf +AG +AG +AG +sj fy fy jU @@ -28467,7 +28253,7 @@ ed ed ed kI -fI +XL fy fy fy @@ -28661,15 +28447,15 @@ ed ed Be nt -yS -zr +qm +Kw Jl Be Be Cx Cx Cw -fI +XL fy fy fy @@ -28861,17 +28647,17 @@ ed ed ed kI -xR -BL -wx -ss -BL -BL -rQ +un +AG +sj +vf +AG +AG +zn Bq Cg CM -fI +XL fy fy fy @@ -29063,17 +28849,17 @@ mT ed Bc kI -fI +XL fy fy fy fy fy -ss -BL -BL -BL -wx +vf +AG +AG +AG +sj fy fy vF @@ -29265,7 +29051,7 @@ mT mT mT mT -wx +sj GY fy fy @@ -30492,13 +30278,13 @@ fy LX zw zw -Fw +eE Dt DD DD Do Ih -IN +DT zw zw zw @@ -30694,13 +30480,13 @@ zs Gf eK eK -Jp +wD Dt DD DD Do Ih -IQ +HJ eK eK eK @@ -30896,13 +30682,13 @@ zw Bz eK eK -Jp +wD Dt DD DD Do Ih -IQ +HJ eK eK eK @@ -31098,13 +30884,13 @@ eK eK eK eK -Jp +wD Gd to to Dq Ii -IQ +HJ eK eK eK @@ -31300,13 +31086,13 @@ eK Qa eK eK -Jp +wD Gd to to Dq Ii -IQ +HJ eK eK eK @@ -31320,13 +31106,13 @@ eK eK eK eK -QY -RB -Tc +JY +tZ +oc mT mT mT -Yp +zp PO PO PO @@ -31502,13 +31288,13 @@ eK eK eK eK -Fx +vh Gd to to Dq Ii -IR +Oa Ee Ee Ee @@ -31521,14 +31307,14 @@ Bz eK eK eK -QY -Sb +JY +YD sn sn sn sn sn -FF +QI PO OA PO @@ -31723,14 +31509,14 @@ eK eK eK eK -Jp +wD sn SB Tm Up VJ sn -FF +QI PO PO PO @@ -31916,33 +31702,33 @@ MP Yw Ku Le -pv -RB -RB -RB -RB -RB -RB -RB -RB -QZ +kW +tZ +tZ +tZ +tZ +tZ +tZ +tZ +tZ +qS sn SG Xm Xm Xm WY -Yy -Zh -Zh -Er +nT +lT +lT +Or pu pu pu pu pu -Ac -ip +dw +LV mp aO jQ @@ -33128,26 +32914,26 @@ DM Ec MP Fz -Mj -DP -DP -DP -DP -DP -DP -DP -DP -ZX +en +HD +HD +HD +HD +HD +HD +HD +HD +bn sn Pl Xm Xm ml WY -YA -Zj -Zj -xq +WQ +Ba +Ba +YW jQ jQ jQ @@ -33339,14 +33125,14 @@ QD eK Qa eK -Jp +wD sn sn DJ Uu Wf sn -FF +QI PO PO yt @@ -33541,14 +33327,14 @@ Gf eK eK eK -Rd -ZX +kR +bn sn gG sn sn sn -FF +QI Zn PO yt @@ -33744,13 +33530,13 @@ DE Ee QD eK -Rd -DP -To +kR +HD +JS mT mT mT -FG +jw PO PO yt diff --git a/maps/predship/huntership.dmm b/maps/predship/huntership.dmm index c87360912eec..93c46def5428 100644 --- a/maps/predship/huntership.dmm +++ b/maps/predship/huntership.dmm @@ -33,91 +33,12 @@ "af" = ( /turf/closed/wall/cult, /area/yautja) -"ah" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) -"ai" = ( -/obj/structure/bed/alien{ - color = "#aba9a9" - }, -/turf/open/shuttle/predship, -/area/yautja) -"ak" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/shuttle/predship, -/area/yautja) -"al" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) -"am" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/shuttle/predship, -/area/yautja) "an" = ( /obj/structure/machinery/medical_pod/autodoc{ dir = 4 }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"ao" = ( -/obj/item/clothing/yautja_cape/ceremonial{ - anchored = 1; - color = "#292b29"; - pixel_x = 2; - pixel_y = 32 - }, -/obj/item/clothing/suit/armor/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "halfarmor_elder_n"; - pixel_y = 30 - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "pred_mask_elder_n"; - pixel_y = 40 - }, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) -"aq" = ( -/obj/item/clothing/yautja_cape/ceremonial{ - anchored = 1; - color = "#292b29"; - pixel_x = 2; - pixel_y = 32 - }, -/obj/item/clothing/suit/armor/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "halfarmor_elder_joshuu"; - pixel_y = 30 - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "pred_mask_elder_joshuu"; - pixel_y = 40 - }, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) "as" = ( /obj/structure/pipes/standard/simple/hidden{ dir = 6 @@ -157,21 +78,6 @@ /obj/structure/curtain/red, /turf/open/shuttle/predship, /area/yautja) -"ay" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - pixel_y = 27; - anchored = 1 - }, -/obj/structure/platform/stair_cut{ - icon_state = "kutjevo_platform_sm_stair" - }, -/turf/open/shuttle/predship, -/area/yautja) "az" = ( /obj/structure/window/phoronreinforced{ dir = 10; @@ -255,6 +161,15 @@ /obj/structure/machinery/computer/cryopod/yautja, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"aO" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/weapon/gun/pistol/m1911/socom{ + pixel_y = 0 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "aP" = ( /obj/structure/machinery/door/airlock/yautja{ dir = 1; @@ -278,16 +193,6 @@ }, /turf/open/shuttle/predship, /area/yautja) -"aV" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/weapon/yautja/knife, -/obj/item/reagent_container/hypospray/autoinjector/yautja, -/obj/item/reagent_container/hypospray/autoinjector/yautja, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "aW" = ( /obj/structure/machinery/optable, /turf/open/floor/corsat/squareswood/north, @@ -373,17 +278,6 @@ }, /turf/open/shuttle/predship, /area/yautja) -"bn" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/weapon/harpoon/yautja, -/obj/item/weapon/harpoon/yautja, -/obj/item/weapon/harpoon/yautja, -/obj/item/weapon/harpoon/yautja, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "bo" = ( /obj/structure/machinery/body_scanconsole{ dir = 1 @@ -440,18 +334,6 @@ }, /turf/open/shuttle/predship, /area/yautja) -"by" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - anchored = 1; - pixel_y = 20 - }, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) "bz" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -540,19 +422,6 @@ name = "runed hull" }, /area/yautja) -"bO" = ( -/obj/structure/closet/crate{ - color = "#6b675e" - }, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) -"bQ" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/weapon/gun/pistol/heavy/co/gold, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) "bS" = ( /obj/structure/pipes/standard/simple/hidden{ dir = 9 @@ -611,12 +480,6 @@ /obj/item/stack/sheet/xenochitin, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"ca" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/shuttle/predship, -/area/yautja) "cb" = ( /obj/structure/machinery/door_control{ id = "Cell Lockdown 2"; @@ -1186,12 +1049,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"cZ" = ( -/obj/structure/machinery/prop/almayer/CICmap/yautja{ - pixel_y = 2 - }, -/turf/open/floor/strata/grey_multi_tiles/southwest, -/area/yautja) "da" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1295,19 +1152,31 @@ "dw" = ( /turf/open/gm/dirtgrassborder/south, /area/yautja) +"dz" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/left_centre, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"dD" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/item/clothing/mask/gas/yautja/hunter{ + pixel_y = 27; + anchored = 1 + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, +/turf/open/shuttle/predship, +/area/yautja) "dI" = ( /turf/open/space/basic, /area/space) -"dS" = ( +"ef" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/reagent_container/blood/OMinus, -/obj/item/reagent_container/blood/OMinus, -/obj/item/reagent_container/blood/OMinus, -/obj/item/reagent_container/blood/OMinus, -/obj/item/reagent_container/blood/OMinus, -/turf/open/floor/corsat/squareswood/north, +/turf/open/shuttle/predship, /area/yautja) "eg" = ( /obj/structure/barricade/handrail/strata{ @@ -1323,6 +1192,14 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"es" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/elder/right, +/turf/open/shuttle/predship, +/area/yautja) +"et" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "eS" = ( /obj/item/stack/sheet/animalhide/xeno{ anchored = 1; @@ -1486,21 +1363,6 @@ /obj/item/explosive/grenade/spawnergrenade/hellhound, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"gC" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "kutjevo_platform_sm_stair" - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - pixel_y = 27; - anchored = 1 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "gG" = ( /obj/structure/machinery/door_control{ id = "Yautja Armory"; @@ -1551,6 +1413,17 @@ }, /turf/open/gm/dirtgrassborder/weedable/grass1, /area/yautja) +"hL" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/weapon/harpoon/yautja, +/obj/item/weapon/harpoon/yautja, +/obj/item/weapon/harpoon/yautja, +/obj/item/weapon/harpoon/yautja, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "hY" = ( /obj/structure/kitchenspike, /obj/item/reagent_container/food/snacks/meat, @@ -1559,9 +1432,26 @@ /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/darkred2/west, /area/yautja) -"hZ" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/centre, -/turf/open/floor/strata/grey_multi_tiles, +"ig" = ( +/obj/item/clothing/yautja_cape/ceremonial{ + anchored = 1; + color = "#292b29"; + pixel_x = 2; + pixel_y = 32 + }, +/obj/item/clothing/suit/armor/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "halfarmor_elder_n"; + pixel_y = 30 + }, +/obj/item/clothing/mask/gas/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "pred_mask_elder_n"; + pixel_y = 40 + }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "is" = ( /obj/structure/kitchenspike, @@ -1574,10 +1464,6 @@ /obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, /turf/open/floor/darkred2/west, /area/yautja) -"iL" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/shuttle/predship, -/area/yautja) "iV" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1631,14 +1517,22 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"kA" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/weapon/gun/pistol/m1911/socom{ - pixel_y = 0 +"ko" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/elder, +/obj/structure/machinery/cm_vending/clothing/yautja/elder/right, +/turf/open/shuttle/predship, +/area/yautja) +"ku" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" }, -/turf/open/floor/corsat/squareswood/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"kI" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/shuttle/predship, /area/yautja) "lr" = ( /obj/structure/lamarr, @@ -1647,6 +1541,10 @@ "lw" = ( /turf/open/gm/dirtgrassborder/desert1, /area/yautja) +"mm" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/right_centre, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "mn" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -1706,12 +1604,6 @@ /obj/item/weapon/sword/katana, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"mU" = ( -/obj/structure/platform_decoration/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) "nd" = ( /turf/open/gm/dirtgrassborder/desert0, /area/yautja) @@ -1736,34 +1628,17 @@ /obj/item/weapon/twohanded/yautja/spear, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"nP" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - pixel_y = 27; - anchored = 1 - }, -/obj/structure/platform/stair_cut/alt{ - icon_state = "kutjevo_platform_sm_stair_alt" - }, -/turf/open/shuttle/predship, -/area/yautja) -"nT" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/shuttle/predship, -/area/yautja) "nW" = ( /obj/structure/pipes/standard/simple/hidden{ dir = 6 }, /turf/open/shuttle/predship, /area/yautja) -"ob" = ( +"nX" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/right, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"ob" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, @@ -1772,20 +1647,6 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"og" = ( -/obj/structure/closet/crate{ - color = "#6b675e" - }, -/obj/item/bracer_attachments/scimitars, -/obj/item/bracer_attachments/scimitars, -/obj/item/bracer_attachments/scimitars_alt, -/obj/item/bracer_attachments/scimitars_alt, -/obj/item/bracer_attachments/scimitars, -/obj/item/bracer_attachments/scimitars, -/obj/item/bracer_attachments/scimitars, -/obj/item/bracer_attachments/scimitars, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "ov" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -1800,6 +1661,12 @@ /obj/item/stack/yautja_rope, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"oC" = ( +/obj/structure/bed/alien{ + color = "#aba9a9" + }, +/turf/open/shuttle/predship, +/area/yautja) "oO" = ( /obj/item/weapon/yautja/chain{ anchored = 1; @@ -1809,25 +1676,31 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"pl" = ( -/obj/structure/platform_decoration/kutjevo/smooth{ - dir = 1 +"pF" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/shuttle/predship, +/obj/item/reagent_container/blood/OMinus, +/obj/item/reagent_container/blood/OMinus, +/obj/item/reagent_container/blood/OMinus, +/obj/item/reagent_container/blood/OMinus, +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"ps" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt{ - icon_state = "kutjevo_platform_sm_stair_alt" +"pN" = ( +/obj/structure/closet/crate{ + color = "#6b675e" }, -/obj/item/clothing/mask/gas/yautja/hunter{ - pixel_y = 27; - anchored = 1 +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"pW" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, +/obj/item/weapon/yautja/knife, +/obj/item/reagent_container/hypospray/autoinjector/yautja, +/obj/item/reagent_container/hypospray/autoinjector/yautja, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) "qj" = ( @@ -1838,6 +1711,12 @@ /obj/item/tool/crowbar, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"qp" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/shuttle/predship, +/area/yautja) "qS" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1899,22 +1778,12 @@ }, /turf/open/shuttle/predship, /area/yautja) -"st" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) "sx" = ( /obj/structure/window/framed/colony/reinforced/hull{ color = "#aba9a9" }, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"sz" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/right, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "sS" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -1943,6 +1812,10 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"sT" = ( +/obj/structure/curtain/red, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "sV" = ( /obj/structure/machinery/door/airlock/yautja{ dir = 1; @@ -1954,16 +1827,6 @@ /obj/structure/xenoautopsy/tank/alien, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"tg" = ( -/obj/structure/curtain/red, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) -"th" = ( -/obj/structure/platform_decoration/kutjevo/smooth{ - dir = 4 - }, -/turf/open/shuttle/predship, -/area/yautja) "ti" = ( /obj/structure/shuttle/window{ color = "#6b675e" @@ -2052,6 +1915,10 @@ /obj/item/frame/table/gambling, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"ul" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "um" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -2066,10 +1933,6 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"un" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/right_centre, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "uO" = ( /obj/structure/bed/chair/hunter{ dir = 4 @@ -2083,15 +1946,9 @@ /obj/item/weapon/sword/ceremonial, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"vD" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/strata/grey_multi_tiles, +"vC" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/shuttle/predship, /area/yautja) "vO" = ( /obj/structure/machinery/shower{ @@ -2101,16 +1958,6 @@ /obj/structure/window/reinforced/tinted, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"wp" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "ww" = ( /obj/item/stack/sheet/animalhide/xeno{ anchored = 1; @@ -2190,12 +2037,6 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"xX" = ( -/obj/structure/platform_decoration/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) "yr" = ( /obj/structure/window/reinforced{ dir = 8; @@ -2235,6 +2076,14 @@ }, /turf/open/gm/dirtgrassborder/east, /area/yautja) +"zj" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/elder, +/turf/open/shuttle/predship, +/area/yautja) +"zs" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/shuttle/predship, +/area/yautja) "zA" = ( /turf/open/floor/dark2, /area/yautja) @@ -2267,6 +2116,10 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"Bd" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open/shuttle/predship, +/area/yautja) "Be" = ( /obj/structure/machinery/cryopod/no_store/right, /turf/open/shuttle/predship, @@ -2284,6 +2137,10 @@ /obj/item/weapon/yautja/chained/combistick, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) +"Bk" = ( +/obj/structure/machinery/cm_vending/clothing/yautja, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "Br" = ( /turf/open/gm/dirtgrassborder/desert2, /area/yautja) @@ -2328,6 +2185,20 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"CQ" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/north, +/turf/open/shuttle/predship, +/area/yautja) +"CT" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/stack/yautja_rope, +/obj/item/stack/yautja_rope, +/obj/item/stack/yautja_rope, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "Dk" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2346,6 +2217,19 @@ /obj/structure/blocker/invisible_wall, /turf/open/space, /area/yautja) +"Dw" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/item/clothing/mask/gas/yautja/hunter{ + pixel_y = 27; + anchored = 1 + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/turf/open/shuttle/predship, +/area/yautja) "DF" = ( /obj/item/reagent_container/food/snacks/xenomeatbreadslice, /obj/item/reagent_container/food/snacks/xenomeatbreadslice, @@ -2382,10 +2266,6 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"EP" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/elder/right, -/turf/open/shuttle/predship, -/area/yautja) "Fh" = ( /turf/open/floor/strata/grey_multi_tiles/southwest, /area/yautja) @@ -2396,10 +2276,6 @@ /obj/item/storage/medicomp/full, /turf/open/shuttle/predship, /area/yautja) -"Fu" = ( -/obj/structure/platform_decoration/kutjevo/smooth, -/turf/open/shuttle/predship, -/area/yautja) "Fx" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2437,6 +2313,14 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"Go" = ( +/obj/item/weapon/yautja/knife{ + name = "sacred ceremonial dagger"; + pixel_y = 34; + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "Gr" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2470,11 +2354,6 @@ "GM" = ( /turf/open/gm/dirtgrassborder/desert_dug, /area/yautja) -"GP" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/elder, -/obj/structure/machinery/cm_vending/clothing/yautja/elder/right, -/turf/open/shuttle/predship, -/area/yautja) "GY" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2603,6 +2482,10 @@ }, /turf/open/shuttle/predship, /area/yautja) +"IV" = ( +/obj/structure/machinery/cm_vending/clothing/yautja/centre, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "Je" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -2640,6 +2523,33 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"Jg" = ( +/obj/structure/closet/crate{ + color = "#6b675e" + }, +/obj/item/bracer_attachments/scimitars, +/obj/item/bracer_attachments/scimitars, +/obj/item/bracer_attachments/scimitars_alt, +/obj/item/bracer_attachments/scimitars_alt, +/obj/item/bracer_attachments/scimitars, +/obj/item/bracer_attachments/scimitars, +/obj/item/bracer_attachments/scimitars, +/obj/item/bracer_attachments/scimitars, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"JC" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/obj/item/clothing/mask/gas/yautja/hunter{ + pixel_y = 27; + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "JH" = ( /turf/open/floor/strata/grey_multi_tiles, /area/yautja) @@ -2651,14 +2561,30 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"Ke" = ( -/obj/item/weapon/yautja/knife{ - name = "sacred ceremonial dagger"; - pixel_y = 34; - anchored = 1 +"JZ" = ( +/obj/structure/machinery/prop/almayer/CICmap/yautja{ + pixel_y = 2 }, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) +"Ku" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/shuttle/predship, +/area/yautja) +"Kx" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" + }, +/obj/item/clothing/mask/gas/yautja/hunter{ + anchored = 1; + pixel_y = 20 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "KD" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2695,15 +2621,6 @@ }, /turf/open/shuttle/predship, /area/yautja) -"KL" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/strata/grey_multi_tiles, -/area/yautja) "KV" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2731,6 +2648,21 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"Mz" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "ME" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -2748,13 +2680,24 @@ "NA" = ( /turf/open/floor/darkred2, /area/yautja) -"NH" = ( -/obj/structure/machinery/cm_vending/clothing/yautja, -/turf/open/floor/strata/grey_multi_tiles, +"NS" = ( +/obj/structure/machinery/prop/almayer/CICmap/yautja{ + pixel_y = 2 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, /area/yautja) -"Ob" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/elder, -/turf/open/shuttle/predship, +"Oj" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, +/obj/item/clothing/mask/gas/yautja/hunter{ + pixel_y = 27; + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "Ok" = ( /turf/open/gm/dirtgrassborder/desert, @@ -2791,11 +2734,14 @@ }, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"PM" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 +"Pv" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/shuttle/predship, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "Qi" = ( /obj/structure/machinery/gibber, @@ -2823,22 +2769,21 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"QK" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/shuttle/predship, -/area/yautja) -"Rq" = ( -/obj/structure/machinery/prop/almayer/CICmap/yautja{ - pixel_y = 2 +"Rj" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/strata/grey_multi_tiles, +/obj/item/weapon/gun/pistol/heavy/co/gold, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "RE" = ( /obj/structure/closet/secure_closet/freezer/fridge/groceries, /turf/open/floor/darkred2/southeast, /area/yautja) +"RG" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "RS" = ( /turf/open/gm/dirtgrassborder/north, /area/yautja) @@ -2851,8 +2796,16 @@ }, /turf/open/shuttle/predship, /area/yautja) -"SO" = ( -/obj/structure/machinery/cm_vending/clothing/yautja/left_centre, +"SW" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth, +/turf/open/shuttle/predship, +/area/yautja) +"TR" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth/east, /turf/open/floor/strata/grey_multi_tiles, /area/yautja) "Ut" = ( @@ -2890,10 +2843,8 @@ }, /turf/open/shuttle/predship, /area/yautja) -"Uz" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +"UJ" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, /turf/open/floor/corsat/squareswood/north, /area/yautja) "UR" = ( @@ -2916,18 +2867,6 @@ /obj/item/xeno_restraints, /turf/open/shuttle/predship, /area/yautja) -"Vj" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/corsat/squareswood/north, -/area/yautja) -"VC" = ( -/obj/structure/platform_decoration/kutjevo/smooth{ - dir = 8 - }, -/turf/open/shuttle/predship, -/area/yautja) "VT" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2974,6 +2913,10 @@ /obj/item/tool/kitchen/utensil/spoon, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"Xc" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "Xg" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -2985,6 +2928,12 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) +"Xl" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/shuttle/predship, +/area/yautja) "Xp" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -3024,6 +2973,27 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/yautja) +"XA" = ( +/obj/item/clothing/yautja_cape/ceremonial{ + anchored = 1; + color = "#292b29"; + pixel_x = 2; + pixel_y = 32 + }, +/obj/item/clothing/suit/armor/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "halfarmor_elder_joshuu"; + pixel_y = 30 + }, +/obj/item/clothing/mask/gas/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "pred_mask_elder_joshuu"; + pixel_y = 40 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "XP" = ( /obj/structure/machinery/cryopod/no_store, /turf/open/floor/strata/grey_multi_tiles, @@ -3045,6 +3015,10 @@ }, /turf/open/shuttle/predship, /area/yautja) +"Zq" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/shuttle/predship, +/area/yautja) "Zs" = ( /obj/structure/machinery/door/airlock/yautja/secure{ name = "\improper Heavy Armory" @@ -3078,15 +3052,9 @@ }, /turf/open/floor/corsat/squareswood/north, /area/yautja) -"ZR" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/stack/yautja_rope, -/obj/item/stack/yautja_rope, -/obj/item/stack/yautja_rope, -/turf/open/floor/strata/grey_multi_tiles, +"ZQ" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/corsat/squareswood/north, /area/yautja) (1,1,1) = {" @@ -4186,7 +4154,7 @@ bj as bJ aY -dS +pF cj bL an @@ -4471,7 +4439,7 @@ aa ae bj bj -ah +ZQ bL bL bj @@ -4968,15 +4936,15 @@ aa ac bj bj -ZR -aV -bn +CT +pW +hL bj bj ZM -bO +pN bL -bO +pN ZM bj bj @@ -5042,9 +5010,9 @@ bj bj cP JH -al +Mz bj -Vj +et FG FG FG @@ -5111,16 +5079,16 @@ aa aa ad bj -Ob +zj cP JH JH -vD -xX -ai -ai -ai -ai +ku +RG +oC +oC +oC +oC cP wQ bj @@ -5183,7 +5151,7 @@ aa bj bj bj -GP +ko cP cP JH @@ -5256,15 +5224,15 @@ aa ac bj bj -PM -VC +kI +Bd cP df bL -iL -ak -ak -nT +zs +ef +ef +Ku cP wQ bj @@ -5329,15 +5297,15 @@ ad bj bj bj -ps +JC cP -wp -st -VC -ca -ca -Fu -PM +TR +UJ +Bd +Xl +Xl +SW +kI bj bj JH @@ -5375,7 +5343,7 @@ bL bL jP bj -aq +XA cP cP cP @@ -5400,20 +5368,20 @@ bj bj bj bj -Ke +Go df cP bj bj -nP +Dw ME ME -KL +Pv bj bj bj JH -bQ +Rj ab cP cP @@ -5471,7 +5439,7 @@ aa aa ac bj -NH +Bk JH df cP @@ -5543,11 +5511,11 @@ aa aa ae bj -SO +dz JH df JH -tg +sT cP cP Fh @@ -5615,7 +5583,7 @@ aa aa ae bj -hZ +IV cP df cP @@ -5623,7 +5591,7 @@ aw cP cP Fh -cZ +NS Fh cP ti @@ -5665,7 +5633,7 @@ cP cP sx JH -Rq +JZ JH sx cP @@ -5687,11 +5655,11 @@ aa aa ae bj -un +mm JH df JH -tg +sT cP cP Fh @@ -5759,7 +5727,7 @@ aa aa ad bj -sz +nX JH df cP @@ -5832,15 +5800,15 @@ bj bj bj bj -Ke +Go df cP bj bj -ay +dD ME ME -KL +Pv bj bj bj @@ -5905,20 +5873,20 @@ ac bj bj bj -gC +Oj cP -vD -Uz -th -am -am -pl -QK +ku +Xc +vC +qp +qp +CQ +Zq bj bj JH bL -kA +aO bL bL cP @@ -5951,7 +5919,7 @@ bL bL fF bj -ao +ig cP cP cP @@ -5976,15 +5944,15 @@ aa ad bj bj -QK -th +Zq +vC cP df bL -iL -ak -ak -nT +zs +ef +ef +Ku cP wQ bj @@ -6047,7 +6015,7 @@ aa bj bj bj -Ob +zj cP cP JH @@ -6119,16 +6087,16 @@ aa aa ac bj -EP +es cP JH JH -wp -mU -ai -ai -ai -ai +TR +ul +oC +oC +oC +oC cP wQ bj @@ -6194,9 +6162,9 @@ bj bj cP JH -al +Mz bj -Vj +et FG FG FG @@ -6264,15 +6232,15 @@ aa ad bj bj -ZR -aV -bn +CT +pW +hL bj bj ZM -bO +pN bL -bO +pN ZM bj bj @@ -6797,7 +6765,7 @@ bv bv bv bj -og +Jg JH JH JH @@ -7079,11 +7047,11 @@ bj cP cP bj -by +Kx bj -by +Kx bj -by +Kx bj bj bj diff --git a/maps/templates/Chinook.dmm b/maps/templates/Chinook.dmm index 8a1ba3276421..98a8e8bb3f91 100644 --- a/maps/templates/Chinook.dmm +++ b/maps/templates/Chinook.dmm @@ -89,15 +89,6 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) -"ay" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "aA" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/almayer, @@ -426,6 +417,11 @@ /obj/structure/filingcabinet, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) +"br" = ( +/obj/structure/largecrate/supply, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "bu" = ( /obj/structure/surface/table/reinforced/black, /obj/structure/machinery/light{ @@ -598,6 +594,13 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/adminlevel/chinook/sec) +"bT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "bV" = ( /obj/item/device/flashlight/lamp/green, /obj/structure/surface/table/reinforced/black, @@ -619,6 +622,10 @@ }, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) +"cb" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "ce" = ( /turf/open/floor/almayer/green/southeast, /area/adminlevel/chinook/cargo) @@ -652,15 +659,6 @@ "cl" = ( /turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/offices) -"cm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "cp" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -688,6 +686,10 @@ }, /turf/open/floor/wood, /area/adminlevel/chinook) +"cq" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/kutjevo, +/area/adminlevel/chinook/event) "cr" = ( /obj/structure/surface/table/reinforced/black, /obj/item/storage/fancy/cigar, @@ -936,14 +938,17 @@ /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) +"dm" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "dn" = ( /obj/structure/closet/crate, /turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) -"do" = ( -/obj/docking_port/stationary/emergency_response/chinook_port, -/turf/open/floor/plating, -/area/adminlevel/chinook/shuttle) "dp" = ( /obj/item/reagent_container/food/drinks/bottle/whiskey{ pixel_x = 5; @@ -1202,14 +1207,6 @@ }, /turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/offices) -"eq" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/almayer, -/area/adminlevel/chinook) "er" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 25 @@ -1234,6 +1231,10 @@ }, /turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) +"ev" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/kutjevo, +/area/adminlevel/chinook/event) "ew" = ( /obj/structure/closet/secure_closet{ name = "secure evidence locker"; @@ -1265,16 +1266,6 @@ /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) -"eA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "eB" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -1304,13 +1295,6 @@ /obj/item/storage/box/bodybags, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) -"eG" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "eH" = ( /obj/structure/machinery/light{ dir = 1 @@ -1348,12 +1332,6 @@ /obj/structure/machinery/light, /turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) -"eO" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/gm/river/pool, -/area/adminlevel/chinook) "eP" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -1482,6 +1460,14 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) +"ft" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/metal/strata/north, +/turf/open/floor/almayer, +/area/adminlevel/chinook) "fu" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -1705,6 +1691,14 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/engineering) +"gn" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/event) "go" = ( /obj/structure/machinery/shower{ dir = 4 @@ -1746,6 +1740,10 @@ }, /turf/open/floor/carpet, /area/adminlevel/chinook) +"gx" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "gz" = ( /obj/structure/closet/crate/freezer, /obj/item/reagent_container/food/snacks/creamcheesebreadslice, @@ -1817,10 +1815,6 @@ "gL" = ( /turf/open/floor/almayer/red/northwest, /area/adminlevel/chinook) -"gM" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/gm/river/pool, -/area/adminlevel/chinook) "gN" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer/red/west, @@ -2176,6 +2170,19 @@ }, /turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) +"if" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/almayer, +/area/adminlevel/chinook/cargo) +"ig" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plating_striped/east, +/area/adminlevel/chinook/cargo) "ih" = ( /obj/structure/machinery/light{ dir = 4 @@ -2188,21 +2195,14 @@ }, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) -"il" = ( -/obj/structure/platform{ - dir = 1; - layer = 2 - }, -/turf/open/floor/kutjevo/plate, -/area/adminlevel/chinook/event) -"in" = ( +"io" = ( /obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 2.1 + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/kutjevo/plate, -/area/adminlevel/chinook/event) +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "ip" = ( /turf/open/floor/kutjevo/tan/alt_inner_edge, /area/adminlevel/chinook/event) @@ -2230,27 +2230,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) -"iu" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 2.1 - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/kutjevo/plate, -/area/adminlevel/chinook/event) -"iw" = ( -/obj/structure/platform/stair_cut, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "ix" = ( /obj/structure/machinery/door_control{ id = "chinookarmory1"; @@ -2281,24 +2260,12 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) -"iD" = ( -/obj/structure/platform_decoration, -/turf/open/floor/kutjevo, -/area/adminlevel/chinook/event) "iF" = ( /obj/structure/sign/prop2{ pixel_y = 30 }, /turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) -"iG" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/kutjevo/plate, -/area/adminlevel/chinook/event) "iH" = ( /turf/open/floor/kutjevo/tan/alt_inner_edge/east, /area/adminlevel/chinook/event) @@ -2309,18 +2276,8 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) -"iL" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/kutjevo/plate, -/area/adminlevel/chinook/event) -"iN" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, +"iM" = ( +/obj/structure/platform_decoration/metal/almayer/west, /turf/open/floor/kutjevo, /area/adminlevel/chinook/event) "iO" = ( @@ -2390,15 +2347,6 @@ /obj/item/storage/firstaid/adv, /turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) -"jb" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "jc" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; @@ -2465,18 +2413,6 @@ /obj/item/roller, /turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) -"jp" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) -"jq" = ( -/obj/docking_port/stationary/emergency_response/idle_port1, -/turf/closed/wall/almayer/white, -/area/adminlevel/chinook/medical) "jr" = ( /obj/structure/cargo_container/arious/right, /turf/open/floor/corsat/squares, @@ -2578,18 +2514,6 @@ /obj/item/device/multitool, /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) -"jN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/kutjevo, -/area/adminlevel/chinook/event) -"jO" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/kutjevo, -/area/adminlevel/chinook/event) "jQ" = ( /obj/structure/sign/safety/maint{ pixel_x = 12; @@ -2630,6 +2554,14 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) +"jX" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "jY" = ( /turf/open/floor/almayer/silvercorner, /area/adminlevel/chinook) @@ -2644,6 +2576,14 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/almayer/plate, /area/adminlevel/chinook) +"ke" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "kf" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/wood, @@ -2890,12 +2830,6 @@ }, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) -"ld" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/kutjevo, -/area/adminlevel/chinook/event) "lf" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; @@ -2951,12 +2885,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/sec) -"ls" = ( -/obj/structure/platform{ - dir = 4 - }, +"lp" = ( +/obj/structure/platform_decoration/metal/almayer, /turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) +/area/adminlevel/chinook/engineering) "lu" = ( /obj/structure/machinery/light{ dir = 1 @@ -3196,6 +3128,21 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) +"mx" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) +"my" = ( +/obj/structure/platform/metal/stair_cut/platform_right, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "mz" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -3212,19 +3159,6 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) -"mC" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/gm/river/pool, -/area/adminlevel/chinook) -"mD" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/platform/strata/metal, -/turf/open/gm/river/pool, -/area/adminlevel/chinook) "mF" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/pizzabox/meat{ @@ -3266,6 +3200,11 @@ "mK" = ( /turf/open/floor/almayer/orange, /area/adminlevel/chinook) +"mL" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "mN" = ( /obj/structure/surface/table/reinforced/black, /obj/item/device/flashlight/lamp/green{ @@ -3365,18 +3304,6 @@ /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) -"nj" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) -"nk" = ( -/obj/structure/platform/strata/metal, -/turf/open/gm/river/pool, -/area/adminlevel/chinook) "nl" = ( /obj/structure/surface/table/reinforced/black, /obj/structure/sign/prop1{ @@ -3451,6 +3378,15 @@ }, /turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"nw" = ( +/obj/structure/platform/metal/stair_cut/platform_left, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "ny" = ( /obj/structure/surface/table/reinforced/black, /obj/item/ashtray/glass{ @@ -3528,6 +3464,10 @@ }, /turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) +"nK" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "nL" = ( /obj/structure/machinery/light{ dir = 8 @@ -3580,6 +3520,10 @@ }, /turf/open/floor/wood, /area/adminlevel/chinook/event) +"nW" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/kutjevo, +/area/adminlevel/chinook/event) "nX" = ( /obj/structure/surface/table/reinforced/black, /obj/item/reagent_container/food/drinks/coffee{ @@ -3643,16 +3587,6 @@ }, /turf/open/floor/kutjevo, /area/adminlevel/chinook/event) -"oh" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/kutjevo, -/area/adminlevel/chinook/event) "oi" = ( /turf/open/space/basic, /area/space) @@ -3704,12 +3638,6 @@ }, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) -"ot" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "ou" = ( /turf/open/floor/almayer/uscm/directional/north, /area/adminlevel/chinook/shuttle) @@ -3740,15 +3668,6 @@ /obj/item/device/lightreplacer, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) -"oz" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/kutjevo, -/area/adminlevel/chinook/event) "oA" = ( /obj/structure/machinery/cm_vending/sorted/medical, /turf/open/floor/almayer/sterile_green_side/east, @@ -3911,14 +3830,6 @@ }, /turf/open/floor/wood, /area/adminlevel/chinook/event) -"pg" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "ph" = ( /turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) @@ -3930,16 +3841,6 @@ /obj/structure/target, /turf/open/floor/almayer/redfull, /area/adminlevel/chinook) -"pl" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "pm" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, @@ -3978,12 +3879,6 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/sec) -"pv" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/gm/river/pool, -/area/adminlevel/chinook) "pw" = ( /turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) @@ -4091,13 +3986,14 @@ /obj/structure/machinery/computer/telecomms/traffic, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) -"pP" = ( -/obj/structure/platform{ - dir = 1 +"pO" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/carpet, -/area/adminlevel/chinook/event) -"pQ" = ( +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) +"pQ" = ( /turf/closed/shuttle/elevator{ dir = 6 }, @@ -4112,27 +4008,6 @@ }, /turf/open/floor/kutjevo, /area/adminlevel/chinook/event) -"pT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) -"pU" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/almayer, -/area/adminlevel/chinook/cargo) "pV" = ( /obj/structure/machinery/light{ dir = 1 @@ -4253,19 +4128,14 @@ }, /turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"qs" = ( +/obj/docking_port/stationary/emergency_response/idle_port3, +/turf/open/floor/almayer/orange, +/area/adminlevel/chinook/engineering) "qu" = ( /obj/item/toy/inflatable_duck, /turf/open/gm/river/pool, /area/adminlevel/chinook) -"qv" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/gm/river/pool, -/area/adminlevel/chinook) "qw" = ( /obj/item/storage/box/m56d/m2c, /turf/open/floor/almayer/plating/northeast, @@ -4384,12 +4254,6 @@ }, /turf/open/floor/kutjevo/tan, /area/adminlevel/chinook/event) -"qS" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "qT" = ( /obj/item/clothing/glasses/sunglasses, /obj/structure/surface/table/reinforced/black, @@ -4450,6 +4314,14 @@ }, /turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) +"rg" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/almayer, +/area/adminlevel/chinook) "rh" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry, /turf/open/floor/almayer/dark_sterile, @@ -4507,12 +4379,6 @@ /obj/structure/machinery/cm_vending/sorted/medical, /turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) -"rw" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "rx" = ( /turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) @@ -4628,6 +4494,13 @@ /obj/structure/machinery/power/smes, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) +"rZ" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "sa" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, @@ -4686,6 +4559,9 @@ /obj/structure/target, /turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook) +"sq" = ( +/turf/open/floor/plating, +/area/adminlevel/chinook/shuttle) "sr" = ( /turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) @@ -4864,15 +4740,6 @@ /obj/item/tool/weldpack, /turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) -"sU" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plating_striped/east, -/area/adminlevel/chinook/cargo) "sV" = ( /obj/structure/surface/table/reinforced/black, /obj/item/device/flashlight/lamp/green{ @@ -4880,15 +4747,6 @@ }, /turf/open/floor/wood, /area/adminlevel/chinook/offices) -"sW" = ( -/obj/structure/platform/stair_cut, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "sX" = ( /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer/cargo, @@ -4930,6 +4788,14 @@ /obj/item/storage/fancy/cigarettes/lucky_strikes, /turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) +"tg" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/kutjevo, +/area/adminlevel/chinook/event) "tj" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; @@ -4949,13 +4815,6 @@ }, /turf/open/floor/kutjevo/tan, /area/adminlevel/chinook/event) -"to" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/platform/strata/metal, -/turf/open/gm/river/pool, -/area/adminlevel/chinook) "tp" = ( /obj/structure/machinery/light{ dir = 1 @@ -5255,12 +5114,6 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/shuttle) -"uC" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "uD" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "Firing Range"; @@ -5335,10 +5188,6 @@ /obj/item/weapon/gun/shotgun/combat, /turf/open/floor/almayer/cargo, /area/adminlevel/chinook/offices) -"uR" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/plating, -/area/adminlevel/chinook/shuttle) "uS" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -5562,6 +5411,13 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/kutjevo/tan, /area/adminlevel/chinook/event) +"vL" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "vM" = ( /obj/structure/surface/rack, /obj/item/device/binoculars, @@ -5582,13 +5438,6 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/adminlevel/chinook/event) -"vQ" = ( -/obj/structure/largecrate/supply, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "vR" = ( /obj/structure/bed/chair{ dir = 1 @@ -5625,10 +5474,20 @@ /obj/structure/machinery/light, /turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) +"vY" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "vZ" = ( /obj/structure/cargo_container/seegson/mid, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) +"wa" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "wc" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/taperecorder, @@ -5825,12 +5684,6 @@ "wW" = ( /turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/medical) -"wX" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/gm/river/pool, -/area/adminlevel/chinook) "wY" = ( /obj/structure/machinery/light{ dir = 1 @@ -5862,15 +5715,6 @@ }, /turf/open/floor/carpet, /area/adminlevel/chinook/event) -"xf" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/gm/river/pool, -/area/adminlevel/chinook) "xg" = ( /obj/structure/closet/secure_closet/guncabinet/red, /obj/item/ammo_magazine/shotgun/buckshot, @@ -5917,15 +5761,6 @@ }, /turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) -"xq" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/gm/river/pool, -/area/adminlevel/chinook) "xr" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 2; @@ -6023,6 +5858,14 @@ }, /turf/open/floor/almayer/red/north, /area/adminlevel/chinook/offices) +"xQ" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/cargo) "xR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" @@ -6087,6 +5930,14 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) +"yk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "yl" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 @@ -6113,6 +5964,10 @@ /obj/structure/machinery/medical_pod/autodoc, /turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) +"yt" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "yu" = ( /obj/structure/surface/table/reinforced/black, /obj/structure/machinery/computer/secure_data{ @@ -6165,6 +6020,13 @@ /obj/item/trash/cigbutt, /turf/open/floor/kutjevo/multi_tiles, /area/adminlevel/chinook/event) +"yG" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "yJ" = ( /obj/structure/cargo_container/arious/mid, /turf/open/floor/corsat/squares, @@ -6189,17 +6051,6 @@ "yN" = ( /turf/open/floor/almayer/cargo, /area/adminlevel/chinook) -"yO" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/barricade/handrail/strata{ - layer = 4.5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "yP" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light{ @@ -6318,6 +6169,11 @@ }, /turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) +"zo" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "zp" = ( /obj/structure/surface/table/reinforced/black, /obj/item/paper_bin/uscm{ @@ -6351,6 +6207,13 @@ "zw" = ( /turf/open/floor/wood, /area/adminlevel/chinook/event) +"zy" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "zC" = ( /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) @@ -6437,25 +6300,9 @@ /obj/structure/closet/secure_closet/medical2, /turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) -"zU" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/barricade/handrail/strata{ - layer = 4.5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "zW" = ( /turf/closed/wall/almayer/reinforced, /area/adminlevel/chinook/engineering) -"zX" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "zY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, @@ -6528,6 +6375,10 @@ "As" = ( /turf/closed/wall/almayer, /area/adminlevel/chinook/cargo) +"At" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "Au" = ( /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison/kitchen, @@ -6571,6 +6422,13 @@ }, /turf/open/floor/plating, /area/adminlevel/chinook/engineering) +"AA" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/kutjevo, +/area/adminlevel/chinook/event) "AB" = ( /obj/structure/machinery/optable, /turf/open/floor/almayer/sterile_green, @@ -6656,13 +6514,6 @@ /obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) -"AV" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "AX" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -6760,6 +6611,10 @@ }, /turf/open/floor/carpet, /area/adminlevel/chinook/event) +"Bm" = ( +/obj/structure/platform/metal/strata, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "Bn" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, @@ -6864,12 +6719,6 @@ /obj/structure/machinery/autolathe, /turf/open/floor/almayer/green/northwest, /area/adminlevel/chinook/cargo) -"BP" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/kutjevo, -/area/adminlevel/chinook/event) "BR" = ( /obj/structure/machinery/light, /turf/open/floor/almayer/sterile_green_side, @@ -6877,19 +6726,8 @@ "BS" = ( /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/shuttle) -"BU" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) -"BV" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, +"BT" = ( +/obj/structure/platform/metal/almayer/east, /turf/open/floor/kutjevo, /area/adminlevel/chinook/event) "BW" = ( @@ -6924,6 +6762,10 @@ }, /turf/open/floor/wood, /area/adminlevel/chinook) +"Cc" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "Cd" = ( /obj/structure/surface/table/reinforced/black, /obj/item/storage/fancy/cigar{ @@ -6983,15 +6825,6 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook) -"Cp" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "Cq" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/floor/plating/plating_catwalk, @@ -7023,6 +6856,10 @@ }, /turf/open/floor/wood, /area/adminlevel/chinook/offices) +"Cv" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "Cw" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/sign/goldenplaque{ @@ -7050,6 +6887,10 @@ /obj/structure/bed/chair/comfy/black, /turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"CD" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "CE" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -7081,10 +6922,18 @@ /obj/structure/machinery/medical_pod/sleeper, /turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) +"CO" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/kutjevo, +/area/adminlevel/chinook/event) "CQ" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) +"CR" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "CS" = ( /obj/structure/machinery/cryopod/no_store, /turf/open/floor/almayer/sterile_green, @@ -7242,6 +7091,12 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/offices) +"Du" = ( +/obj/structure/machinery/light, +/obj/structure/platform/metal/almayer, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "Dv" = ( /turf/closed/shuttle/elevator{ dir = 10 @@ -7305,6 +7160,17 @@ }, /turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"DF" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/strata{ + layer = 4.5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "DH" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -7314,6 +7180,14 @@ }, /turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"DI" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 2.1 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/event) "DL" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, @@ -7359,6 +7233,10 @@ }, /turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cryo) +"DU" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "DV" = ( /obj/structure/surface/rack, /turf/open/floor/almayer/plating/northeast, @@ -7383,6 +7261,10 @@ /obj/structure/machinery/cm_vending/clothing/dress, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) +"Ee" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "Eg" = ( /obj/structure/closet/coffin, /turf/open/floor/almayer/plating/northeast, @@ -7443,16 +7325,6 @@ }, /turf/open/floor/kutjevo/tan/alt_inner_edge, /area/adminlevel/chinook) -"Ep" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/gm/river/pool, -/area/adminlevel/chinook) "Eq" = ( /obj/structure/machinery/vending/hydronutrients, /obj/structure/machinery/light{ @@ -7518,6 +7390,19 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/offices) +"EH" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/sign/safety/high_voltage{ + pixel_x = -15; + pixel_y = 5 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -15; + pixel_y = -7 + }, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "EJ" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/kutjevo/tan/plate, @@ -7566,6 +7451,18 @@ "EV" = ( /turf/open/floor/almayer/red/north, /area/adminlevel/chinook) +"EY" = ( +/obj/structure/platform/metal/stair_cut/platform_left, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "EZ" = ( /obj/structure/machinery/light, /turf/open/floor/almayer/plating/northeast, @@ -7661,12 +7558,6 @@ /obj/structure/closet/toolcloset, /turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) -"Fv" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "Fx" = ( /turf/closed/shuttle/elevator/gears, /area/adminlevel/chinook/offices) @@ -7781,15 +7672,6 @@ }, /turf/open/floor/wood, /area/adminlevel/chinook) -"FX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "FY" = ( /turf/open/floor/kutjevo/tan/alt_edge/east, /area/adminlevel/chinook) @@ -7830,15 +7712,6 @@ }, /turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) -"Gi" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "Gk" = ( /obj/structure/sign/safety/medical{ pixel_y = 25 @@ -7866,6 +7739,12 @@ }, /turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) +"Gr" = ( +/obj/vehicle/powerloader, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/chinook/cargo) "Gt" = ( /obj/structure/sign/safety/galley{ pixel_y = 25 @@ -7905,6 +7784,10 @@ /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) +"Gy" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "Gz" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -8031,6 +7914,13 @@ }, /turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"GY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "Ha" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -8126,6 +8016,11 @@ }, /turf/open/floor/plating/almayer, /area/adminlevel/chinook/sec) +"Hw" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/platform/metal/strata, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "Hx" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/adminlevel/chinook) @@ -8143,16 +8038,6 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/adminlevel/chinook/event) -"HA" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/adminlevel/chinook) "HC" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 8; @@ -8181,6 +8066,10 @@ /obj/item/stack/sheet/metal/large_stack, /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) +"HI" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/plating, +/area/adminlevel/chinook/shuttle) "HJ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -8243,17 +8132,6 @@ /obj/structure/machinery/vending/snack, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) -"HQ" = ( -/obj/structure/largecrate/supply, -/obj/effect/spawner/random/tool, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/sign/safety/coffee{ - pixel_x = -16 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "HR" = ( /obj/structure/largecrate/random/case/double, /obj/effect/decal/warning_stripes{ @@ -8406,6 +8284,10 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/adminlevel/chinook/offices) +"Iz" = ( +/obj/docking_port/stationary/emergency_response/idle_port1, +/turf/closed/wall/almayer/white, +/area/adminlevel/chinook/medical) "IA" = ( /obj/structure/machinery/light{ dir = 4 @@ -8413,12 +8295,6 @@ /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/kutjevo/tan, /area/adminlevel/chinook/event) -"IB" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/kutjevo/plate, -/area/adminlevel/chinook/event) "IC" = ( /obj/structure/bed/chair/comfy/black, /turf/open/floor/almayer/red/west, @@ -8477,6 +8353,13 @@ }, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook) +"IV" = ( +/obj/vehicle/powerloader, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/chinook/cargo) "IW" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -8539,6 +8422,13 @@ }, /turf/open/floor/almayer/blue/north, /area/adminlevel/chinook) +"Ji" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/barricade/handrail/strata{ + layer = 4.5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "Jm" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/kutjevo/tan, @@ -8615,12 +8505,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/chinook) -"JB" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "JC" = ( /obj/structure/machinery/vending/hydroseeds, /turf/open/floor/plating/plating_catwalk, @@ -8646,14 +8530,6 @@ /obj/structure/machinery/light, /turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) -"JI" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/adminlevel/chinook/cargo) "JJ" = ( /obj/structure/surface/rack, /turf/open/floor/almayer/red/northeast, @@ -8709,10 +8585,6 @@ /obj/item/clothing/under/shorts/grey, /turf/open/floor/almayer/plate, /area/adminlevel/chinook) -"JU" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "JV" = ( /obj/structure/surface/rack, /turf/open/floor/almayer/cargo, @@ -8732,15 +8604,11 @@ }, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) -"Kd" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, +"Kc" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) +/area/adminlevel/chinook/engineering) "Ke" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -8756,21 +8624,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) -"Kj" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) -"Kl" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "Km" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -8895,17 +8748,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook) -"KK" = ( -/obj/structure/closet/crate, -/obj/item/clothing/gloves/marine/insulated, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/adminlevel/chinook/cargo) "KM" = ( /obj/structure/machinery/light{ dir = 8 @@ -8936,6 +8778,10 @@ "KT" = ( /turf/open/floor/almayer/silver/northeast, /area/adminlevel/chinook) +"KU" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/carpet, +/area/adminlevel/chinook/event) "KV" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; @@ -9265,6 +9111,10 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook) +"LZ" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "Mb" = ( /turf/open/floor/kutjevo/tan/plate, /area/adminlevel/chinook/event) @@ -9323,6 +9173,11 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) +"Mo" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "Mp" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "chinook4"; @@ -9342,6 +9197,11 @@ }, /turf/open/floor/carpet, /area/adminlevel/chinook/sec) +"Mu" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plating_striped/east, +/area/adminlevel/chinook/cargo) "Mv" = ( /obj/effect/spawner/random/tool, /obj/item/clothing/gloves/marine/insulated, @@ -9390,12 +9250,6 @@ }, /turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) -"MD" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "ME" = ( /obj/structure/surface/table/reinforced/black, /obj/item/book/manual/marine_law{ @@ -9483,6 +9337,18 @@ /obj/structure/machinery/light, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) +"MZ" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) +"Na" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "chinookairlock1"; + name = "\improper Chinook Shuttle Airlock" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/shuttle) "Nb" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/plating/northeast, @@ -9737,13 +9603,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) -"Oj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "On" = ( /obj/structure/surface/table/almayer, /obj/item/device/defibrillator, @@ -9775,6 +9634,14 @@ /obj/structure/closet/secure_closet/medical_doctor, /turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) +"Ov" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/event) "Ow" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -9921,13 +9788,6 @@ "OY" = ( /turf/open/floor/carpet, /area/adminlevel/chinook) -"OZ" = ( -/obj/structure/platform, -/obj/structure/barricade/handrail/strata{ - layer = 4.5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "Pa" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/emeraldgreen{ @@ -9954,12 +9814,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) -"Pe" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/gm/river/pool, -/area/adminlevel/chinook) "Pf" = ( /turf/open/floor/kutjevo/colors/blue/edge/east, /area/adminlevel/chinook) @@ -10001,15 +9855,6 @@ /obj/item/trash/uscm_mre, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) -"Po" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "Pp" = ( /obj/item/reagent_container/glass/bucket/janibucket, /turf/open/floor/almayer/plate, @@ -10104,6 +9949,10 @@ }, /turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) +"PD" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/kutjevo, +/area/adminlevel/chinook/event) "PE" = ( /obj/structure/machinery/light{ dir = 8 @@ -10119,6 +9968,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) +"PH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "PI" = ( /obj/structure/machinery/sleep_console{ dir = 8 @@ -10131,20 +9988,23 @@ /obj/item/reagent_container/glass/bucket/mopbucket, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) -"PL" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "chinookairlock1"; - name = "\improper Chinook Shuttle Airlock" - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/shuttle) "PM" = ( /turf/open/floor/almayer/green/west, /area/adminlevel/chinook) "PP" = ( /turf/open/floor/almayer/green, /area/adminlevel/chinook) +"PQ" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/strata{ + layer = 4.5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "PR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/toolbox/mechanical, @@ -10250,6 +10110,10 @@ /obj/item/tool/soap, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) +"Qj" = ( +/obj/docking_port/stationary/emergency_response/chinook_port, +/turf/open/floor/plating, +/area/adminlevel/chinook/shuttle) "Qm" = ( /turf/open/floor/almayer/blue/west, /area/adminlevel/chinook/offices) @@ -10534,12 +10398,6 @@ /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) -"Rp" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plating_striped/east, -/area/adminlevel/chinook/cargo) "Rq" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 25 @@ -10552,25 +10410,6 @@ }, /turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) -"Rt" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = -15; - pixel_y = 5 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -15; - pixel_y = -7 - }, -/obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) -"Ru" = ( -/obj/docking_port/stationary/emergency_response/idle_port3, -/turf/open/floor/almayer/orange, -/area/adminlevel/chinook/engineering) "Rw" = ( /obj/structure/machinery/disposal, /turf/open/floor/almayer/sterile_green_corner/east, @@ -10601,12 +10440,6 @@ }, /turf/open/floor/almayer/red/northwest, /area/adminlevel/chinook/sec) -"RD" = ( -/obj/structure/machinery/light, -/obj/structure/platform, -/obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "RE" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 @@ -10717,6 +10550,11 @@ }, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) +"Sf" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "Sg" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -10910,14 +10748,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/chinook) -"SV" = ( -/obj/structure/platform/stair_cut/alt, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/engineering) "SX" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer/test_floor5, @@ -11340,6 +11170,15 @@ /obj/structure/machinery/computer/sentencing, /turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) +"US" = ( +/obj/structure/closet/crate, +/obj/item/clothing/gloves/marine/insulated, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/cargo, +/area/adminlevel/chinook/cargo) "UU" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/straight_jacket, @@ -11372,16 +11211,6 @@ /obj/structure/machinery/disposal, /turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/chinook/medical) -"UY" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor4, -/area/adminlevel/chinook/cargo) "UZ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -11487,6 +11316,14 @@ /obj/structure/largecrate/supply/generator, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) +"Vy" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "Vz" = ( /turf/open/floor/almayer/silver/west, /area/adminlevel/chinook) @@ -11499,6 +11336,14 @@ }, /turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) +"VC" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) +"VD" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "VE" = ( /obj/structure/machinery/light{ dir = 1 @@ -11526,6 +11371,15 @@ /obj/structure/machinery/telecomms/receiver, /turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) +"VL" = ( +/obj/structure/largecrate/supply, +/obj/effect/spawner/random/tool, +/obj/structure/platform/metal/almayer/west, +/obj/structure/sign/safety/coffee{ + pixel_x = -16 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "VN" = ( /obj/item/smallDelivery{ pixel_x = -13; @@ -11602,6 +11456,14 @@ }, /turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) +"VX" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "VY" = ( /turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/offices) @@ -11651,6 +11513,15 @@ }, /turf/open/floor/almayer/emerald/west, /area/adminlevel/chinook/shuttle) +"Wj" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 2.1 + }, +/obj/structure/platform/metal/stair_cut/platform_left, +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/event) "Wl" = ( /obj/structure/closet/crate, /obj/item/circuitboard, @@ -11860,6 +11731,10 @@ "WY" = ( /turf/open/floor/almayer_hull/outerhull_dir/southeast, /area/space) +"WZ" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/event) "Xa" = ( /obj/structure/surface/table/reinforced/black, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -11930,9 +11805,6 @@ /obj/structure/closet/firecloset, /turf/open/floor/almayer/silver/northeast, /area/adminlevel/chinook) -"Xl" = ( -/turf/open/floor/plating, -/area/adminlevel/chinook/shuttle) "Xm" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -12016,17 +11888,6 @@ /obj/structure/largecrate/supply/medicine/optable, /turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) -"XK" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/test_floor4, -/area/adminlevel/chinook/cargo) "XL" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -12099,6 +11960,11 @@ /obj/structure/machinery/light, /turf/open/floor/almayer/red/east, /area/adminlevel/chinook) +"XX" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "XZ" = ( /obj/structure/machinery/chem_dispenser, /turf/open/floor/almayer/sterile_green_side/east, @@ -12171,12 +12037,6 @@ "Yj" = ( /turf/open/floor/almayer, /area/adminlevel/chinook/cryo) -"Yk" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/chinook/cargo) "Ym" = ( /obj/structure/machinery/computer/crew, /turf/open/floor/almayer/sterile_green_corner/east, @@ -12294,6 +12154,11 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/cryo) +"YJ" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/platform/metal/strata, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "YK" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -14106,17 +13971,17 @@ ow lO ZZ CF -xq -wX -wX -wX -wX -wX -wX -wX -wX -wX -to +vY +Cc +Cc +Cc +Cc +Cc +Cc +Cc +Cc +Cc +YJ bY fu af @@ -14233,7 +14098,7 @@ ZZ lO ZZ CF -pv +CD pX pX pX @@ -14243,7 +14108,7 @@ pX BJ pX pX -nk +Bm bY fu af @@ -14359,8 +14224,8 @@ ZZ Tl lO qZ -qv -Pe +rZ +CR pX pX pX @@ -14370,7 +14235,7 @@ pX pX pX pX -nk +Bm bY fu af @@ -14486,8 +14351,8 @@ ZZ Tl lO qZ -Ep -mC +io +VD pX pX pX @@ -14497,7 +14362,7 @@ pX pX pX pX -nk +Bm bY SP af @@ -14614,7 +14479,7 @@ ow lO ZZ CF -pv +CD pX BJ pX @@ -14624,7 +14489,7 @@ pX pX pX pX -nk +Bm fL SP af @@ -14741,17 +14606,17 @@ ZZ lO ZZ CF -xf -eO -eO -eO -eO -eO -eO -mC -gM -eO -mD +Mo +Cv +Cv +Cv +Cv +Cv +Cv +VD +LZ +Cv +Hw bY SP af @@ -14875,8 +14740,8 @@ oG Vb Vb gj -HA -eq +ft +rg Ry Vb ZZ @@ -18686,14 +18551,14 @@ UK YA bz Ki -sW -pg +nw +ke UK UK UK UK -iw -yO +EY +PQ ZX Ig RM @@ -18813,14 +18678,14 @@ UK YD bz Ki -ot -Kl -AV -eA -Rt -AV -Fv -OZ +VC +yt +wa +PH +EH +wa +gx +Ji IP zC Zz @@ -18940,14 +18805,14 @@ UK YG bz Ki -Gi -MD +Sf +Gy no no no no UE -OZ +Ji jk Ig RM @@ -19068,13 +18933,13 @@ Qr bz Ig uW -ot +VC mA mA mA mA iP -zX +XX UK jS RM @@ -19195,13 +19060,13 @@ HW ZB Il Rl -ot +VC Hn Hn Hn Hn iP -zX +XX UK Lm RM @@ -19322,13 +19187,13 @@ Mm Nv Il PR -ot +VC Hn Hn Hn Hn iP -RD +Du UK bJ RM @@ -19449,13 +19314,13 @@ et bz Ig Ct -ot +VC Vg Hy tS lV iP -zX +XX UK lH RM @@ -19466,7 +19331,7 @@ UK bz jI pp -Ru +qs XH df df @@ -19575,14 +19440,14 @@ gh YI bz Ki -cm -Fv +Kc +gx mA mA mA mA UE -OZ +Ji jK Ig OC @@ -19702,14 +19567,14 @@ gh UF bz Ki -ot -JU -eG -pT -eG -eG -MD -OZ +VC +lp +zo +yk +zo +zo +Gy +Ji cv zC hd @@ -19829,14 +19694,14 @@ gh YK bz Ki -SV -nj +my +jX UK UK UK UK -jp -zU +Vy +DF dr iZ Qh @@ -20735,7 +20600,7 @@ Iv Zc Iv Iv -jq +Iz Iv KI Iv @@ -22212,8 +22077,8 @@ Tl Tm TQ TQ -oh -ld +tg +iM SL wj wj @@ -22340,7 +22205,7 @@ Tm Vr Vr Vr -BP +cq SL wj wj @@ -22467,7 +22332,7 @@ Tm lD Vr Vr -BP +cq SL wj wj @@ -22594,7 +22459,7 @@ Tm WU Vr om -pP +KU Vr Vr Vr @@ -22656,7 +22521,7 @@ As pw JY pw -qS +DU pw gp pw @@ -22721,7 +22586,7 @@ Tm kG Vr om -pP +KU Vr Vr Vr @@ -22774,16 +22639,16 @@ aw aw lQ lQ -pU -JI +if +xQ As lQ As As pw pw -Kj -ay +zy +GY pw pw pw @@ -22848,7 +22713,7 @@ Tm Qt Vr Vr -BP +cq SL wj wj @@ -22896,18 +22761,18 @@ ph aw Vq dn -FX +bT LQ OD -KK -Yk -uC -rw -HQ -vQ +US +MZ +nK +cb +VL +br OH As -XK +IV WV hi ar @@ -22975,7 +22840,7 @@ Tm Vr Vr Vr -BP +cq SL wj wj @@ -23023,7 +22888,7 @@ pe aw Vq dn -qS +DU Nt pw te @@ -23101,8 +22966,8 @@ kq Tm TQ TQ -oz -BV +AA +PD SL wj wj @@ -23149,8 +23014,8 @@ uF qf aw Nw -BU -uC +yG +nK Vq pw Vq @@ -23161,10 +23026,10 @@ pw pw Nc As -UY +Gr WV -Kd -Cp +dm +pO pw Ex BC @@ -23291,7 +23156,7 @@ Ke fi os ik -qS +DU pw pw TA @@ -23403,8 +23268,8 @@ aw aw aw cQ -jb -JB +mx +At hS pw me @@ -23415,10 +23280,10 @@ pw pw pw zL -Po -Yk -Yk -uC +vL +MZ +MZ +nK pw pw vZ @@ -23531,13 +23396,13 @@ Nm lQ Vq cu -sU -Rp -Rp -Rp -Rp -ls -JB +Mu +ig +ig +ig +ig +Ee +At VN pw pw @@ -23664,7 +23529,7 @@ Vq Vq Vq Vq -pl +VX lb pw pw @@ -23792,8 +23657,8 @@ Vq Vq Vq Vq -jb -JB +mx +At pw Ke pw @@ -23920,7 +23785,7 @@ Mv Vq Go YM -qS +DU Cn Id vU @@ -24047,7 +23912,7 @@ uj Vq Vq bA -Oj +mL Sc Id BC @@ -25440,23 +25305,23 @@ QF QF QF Br -uR -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -uR +HI +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +HI tC af Wf @@ -25507,7 +25372,7 @@ Zu al Qx TQ -il +WZ SL SL kA @@ -25567,23 +25432,23 @@ Yp Yp Yp Br -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -do -Xl -Xl +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +Qj +sq +sq hM af Wf @@ -25634,11 +25499,11 @@ Zu al Qx NU -il -iD -jN -jN -ld +WZ +nW +BT +BT +iM Mc Mc zw @@ -25694,23 +25559,23 @@ lh lh tm Br -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq hM af Wf @@ -25761,11 +25626,11 @@ Zu al SR TQ -in -iG +DI +Ov dQ kB -IB +WZ Mc Mc nP @@ -25821,23 +25686,23 @@ Mh Mh Mh Br -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq hM af Wf @@ -25892,7 +25757,7 @@ ip iH WQ Hz -IB +WZ Mc Mc nV @@ -25948,23 +25813,23 @@ Br Br Br Br -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq hM af Wf @@ -26019,7 +25884,7 @@ BX JR Vr kC -IB +WZ Hz Vr Vr @@ -26075,23 +25940,23 @@ yw WI mu Br -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq hM af Wf @@ -26146,7 +26011,7 @@ BX JR WQ kD -IB +WZ mg IM Vr @@ -26202,23 +26067,23 @@ Um Um Um Br -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq hM af Wf @@ -26273,7 +26138,7 @@ BX JR Vr kG -IB +WZ mi Vr Vr @@ -26329,23 +26194,23 @@ DO DO mh Br -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq hM af Wf @@ -26400,7 +26265,7 @@ iq JX WQ Hz -IB +WZ Mc Mc nX @@ -26456,23 +26321,23 @@ Tu Tu Tu Br -uR -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -Xl -uR +HI +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +sq +HI tC af Wf @@ -26523,11 +26388,11 @@ Zu al SR TQ -iu -iL +Wj +gn dQ kB -IB +WZ Mc Mc nY @@ -26584,21 +26449,21 @@ yy kk Br tC -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL -PL +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na +Na tC tC af @@ -26650,11 +26515,11 @@ Zu al Qx NU -il -iN -jO -jO -BV +WZ +CO +ev +ev +PD Mc Mc zw @@ -26777,7 +26642,7 @@ Zu al Qx TQ -il +WZ SL SL kI diff --git a/maps/templates/lazy_templates/clf_ert_station.dmm b/maps/templates/lazy_templates/clf_ert_station.dmm index d362885dfa06..b3cccf7f03cd 100644 --- a/maps/templates/lazy_templates/clf_ert_station.dmm +++ b/maps/templates/lazy_templates/clf_ert_station.dmm @@ -82,35 +82,6 @@ }, /turf/open/floor/wood/wood_broken6, /area/adminlevel/ert_station/clf_station) -"aO" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) -"aR" = ( -/obj/structure/platform/kutjevo, -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "fullgrass_1" - }, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/adminlevel/ert_station/clf_station) -"bb" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "by" = ( /turf/open/auto_turf/strata_grass/layer0, /area/adminlevel/ert_station/clf_station) @@ -124,12 +95,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"bX" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/adminlevel/ert_station/clf_station) "cc" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /obj/item/reagent_container/food/condiment/enzyme, @@ -158,6 +123,11 @@ "cH" = ( /turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) +"cT" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/grass, +/area/adminlevel/ert_station/clf_station) "dd" = ( /turf/open/gm/coast/south, /area/adminlevel/ert_station/clf_station) @@ -174,26 +144,9 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) -"dU" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) -"dY" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) -"eh" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, +"eg" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/largecrate/random/barrel/yellow, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "eo" = ( @@ -203,13 +156,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"ey" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "eE" = ( /obj/structure/largecrate/black_market/clf_supplies, /turf/open/auto_turf/strata_grass/layer1, @@ -218,15 +164,6 @@ /obj/structure/window/framed/wood/reinforced, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"eO" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "fullgrass_1" - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "eP" = ( /obj/structure/window/framed/wood, /turf/open/floor/wood, @@ -240,23 +177,18 @@ /obj/structure/pipes/vents/pump, /turf/closed/wall/wood, /area/adminlevel/ert_station/clf_station) -"fo" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "fx" = ( /obj/structure/largecrate/supply/medicine/blood, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"fA" = ( -/obj/structure/platform/kutjevo{ - dir = 8 +"fI" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 9; + icon_state = "p_stair_full" }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/strata_grass/layer0, /area/adminlevel/ert_station/clf_station) "fX" = ( /obj/structure/prop/wooden_cross, @@ -286,6 +218,11 @@ }, /turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) +"hj" = ( +/obj/structure/largecrate/supply/weapons/shotgun, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "hr" = ( /obj/structure/machinery/light/small/built{ dir = 4 @@ -296,6 +233,15 @@ /obj/structure/bed/chair, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"hH" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"hK" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/strata_grass/layer0, +/area/adminlevel/ert_station/clf_station) "hL" = ( /obj/structure/window/reinforced{ dir = 4; @@ -332,26 +278,12 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"ie" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/wood, -/area/adminlevel/ert_station/clf_station) -"iB" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) -"iG" = ( -/obj/structure/flora/grass/tallgrass/jungle, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) -"iK" = ( -/obj/structure/barricade/sandbags, -/turf/open/auto_turf/strata_grass/layer1, +"hY" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/gm/grass/grass2, /area/adminlevel/ert_station/clf_station) -"iO" = ( +"ib" = ( /obj/structure/showcase{ color = "#95948B"; desc = "A grey statue dawned in ancient armor, it stares into your soul."; @@ -374,23 +306,41 @@ }, /turf/open/floor/sandstone/runed, /area/adminlevel/ert_station/clf_station) -"jc" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/strata_grass/layer0, +"ie" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"jj" = ( +"iB" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"iC" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 }, -/turf/open/gm/grass/grass2, +/turf/open/gm/grass, +/area/adminlevel/ert_station/clf_station) +"iG" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"iK" = ( +/obj/structure/barricade/sandbags, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"iR" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"jb" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/largecrate/supply/weapons/flamers, +/turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "jp" = ( /obj/structure/surface/table/woodentable/poor, @@ -401,6 +351,11 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"jV" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/east, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "jZ" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/auto_turf/strata_grass/layer1, @@ -413,30 +368,12 @@ /obj/item/ammo_box/magazine/l42a, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"ko" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/flora/jungle/vines, -/obj/structure/flora/jungle/vines{ - icon_state = "heavy_1" - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "kr" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"ks" = ( -/obj/structure/platform/kutjevo, -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "fullgrass_1" - }, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/adminlevel/ert_station/clf_station) "kF" = ( /obj/effect/decal/cleanable/blood, /obj/structure/surface/table/woodentable/poor, @@ -459,11 +396,10 @@ /obj/item/reagent_container/food/drinks/shaker, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"la" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/grass, +"lo" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/largecrate/supply/explosives/grenades, +/turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "lp" = ( /obj/structure/surface/table/woodentable/poor, @@ -476,20 +412,23 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"lz" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"lD" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "lI" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"lN" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/adminlevel/ert_station/clf_station) -"lT" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, +"lL" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "lX" = ( @@ -510,15 +449,9 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"me" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/adminlevel/ert_station/clf_station) -"mk" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/flora/jungle/vines/heavy, +"mp" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "ms" = ( @@ -540,6 +473,11 @@ "mw" = ( /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"mx" = ( +/obj/structure/platform/metal/kutjevo/east, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "mR" = ( /obj/structure/machinery/gibber{ pixel_y = 10 @@ -563,17 +501,6 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"nr" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "nC" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/vodka, @@ -583,13 +510,6 @@ /obj/item/clothing/shoes/jackboots, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"nM" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/largecrate/random/secure, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "nQ" = ( /obj/item/clothing/mask/cigarette/cigar/classic, /obj/structure/surface/table/woodentable/fancy, @@ -605,6 +525,11 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"oe" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "om" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/adminlevel/ert_station/clf_station) @@ -648,32 +573,15 @@ /obj/structure/flora/jungle/vines, /turf/closed/wall/strata_ice/jungle, /area/adminlevel/ert_station/clf_station) -"oO" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/kutjevo, +"pj" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "pk" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"pp" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/grass/grass2, -/area/adminlevel/ert_station/clf_station) -"pE" = ( -/obj/structure/platform/kutjevo, -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "pF" = ( /turf/open/floor/wood/wood_broken6, /area/adminlevel/ert_station/clf_station) @@ -699,6 +607,16 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/adminlevel/ert_station/clf_station) +"qI" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/platform/metal/kutjevo, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"qM" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/closet/coffin/woodencrate, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "rm" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/device/healthanalyzer{ @@ -716,18 +634,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"rO" = ( -/obj/structure/platform/kutjevo, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) -"rZ" = ( -/obj/structure/platform/kutjevo, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "sv" = ( /obj/structure/target/syndicate, /obj/item/weapon/throwing_knife, @@ -739,6 +645,13 @@ /obj/item/restraint/handcuffs, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"sy" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "sC" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -765,6 +678,29 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"tc" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"tf" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/adminlevel/ert_station/clf_station) +"ti" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "ts" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -833,13 +769,6 @@ }, /turf/open/floor/wood/wood_broken3, /area/adminlevel/ert_station/clf_station) -"uF" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/closet/coffin/woodencrate, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "uO" = ( /obj/structure/bed{ icon_state = "abed" @@ -847,6 +776,13 @@ /obj/item/bedsheet/yellow, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"uR" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1" + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "uX" = ( /turf/open/floor/plating, /area/adminlevel/ert_station/clf_station) @@ -865,6 +801,10 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"vn" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "vx" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/trash/candle, @@ -873,24 +813,36 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"vy" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1" + }, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/adminlevel/ert_station/clf_station) "vA" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"vE" = ( -/obj/structure/largecrate/supply/weapons/shotgun, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "vI" = ( /turf/open/floor/sandstone/runed, /area/adminlevel/ert_station/clf_station) -"vQ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"vJ" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/grass, +/area/adminlevel/ert_station/clf_station) +"wa" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/adminlevel/ert_station/clf_station) +"we" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" }, +/obj/structure/platform_decoration/metal/kutjevo/north, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "wI" = ( @@ -899,16 +851,22 @@ }, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) -"wW" = ( -/turf/open/gm/coast/south_east, -/area/adminlevel/ert_station/clf_station) -"xi" = ( -/obj/structure/platform/kutjevo{ - dir = 8 +"wP" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "heavy_1" }, -/obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"wS" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/largecrate/supply/explosives/mines, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"wW" = ( +/turf/open/gm/coast/south_east, +/area/adminlevel/ert_station/clf_station) "xE" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/adminlevel/ert_station/clf_station) @@ -940,21 +898,19 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"xS" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "ye" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) -"yy" = ( -/obj/structure/platform_decoration/kutjevo, +"yh" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/dirtgrassborder/east, +/area/adminlevel/ert_station/clf_station) +"yp" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/flora/jungle/vines/heavy, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "yE" = ( @@ -976,27 +932,32 @@ /obj/item/ammo_magazine/pistol/clfpistol, /turf/open/floor/wood/wood_broken3, /area/adminlevel/ert_station/clf_station) -"yO" = ( -/obj/structure/platform/kutjevo{ - dir = 4 +"yS" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1" }, -/obj/structure/flora/bush/ausbushes/genericbush, -/turf/open/gm/grass/grass2, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/adminlevel/ert_station/clf_station) "yU" = ( /turf/open/gm/river, /area/adminlevel/ert_station/clf_station) -"yW" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "yY" = ( /obj/structure/prop/brazier/frame/full, /turf/open/floor/plating/asteroidwarning, /area/adminlevel/ert_station/clf_station) +"zg" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/largecrate/random/case/double, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"zk" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/gm/grass, +/area/adminlevel/ert_station/clf_station) "zy" = ( /obj/structure/machinery/light/small/built{ dir = 1 @@ -1023,30 +984,16 @@ "Ag" = ( /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/adminlevel/ert_station/clf_station) -"Ah" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/adminlevel/ert_station/clf_station) "Aj" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) -"AE" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/east, -/area/adminlevel/ert_station/clf_station) -"AK" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, +"Ax" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 + dir = 10 }, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/gm/grass/grass2, /area/adminlevel/ert_station/clf_station) "AO" = ( /obj/structure/surface/table/woodentable/poor, @@ -1058,6 +1005,10 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"AP" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "AV" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/ammo_magazine/smg/mac15/extended, @@ -1087,14 +1038,10 @@ /obj/item/trash/burger, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"Bt" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/grass, +"Bo" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/largecrate/random/case/small, +/turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "Bx" = ( /obj/structure/closet/secure_closet/freezer/meat, @@ -1118,29 +1065,6 @@ }, /turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) -"BQ" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/platform/kutjevo, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) -"BS" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer0, -/area/adminlevel/ert_station/clf_station) -"BU" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/adminlevel/ert_station/clf_station) -"Ch" = ( -/obj/structure/platform/kutjevo, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "Ck" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/device/radio/headset/distress/CLF, @@ -1148,6 +1072,11 @@ /obj/structure/machinery/recharger, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"Cu" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/flora/jungle/vines, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "CE" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/largecrate/random/secure, @@ -1167,6 +1096,10 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud, /area/adminlevel/ert_station/clf_station) +"DB" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "DF" = ( /turf/open/floor/wood/wood_broken3, /area/adminlevel/ert_station/clf_station) @@ -1181,17 +1114,6 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"Eb" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/strata_grass/layer0, -/area/adminlevel/ert_station/clf_station) "Ee" = ( /turf/open/gm/dirtgrassborder/east, /area/adminlevel/ert_station/clf_station) @@ -1214,29 +1136,38 @@ }, /turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) +"EZ" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "fullgrass_1" + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "Fj" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/vodka, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"Fn" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "FD" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/adminlevel/ert_station/clf_station) +"FT" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "FV" = ( /obj/item/reagent_container/food/drinks/bottle/vodka, /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"Gj" = ( -/obj/structure/platform/kutjevo, -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, +"Gh" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/adminlevel/ert_station/clf_station) "Gl" = ( /obj/structure/surface/table/woodentable/poor, @@ -1255,12 +1186,9 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) -"GR" = ( -/obj/structure/platform/kutjevo, -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 1 - }, -/turf/open/gm/grass, +"GK" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "GV" = ( /turf/open/floor/plating/asteroidwarning/west, @@ -1269,10 +1197,23 @@ /obj/docking_port/stationary/emergency_response/idle_port1, /turf/open/floor/plating, /area/adminlevel/ert_station/clf_station) +"HG" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "HI" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, /area/adminlevel/ert_station/clf_station) +"HN" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/gm/grass, +/area/adminlevel/ert_station/clf_station) "Ia" = ( /obj/structure/bed/chair{ dir = 4 @@ -1285,28 +1226,19 @@ "Ie" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/adminlevel/ert_station/clf_station) -"Ig" = ( +"Ip" = ( /obj/structure/largecrate/black_market/clf_supplies, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) -"Io" = ( -/obj/structure/platform/kutjevo, -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/turf/open/gm/grass, -/area/adminlevel/ert_station/clf_station) -"Iz" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/platform/metal/kutjevo/west, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "IH" = ( /turf/open/floor/wood/wood_broken4, /area/adminlevel/ert_station/clf_station) +"II" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/largecrate/random/barrel/white, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "IT" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/asteroidfloor/north, @@ -1316,17 +1248,18 @@ /obj/item/clothing/mask/gas/swat, /turf/open/floor/wood/wood_broken6, /area/adminlevel/ert_station/clf_station) -"Jg" = ( -/obj/structure/platform/kutjevo, -/turf/open/gm/grass, +"Jj" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"Jh" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/flora/jungle/vines/heavy, +"JR" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"JY" = ( +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/adminlevel/ert_station/clf_station) "Ke" = ( /obj/structure/flora/jungle/vines{ icon_state = "heavy_4" @@ -1360,17 +1293,17 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"Md" = ( +/obj/structure/platform/metal/kutjevo/north, +/obj/structure/platform/metal/kutjevo/west, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "Me" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/adminlevel/ert_station/clf_station) -"MD" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, +"MA" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "ME" = ( @@ -1430,12 +1363,6 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"Ne" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "Ng" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -1488,12 +1415,9 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/asteroidfloor/north, /area/adminlevel/ert_station/clf_station) -"Op" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/auto_turf/strata_grass/layer1, +"Or" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/adminlevel/ert_station/clf_station) "Ou" = ( /obj/structure/window/reinforced{ @@ -1553,38 +1477,30 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"OX" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "OY" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/adminlevel/ert_station/clf_station) -"OZ" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/largecrate/supply/weapons/flamers, +"Pf" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "Ph" = ( /turf/open/gm/coast/beachcorner/south_east, /area/adminlevel/ert_station/clf_station) -"Pj" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/grass, -/area/adminlevel/ert_station/clf_station) "Pr" = ( /mob/living/simple_animal/cat{ name = "Edwin" }, /turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) +"Pw" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "PC" = ( /obj/item/trash/candle, /obj/structure/surface/table/woodentable/fancy, @@ -1607,14 +1523,9 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"PW" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/turf/open/auto_turf/strata_grass/layer1, +"PX" = ( +/obj/structure/platform/metal/kutjevo, +/turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) "Qw" = ( /obj/structure/surface/table/woodentable/poor, @@ -1626,20 +1537,6 @@ "Qx" = ( /turf/open/gm/coast/east, /area/adminlevel/ert_station/clf_station) -"QA" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/largecrate/supply/explosives/mines, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) -"QB" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/largecrate/supply/explosives/grenades, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "QE" = ( /obj/structure/closet/crate, /obj/item/storage/toolbox/syndicate, @@ -1693,13 +1590,6 @@ /obj/structure/surface/table/reinforced, /turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) -"Sc" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/machinery/floodlight, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "Sd" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/machinery/light/small/built{ @@ -1713,13 +1603,6 @@ }, /turf/open/floor/wood/wood_broken4, /area/adminlevel/ert_station/clf_station) -"Sy" = ( -/obj/structure/platform/kutjevo, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "SD" = ( /obj/structure/largecrate/random/case/small, /turf/open/auto_turf/strata_grass/layer1, @@ -1731,13 +1614,6 @@ "Tr" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/adminlevel/ert_station/clf_station) -"Tt" = ( -/obj/structure/platform/kutjevo, -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "fullgrass_1" - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "Tu" = ( /turf/open/floor/plating/asteroidwarning/east, /area/adminlevel/ert_station/clf_station) @@ -1799,13 +1675,6 @@ }, /turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) -"VE" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "VO" = ( /obj/structure/flora/jungle/vines, /obj/structure/flora/jungle/vines{ @@ -1813,12 +1682,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"VR" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/gm/grass, -/area/adminlevel/ert_station/clf_station) "Wb" = ( /obj/structure/curtain/red, /turf/open/floor/wood, @@ -1833,6 +1696,10 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/adminlevel/ert_station/clf_station) +"We" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "Wo" = ( /obj/item/weapon/throwing_knife, /turf/open/auto_turf/strata_grass/layer1, @@ -1853,10 +1720,9 @@ /obj/item/explosive/grenade/incendiary/molotov, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"WM" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, +"WD" = ( +/obj/structure/platform/metal/kutjevo/west, +/obj/structure/flora/jungle/vines/heavy, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "WO" = ( @@ -1889,17 +1755,19 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer0_mud, /area/adminlevel/ert_station/clf_station) +"XO" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/adminlevel/ert_station/clf_station) "Yq" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) -"Yv" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/flora/jungle/vines, +"Yy" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/platform/metal/kutjevo/east, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) "YA" = ( @@ -1909,6 +1777,15 @@ "YB" = ( /turf/open/gm/grass/grass2, /area/adminlevel/ert_station/clf_station) +"YH" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/obj/structure/machinery/floodlight, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"YN" = ( +/obj/structure/platform/metal/kutjevo/north, +/turf/open/gm/grass, +/area/adminlevel/ert_station/clf_station) "Ze" = ( /obj/structure/bed/chair{ dir = 4 @@ -1942,10 +1819,21 @@ "ZI" = ( /turf/closed/wall/wood, /area/adminlevel/ert_station/clf_station) +"ZK" = ( +/obj/structure/platform/metal/kutjevo, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "ZO" = ( /obj/structure/prop/brazier/torch, /turf/closed/wall/mineral/sandstone/runed, /area/adminlevel/ert_station/clf_station) +"ZQ" = ( +/obj/structure/platform/metal/kutjevo/east, +/turf/open/gm/grass/grass2, +/area/adminlevel/ert_station/clf_station) "ZS" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -2153,7 +2041,7 @@ ax ax Rg Rg -iO +ib LO ax ax @@ -2341,25 +2229,25 @@ Rg Ie Ee Ee -me -Ah -AE -AE -lN -la -pp -la -la -pp -pp -la -la -la -la -la -yO -la -Pj +XO +Or +yh +yh +Gh +vJ +ZQ +vJ +vJ +ZQ +ZQ +vJ +vJ +vJ +vJ +vJ +hY +vJ +HN QV QV Nk @@ -2383,7 +2271,7 @@ Ie OY YB ql -Jg +PX yY Tu Tu @@ -2401,7 +2289,7 @@ Tu Tu Tu az -VR +YN YB QV Nk @@ -2425,7 +2313,7 @@ OY QV QV YB -Jg +PX Uu uX uX @@ -2443,7 +2331,7 @@ uX uX uX UB -VR +YN Aj Xv Nk @@ -2467,7 +2355,7 @@ QV QV QV QV -Jg +PX Uu uX uX @@ -2485,10 +2373,10 @@ uX Hs uX UB -Bt -la -la -jj +cT +vJ +vJ +Ax pk pk BB @@ -2509,7 +2397,7 @@ CQ QV QV QV -Jg +PX Uu uX uX @@ -2530,7 +2418,7 @@ UB oI oI oI -eh +AP gj ON pk @@ -2551,7 +2439,7 @@ QV CQ wI ye -Jg +PX Uu uX uX @@ -2572,7 +2460,7 @@ UB oI cB oI -eh +AP iB Ez TZ @@ -2593,7 +2481,7 @@ sN LN Nk GG -Io +iC Uu uX uX @@ -2614,7 +2502,7 @@ UB oI oI Oi -eh +AP zO zO zO @@ -2635,7 +2523,7 @@ ZI ZI Yq GG -GR +zk Uu uX uX @@ -2656,7 +2544,7 @@ UB IT Rr qb -eh +AP zO yH zO @@ -2677,7 +2565,7 @@ aN Wb FD iB -pE +ZK Uu uX uX @@ -2695,10 +2583,10 @@ uX uX uX UB -MD -lT -lT -Ne +Md +Jj +Jj +JR zO zO zO @@ -2719,7 +2607,7 @@ ZI ZI FD zO -Ch +vn Uu uX uX @@ -2737,19 +2625,19 @@ uX uX uX UB -eh +AP bI jZ -yy -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Jh -WM +DB +We +We +We +We +We +We +We +mx +GK KT KT "} @@ -2761,7 +2649,7 @@ ER Wb FD zO -Ch +vn Uu uX uX @@ -2779,10 +2667,10 @@ uX uX uX UB -eh +AP zO -yy -Sy +DB +Yy ZI eP eP @@ -2791,8 +2679,8 @@ ZI eP eP ZI -dU -WM +jV +GK KT "} (21,1,1) = {" @@ -2803,7 +2691,7 @@ ZI ZI FD zO -Ch +vn yY GV GV @@ -2821,9 +2709,9 @@ GV GV GV az -eh +AP zO -Ch +vn ZI ZI Ia @@ -2834,7 +2722,7 @@ Xp Xp ZI ZI -eh +AP KT "} (22,1,1) = {" @@ -2845,27 +2733,27 @@ zO zO FD zO -fo -nM -VE -vE -ey -OZ -Op -Op -QA -bb +oe +lz +mp +hj +eg +jb +Pf +Pf +wS +tc OK OK OK -aO -QB -xi -Ig -OX -yW +we +lo +II +Ip +zg +Bo jG -Ch +vn eP vx WU @@ -2876,7 +2764,7 @@ Xp Xp gi eP -eh +AP KT "} (23,1,1) = {" @@ -2907,7 +2795,7 @@ tt ki zO zO -Ch +vn eP jp Gl @@ -2918,7 +2806,7 @@ Xp Xp nC eP -xS +iR KT "} (24,1,1) = {" @@ -2949,7 +2837,7 @@ FD FD FD zO -Ch +vn eP Ns qa @@ -2960,7 +2848,7 @@ Xp Xp gN eP -xS +iR KT "} (25,1,1) = {" @@ -2991,7 +2879,7 @@ FD FD FD FD -Eb +fI ZI ce mw @@ -3002,7 +2890,7 @@ Wq Xp Xp eP -eh +AP KT "} (26,1,1) = {" @@ -3044,36 +2932,36 @@ ZI rz rz ZI -xS +iR KT "} (27,1,1) = {" ax zO -yy -Fn -nr +DB +We +HG Ba Ba -oO -Fn -WM -yy -Fn -nr +FT +We +GK +DB +We +HG Ba Ba -oO -Fn -WM -Iz -Fn -nr +FT +We +GK +lL +We +HG Ba Ba -oO -Fn -Sc +FT +We +YH FD ZS Wb @@ -3086,38 +2974,38 @@ Of Xp Xp eP -xS +iR KT "} (28,1,1) = {" DN zO -Ch +vn ZI ZI Wb Wb ZI ZI -eh -Ch +AP +vn ZI ZI Wb Wb ZI ZI -eh -Ch +AP +vn ZI ZI Wb Wb ZI ZI -eh +AP yH -jc +tf zZ ma mw @@ -3128,38 +3016,38 @@ Vm NY hd eP -xS +iR KT "} (29,1,1) = {" KT NV -Ch +vn ZI up mw mw YA ZI -eh -Ch +AP +vn ZI at mw DF Ou ZI -eh -Ch +AP +vn ZI zy pF mw tz ZI -uF +qM FD -Ch +vn eP Ns Bn @@ -3170,38 +3058,38 @@ mR Xp cc ZI -eh +AP KT "} (30,1,1) = {" KT DN -rZ +yp eP mw Vk lp pF eP -eh -Ch +AP +vn eP yE mw mw IW eP -eh -Ch +AP +vn ZI ZE kF DF TM eP -uF +qM FD -Ch +vn eP MQ mw @@ -3212,38 +3100,38 @@ BP Xp Bx ZI -eh +AP KT "} (31,1,1) = {" KT KT -rZ +yp eP mw Sj mw mw eP -eh -Ch +AP +vn zZ MP mw mw ow ZI -eh -Ch +AP +vn ZI rm mw mw aA eP -eh +AP FD -Ch +vn eP WU hE @@ -3254,38 +3142,38 @@ ms Xp fd ZI -eh +AP KT "} (32,1,1) = {" KT NV -rZ +yp zZ mw mw mw mw ZI -eh -Ch +AP +vn eP QE Xc DF WA eP -eh -Ch +AP +vn ZI zH cH mw fx eP -eh +AP FD -Ch +vn ZI ZI hE @@ -3296,39 +3184,39 @@ RR Xp ZI ZI -eh +AP KT "} (33,1,1) = {" KT jG -Ch +vn ZI eP Wb Rv eP ZI -eh -Ch +AP +vn ZI at mw mw Ou ZI -eh -Tt +AP +uR ZI PI MU mw ie ZI -eh +AP FD -eO -rO +EZ +hH ZI eP eP @@ -3337,79 +3225,79 @@ ZI ZI ZI ZI -MD -Ne +Md +JR KT "} (34,1,1) = {" KT zO -Ch +vn ZI oc mw mw AV ZI -eh -Gj +AP +pj eP Uj Pr mw Wz eP -eh -Ch +AP +vn ZI MT MU IH Xz ZI -eh +AP FD FD -vQ -lT -lT -lT -lT -lT -Yv -fA -ko -mk +MA +Jj +Jj +Jj +Jj +Jj +Cu +WD +wP +lD zO KT "} (35,1,1) = {" KT zO -Ch +vn ZI sK DF mw Bl ZI -eh -Ch +AP +vn zZ MP xO nJ MP ZI -eh -Ch +AP +vn ZI ZI ZI Wb ZI ZI -eh +AP EJ FD FD @@ -3428,30 +3316,30 @@ KT (36,1,1) = {" KT KT -Ch +vn ZI sK mw IH Ck ZI -eh -Ch +AP +vn eP yM mw mw av eP -eh -Ch +AP +vn ZI tG Sd NB aL ZI -eh +AP yH zO zO @@ -3470,39 +3358,39 @@ KT (37,1,1) = {" KT KT -Ch +vn ZI AO dg kk Qw ZI -eh -Ch +AP +vn ZI hL mw mw Ou ZI -eh -Gj +AP +pj ZI tG NB NB aL ZI -eh +AP zO -Iz -Fn -nr +lL +We +HG Ba Ba -oO -Fn -WM +FT +We +GK Ad un VO @@ -3512,39 +3400,39 @@ KT (38,1,1) = {" KT NV -Ch +vn ZI ZI QG lX ZI ZI -eh -Ch +AP +vn ZI ZI Zj gc ZI ZI -eh -Ch +AP +vn ZI fk cx xM ZI ZI -eh +AP zO -Ch +vn ZI ZI Wb Wb ZI ZI -eh +AP zO NV KT @@ -3554,39 +3442,39 @@ KT (39,1,1) = {" KT NV -dY -BQ +ti +qI ZI ZI ZI ZI -MD -Ne -vQ -BQ +Md +JR +MA +qI ZI eP eP ZI -MD -Ne -vQ -BQ +Md +JR +MA +qI ZI ZI ZI ZI -MD -Ne +Md +JR zO -Ch +vn ZI DW pF mw sx ZI -eh +AP zO KT KT @@ -3597,38 +3485,38 @@ KT KT jG zO -dY -lT -lT -lT -lT -AK +ti +Jj +Jj +Jj +Jj +sy ta ta -PW -lT -lT -lT -lT -Ne -zO -zO -vQ -BS -bX -BU -lT -Ne +Pw +Jj +Jj +Jj +Jj +JR +zO +zO +MA +hK +wa +JY +Jj +JR yH zO -Ch +vn ZI LH mw DF Ro ZI -eh +AP KT KT KT @@ -3663,14 +3551,14 @@ ta bL zO zO -Ch +vn ZI eH ME eH eH ZI -eh +AP KT KT KT @@ -3705,14 +3593,14 @@ pk pk bL uZ -ks +vy eH uO cH mw vm eH -eh +AP KT KT KT @@ -3747,7 +3635,7 @@ pk pk pk Wc -aR +yS eH Re mw diff --git a/maps/templates/lazy_templates/pizza_ert_station.dmm b/maps/templates/lazy_templates/pizza_ert_station.dmm index a3cc4e7a02ec..98e5dec44fec 100644 --- a/maps/templates/lazy_templates/pizza_ert_station.dmm +++ b/maps/templates/lazy_templates/pizza_ert_station.dmm @@ -414,7 +414,7 @@ /turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "eI" = ( -/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/metal/kutjevo_smooth, /turf/open/space/basic, /area/space) "eK" = ( @@ -443,10 +443,8 @@ /turf/open/mars_dirt/mars_cave_11, /area/space) "fb" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, /turf/open/space, /area/space) "fg" = ( @@ -467,17 +465,13 @@ /turf/open/floor/prison/yellowcorner/east, /area/adminlevel/ert_station/pizza_station) "fH" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, +/obj/structure/platform/metal/kutjevo_smooth/north, /obj/structure/barricade/handrail{ dir = 1; icon_state = "hr_kutjevo"; name = "solar lattice" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform/metal/kutjevo_smooth/west, /turf/open/space, /area/space) "fN" = ( @@ -493,9 +487,7 @@ /turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "fO" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/kutjevo/east, /turf/open/space/basic, /area/space) "gb" = ( @@ -563,9 +555,7 @@ /turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "ha" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/kutjevo/north, /turf/open/space, /area/space) "hb" = ( @@ -687,15 +677,9 @@ /turf/open/floor/prison/yellow/north, /area/adminlevel/ert_station/pizza_station) "ja" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, /obj/structure/barricade/handrail{ dir = 1; icon_state = "hr_kutjevo"; @@ -872,12 +856,8 @@ /turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "lx" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, /obj/structure/barricade/handrail{ dir = 1; icon_state = "hr_kutjevo"; @@ -1158,9 +1138,7 @@ /turf/open/floor/prison/red/east, /area/adminlevel/ert_station/pizza_station) "oX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, +/obj/structure/platform/metal/kutjevo_smooth/north, /obj/structure/barricade/handrail{ dir = 1; icon_state = "hr_kutjevo"; @@ -1248,9 +1226,7 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station/pizza_station) "qq" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, +/obj/structure/platform/metal/kutjevo_smooth/east, /turf/open/space/basic, /area/space) "qs" = ( @@ -1301,9 +1277,7 @@ /turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "qX" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/kutjevo/west, /turf/open/space/basic, /area/space) "rj" = ( @@ -1327,9 +1301,7 @@ /turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "rk" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/kutjevo/west, /obj/structure/lattice, /turf/open/space/basic, /area/space) @@ -1539,17 +1511,13 @@ /turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/pizza_station) "tT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, +/obj/structure/platform/metal/kutjevo_smooth/north, /obj/structure/barricade/handrail{ dir = 1; icon_state = "hr_kutjevo"; name = "solar lattice" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, +/obj/structure/platform/metal/kutjevo_smooth/east, /turf/open/space, /area/space) "tX" = ( @@ -1574,9 +1542,7 @@ /turf/open/floor/prison/red/west, /area/adminlevel/ert_station/pizza_station) "uj" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, +/obj/structure/platform/metal/kutjevo_smooth/east, /turf/open/space, /area/space) "uo" = ( @@ -1604,10 +1570,8 @@ /turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "uK" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, /obj/structure/barricade/handrail/kutjevo{ layer = 3.01 }, @@ -1701,7 +1665,7 @@ /turf/open/floor/prison, /area/adminlevel/ert_station/pizza_station) "vR" = ( -/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/metal/kutjevo_smooth, /obj/structure/barricade/handrail/kutjevo{ layer = 3.01 }, @@ -1731,7 +1695,7 @@ /turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "wb" = ( -/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/metal/kutjevo_smooth, /turf/open/space, /area/space) "wi" = ( @@ -1785,7 +1749,7 @@ /turf/open/floor/prison/red/north, /area/adminlevel/ert_station/pizza_station) "wD" = ( -/obj/structure/platform_decoration/kutjevo, +/obj/structure/platform_decoration/metal/kutjevo, /obj/structure/lattice, /turf/open/space/basic, /area/space) @@ -1838,10 +1802,8 @@ /turf/open/floor/prison/red/north, /area/adminlevel/ert_station/pizza_station) "xe" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, /turf/open/space/basic, /area/space) "xh" = ( @@ -1879,7 +1841,7 @@ /turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "xp" = ( -/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/metal/kutjevo_smooth, /obj/structure/disposalpipe/trunk, /obj/structure/barricade/handrail/kutjevo{ layer = 3.01 @@ -1918,7 +1880,7 @@ /turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "yg" = ( -/obj/structure/platform_decoration/kutjevo, +/obj/structure/platform_decoration/metal/kutjevo, /turf/open/space/basic, /area/space) "yo" = ( @@ -2402,7 +2364,7 @@ /turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "DH" = ( -/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/metal/kutjevo_smooth, /obj/structure/barricade/handrail/kutjevo{ layer = 3.01 }, @@ -2413,9 +2375,7 @@ /turf/open/floor/prison/red/north, /area/adminlevel/ert_station/pizza_station) "Ee" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform/metal/kutjevo_smooth/west, /obj/structure/barricade/handrail/kutjevo{ dir = 8; layer = 3.01 @@ -2634,17 +2594,13 @@ /turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "Gn" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, +/obj/structure/platform/metal/kutjevo_smooth/north, /obj/structure/barricade/handrail{ dir = 1; icon_state = "hr_kutjevo"; name = "solar lattice" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, +/obj/structure/platform/metal/kutjevo_smooth/east, /turf/open/space/basic, /area/space) "Gp" = ( @@ -2690,9 +2646,7 @@ /turf/open/floor/prison/yellow/east, /area/adminlevel/ert_station/pizza_station) "Hg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform/metal/kutjevo_smooth/west, /turf/open/space, /area/space) "HL" = ( @@ -2977,10 +2931,8 @@ /turf/open/floor/prison/yellow/northwest, /area/adminlevel/ert_station/pizza_station) "Mz" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, /turf/open/space, /area/space) "MB" = ( @@ -3130,9 +3082,7 @@ /turf/open/floor/cmo, /area/adminlevel/ert_station/pizza_station) "NT" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, +/obj/structure/platform_decoration/metal/kutjevo/west, /turf/open/space, /area/space) "NV" = ( @@ -3180,9 +3130,7 @@ /turf/open/floor/prison/red, /area/adminlevel/ert_station/pizza_station) "OG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, +/obj/structure/platform/metal/kutjevo_smooth/north, /obj/structure/barricade/handrail{ dir = 1; icon_state = "hr_kutjevo"; @@ -3267,7 +3215,7 @@ /turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Pq" = ( -/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/metal/kutjevo_smooth, /obj/structure/lattice, /turf/open/space/basic, /area/space) @@ -3283,12 +3231,8 @@ /turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Py" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, /obj/structure/barricade/handrail{ dir = 1; icon_state = "hr_kutjevo"; @@ -3297,9 +3241,7 @@ /turf/open/space, /area/space) "PF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, +/obj/structure/platform/metal/kutjevo_smooth/west, /turf/open/space/basic, /area/space) "PH" = ( @@ -3363,16 +3305,12 @@ /turf/open/floor/plating, /area/adminlevel/ert_station/pizza_station) "RC" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/kutjevo/north, /turf/open/space/basic, /area/space) "RG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, /turf/open/space/basic, /area/space) "RN" = ( @@ -3418,9 +3356,7 @@ /turf/open/floor/redyellowfull, /area/adminlevel/ert_station/pizza_station) "Sg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, +/obj/structure/platform/metal/kutjevo_smooth/north, /obj/structure/barricade/handrail{ dir = 1; icon_state = "hr_kutjevo"; @@ -3828,9 +3764,7 @@ /turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Xn" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, +/obj/structure/platform_decoration/metal/kutjevo/east, /turf/open/space, /area/space) "Xq" = ( @@ -3860,10 +3794,8 @@ /turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/pizza_station) "Xw" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, /turf/open/space/basic, /area/space) "Xx" = ( @@ -3974,10 +3906,8 @@ /turf/open/space, /area/space) "Yu" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, /obj/structure/lattice, /turf/open/space/basic, /area/space) @@ -4004,9 +3934,7 @@ /turf/open/floor/prison/greenblue/southeast, /area/adminlevel/ert_station/pizza_station) "YF" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, +/obj/structure/platform_decoration/metal/kutjevo/north, /obj/structure/lattice, /turf/open/space/basic, /area/space) diff --git a/maps/templates/lazy_templates/twe_ert_station.dmm b/maps/templates/lazy_templates/twe_ert_station.dmm index 916600a34da4..f48712f7bd59 100644 --- a/maps/templates/lazy_templates/twe_ert_station.dmm +++ b/maps/templates/lazy_templates/twe_ert_station.dmm @@ -22,21 +22,6 @@ /obj/structure/machinery/cm_vending/clothing/antag, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) -"aH" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) "aK" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -64,11 +49,29 @@ icon_state = "3,15" }, /area/adminlevel/ert_station/royal_marines_station) +"bA" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/closed/shuttle/twe_dropship{ + icon_state = "2,0" + }, +/area/adminlevel/ert_station/royal_marines_station) "bG" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "6,12" }, /area/adminlevel/ert_station/royal_marines_station) +"bL" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/structure/blocker/invisible_wall, +/turf/open/void, +/area/adminlevel/ert_station/royal_marines_station) "bO" = ( /turf/closed/wall/r_wall/elevator{ dir = 9 @@ -78,6 +81,15 @@ /obj/structure/machinery/optable, /turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) +"cf" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/royal_marines_station) "co" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/red/east, @@ -88,20 +100,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station/royal_marines_station) +"cH" = ( +/obj/structure/platform/metal/almayer/east, +/turf/closed/shuttle/twe_dropship{ + icon_state = "2,1" + }, +/area/adminlevel/ert_station/royal_marines_station) "cJ" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer/red/northwest, /area/adminlevel/ert_station/royal_marines_station) -"cL" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/shuttle/twe_dropship{ - icon_state = "2,1" - }, -/area/adminlevel/ert_station/royal_marines_station) "dc" = ( /turf/open/floor/plating, /area/adminlevel/ert_station/royal_marines_station) @@ -136,25 +146,17 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) -"du" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) "dK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/orange, /area/adminlevel/ert_station/royal_marines_station) +"dL" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/blocker/invisible_wall, +/turf/closed/shuttle/twe_dropship{ + icon_state = "8,0" + }, +/area/adminlevel/ert_station/royal_marines_station) "eh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/red/southeast, @@ -165,6 +167,13 @@ }, /turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) +"er" = ( +/obj/structure/machinery/cryopod/no_store{ + layer = 3.1; + pixel_y = 7 + }, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/royal_marines_station) "eu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, @@ -195,15 +204,6 @@ }, /turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) -"fx" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) "fD" = ( /turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) @@ -214,19 +214,14 @@ }, /turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) -"fM" = ( +"gc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 + icon_state = "N"; + pixel_y = 1 }, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "gg" = ( @@ -239,11 +234,6 @@ }, /turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) -"go" = ( -/obj/structure/platform, -/obj/structure/blocker/invisible_wall, -/turf/closed/shuttle/twe_dropship, -/area/adminlevel/ert_station/royal_marines_station) "gq" = ( /turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station/royal_marines_station) @@ -253,6 +243,10 @@ "gJ" = ( /turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station/royal_marines_station) +"gN" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/royal_marines_station) "gS" = ( /turf/closed/wall/almayer/outer, /area/adminlevel/ert_station/royal_marines_station) @@ -327,22 +321,6 @@ /obj/item/storage/surgical_tray, /turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) -"iR" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/kutjevo, -/area/adminlevel/ert_station/royal_marines_station) -"iS" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/void, -/area/adminlevel/ert_station/royal_marines_station) "ja" = ( /obj/structure/machinery/light{ dir = 4 @@ -369,18 +347,6 @@ "ju" = ( /turf/open/shuttle/dropship/light_grey_top_left, /area/adminlevel/ert_station/royal_marines_station) -"jB" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/closed/shuttle/twe_dropship{ - icon_state = "2,0" - }, -/area/adminlevel/ert_station/royal_marines_station) "jD" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer/redfull, @@ -393,6 +359,24 @@ "jL" = ( /turf/open/space/basic, /area/space) +"jN" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/closed/shuttle/twe_dropship{ + icon_state = "6,0" + }, +/area/adminlevel/ert_station/royal_marines_station) +"jP" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/royal_marines_station) "jU" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, @@ -427,19 +411,17 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/adminlevel/ert_station/royal_marines_station) -"kx" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/adminlevel/ert_station/royal_marines_station) -"ky" = ( -/obj/structure/platform{ - dir = 1 - }, +"kt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E" }, +/obj/structure/platform/metal/almayer/west, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) +"kx" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/royal_marines_station) "kH" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer/plate, @@ -470,6 +452,16 @@ "kX" = ( /turf/open/floor/almayer/red, /area/adminlevel/ert_station/royal_marines_station) +"li" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/obj/structure/blocker/invisible_wall, +/turf/open/void, +/area/adminlevel/ert_station/royal_marines_station) "ll" = ( /turf/open/floor/almayer/cargo_arrow/east, /area/adminlevel/ert_station/royal_marines_station) @@ -488,6 +480,13 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) +"lx" = ( +/obj/structure/machinery/cryopod/no_store{ + dir = 1; + pixel_y = 7 + }, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/royal_marines_station) "lF" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -514,19 +513,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/adminlevel/ert_station/royal_marines_station) -"lW" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating/kutjevo, -/area/adminlevel/ert_station/royal_marines_station) -"lX" = ( -/obj/structure/machinery/cryopod/no_store{ - layer = 3.1; - pixel_y = 7 - }, -/turf/open/floor/almayer/cargo, -/area/adminlevel/ert_station/royal_marines_station) "mb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/almayer/computers/sensor_computer1{ @@ -535,14 +521,16 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) -"mc" = ( -/obj/structure/platform, -/obj/structure/blocker/invisible_wall, -/turf/open/void, -/area/adminlevel/ert_station/royal_marines_station) "mo" = ( /turf/open/floor/almayer/cargo_arrow/west, /area/adminlevel/ert_station/royal_marines_station) +"mu" = ( +/obj/structure/machinery/cryopod/no_store/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/royal_marines_station) "mw" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "7,4" @@ -562,6 +550,22 @@ }, /turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) +"mR" = ( +/obj/structure/platform/metal/almayer, +/turf/closed/shuttle/twe_dropship{ + icon_state = "1,0" + }, +/area/adminlevel/ert_station/royal_marines_station) +"na" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/obj/structure/blocker/invisible_wall, +/turf/open/void, +/area/adminlevel/ert_station/royal_marines_station) "nj" = ( /turf/closed/wall/r_wall/elevator{ dir = 4 @@ -587,15 +591,15 @@ }, /turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) -"nI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cryopod/no_store{ - layer = 3.1; - pixel_y = 7 +"nC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "nT" = ( /obj/structure/bed/chair/comfy{ @@ -631,18 +635,6 @@ }, /turf/open/floor/almayer, /area/adminlevel/ert_station/royal_marines_station) -"op" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating/kutjevo, -/area/adminlevel/ert_station/royal_marines_station) -"oA" = ( -/obj/structure/platform, -/turf/closed/shuttle/twe_dropship{ - icon_state = "1,0" - }, -/area/adminlevel/ert_station/royal_marines_station) "oC" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -661,10 +653,6 @@ }, /turf/open/floor/almayer/orange/northwest, /area/adminlevel/ert_station/royal_marines_station) -"pk" = ( -/obj/structure/machinery/cryopod/no_store/right, -/turf/open/floor/almayer/cargo, -/area/adminlevel/ert_station/royal_marines_station) "ps" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/cargo_arrow/west, @@ -691,47 +679,28 @@ }, /turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) -"qi" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) "qj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, /turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) +"qw" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/royal_marines_station) "qx" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) -"qG" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +"qI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cryopod/no_store{ + dir = 1; + pixel_y = 7 }, -/turf/open/floor/almayer/plating/northeast, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "qN" = ( /obj/effect/decal/warning_stripes{ @@ -772,20 +741,28 @@ dir = 5 }, /area/adminlevel/ert_station/royal_marines_station) -"rP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cryopod/no_store{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor/almayer/cargo, -/area/adminlevel/ert_station/royal_marines_station) "rS" = ( /turf/open/shuttle/dropship/light_grey_bottom_left, /area/adminlevel/ert_station/royal_marines_station) "sb" = ( /turf/open/floor/almayer/orange/north, /area/adminlevel/ert_station/royal_marines_station) +"sf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/royal_marines_station) +"sh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/royal_marines_station) "su" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/clothing/antag, @@ -822,14 +799,6 @@ /obj/item/roller, /turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) -"sR" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/closed/shuttle/twe_dropship{ - icon_state = "6,1" - }, -/area/adminlevel/ert_station/royal_marines_station) "te" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -842,19 +811,17 @@ icon_state = "3,14" }, /area/adminlevel/ert_station/royal_marines_station) -"tv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cryopod/no_store{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor/almayer/cargo, -/area/adminlevel/ert_station/royal_marines_station) "tw" = ( /turf/open/floor/almayer/red/southeast, /area/adminlevel/ert_station/royal_marines_station) +"tU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/royal_marines_station) "uc" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "0,4" @@ -864,19 +831,16 @@ /obj/structure/largecrate/random/barrel, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) -"uC" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/void, -/area/adminlevel/ert_station/royal_marines_station) "uE" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) +"uG" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/kutjevo, +/area/adminlevel/ert_station/royal_marines_station) "uK" = ( /obj/structure/machinery/light{ dir = 1 @@ -920,6 +884,17 @@ }, /turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) +"vF" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/royal_marines_station) +"vG" = ( +/obj/structure/machinery/cryopod/no_store, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/royal_marines_station) "vR" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/marine_law{ @@ -940,13 +915,6 @@ }, /turf/open/floor/almayer, /area/adminlevel/ert_station/royal_marines_station) -"wF" = ( -/obj/structure/machinery/cryopod/no_store/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/adminlevel/ert_station/royal_marines_station) "xb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/almayer/computers/sensor_computer2{ @@ -1026,6 +994,16 @@ icon_state = "7,12" }, /area/adminlevel/ert_station/royal_marines_station) +"zz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cryopod/no_store{ + layer = 3.1; + pixel_y = 7 + }, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/royal_marines_station) "zL" = ( /obj/structure/closet/secure_closet/brig{ name = "Spare Prison Uniforms"; @@ -1081,19 +1059,15 @@ }, /turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) -"Ai" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) "Am" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/orange/north, /area/adminlevel/ert_station/royal_marines_station) +"Ap" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/blocker/invisible_wall, +/turf/open/void, +/area/adminlevel/ert_station/royal_marines_station) "Aq" = ( /obj/structure/machinery/light{ dir = 8 @@ -1107,6 +1081,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) +"AI" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/royal_marines_station) "AQ" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "8,6" @@ -1117,6 +1101,12 @@ icon_state = "8,4" }, /area/adminlevel/ert_station/royal_marines_station) +"AZ" = ( +/obj/structure/platform/metal/almayer/north, +/turf/closed/shuttle/twe_dropship{ + icon_state = "0,8" + }, +/area/adminlevel/ert_station/royal_marines_station) "Ba" = ( /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) @@ -1137,6 +1127,12 @@ "BV" = ( /turf/open/shuttle/dropship/light_grey_bottom_right, /area/adminlevel/ert_station/royal_marines_station) +"Ch" = ( +/obj/structure/platform/metal/almayer/north, +/turf/closed/shuttle/twe_dropship{ + icon_state = "8,8" + }, +/area/adminlevel/ert_station/royal_marines_station) "Ci" = ( /turf/open/shuttle/dropship/light_grey_left_to_right, /area/adminlevel/ert_station/royal_marines_station) @@ -1159,6 +1155,16 @@ "Cu" = ( /turf/open/void, /area/adminlevel/ert_station/royal_marines_station) +"CQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/cryopod/no_store{ + dir = 1; + pixel_y = 7 + }, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/royal_marines_station) "CT" = ( /turf/closed/wall/r_wall/elevator/gears, /area/adminlevel/ert_station/royal_marines_station) @@ -1225,12 +1231,23 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/adminlevel/ert_station/royal_marines_station) +"DW" = ( +/obj/structure/platform/metal/almayer/west, +/turf/closed/shuttle/twe_dropship{ + icon_state = "6,1" + }, +/area/adminlevel/ert_station/royal_marines_station) "Ei" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, /turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) +"Er" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/blocker/invisible_wall, +/turf/open/void, +/area/adminlevel/ert_station/royal_marines_station) "EG" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "8,8" @@ -1259,19 +1276,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) -"Fp" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/void, -/area/adminlevel/ert_station/royal_marines_station) "Fw" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -1297,51 +1301,18 @@ /obj/structure/machinery/cm_vending/gear/antag_guns, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) -"Gd" = ( -/obj/structure/machinery/cryopod/no_store, -/turf/open/floor/almayer/cargo, -/area/adminlevel/ert_station/royal_marines_station) "GM" = ( /turf/open/floor/almayer/red/southwest, /area/adminlevel/ert_station/royal_marines_station) -"GO" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/void, -/area/adminlevel/ert_station/royal_marines_station) -"GQ" = ( -/obj/structure/platform, -/obj/structure/blocker/invisible_wall, -/turf/closed/shuttle/twe_dropship{ - icon_state = "8,0" - }, -/area/adminlevel/ert_station/royal_marines_station) -"GX" = ( -/obj/structure/platform, -/turf/closed/shuttle/twe_dropship{ - icon_state = "7,0" - }, +"GU" = ( +/obj/structure/machinery/cryopod/no_store/right, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "GZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, /turf/open/floor/almayer/orange, /area/adminlevel/ert_station/royal_marines_station) -"He" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/void, -/area/adminlevel/ert_station/royal_marines_station) "Hg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -1381,14 +1352,7 @@ "HM" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "0,6" - }, -/area/adminlevel/ert_station/royal_marines_station) -"HX" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/void, + }, /area/adminlevel/ert_station/royal_marines_station) "Id" = ( /obj/structure/surface/table/almayer, @@ -1397,6 +1361,10 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) +"Ie" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/kutjevo, +/area/adminlevel/ert_station/royal_marines_station) "Ip" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -1414,19 +1382,10 @@ }, /turf/open/floor/almayer, /area/adminlevel/ert_station/royal_marines_station) -"Iw" = ( -/obj/structure/platform, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, +"IB" = ( +/obj/structure/platform/metal/almayer, /obj/structure/blocker/invisible_wall, -/turf/open/void, +/turf/closed/shuttle/twe_dropship, /area/adminlevel/ert_station/royal_marines_station) "IC" = ( /obj/structure/bed/chair/vehicle{ @@ -1437,6 +1396,13 @@ }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) +"IG" = ( +/obj/structure/machinery/cryopod/no_store{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/royal_marines_station) "IH" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8; @@ -1449,13 +1415,8 @@ }, /turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) -"IK" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, +"IM" = ( +/obj/structure/platform/metal/almayer/north, /turf/open/floor/plating/kutjevo, /area/adminlevel/ert_station/royal_marines_station) "IQ" = ( @@ -1464,16 +1425,6 @@ }, /turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station/royal_marines_station) -"IY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) "Jg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/gear/antag_guns, @@ -1501,6 +1452,11 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) +"JF" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/kutjevo, +/area/adminlevel/ert_station/royal_marines_station) "JM" = ( /obj/structure/toilet{ dir = 8 @@ -1517,16 +1473,6 @@ /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) -"Ko" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/vehicles/tank/twe{ - layer = 5.1; - pixel_y = -6 - }, -/turf/open/floor/plating/kutjevo, -/area/adminlevel/ert_station/royal_marines_station) "Ks" = ( /turf/open/shuttle/elevator/grating, /area/adminlevel/ert_station/royal_marines_station) @@ -1534,16 +1480,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/red/southwest, /area/adminlevel/ert_station/royal_marines_station) -"KD" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/void, -/area/adminlevel/ert_station/royal_marines_station) "KF" = ( /turf/open/shuttle/elevator, /area/adminlevel/ert_station/royal_marines_station) +"KG" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/royal_marines_station) "KJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -1551,6 +1497,11 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) +"KX" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/blocker/invisible_wall, +/turf/open/void, +/area/adminlevel/ert_station/royal_marines_station) "Lj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/redfull, @@ -1599,6 +1550,14 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) +"MH" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/prop/vehicles/tank/twe{ + layer = 5.1; + pixel_y = -6 + }, +/turf/open/floor/plating/kutjevo, +/area/adminlevel/ert_station/royal_marines_station) "MJ" = ( /turf/open/floor/almayer, /area/adminlevel/ert_station/royal_marines_station) @@ -1649,14 +1608,6 @@ /obj/structure/machinery/light, /turf/open/floor/almayer/red, /area/adminlevel/ert_station/royal_marines_station) -"Ni" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/shuttle/twe_dropship{ - icon_state = "8,8" - }, -/area/adminlevel/ert_station/royal_marines_station) "Nl" = ( /obj/structure/machinery/cm_vending/gear/antag, /turf/open/floor/almayer/plate, @@ -1691,31 +1642,11 @@ /obj/structure/machinery/medical_pod/sleeper, /turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) -"Ok" = ( -/obj/structure/machinery/cryopod/no_store{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor/almayer/cargo, -/area/adminlevel/ert_station/royal_marines_station) -"Or" = ( -/obj/structure/machinery/cryopod/no_store{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/adminlevel/ert_station/royal_marines_station) "Os" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "1,2" }, /area/adminlevel/ert_station/royal_marines_station) -"OA" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor4, -/area/adminlevel/ert_station/royal_marines_station) "OB" = ( /obj/structure/surface/table/almayer, /obj/item/storage/syringe_case{ @@ -1733,32 +1664,22 @@ /obj/structure/largecrate, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) -"OK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) "OO" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "5,14" }, /area/adminlevel/ert_station/royal_marines_station) +"OQ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/blocker/invisible_wall, +/turf/open/void, +/area/adminlevel/ert_station/royal_marines_station) "Pb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, /turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) -"Pd" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/kutjevo, -/area/adminlevel/ert_station/royal_marines_station) "Pg" = ( /turf/open/shuttle/dropship, /area/adminlevel/ert_station/royal_marines_station) @@ -1781,6 +1702,11 @@ }, /turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) +"Pp" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/kutjevo, +/area/adminlevel/ert_station/royal_marines_station) "Px" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "4,14" @@ -1789,15 +1715,6 @@ "PB" = ( /turf/open/floor/almayer/cargo_arrow, /area/adminlevel/ert_station/royal_marines_station) -"PC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) "PD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door_control/brbutton{ @@ -1806,27 +1723,21 @@ }, /turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) +"PH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/royal_marines_station) "PL" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/adminlevel/ert_station/royal_marines_station) -"PM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) "PN" = ( /obj/structure/machinery/light{ dir = 8 @@ -1866,6 +1777,22 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/royal_marines_station) +"Qq" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/obj/structure/blocker/invisible_wall, +/turf/open/void, +/area/adminlevel/ert_station/royal_marines_station) +"Qt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/royal_marines_station) "QP" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "1,12" @@ -1885,14 +1812,6 @@ /obj/structure/machinery/cm_vending/clothing/antag, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) -"Rw" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/closed/shuttle/twe_dropship{ - icon_state = "0,8" - }, -/area/adminlevel/ert_station/royal_marines_station) "Ry" = ( /turf/open/floor/almayer/red/north, /area/adminlevel/ert_station/royal_marines_station) @@ -1904,6 +1823,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) +"RQ" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/royal_marines_station) "Sb" = ( /obj/docking_port/stationary/emergency_response/idle_port6, /turf/open/floor/plating, @@ -1933,6 +1862,11 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) +"Sp" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/blocker/invisible_wall, +/turf/open/void, +/area/adminlevel/ert_station/royal_marines_station) "Sv" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer/plate, @@ -1942,6 +1876,13 @@ icon_state = "7,2" }, /area/adminlevel/ert_station/royal_marines_station) +"Sz" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/obj/structure/blocker/invisible_wall, +/turf/open/void, +/area/adminlevel/ert_station/royal_marines_station) "ST" = ( /turf/closed/shuttle/twe_dropship{ icon_state = "0,3" @@ -1979,36 +1920,10 @@ /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) -"Ub" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/closed/shuttle/twe_dropship{ - icon_state = "6,0" - }, -/area/adminlevel/ert_station/royal_marines_station) "Uc" = ( /obj/structure/largecrate/machine, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) -"Uk" = ( -/obj/structure/platform, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/void, -/area/adminlevel/ert_station/royal_marines_station) "Ul" = ( /obj/structure/machinery/light{ dir = 8 @@ -2090,33 +2005,12 @@ icon_state = "5,15" }, /area/adminlevel/ert_station/royal_marines_station) -"Vv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) "VA" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/faxmachine/uscm/brig, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) -"VF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) "VG" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, /turf/open/floor/almayer/dark_sterile, @@ -2147,6 +2041,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) +"VU" = ( +/obj/structure/platform/metal/almayer, +/turf/closed/shuttle/twe_dropship{ + icon_state = "7,0" + }, +/area/adminlevel/ert_station/royal_marines_station) "Wa" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp/green{ @@ -2174,36 +2074,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) -"Wo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) -"Wt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) "Wx" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -2211,22 +2081,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/adminlevel/ert_station/royal_marines_station) -"WB" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/void, -/area/adminlevel/ert_station/royal_marines_station) "WC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/cargo_arrow/east, @@ -2276,22 +2130,6 @@ }, /turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) -"WY" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/void, -/area/adminlevel/ert_station/royal_marines_station) "WZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/toilet{ @@ -2306,6 +2144,15 @@ "Xh" = ( /turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) +"Xs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/royal_marines_station) "Xz" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/orange/southwest, @@ -2327,6 +2174,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) +"XJ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/blocker/invisible_wall, +/turf/open/void, +/area/adminlevel/ert_station/royal_marines_station) "XN" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -2354,6 +2206,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/cargo_arrow, /area/adminlevel/ert_station/royal_marines_station) +"Yh" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/obj/structure/blocker/invisible_wall, +/turf/open/void, +/area/adminlevel/ert_station/royal_marines_station) "Yk" = ( /obj/structure/machinery/autodoc_console, /turf/open/floor/almayer/sterile_green, @@ -2363,28 +2225,9 @@ /obj/structure/machinery/body_scanconsole, /turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) -"YZ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/adminlevel/ert_station/royal_marines_station) "Zf" = ( /turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) -"Zk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/royal_marines_station) "Zl" = ( /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) @@ -2418,6 +2261,13 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) +"ZX" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/royal_marines_station) (1,1,1) = {" jL @@ -2892,11 +2742,11 @@ jL (11,1,1) = {" jL gS -Ok +lx Ur Ip vB -rP +qI WS TY yK @@ -2986,18 +2836,18 @@ jL (13,1,1) = {" jL gS -lX +er Ur MM Ur -lX +er aK -nI +zz zM zk zk ls -nI +zz WS Hz qN @@ -3080,18 +2930,18 @@ jL (15,1,1) = {" jL gS -pk -wF -Ok -pk -wF +GU +mu +lx +GU +mu aK -pk -wF -pk -wF -pk -wF +GU +mu +GU +mu +GU +mu WS ds zk @@ -3192,22 +3042,22 @@ Ur PN Ur Ur -WY -HX -HX -HX -Iw +li +XJ +XJ +XJ +bL Ur Ur -WY -HX -HX -HX -HX -HX -HX -HX -Iw +li +XJ +XJ +XJ +XJ +XJ +XJ +XJ +bL Ur Ur Sm @@ -3239,14 +3089,14 @@ Ur Ur Ur Ur -uC +OQ Cu Cu Cu -mc +Er Ur Ur -uC +OQ dd xm uc @@ -3254,7 +3104,7 @@ ST Cu Cu Cu -mc +Er Ur vB XF @@ -3268,32 +3118,32 @@ jL (19,1,1) = {" gS yK -aH -Ai -OK -OK -VF -Ur -Wt -OK -VF -Ur -Wt -OK -OK -Ai -qG +cf +KG +kt +kt +PH +Ur +Qt +kt +PH +Ur +Qt +kt +kt +KG +jP yK Ur Ur -uC +OQ Cu Cu Cu -mc +Er Ur Ur -Rw +AZ xm HM MQ @@ -3301,7 +3151,7 @@ uc ST Cu Cu -go +IB Ur vB XF @@ -3315,7 +3165,7 @@ gS (20,1,1) = {" gS yK -ky +vF dc dc dc @@ -3329,11 +3179,11 @@ dc dc dc Sb -Vv +tU yK Ur Ur -uC +OQ Cu Cu QP @@ -3348,7 +3198,7 @@ jW gU Os aW -oA +mR Ur vB XF @@ -3362,7 +3212,7 @@ gS (21,1,1) = {" gS xy -ky +vF dc dc dc @@ -3376,11 +3226,11 @@ dc dc dc dc -Wo +nC yK Ur -GO -iS +Sz +Ap Cu pO bG @@ -3394,8 +3244,8 @@ Ba Ba MN wl -cL -jB +cH +bA Ur vB hI @@ -3409,7 +3259,7 @@ gS (22,1,1) = {" gS XF -ky +vF dc dc dc @@ -3426,7 +3276,7 @@ dc yK yK Ur -uC +OQ bs tr hp @@ -3437,10 +3287,10 @@ xW IC xW Ci -iR -lW -Ko -YZ +Pp +uG +MH +gN Ur Ur Ur @@ -3456,7 +3306,7 @@ gS (23,1,1) = {" gS XF -ky +vF dc dc dc @@ -3473,7 +3323,7 @@ dc yK yK Ur -uC +OQ DS Px iE @@ -3484,7 +3334,7 @@ Va Va jr Ci -op +IM sy sy Nm @@ -3503,7 +3353,7 @@ gS (24,1,1) = {" gS XF -ky +vF dc dc dc @@ -3520,7 +3370,7 @@ dc yK yK Ur -uC +OQ Vu OO bp @@ -3531,10 +3381,10 @@ xW IC xW Ci -IK -Pd -Pd -OA +JF +Ie +Ie +qw Ur Ur Ur @@ -3550,7 +3400,7 @@ gS (25,1,1) = {" gS ai -ky +vF dc dc dc @@ -3564,11 +3414,11 @@ dc dc dc dc -PM +gc yK Ur -Fp -KD +Qq +KX Cu WL bG @@ -3582,8 +3432,8 @@ Ba Ba MN Cj -sR -Ub +DW +jN Ur Ur kx @@ -3597,7 +3447,7 @@ gS (26,1,1) = {" gS yK -ky +vF dc dc dc @@ -3611,11 +3461,11 @@ dc dc dc dc -Vv +tU yK Ur Ur -uC +OQ Cu Cu zw @@ -3630,7 +3480,7 @@ iI NE Sw iK -GX +VU Ur Ur yK @@ -3644,32 +3494,32 @@ gS (27,1,1) = {" gS yK -qi -fx -PC -PC -Zk -Ur -fM -PC -IY -Ur -fM -PC -PC -fx -du +AI +ZX +sh +sh +Xs +Ur +sf +sh +Xs +Ur +sf +sh +sh +ZX +RQ yK Ur Ur -uC +OQ Cu Cu Cu -mc +Er Ur Ur -Ni +Ch hm AQ ZO @@ -3677,7 +3527,7 @@ AU jI Cu Cu -GQ +dL Ur Ur yK @@ -3709,14 +3559,14 @@ Ur Ur Ur Ur -uC +OQ Cu Cu Cu -mc +Er Ur Ur -uC +OQ EG hm AU @@ -3724,7 +3574,7 @@ jI Cu Cu Cu -mc +Er Ur Ur yK @@ -3756,22 +3606,22 @@ Ur Ri Ur Ur -WB -He -He -He -Uk +Yh +Sp +Sp +Sp +na Ur Ur -WB -He -He -He -He -He -He -He -Uk +Yh +Sp +Sp +Sp +Sp +Sp +Sp +Sp +na Ur Ur uE @@ -3832,18 +3682,18 @@ jL (31,1,1) = {" jL gS -Gd -Or -lX -Gd -Or +vG +IG +er +vG +IG aK -Gd -Or -Gd -Or -Gd -Or +vG +IG +vG +IG +vG +IG WS Hz qN @@ -3926,18 +3776,18 @@ jL (33,1,1) = {" jL gS -Ok +lx Ur Sc Ur -Ok +lx aK -tv +CQ UV jV jV sI -tv +CQ WS ds zk @@ -4020,11 +3870,11 @@ jL (35,1,1) = {" jL gS -lX +er Ur XN Ur -lX +er WS TY yK diff --git a/maps/templates/lazy_templates/upp_ert_station.dmm b/maps/templates/lazy_templates/upp_ert_station.dmm index f5baa3293d2d..2a2fec57b2ac 100644 --- a/maps/templates/lazy_templates/upp_ert_station.dmm +++ b/maps/templates/lazy_templates/upp_ert_station.dmm @@ -24,12 +24,6 @@ }, /turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) -"au" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space, -/area/space) "ax" = ( /obj/structure/surface/rack, /obj/item/tool/weldpack{ @@ -114,6 +108,17 @@ "bd" = ( /turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) +"be" = ( +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/space/basic, +/area/space) "bh" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -227,13 +232,6 @@ }, /turf/open/floor/strata/blue1, /area/adminlevel/ert_station/upp_station) -"di" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/space, -/area/space) "dz" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata/multi_tiles/southeast, @@ -241,6 +239,16 @@ "dB" = ( /turf/open/floor/strata/green4, /area/adminlevel/ert_station/upp_station) +"dC" = ( +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/almayer_hull, +/area/space) "dH" = ( /obj/structure/largecrate/random/secure, /obj/structure/machinery/light/double/blue, @@ -301,11 +309,6 @@ }, /turf/open/floor/prison/darkyellowfull2, /area/adminlevel/ert_station/upp_station) -"eV" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) "eX" = ( /obj/structure/filingcabinet{ density = 0; @@ -319,26 +322,6 @@ }, /turf/open/floor/strata/green4/north, /area/adminlevel/ert_station/upp_station) -"eY" = ( -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/space, -/area/space) -"fc" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/space/basic, -/area/space) "fd" = ( /obj/structure/largecrate/random/barrel/green, /obj/structure/prop/invuln/overhead_pipe{ @@ -352,6 +335,11 @@ }, /turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) +"fg" = ( +/obj/structure/lattice, +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/space/basic, +/area/space) "fi" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ name = "\improper Morgue" @@ -368,6 +356,26 @@ }, /turf/open/floor/strata/purp3/east, /area/adminlevel/ert_station/upp_station) +"fm" = ( +/obj/structure/platform/metal/strata, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"fn" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/space) +"ft" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) "fA" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -417,15 +425,15 @@ }, /turf/open/floor/strata/white_cyan4/south, /area/adminlevel/ert_station/upp_station) -"gx" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +"gO" = ( +/obj/structure/machinery/cryopod/no_store/right{ + pixel_y = 6 }, -/turf/open/floor/plating, +/turf/open/floor/prison/floor_marked/west, +/area/adminlevel/ert_station/upp_station) +"hd" = ( +/obj/structure/platform/metal/strata, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) "he" = ( /obj/structure/largecrate/random/barrel/green, @@ -441,12 +449,20 @@ }, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"hA" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"ht" = ( +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space/basic, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/space, +/area/space) +"hC" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/space, /area/space) "hF" = ( /turf/open/floor/strata/green4/west, @@ -502,6 +518,11 @@ }, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) +"iN" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) "iV" = ( /turf/open/floor/strata/green3/northwest, /area/adminlevel/ert_station/upp_station) @@ -520,11 +541,6 @@ /obj/item/storage/box/bodybags, /turf/open/floor/strata/multi_tiles/southwest, /area/adminlevel/ert_station/upp_station) -"jt" = ( -/obj/structure/lattice, -/obj/structure/platform_decoration/kutjevo, -/turf/open/space/basic, -/area/space) "jH" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 @@ -532,6 +548,10 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"jV" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/turf/open/space/basic, +/area/space) "kc" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/strata/multi_tiles/west, @@ -576,6 +596,11 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) +"kZ" = ( +/obj/structure/lattice, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/space/basic, +/area/space) "lb" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -595,6 +620,16 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/adminlevel/ert_station/upp_station) +"lg" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/space) "lm" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -686,11 +721,6 @@ }, /turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) -"mJ" = ( -/obj/structure/lattice, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space/basic, -/area/space) "mP" = ( /obj/structure/machinery/computer/cameras/almayer_network/vehicle{ dir = 1 @@ -698,6 +728,14 @@ /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) +"nc" = ( +/obj/structure/platform_decoration/metal/strata/north, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/upp_station) "ne" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/strata/orange_icorner/north, @@ -722,6 +760,10 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"nF" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/space/basic, +/area/space) "nO" = ( /obj/structure/bed/chair, /obj/structure/pipes/vents/pump{ @@ -776,24 +818,6 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"oP" = ( -/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/space) -"oS" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) "pb" = ( /turf/open/floor/strata/white_cyan3/south, /area/adminlevel/ert_station/upp_station) @@ -829,13 +853,6 @@ }, /turf/open/floor/plating/prison, /area/space) -"pN" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) "qd" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 @@ -848,21 +865,19 @@ }, /turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) -"qA" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/platform_decoration/strata/metal, -/obj/structure/curtain/open/black, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/plating, -/area/adminlevel/ert_station/upp_station) "qF" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access{ req_access = null }, /turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) +"qG" = ( +/obj/structure/machinery/cryopod/no_store/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_marked/west, +/area/adminlevel/ert_station/upp_station) "qH" = ( /turf/open/floor/strata/floorscorched2, /area/adminlevel/ert_station/upp_station) @@ -894,12 +909,6 @@ }, /turf/open/floor/strata/blue1, /area/adminlevel/ert_station/upp_station) -"rk" = ( -/obj/structure/machinery/cryopod/no_store/right{ - pixel_y = 6 - }, -/turf/open/floor/prison/floor_marked/west, -/area/adminlevel/ert_station/upp_station) "rr" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -924,6 +933,10 @@ /obj/structure/closet/crate/ammo, /turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) +"rD" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/almayer_hull, +/area/space) "rL" = ( /obj/structure/machinery/light/double/blue{ dir = 8 @@ -968,13 +981,6 @@ /obj/item/tool/pickaxe/diamonddrill, /turf/open/floor/plating/platebot, /area/adminlevel/ert_station/upp_station) -"sr" = ( -/obj/structure/lattice, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/space/basic, -/area/space) "sy" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/strata/damaged3, @@ -1023,6 +1029,14 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata/white_cyan2, /area/adminlevel/ert_station/upp_station) +"sN" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/platform/metal/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/upp_station) "sU" = ( /obj/structure/window/framed/strata, /turf/open/floor/plating, @@ -1076,18 +1090,6 @@ }, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"ue" = ( -/obj/structure/lattice, -/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/space) "uf" = ( /obj/structure/machinery/blackbox_recorder, /turf/open/floor/strata/green1, @@ -1095,10 +1097,6 @@ "uj" = ( /turf/open/floor/strata/white_cyan2, /area/adminlevel/ert_station/upp_station) -"uE" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata/floor3/east, -/area/adminlevel/ert_station/upp_station) "uI" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -1106,11 +1104,6 @@ }, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"uL" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) "uP" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -1136,6 +1129,16 @@ "ve" = ( /turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) +"vi" = ( +/obj/structure/lattice, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/space) "vn" = ( /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) @@ -1166,53 +1169,16 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"vS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) "vY" = ( /obj/structure/machinery/washing_machine, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"vZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space/basic, -/area/space) "we" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) -"wr" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison{ - layer = 2.2 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap"; - layer = 2.5 - }, -/turf/open/floor/plating, -/area/adminlevel/ert_station/upp_station) "ws" = ( /turf/open/floor/solarpanel, /area/space) @@ -1307,10 +1273,19 @@ }, /turf/open/floor/strata/green4, /area/adminlevel/ert_station/upp_station) -"yt" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 +"yr" = ( +/obj/structure/lattice, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/space/basic, +/area/space) +"yx" = ( +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth/north, /turf/open/space, /area/space) "yH" = ( @@ -1389,6 +1364,13 @@ }, /turf/open/floor/greengrid, /area/adminlevel/ert_station/upp_station) +"AH" = ( +/obj/structure/machinery/cryopod/no_store/right, +/obj/structure/machinery/light/double/blue{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/west, +/area/adminlevel/ert_station/upp_station) "AI" = ( /obj/structure/closet/crate, /turf/open/floor/strata/orange_edge/east, @@ -1440,17 +1422,30 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"Bw" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/space/basic, -/area/space) "BH" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"BR" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"BT" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap"; + layer = 2.5 + }, +/obj/effect/decal/strata_decals/catwalk/prison{ + layer = 2.2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating, +/area/adminlevel/ert_station/upp_station) "BX" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -1526,6 +1521,11 @@ }, /turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) +"CN" = ( +/obj/structure/platform_decoration/metal/kutjevo, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) "CW" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ req_access = null @@ -1539,6 +1539,10 @@ /obj/structure/closet/firecloset, /turf/open/floor/strata/green4/east, /area/adminlevel/ert_station/upp_station) +"Dj" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/space/basic, +/area/space) "Dv" = ( /turf/closed/wall/strata_outpost, /area/adminlevel/ert_station/upp_station) @@ -1556,6 +1560,11 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) +"DL" = ( +/obj/structure/lattice, +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/space/basic, +/area/space) "Eg" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 @@ -1588,16 +1597,15 @@ /obj/item/tool/pen, /turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) +"Fk" = ( +/obj/structure/lattice, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/space/basic, +/area/space) "FA" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"FF" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/platform/strata/metal, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/plating, -/area/adminlevel/ert_station/upp_station) "FI" = ( /obj/structure/bed/chair/comfy/black, /turf/open/floor/strata/multi_tiles/southeast, @@ -1608,6 +1616,11 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) +"FK" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) "FL" = ( /obj/structure/surface/table/reinforced/black, /obj/item/device/megaphone, @@ -1631,6 +1644,16 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/greengrid, /area/adminlevel/ert_station/upp_station) +"Gc" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"Gf" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/space/basic, +/area/space) "Gl" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/warning_stripes{ @@ -1649,13 +1672,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"Gu" = ( -/obj/structure/lattice, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) "Gw" = ( /turf/open/floor/strata/red3/south, /area/adminlevel/ert_station/upp_station) @@ -1673,28 +1689,10 @@ /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage/antag, /turf/open/floor/greengrid, /area/adminlevel/ert_station/upp_station) -"GN" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/platform/strata/metal, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/plating, -/area/adminlevel/ert_station/upp_station) "Hb" = ( /obj/structure/largecrate/supply, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"Hc" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) "Hl" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/warning_stripes{ @@ -1714,29 +1712,10 @@ /obj/structure/machinery/cm_vending/sorted/tech/comp_storage/antag, /turf/open/floor/greengrid, /area/adminlevel/ert_station/upp_station) -"HR" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles/west, -/area/adminlevel/ert_station/upp_station) "Is" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) -"IC" = ( -/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{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/space) "IK" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -1785,6 +1764,11 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) +"Ji" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open/space, +/area/space) "Jj" = ( /obj/structure/closet/emcloset, /turf/open/floor/strata/green3/west, @@ -1839,18 +1823,6 @@ }, /turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) -"Kj" = ( -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/almayer_hull, -/area/space) "Kn" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/asphalt/cement, @@ -1884,6 +1856,15 @@ /obj/structure/surface/table/reinforced, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) +"KZ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/platform_decoration/metal/strata, +/obj/structure/curtain/open/black, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/upp_station) "Lg" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -1921,19 +1902,6 @@ }, /turf/open/asphalt/cement/cement1/north, /area/adminlevel/ert_station/upp_station) -"LG" = ( -/obj/structure/lattice, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space/basic, -/area/space) -"LI" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) "LK" = ( /obj/structure/machinery/light/double/blue{ dir = 4 @@ -1976,10 +1944,6 @@ /obj/item/storage/belt/medical/lifesaver/upp/full, /turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) -"Mt" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/space/basic, -/area/space) "MB" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 @@ -2040,40 +2004,16 @@ /obj/structure/bed/chair/comfy/black, /turf/open/floor/strata/red3/south, /area/adminlevel/ert_station/upp_station) -"NQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/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/space) "NU" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/curtain/medical, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"OA" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap"; - layer = 2.5 - }, -/obj/effect/decal/strata_decals/catwalk/prison{ - layer = 2.2 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, +"Oq" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/platform/metal/strata, +/obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) "OK" = ( @@ -2086,18 +2026,25 @@ /obj/item/storage/large_holster/machete/full, /turf/open/floor/strata/white_cyan4/north, /area/adminlevel/ert_station/upp_station) +"OU" = ( +/obj/structure/platform/metal/strata/east, +/obj/effect/decal/strata_decals/catwalk/prison{ + layer = 2.2 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap"; + layer = 2.5 + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/upp_station) "Ph" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) -"Pj" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/almayer_hull, -/area/space) "PI" = ( /turf/open/floor/almayer_hull, /area/space) @@ -2128,6 +2075,10 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/strata/white_cyan3, /area/adminlevel/ert_station/upp_station) +"Qq" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/space/basic, +/area/space) "Qu" = ( /obj/structure/bed{ icon_state = "abed" @@ -2193,6 +2144,12 @@ }, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) +"RD" = ( +/obj/structure/platform_decoration/metal/kutjevo/east, +/obj/structure/platform_decoration/metal/kutjevo/north, +/obj/structure/lattice, +/turf/open/space, +/area/space) "RK" = ( /obj/structure/machinery/iv_drip, /obj/structure/machinery/light/double/blue, @@ -2216,6 +2173,16 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) +"RT" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) "RU" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -2266,13 +2233,6 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/greengrid, /area/adminlevel/ert_station/upp_station) -"Sx" = ( -/obj/structure/machinery/cryopod/no_store/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_marked/west, -/area/adminlevel/ert_station/upp_station) "Sy" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -2342,6 +2302,10 @@ }, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) +"Ti" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) "Tj" = ( /turf/open/asphalt/cement/cement12, /area/adminlevel/ert_station/upp_station) @@ -2351,6 +2315,11 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) +"Tq" = ( +/obj/structure/lattice, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/space/basic, +/area/space) "Tr" = ( /obj/effect/landmark/wo_supplies/storage/m56d, /obj/structure/machinery/light/double/blue{ @@ -2385,13 +2354,6 @@ /obj/item/storage/surgical_tray, /turf/open/floor/strata/white_cyan4/south, /area/adminlevel/ert_station/upp_station) -"TE" = ( -/obj/structure/machinery/cryopod/no_store/right, -/obj/structure/machinery/light/double/blue{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/west, -/area/adminlevel/ert_station/upp_station) "TG" = ( /turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) @@ -2407,25 +2369,6 @@ /obj/item/tool/kitchen/rollingpin, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"TI" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/floor3/east, -/area/adminlevel/ert_station/upp_station) -"TM" = ( -/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{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space/basic, -/area/space) "TQ" = ( /obj/structure/closet/emcloset, /turf/open/floor/strata/multi_tiles/west, @@ -2441,6 +2384,10 @@ }, /turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) +"TX" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/space, +/area/space) "Ug" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard, @@ -2605,6 +2552,10 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"VH" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/space/basic, +/area/space) "VI" = ( /turf/closed/wall/rock/brown, /area/space) @@ -2626,13 +2577,6 @@ /obj/structure/window/framed/strata/hull, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"Wi" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) "Wj" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -2655,13 +2599,6 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/floor/strata/orange_edge/east, /area/adminlevel/ert_station/upp_station) -"WQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) "WX" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -2711,6 +2648,10 @@ }, /turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) +"Yf" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/space/basic, +/area/space) "Yy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -2728,12 +2669,6 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"YK" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/space/basic, -/area/space) "YO" = ( /obj/structure/machinery/gibber{ pixel_y = 10 @@ -2771,13 +2706,6 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) -"ZH" = ( -/obj/structure/lattice, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) "ZM" = ( /obj/structure/largecrate/random/case/small, /obj/structure/machinery/light/double/blue{ @@ -2830,11 +2758,11 @@ Cp Cp GI GI -eV -YK -YK -YK -oS +CN +VH +VH +VH +nF AN AN AN @@ -2853,13 +2781,13 @@ AN GI AN AN -jt -LG -LG -LG -LG -LG -ZH +DL +yr +yr +yr +yr +yr +fg GI GI GI @@ -2872,11 +2800,11 @@ Cp Cp Cp VI -uL +BR ws ws ws -oP +RT GI GI GI @@ -2895,13 +2823,13 @@ GI GI GI GI -mJ +kZ ws ws ws ws ws -ue +vi AN GI Cp @@ -2914,11 +2842,11 @@ qU qU QG Cp -Mt +Dj ws IV ws -NQ +lg Cp Cp GI @@ -2937,7 +2865,7 @@ We We El AN -mJ +kZ ws ws ws @@ -2980,10 +2908,10 @@ YW El El El -Gu -Gu -Gu -Gu +Tq +Tq +Tq +Tq Cp Cp Cp @@ -3798,7 +3726,7 @@ xy xy zs po -qA +KZ po po po @@ -3840,7 +3768,7 @@ lb sA Gl po -GN +sN ME yH yH @@ -3882,7 +3810,7 @@ RU RU po po -GN +sN bY dz tx @@ -3924,7 +3852,7 @@ UE Bq bi UE -FF +Oq SI Zm uI @@ -3966,8 +3894,8 @@ aP tv Zm vn -gx -OA +nc +BT cO rr Mi @@ -4008,8 +3936,8 @@ MM tv Zm vn -uE -wr +Ti +OU Zm FA Sa @@ -4050,14 +3978,14 @@ ZS Bt gf Wj -TI +fm IX Zm pv mq Cp Cp -ZH +fg GI AN "} @@ -4092,14 +4020,14 @@ Jz Bp Tm yH -HR +hd YO kc yH Cp Cp PI -sr +Fk AN AN "} @@ -4139,9 +4067,9 @@ Dv Cp Cp Cp -Mt +Dj PI -Bw +Yf AN AN "} @@ -4181,9 +4109,9 @@ Dv Cp Cp GI -uL +BR PI -Bw +Yf AN AN "} @@ -4223,9 +4151,9 @@ Dv Cp GI AN -Mt +Dj PI -Bw +Yf AN AN "} @@ -4257,17 +4185,17 @@ LB JX LN Dv -TE -Sx -rk +AH +qG +gO Cp Cp Cp GI AN -Mt +Dj PI -Bw +Yf AN AN "} @@ -4303,13 +4231,13 @@ Dv Cp Cp Cp -di -yt -WQ -yt -hA +Ji +TX +FK +TX +Gf PI -Bw +Yf AN AN "} @@ -4345,13 +4273,13 @@ Cp ws ws ws -TM +be ws ws ws -IC +ht PI -Bw +Yf AN AN "} @@ -4383,17 +4311,17 @@ Cp Cp Cp Cp -uL +BR ws IV ws -Kj +dC ws IV ws -Pj +rD PI -Bw +Yf AN AN "} @@ -4425,17 +4353,17 @@ Cp Cp GI GI -uL +BR ws ws ws -vZ +fn ws ws ws -eY -LI -fc +yx +Qq +jV AN AN "} @@ -4467,15 +4395,15 @@ GI GI GI AN -pN -vS -Wi -vS -Hc -vS -Wi -au -fc +iN +Gc +ft +Gc +RD +Gc +ft +hC +jV AN AN AN diff --git a/maps/templates/lazy_templates/uscm_ert_station.dmm b/maps/templates/lazy_templates/uscm_ert_station.dmm index 06713fbff6e5..4584c14e8cc6 100644 --- a/maps/templates/lazy_templates/uscm_ert_station.dmm +++ b/maps/templates/lazy_templates/uscm_ert_station.dmm @@ -107,15 +107,6 @@ }, /turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/ert_station/uscm_station) -"bv" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "bB" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 @@ -208,11 +199,6 @@ /obj/item/storage/box/pillbottles, /turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/ert_station/uscm_station) -"cX" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "cZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -234,6 +220,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/adminlevel/ert_station/uscm_station) +"dj" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"dl" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/item/hardpoint/armor/paladin, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"do" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "du" = ( /obj/structure/bed/roller, /turf/open/floor/almayer/sterile_green_side/east, @@ -347,10 +351,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/adminlevel/ert_station/uscm_station) -"eu" = ( -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "eF" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -432,12 +432,13 @@ }, /turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/uscm_station) -"fo" = ( -/obj/structure/platform_decoration{ - dir = 1 +"fp" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/item/hardpoint/special/firing_port_weapon, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/uscm_station) "fu" = ( @@ -508,6 +509,15 @@ }, /turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/uscm_station) +"gd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "gj" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/almayer/dark_sterile, @@ -535,9 +545,11 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) -"gW" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/blood/oil, +"gU" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/uscm_station) "gY" = ( @@ -574,13 +586,10 @@ }, /turf/open/floor/carpet, /area/adminlevel/ert_station/uscm_station) -"ho" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, +"hn" = ( +/obj/structure/platform/metal/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/uscm_station) "hq" = ( @@ -593,21 +602,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) -"hv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "hw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -651,13 +645,6 @@ /obj/item/clothing/suit/storage/marine/light/vest, /turf/open/floor/red/southwest, /area/adminlevel/ert_station/uscm_station) -"hN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - explo_proof = 1; - locked = 1 - }, -/turf/open/floor/almayer/no_build, -/area/adminlevel/ert_station/uscm_station) "hO" = ( /obj/structure/ladder{ id = "regladder5"; @@ -827,21 +814,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) -"jM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "jP" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -858,6 +830,13 @@ }, /turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station/uscm_station) +"jX" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "jZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -905,6 +884,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/test_floor5, /area/adminlevel/ert_station/uscm_station) +"kL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + explo_proof = 1; + locked = 1 + }, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"kQ" = ( +/obj/structure/machinery/cryopod/no_store/right, +/obj/structure/sign/safety/cryo{ + pixel_y = 30 + }, +/obj/structure/sign/safety/refridgeration{ + pixel_y = 30; + pixel_x = 15 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/ert_station/uscm_station) "kX" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer/orange, @@ -1027,21 +1024,6 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/almayer/uscm/directional/logo_c/west, /area/adminlevel/ert_station/uscm_station) -"mo" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "mp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ name = "\improper Medical Bay"; @@ -1049,6 +1031,11 @@ }, /turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/uscm_station) +"mr" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "ms" = ( /obj/structure/sign/safety/medical{ pixel_x = 8; @@ -1290,16 +1277,6 @@ "oD" = ( /turf/open/floor/almayer/red, /area/adminlevel/ert_station/uscm_station) -"oE" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway"; - req_one_access = null; - explo_proof = 1; - locked = 1; - opacity = 1 - }, -/turf/open/floor/almayer/orange, -/area/adminlevel/ert_station/uscm_station) "oT" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/carpet, @@ -1472,6 +1449,15 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) +"rm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "rr" = ( /turf/open/floor/almayer_hull/outerhull_dir/west, /area/space) @@ -1555,12 +1541,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) -"sd" = ( -/obj/structure/platform, -/obj/item/storage/toolbox/mechanical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "sg" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer/plating_striped, @@ -1600,21 +1580,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) -"sH" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "sL" = ( /obj/structure/machinery/optable, /obj/item/tank/anesthetic, @@ -1709,6 +1674,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station/uscm_station) +"tR" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway"; + req_one_access = null; + explo_proof = 1; + locked = 1; + opacity = 1 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) "tY" = ( /obj/structure/sign/safety/refridgeration{ pixel_y = 32 @@ -1739,6 +1714,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/adminlevel/ert_station/uscm_station) +"uu" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "ux" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, /obj/structure/sign/safety/high_rad{ @@ -1755,14 +1740,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) -"uD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "uF" = ( /obj/structure/barricade/metal{ dir = 4 @@ -1842,6 +1819,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/warnplate/west, /area/adminlevel/ert_station/uscm_station) +"vA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "vF" = ( /obj/structure/surface/rack, /obj/item/storage/box/bodybags, @@ -1853,16 +1840,6 @@ /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/adminlevel/ert_station/uscm_station) -"vH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "vI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/nosmoking_2{ @@ -1886,22 +1863,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/adminlevel/ert_station/uscm_station) -"wp" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "wr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/redfull/northwest, @@ -2212,6 +2173,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station/uscm_station) +"zs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "zt" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -2257,6 +2225,16 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/uscm_station) +"zU" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "zW" = ( /obj/item/storage/box/bodybags{ pixel_x = 3; @@ -2414,6 +2392,16 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) +"Ce" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway"; + req_one_access = null; + explo_proof = 1; + locked = 1; + opacity = 1 + }, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) "Ch" = ( /obj/structure/surface/table/reinforced/black, /obj/item/weapon/gun/rifle/l42a/training, @@ -2548,21 +2536,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/almayer/plating_striped/north, /area/adminlevel/ert_station/uscm_station) -"DG" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "DH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/barrel/blue, @@ -2588,6 +2561,15 @@ }, /turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/uscm_station) +"DU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "DW" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -2624,6 +2606,10 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) +"Ek" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "Eq" = ( /obj/structure/bed/chair/office/light, /obj/effect/decal/cleanable/dirt, @@ -2637,15 +2623,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating, /area/adminlevel/ert_station/uscm_station) -"Ey" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "EA" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/almayer/plating_striped/north, @@ -2710,19 +2687,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) -"Fk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "Fm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -2790,16 +2754,6 @@ /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) -"FV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway"; - req_one_access = null; - explo_proof = 1; - locked = 1; - opacity = 1 - }, -/turf/open/floor/almayer/no_build, -/area/adminlevel/ert_station/uscm_station) "FX" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ name = "\improper Armory" @@ -2815,11 +2769,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station/uscm_station) -"Gd" = ( -/obj/structure/platform_decoration, -/obj/item/hardpoint/armor/paladin, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "Ge" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/sign/safety/medical{ @@ -3002,15 +2951,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) -"Ie" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "Ii" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -3086,6 +3026,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station/uscm_station) +"Jh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "Ji" = ( /turf/open/floor/almayer_hull/outerhull_dir/northwest, /area/space) @@ -3165,6 +3113,16 @@ }, /turf/open/floor/almayer, /area/adminlevel/ert_station/uscm_station) +"Kq" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "Ks" = ( /obj/structure/machinery/line_nexter{ id = "line2"; @@ -3407,6 +3365,14 @@ /obj/structure/closet/coffin, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) +"Ow" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 2; + explo_proof = 1; + locked = 1 + }, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) "OA" = ( /turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station/uscm_station) @@ -3446,14 +3412,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) -"OZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 2; - explo_proof = 1; - locked = 1 - }, -/turf/open/floor/almayer/no_build, -/area/adminlevel/ert_station/uscm_station) "Pa" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "kurtz2"; @@ -3561,18 +3519,6 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) -"Qh" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "Qj" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/plating/plating_catwalk, @@ -3731,19 +3677,6 @@ "Sj" = ( /turf/open/floor/wood/ship, /area/adminlevel/ert_station/uscm_station) -"Sr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "SC" = ( /obj/item/weapon/gun/shotgun/combat{ pixel_x = 4; @@ -3843,21 +3776,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station/uscm_station) -"Uc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "Ug" = ( /obj/structure/pipes/unary/outlet_injector{ dir = 1 @@ -3917,6 +3835,13 @@ }, /turf/open/floor/almayer, /area/adminlevel/ert_station/uscm_station) +"Ve" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "Vk" = ( /obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/almayer/plate, @@ -3931,6 +3856,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/ert_station/uscm_station) +"Vx" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "VA" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -3955,6 +3887,15 @@ /obj/structure/closet/wardrobe/chemistry_white, /turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/ert_station/uscm_station) +"VT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "VZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/ash, @@ -4061,21 +4002,6 @@ }, /turf/open/floor/almayer/cargo_arrow, /area/adminlevel/ert_station/uscm_station) -"WZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "Xb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -4124,6 +4050,12 @@ }, /turf/open/floor/almayer/plate, /area/adminlevel/ert_station/uscm_station) +"XB" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/item/hardpoint/special/firing_port_weapon, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "XC" = ( /obj/item/tool/warning_cone{ pixel_y = 5; @@ -4132,6 +4064,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/adminlevel/ert_station/uscm_station) +"XJ" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "XM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/vomit, @@ -4149,26 +4086,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/adminlevel/ert_station/uscm_station) -"Yb" = ( -/obj/structure/machinery/cryopod/no_store/right, -/obj/structure/sign/safety/cryo{ - pixel_y = 30 - }, -/obj/structure/sign/safety/refridgeration{ - pixel_y = 30; - pixel_x = 15 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/adminlevel/ert_station/uscm_station) -"Yo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) "Yp" = ( /obj/structure/machinery/pipedispenser, /obj/effect/decal/cleanable/dirt, @@ -4268,21 +4185,20 @@ /obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, /turf/open/floor/red/west, /area/adminlevel/ert_station/uscm_station) +"ZM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) "ZS" = ( /obj/structure/target, /turf/open/floor/almayer/plating_striped, /area/adminlevel/ert_station/uscm_station) -"ZW" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer/plating/northeast, -/area/adminlevel/ert_station/uscm_station) (1,1,1) = {" kZ @@ -5699,7 +5615,7 @@ Eu zK zK dP -OZ +Ow zK kZ kZ @@ -5797,7 +5713,7 @@ kZ kZ kZ zK -hN +kL rs rs JP @@ -5903,10 +5819,10 @@ kZ kZ zK zK -FV +Ce zK zK -oE +tR zK zK kZ @@ -6751,7 +6667,7 @@ zK Lo Hc mD -Yb +kQ du iS CO @@ -6912,21 +6828,21 @@ Px PD MJ MJ -mo -ho -Yo -Fk +fp +jX +Ve +DU Rv -Uc -Yo -Fk +rm +Ve +DU Rv -Uc -Yo -Yo -Yo -ho -sH +rm +Ve +Ve +Ve +jX +Kq tD nP ps @@ -6964,7 +6880,7 @@ pR PD QU Rv -Ie +Vx qI qI qI @@ -6978,7 +6894,7 @@ qI qI qI IH -uD +Jh fI yR ir @@ -7016,7 +6932,7 @@ er jZ ot rj -Ie +Vx qI qI qI @@ -7030,7 +6946,7 @@ qI qI qI qI -WZ +ZM kf zr ir @@ -7068,7 +6984,7 @@ er ks MJ tD -Ie +Vx qI qI qI @@ -7120,7 +7036,7 @@ er ks MJ qL -Ie +Vx qI qI qI @@ -7172,7 +7088,7 @@ er ks MJ tD -Ie +Vx qI qI qI @@ -7224,7 +7140,7 @@ er jZ ot zt -Ie +Vx qI qI qI @@ -7238,7 +7154,7 @@ qI qI qI qI -hv +vA OE zr ir @@ -7276,7 +7192,7 @@ OU ks MJ Rv -Ie +Vx qI qI qI @@ -7290,7 +7206,7 @@ qI qI qI qI -uD +Jh Ii yR ir @@ -7328,21 +7244,21 @@ yr PD MJ MJ -wp -bv -Ey -Sr +uu +gU +zs +VT Rv -jM -Ey -vH +gd +zs +VT Rv -jM -Ey -Ey -Ey -bv -DG +gd +zs +zs +zs +gU +zU tD EL WV @@ -8891,8 +8807,8 @@ kZ kZ zK zK -fo -ZW +XB +do Fm Pw Lf @@ -8944,7 +8860,7 @@ kZ zK cz na -sd +hn JI yf TB @@ -8996,7 +8912,7 @@ kZ zK RR Bc -cX +mr dP qu mF @@ -9048,7 +8964,7 @@ kZ zK Bc IJ -cX +mr ow RI Cl @@ -9100,7 +9016,7 @@ kZ zK Bc RR -eu +Ek dP Tm nv @@ -9152,7 +9068,7 @@ kZ zK Bc RR -eu +Ek yU mw Ee @@ -9204,7 +9120,7 @@ kZ zK VI lu -gW +XJ Po aP lI @@ -9255,8 +9171,8 @@ kZ kZ zK zK -Gd -Qh +dl +dj HM Fg ue diff --git a/maps/templates/lazy_templates/weyland_ert_station.dmm b/maps/templates/lazy_templates/weyland_ert_station.dmm index 0496c52cf6b3..d855ace4882e 100644 --- a/maps/templates/lazy_templates/weyland_ert_station.dmm +++ b/maps/templates/lazy_templates/weyland_ert_station.dmm @@ -1,13 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_x = 10; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/corsat/squares, -/area/adminlevel/ert_station/weyland_station) "al" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -30,6 +21,15 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) +"aZ" = ( +/obj/structure/machinery/door/poddoor/almayer/blended/white/open{ + id = "WY Bio" + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 8; + icon_state = "containment_window_h" + }, +/area/adminlevel/ert_station/weyland_station) "bf" = ( /obj/structure/surface/table/reinforced/black, /obj/item/tool/stamp/internalaffairs{ @@ -44,12 +44,6 @@ }, /turf/open/floor/corsat/blue/northeast, /area/adminlevel/ert_station/weyland_station) -"bk" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/adminlevel/ert_station/weyland_station) "bp" = ( /obj/structure/bed/chair{ dir = 8 @@ -73,9 +67,6 @@ /obj/item/bedsheet/orange, /turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"bF" = ( -/turf/open/floor/almayer/research/containment/corner/east, -/area/adminlevel/ert_station/weyland_station) "bG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -170,6 +161,12 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) +"dh" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) "dx" = ( /obj/structure/window/framed/corsat/indestructible/research, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -218,13 +215,6 @@ }, /turf/open/floor/corsat/redcorner/north, /area/adminlevel/ert_station/weyland_station) -"dT" = ( -/turf/closed/wall/almayer/research/containment/wall/corner, -/area/adminlevel/ert_station/weyland_station) -"dU" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/squares, -/area/adminlevel/ert_station/weyland_station) "ee" = ( /obj/structure/bed/roller, /turf/open/floor/corsat/darkgreen, @@ -248,12 +238,6 @@ }, /turf/open/floor/corsat/green/west, /area/adminlevel/ert_station/weyland_station) -"ek" = ( -/obj/structure/machinery/sleep_console{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/adminlevel/ert_station/weyland_station) "el" = ( /turf/open/floor/corsat/greencorner/north, /area/adminlevel/ert_station/weyland_station) @@ -265,6 +249,10 @@ }, /turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) +"ev" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) "eA" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/clothing/gloves/yellow, @@ -296,12 +284,6 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"eX" = ( -/obj/structure/morgue/crematorium{ - id = "WY Cremate" - }, -/turf/open/floor/corsat/green/northeast, -/area/adminlevel/ert_station/weyland_station) "fe" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -313,12 +295,6 @@ }, /turf/open/floor/corsat/sigma, /area/adminlevel/ert_station/weyland_station) -"fh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/portadialysis, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/corsat/green/southeast, -/area/adminlevel/ert_station/weyland_station) "fl" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -365,9 +341,24 @@ }, /turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) +"fR" = ( +/turf/open/floor/almayer/research/containment/entrance, +/area/adminlevel/ert_station/weyland_station) "fX" = ( /turf/closed/wall/r_wall/biodome, /area/adminlevel/ert_station/weyland_station) +"ga" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/retractor, +/obj/item/device/autopsy_scanner{ + pixel_y = 9 + }, +/turf/open/floor/corsat/green/southeast, +/area/adminlevel/ert_station/weyland_station) "gf" = ( /obj/structure/machinery/body_scanconsole, /obj/structure/machinery/autodoc_console{ @@ -375,6 +366,15 @@ }, /turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) +"gg" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_x = 10; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) "gh" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -431,9 +431,6 @@ /obj/item/storage/box/wy_mre, /turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) -"gS" = ( -/turf/closed/wall/almayer/research/containment/wall/east, -/area/adminlevel/ert_station/weyland_station) "gW" = ( /obj/structure/machinery/chem_dispenser, /obj/item/reagent_container/glass/beaker/bluespace, @@ -454,6 +451,15 @@ /obj/item/tank/anesthetic, /turf/open/floor/corsat/darkgreen/north, /area/adminlevel/ert_station/weyland_station) +"hy" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_x = -10; + pixel_y = 1 + }, +/turf/open/floor/corsat/green/west, +/area/adminlevel/ert_station/weyland_station) "hz" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -481,9 +487,6 @@ }, /turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) -"hO" = ( -/turf/open/floor/almayer/research/containment/corner2, -/area/adminlevel/ert_station/weyland_station) "hZ" = ( /obj/structure/closet/secure_closet/brig{ density = 0; @@ -538,21 +541,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/redcorner, /area/adminlevel/ert_station/weyland_station) -"iP" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/obj/structure/machinery/light/double{ - dir = 1 - }, -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/rad{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/corsat/greencorner/east, -/area/adminlevel/ert_station/weyland_station) "iT" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/kitchen/tray, @@ -565,14 +553,6 @@ /obj/item/tool/kitchen/rollingpin, /turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"iU" = ( -/obj/structure/closet/crate/internals, -/obj/item/storage/firstaid/adv{ - pixel_y = 6 - }, -/obj/item/storage/firstaid/fire, -/turf/open/floor/corsat/green/north, -/area/adminlevel/ert_station/weyland_station) "iV" = ( /obj/structure/machinery/autolathe/full, /turf/open/floor/corsat/yellow/west, @@ -595,6 +575,9 @@ }, /turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) +"jn" = ( +/turf/open/floor/almayer/research/containment/floor2, +/area/adminlevel/ert_station/weyland_station) "jz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -619,33 +602,6 @@ }, /turf/open/floor/corsat/red/west, /area/adminlevel/ert_station/weyland_station) -"jY" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_x = -10; - pixel_y = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/random, -/obj/item/storage/fancy/vials/random, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat/green/west, -/area/adminlevel/ert_station/weyland_station) -"ka" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/recharger, -/obj/item/storage/box/masks{ - pixel_x = 7 - }, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/corsat/green/north, -/area/adminlevel/ert_station/weyland_station) -"kn" = ( -/turf/open/floor/almayer/research/containment/floor2/west, -/area/adminlevel/ert_station/weyland_station) "kq" = ( /obj/structure/bed/chair/wheelchair, /obj/structure/machinery/light/double, @@ -658,11 +614,6 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) -"kx" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 1 - }, -/area/adminlevel/ert_station/weyland_station) "ky" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/clothing/suit/storage/hazardvest/blue, @@ -675,6 +626,9 @@ /obj/structure/machinery/power/smes, /turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) +"kI" = ( +/turf/closed/wall/almayer/research/containment/wall/corner, +/area/adminlevel/ert_station/weyland_station) "kM" = ( /obj/structure/largecrate/supply/weapons/flamers, /obj/structure/pipes/standard/simple/hidden/green, @@ -696,9 +650,6 @@ }, /turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) -"kW" = ( -/turf/open/floor/almayer/research/containment/floor2, -/area/adminlevel/ert_station/weyland_station) "la" = ( /obj/structure/machinery/light/double, /obj/structure/pipes/standard/simple/hidden/green{ @@ -706,6 +657,12 @@ }, /turf/open/floor/corsat/redcorner, /area/adminlevel/ert_station/weyland_station) +"lc" = ( +/obj/structure/machinery/cryopod/no_store/right{ + pixel_y = 6 + }, +/turf/open/floor/corsat/cargo, +/area/adminlevel/ert_station/weyland_station) "lh" = ( /turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) @@ -769,6 +726,9 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) +"lR" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/adminlevel/ert_station/weyland_station) "lS" = ( /obj/structure/largecrate/supply/medicine/blood, /obj/structure/machinery/light/double{ @@ -778,13 +738,6 @@ }, /turf/open/floor/corsat/green/northeast, /area/adminlevel/ert_station/weyland_station) -"lT" = ( -/obj/structure/machinery/cryopod/no_store/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/corsat/cargo, -/area/adminlevel/ert_station/weyland_station) "lU" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -816,6 +769,10 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/corsat/yellow/southeast, /area/adminlevel/ert_station/weyland_station) +"mm" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/corsat/green/east, +/area/adminlevel/ert_station/weyland_station) "mn" = ( /obj/structure/closet/toolcloset, /turf/open/floor/corsat/yellow/northeast, @@ -839,35 +796,16 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/corsat/red/southeast, /area/adminlevel/ert_station/weyland_station) -"mI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall/r_wall/biodome, -/area/adminlevel/ert_station/weyland_station) "mV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ name = "\improper Telecomms" }, /turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"nb" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_x = 10; - pixel_y = 1 - }, -/turf/open/floor/corsat/green/east, -/area/adminlevel/ert_station/weyland_station) "ng" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage/antag, /turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"nq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ - req_access = null - }, -/obj/structure/medical_supply_link, -/turf/open/floor/corsat/green/southwest, -/area/adminlevel/ert_station/weyland_station) "ns" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -943,17 +881,6 @@ }, /turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"nY" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 8 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = -7 - }, -/turf/open/floor/corsat/green/northeast, -/area/adminlevel/ert_station/weyland_station) "ob" = ( /obj/structure/closet/secure_closet/chemical{ req_access_txt = "100" @@ -968,10 +895,6 @@ }, /turf/open/floor/corsat/brown/east, /area/adminlevel/ert_station/weyland_station) -"ou" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/corsat/green, -/area/adminlevel/ert_station/weyland_station) "oE" = ( /turf/open/floor/corsat/bluecorner/west, /area/adminlevel/ert_station/weyland_station) @@ -986,6 +909,26 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) +"oN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/monkeycubes{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/device/camera{ + pixel_x = 7; + pixel_y = -6 + }, +/turf/open/floor/corsat/green, +/area/adminlevel/ert_station/weyland_station) "oQ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ dir = 1 @@ -1003,17 +946,6 @@ }, /turf/open/floor/corsat/green/northeast, /area/adminlevel/ert_station/weyland_station) -"oX" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell WY"; - layer = 2.1; - name = "Mounted Flash"; - pixel_x = -15; - pixel_y = 30 - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/adminlevel/ert_station/weyland_station) "pa" = ( /obj/vehicle/powerloader/ft{ dir = 4 @@ -1044,6 +976,10 @@ }, /turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) +"pz" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/adminlevel/ert_station/weyland_station) "pB" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/antag_guns{ hacked = 1; @@ -1064,10 +1000,28 @@ /obj/structure/machinery/cm_vending/sorted/tech/tool_storage/antag, /turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) +"pL" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/adminlevel/ert_station/weyland_station) "pY" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/arrow_east, /area/adminlevel/ert_station/weyland_station) +"qa" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "WY Bio"; + name = "BIOHAZARD LOCKDOWN" + }, +/obj/structure/machinery/door_control{ + id = "WY_aft_medbay"; + name = "Aft Medbay Shutters"; + pixel_x = 7; + pixel_y = 12; + req_access_txt = "200" + }, +/turf/open/floor/corsat/green, +/area/adminlevel/ert_station/weyland_station) "qu" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 1; @@ -1094,6 +1048,13 @@ /obj/structure/morgue, /turf/open/floor/corsat/green/southwest, /area/adminlevel/ert_station/weyland_station) +"qO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ + req_access = null + }, +/obj/structure/medical_supply_link, +/turf/open/floor/corsat/green/southwest, +/area/adminlevel/ert_station/weyland_station) "qV" = ( /obj/structure/bed/chair{ dir = 8 @@ -1154,21 +1115,6 @@ }, /turf/open/floor/corsat/blue/northwest, /area/adminlevel/ert_station/weyland_station) -"rO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "WY Bio"; - name = "BIOHAZARD LOCKDOWN" - }, -/obj/structure/machinery/door_control{ - id = "WY_aft_medbay"; - name = "Aft Medbay Shutters"; - pixel_x = 7; - pixel_y = 12; - req_access_txt = "200" - }, -/turf/open/floor/corsat/green, -/area/adminlevel/ert_station/weyland_station) "rX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1241,6 +1187,20 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) +"sW" = ( +/obj/structure/machinery/crema_switch{ + pixel_x = 25; + pixel_y = 25; + id = "WY Cremate"; + req_access = null; + req_access_txt = "200" + }, +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/corsat/green/north, +/area/adminlevel/ert_station/weyland_station) "sX" = ( /obj/structure/window/framed/corsat/research, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -1342,6 +1302,27 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) +"uF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/closed/wall/r_wall/biodome, +/area/adminlevel/ert_station/weyland_station) +"uG" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access = null + }, +/obj/structure/medical_supply_link, +/turf/open/floor/corsat/green/northwest, +/area/adminlevel/ert_station/weyland_station) +"uQ" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_x = 10; + pixel_y = 1 + }, +/turf/open/floor/corsat/green/east, +/area/adminlevel/ert_station/weyland_station) "uR" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /obj/item/reagent_container/food/condiment/enzyme, @@ -1385,6 +1366,11 @@ "vh" = ( /turf/open/floor/corsat/yellow, /area/adminlevel/ert_station/weyland_station) +"vp" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 8 + }, +/area/adminlevel/ert_station/weyland_station) "vv" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -1397,24 +1383,6 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"vN" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Containment Cell WY"; - name = "Control Panel"; - pixel_x = -15; - req_access_txt = "200" - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 8 - }, -/obj/item/restraint/adjustable/cable/red{ - pixel_x = 5; - pixel_y = -4 - }, -/turf/open/floor/corsat/green/southwest, -/area/adminlevel/ert_station/weyland_station) "vP" = ( /obj/structure/machinery/light/double, /obj/structure/pipes/standard/simple/hidden/green{ @@ -1436,10 +1404,6 @@ }, /turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"vX" = ( -/obj/structure/machinery/cryopod/no_store/right, -/turf/open/floor/corsat/cargo, -/area/adminlevel/ert_station/weyland_station) "wa" = ( /obj/item/device/defibrillator/upgraded, /obj/structure/surface/table/reinforced/almayer_B, @@ -1450,18 +1414,6 @@ /obj/item/bedsheet/orange, /turf/open/floor/corsat/brown, /area/adminlevel/ert_station/weyland_station) -"wU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/retractor, -/obj/item/device/autopsy_scanner{ - pixel_y = 9 - }, -/turf/open/floor/corsat/green/southeast, -/area/adminlevel/ert_station/weyland_station) "xg" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -1484,6 +1436,14 @@ /obj/item/tool/lighter/zippo/gold, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) +"xp" = ( +/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/corsat/green/northwest, +/area/adminlevel/ert_station/weyland_station) "xA" = ( /turf/open/floor/corsat/red/southwest, /area/adminlevel/ert_station/weyland_station) @@ -1529,9 +1489,6 @@ /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"ye" = ( -/turf/open/floor/almayer/research/containment/entrance, -/area/adminlevel/ert_station/weyland_station) "yi" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/faxmachine/corporate, @@ -1558,15 +1515,11 @@ }, /turf/open/floor/corsat/blue, /area/adminlevel/ert_station/weyland_station) -"yp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - name = "\improper Medical Storage" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "WY_aft_medbay"; - name = "\improper Aft Medbay Shutters" +"yC" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 8 }, -/turf/open/floor/corsat/marked, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "yD" = ( /obj/structure/bed{ @@ -1581,26 +1534,9 @@ "yM" = ( /turf/open/floor/corsat/red/southeast, /area/adminlevel/ert_station/weyland_station) -"yP" = ( -/obj/structure/machinery/crema_switch{ - pixel_x = 25; - pixel_y = 25; - id = "WY Cremate"; - req_access = null; - req_access_txt = "200" - }, -/obj/structure/surface/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/corsat/green/north, -/area/adminlevel/ert_station/weyland_station) "zh" = ( /turf/open/floor/corsat/yellow/southwest, /area/adminlevel/ert_station/weyland_station) -"zC" = ( -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/adminlevel/ert_station/weyland_station) "zD" = ( /obj/structure/surface/rack, /turf/open/floor/wood/ship, @@ -1648,20 +1584,29 @@ }, /turf/open/floor/corsat/darkgreencorner/west, /area/adminlevel/ert_station/weyland_station) -"zS" = ( -/obj/structure/machinery/door/poddoor/almayer/blended/white/open{ - id = "WY Bio" - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 8; - icon_state = "containment_window_h" - }, -/area/adminlevel/ert_station/weyland_station) "zT" = ( /obj/structure/window/reinforced/toughened, /obj/structure/closet/crate/ammo, /turf/open/floor/corsat/browncorner/north, /area/adminlevel/ert_station/weyland_station) +"Ab" = ( +/turf/closed/wall/almayer/research/containment/wall/south, +/area/adminlevel/ert_station/weyland_station) +"Af" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/obj/structure/machinery/light/double{ + dir = 1 + }, +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/rad{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/corsat/greencorner/east, +/area/adminlevel/ert_station/weyland_station) "Ai" = ( /obj/item/device/defibrillator/upgraded, /obj/structure/surface/table/reinforced/almayer_B, @@ -1689,6 +1634,18 @@ }, /turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) +"Az" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/recharger, +/obj/item/storage/box/masks{ + pixel_x = 7 + }, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/corsat/green/north, +/area/adminlevel/ert_station/weyland_station) "AA" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, /turf/open/floor/corsat/squares, @@ -1716,12 +1673,6 @@ }, /turf/open/floor/corsat/blue, /area/adminlevel/ert_station/weyland_station) -"AQ" = ( -/obj/structure/machinery/optable{ - name = "Autopsy Table" - }, -/turf/open/floor/corsat/green, -/area/adminlevel/ert_station/weyland_station) "AR" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -1866,23 +1817,23 @@ }, /turf/open/floor/corsat/red/northwest, /area/adminlevel/ert_station/weyland_station) +"CN" = ( +/obj/structure/machinery/cryopod/no_store/right, +/turf/open/floor/corsat/cargo, +/area/adminlevel/ert_station/weyland_station) "CU" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) -"CW" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 4 - }, -/area/adminlevel/ert_station/weyland_station) "De" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 }, /turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"Dk" = ( -/turf/closed/wall/almayer/research/containment/wall/west, +"Dh" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "Dn" = ( /turf/open/floor/corsat/green/north, @@ -1926,6 +1877,11 @@ }, /turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) +"DM" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 1 + }, +/area/adminlevel/ert_station/weyland_station) "DO" = ( /obj/structure/showcase{ icon_state = "relay"; @@ -1933,10 +1889,6 @@ }, /turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"DS" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/corsat/green/east, -/area/adminlevel/ert_station/weyland_station) "DT" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/folder/black, @@ -1947,6 +1899,24 @@ "DZ" = ( /turf/open/floor/corsat/browncorner, /area/adminlevel/ert_station/weyland_station) +"Ea" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Containment Cell WY"; + name = "Control Panel"; + pixel_x = -15; + req_access_txt = "200" + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 8 + }, +/obj/item/restraint/adjustable/cable/red{ + pixel_x = 5; + pixel_y = -4 + }, +/turf/open/floor/corsat/green/southwest, +/area/adminlevel/ert_station/weyland_station) "Eg" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ name = "\improper Medical & Surgery" @@ -1972,6 +1942,18 @@ }, /turf/open/floor/corsat/browncorner, /area/adminlevel/ert_station/weyland_station) +"Es" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_x = -10; + pixel_y = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/random, +/obj/item/storage/fancy/vials/random, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/green/west, +/area/adminlevel/ert_station/weyland_station) "EB" = ( /obj/structure/barricade/handrail/wire, /turf/open/floor/corsat/yellow, @@ -1979,15 +1961,6 @@ "EC" = ( /turf/open/floor/corsat/yellowcorner/east, /area/adminlevel/ert_station/weyland_station) -"ED" = ( -/obj/structure/machinery/door/poddoor/almayer/blended/white/open{ - id = "WY Bio" - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 4; - icon_state = "containment_window_h" - }, -/area/adminlevel/ert_station/weyland_station) "EG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -2019,22 +1992,7 @@ }, /turf/open/floor/corsat/brown/southeast, /area/adminlevel/ert_station/weyland_station) -"FA" = ( -/obj/structure/bed, -/obj/structure/window/reinforced/toughened{ - dir = 1; - layer = 2.9 - }, -/obj/item/bedsheet/orange, -/turf/open/floor/corsat/squares, -/area/adminlevel/ert_station/weyland_station) -"FD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/weldingtool, -/obj/item/clothing/glasses/welding, -/turf/open/floor/corsat/squares, -/area/adminlevel/ert_station/weyland_station) -"FE" = ( +"Ft" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/containment{ id = "Containment Cell WY"; name = "\improper Containment Cell" @@ -2053,12 +2011,24 @@ }, /turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/weyland_station) -"FN" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 8 +"FA" = ( +/obj/structure/bed, +/obj/structure/window/reinforced/toughened{ + dir = 1; + layer = 2.9 }, +/obj/item/bedsheet/orange, /turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) +"FD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/weldingtool, +/obj/item/clothing/glasses/welding, +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"FJ" = ( +/turf/closed/wall/almayer/research/containment/wall/east, +/area/adminlevel/ert_station/weyland_station) "FO" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -2079,6 +2049,10 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/corsat/green/east, /area/adminlevel/ert_station/weyland_station) +"Gk" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/corsat/green/east, +/area/adminlevel/ert_station/weyland_station) "Gs" = ( /obj/structure/machinery/light/double{ dir = 8; @@ -2105,6 +2079,10 @@ }, /turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) +"GE" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) "GM" = ( /obj/structure/machinery/blackbox_recorder, /turf/open/floor/corsat/blue/northwest, @@ -2141,6 +2119,11 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) +"HM" = ( +/obj/structure/closet/l3closet/virology, +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/green, +/area/adminlevel/ert_station/weyland_station) "HN" = ( /obj/structure/bed{ icon_state = "psychbed" @@ -2170,9 +2153,6 @@ }, /turf/open/floor/corsat/damaged1, /area/adminlevel/ert_station/weyland_station) -"Im" = ( -/turf/open/floor/almayer/research/containment/floor2/north, -/area/adminlevel/ert_station/weyland_station) "Iv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -2197,6 +2177,13 @@ /obj/structure/machinery/light/double, /turf/open/floor/corsat/bluecorner, /area/adminlevel/ert_station/weyland_station) +"IZ" = ( +/obj/structure/machinery/cryopod/no_store/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/corsat/cargo, +/area/adminlevel/ert_station/weyland_station) "Jc" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -2204,15 +2191,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/white/west, /area/adminlevel/ert_station/weyland_station) -"Jd" = ( -/obj/structure/morgue, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_x = -10; - pixel_y = 1 - }, -/turf/open/floor/corsat/green/west, -/area/adminlevel/ert_station/weyland_station) "Je" = ( /turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) @@ -2294,11 +2272,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"Kg" = ( -/obj/structure/closet/l3closet/virology, -/obj/structure/machinery/light/double, -/turf/open/floor/corsat/green, -/area/adminlevel/ert_station/weyland_station) "Kk" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -2321,6 +2294,11 @@ }, /turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) +"Ky" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 4 + }, +/area/adminlevel/ert_station/weyland_station) "KC" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ dir = 1; @@ -2363,13 +2341,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"KP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access = null - }, -/obj/structure/medical_supply_link, -/turf/open/floor/corsat/green/northwest, -/area/adminlevel/ert_station/weyland_station) "KW" = ( /obj/structure/window/framed/corsat/indestructible/security, /turf/open/floor/plating, @@ -2384,14 +2355,6 @@ }, /turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) -"Le" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Morgue"; - req_one_access = null; - dir = 2 - }, -/turf/open/floor/corsat/squares, -/area/adminlevel/ert_station/weyland_station) "Ls" = ( /obj/structure/machinery/light/double/blue{ dir = 8 @@ -2409,12 +2372,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"LP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/closed/wall/r_wall/biodome, -/area/adminlevel/ert_station/weyland_station) "Ma" = ( /turf/open/floor/corsat/blue/northeast, /area/adminlevel/ert_station/weyland_station) @@ -2426,11 +2383,22 @@ }, /turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) +"Mx" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/adminlevel/ert_station/weyland_station) "MA" = ( /obj/structure/bed, /obj/item/bedsheet/medical, /turf/open/floor/corsat/green/east, /area/adminlevel/ert_station/weyland_station) +"MC" = ( +/obj/structure/closet/crate/internals, +/obj/item/storage/firstaid/adv{ + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire, +/turf/open/floor/corsat/green/north, +/area/adminlevel/ert_station/weyland_station) "MP" = ( /turf/open/floor/corsat/redcorner/east, /area/adminlevel/ert_station/weyland_station) @@ -2535,26 +2503,6 @@ "Og" = ( /turf/open/floor/corsat/arrow_west, /area/adminlevel/ert_station/weyland_station) -"Oi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/monkeycubes{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_y = 4; - pixel_x = -4 - }, -/obj/item/device/camera{ - pixel_x = 7; - pixel_y = -6 - }, -/turf/open/floor/corsat/green, -/area/adminlevel/ert_station/weyland_station) "Oj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2565,10 +2513,6 @@ /obj/structure/machinery/vending/snack, /turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) -"Oo" = ( -/obj/structure/closet/coffin, -/turf/open/floor/corsat/green, -/area/adminlevel/ert_station/weyland_station) "Oq" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/gibber{ @@ -2576,6 +2520,15 @@ }, /turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) +"Or" = ( +/obj/structure/machinery/door/poddoor/almayer/blended/white/open{ + id = "WY Bio" + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 4; + icon_state = "containment_window_h" + }, +/area/adminlevel/ert_station/weyland_station) "Ot" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -2590,6 +2543,9 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) +"Ow" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/adminlevel/ert_station/weyland_station) "OD" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -2617,6 +2573,12 @@ "Pc" = ( /turf/open/floor/corsat/brown, /area/adminlevel/ert_station/weyland_station) +"Pg" = ( +/obj/structure/morgue/crematorium{ + id = "WY Cremate" + }, +/turf/open/floor/corsat/green/northeast, +/area/adminlevel/ert_station/weyland_station) "Pk" = ( /obj/structure/machinery/light/double, /obj/structure/pipes/standard/simple/hidden/green{ @@ -2624,6 +2586,20 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) +"PH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + name = "\improper Medical Storage" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "WY_aft_medbay"; + name = "\improper Aft Medbay Shutters" + }, +/turf/open/floor/corsat/marked, +/area/adminlevel/ert_station/weyland_station) +"PI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/closed/wall/r_wall/biodome, +/area/adminlevel/ert_station/weyland_station) "PL" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -2654,9 +2630,11 @@ }, /turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station/weyland_station) -"Qk" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/corsat/green/east, +"Qm" = ( +/obj/structure/machinery/optable{ + name = "Autopsy Table" + }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "Qr" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -2743,8 +2721,12 @@ /obj/structure/window/framed/corsat/cell/security, /turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"Rv" = ( -/obj/structure/window/framed/corsat/research, +"Rt" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Morgue"; + req_one_access = null; + dir = 2 + }, /turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "RB" = ( @@ -2794,6 +2776,17 @@ }, /turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) +"RY" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell WY"; + layer = 2.1; + name = "Mounted Flash"; + pixel_x = -15; + pixel_y = 30 + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/adminlevel/ert_station/weyland_station) "RZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2860,19 +2853,10 @@ "SI" = ( /turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station/weyland_station) -"SJ" = ( -/turf/closed/wall/almayer/research/containment/wall/south, -/area/adminlevel/ert_station/weyland_station) "SM" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"SO" = ( -/obj/structure/machinery/cryopod/no_store/right{ - pixel_y = 6 - }, -/turf/open/floor/corsat/cargo, -/area/adminlevel/ert_station/weyland_station) "SY" = ( /obj/structure/surface/table/reinforced, /obj/item/trash/plate{ @@ -2994,6 +2978,10 @@ "Ux" = ( /turf/open/space/basic, /area/space) +"UB" = ( +/obj/structure/closet/coffin, +/turf/open/floor/corsat/green, +/area/adminlevel/ert_station/weyland_station) "UJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -3018,6 +3006,12 @@ }, /turf/open/floor/corsat/white, /area/adminlevel/ert_station/weyland_station) +"Vo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/portadialysis, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/corsat/green/southeast, +/area/adminlevel/ert_station/weyland_station) "Vp" = ( /turf/open/floor/corsat/brown/east, /area/adminlevel/ert_station/weyland_station) @@ -3078,10 +3072,6 @@ }, /turf/open/floor/corsat/whitecorner, /area/adminlevel/ert_station/weyland_station) -"Wx" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/adminlevel/ert_station/weyland_station) "WD" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10"; @@ -3092,13 +3082,22 @@ "WE" = ( /turf/open/floor/corsat/whitetan/east, /area/adminlevel/ert_station/weyland_station) +"WK" = ( +/turf/open/floor/almayer/research/containment/corner2, +/area/adminlevel/ert_station/weyland_station) "WU" = ( /turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"WW" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 8 +"WZ" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 8 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -7 }, +/turf/open/floor/corsat/green/northeast, /area/adminlevel/ert_station/weyland_station) "Xh" = ( /obj/structure/window/reinforced/toughened{ @@ -3117,13 +3116,14 @@ /obj/item/tool/pen, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"Xn" = ( -/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" +"Xl" = ( +/obj/structure/machinery/sleep_console{ + dir = 1 }, -/turf/open/floor/corsat/green/northwest, +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"Xm" = ( +/turf/closed/wall/almayer/research/containment/wall/west, /area/adminlevel/ert_station/weyland_station) "Xo" = ( /obj/structure/machinery/vending/dinnerware, @@ -3155,6 +3155,17 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) +"XJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/kelotane{ + pixel_x = -7 + }, +/obj/item/storage/pill_bottle/tramadol, +/obj/item/storage/pill_bottle/bicaridine{ + pixel_x = 5 + }, +/turf/open/floor/corsat/green/west, +/area/adminlevel/ert_station/weyland_station) "XQ" = ( /turf/open/floor/corsat/brown/north, /area/adminlevel/ert_station/weyland_station) @@ -3166,17 +3177,6 @@ }, /turf/open/floor/corsat/brown/west, /area/adminlevel/ert_station/weyland_station) -"XX" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/kelotane{ - pixel_x = -7 - }, -/obj/item/storage/pill_bottle/tramadol, -/obj/item/storage/pill_bottle/bicaridine{ - pixel_x = 5 - }, -/turf/open/floor/corsat/green/west, -/area/adminlevel/ert_station/weyland_station) "Ya" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -3915,11 +3915,11 @@ fX fX fX fX -kx -Dk -Dk -Dk -WW +DM +Xm +Xm +Xm +vp QT "} (16,1,1) = {" @@ -3943,9 +3943,9 @@ Jk Ns fX fX -KP +uG Hc -nq +qO fX fX lh @@ -3953,15 +3953,15 @@ oQ fX fX fX -Xn -XX -jY -vN -zS -oX -kn -bF -SJ +xp +XJ +Es +Ea +aZ +RY +lR +pL +Ab QT "} (17,1,1) = {" @@ -3999,11 +3999,11 @@ Sw Dr WU Xt -ED -Im -kW -Im -SJ +Or +Ow +jn +Ow +Ab QT "} (18,1,1) = {" @@ -4041,11 +4041,11 @@ NC ZU Dr Xt -FE -ye -kW -Wx -SJ +Ft +fR +jn +pz +Ab QT "} (19,1,1) = {" @@ -4081,13 +4081,13 @@ oM Gz NC in -dU -Oi -zS -Im -kW -Im -SJ +ev +oN +aZ +Ow +jn +Ow +Ab QT "} (20,1,1) = {" @@ -4123,13 +4123,13 @@ fX MQ De RQ -dU -rO -ED -zC -kn -hO -SJ +ev +qa +Or +Mx +lR +WK +Ab QT "} (21,1,1) = {" @@ -4161,17 +4161,17 @@ Eg Dr NN al -yp +PH Dr WU al Dr -ou -CW -gS -gS -gS -dT +Dh +Ky +FJ +FJ +FJ +kI QT "} (22,1,1) = {" @@ -4208,9 +4208,9 @@ dc IQ eQ Dr -Kg -mI -LP +HM +PI +uF fX fX QT @@ -4238,7 +4238,7 @@ Dr Dr Dr Dr -ek +Xl dE kq fX @@ -4246,14 +4246,14 @@ AH Dr la fX -iP +Af pF al WU -ou +Dh fX Za -Jd +hy qL QT Ux @@ -4280,7 +4280,7 @@ Gg MA Si Gg -Qk +mm Tx fX fX @@ -4288,12 +4288,12 @@ kA Bx lI oM -iU +MC Dr al WU Xt -Rv +GE Dn Dr Xt @@ -4330,15 +4330,15 @@ UV WU Hh oM -ka -bk +Az +dh YC Dr Xt -Le +Rt Dn pF -Oo +UB dx Ux "} @@ -4374,13 +4374,13 @@ TW oM lS Gb -FN +yC Dr Xt -Rv -yP +GE +sW Dr -AQ +Qm dx Ux "} @@ -4415,14 +4415,14 @@ eQ dz fX fX -nY -DS -nb -fh +WZ +Gk +uQ +Vo fX -eX -ab -wU +Pg +gg +ga QT Ux "} @@ -4905,14 +4905,14 @@ QT QT QT QT -vX -lT -SO -vX -lT -vX -lT -SO +CN +IZ +lc +CN +IZ +CN +IZ +lc QT QT QT diff --git a/sound/effects/rock_creaking.ogg b/sound/effects/rock_creaking.ogg new file mode 100644 index 000000000000..df80df9607d1 Binary files /dev/null and b/sound/effects/rock_creaking.ogg differ diff --git a/tools/UpdatePaths/6656-no-more-open-turf-edits.txt b/tools/UpdatePaths/6656-no-more-open-turf-edits.txt deleted file mode 100644 index 9eebcd7f11d8..000000000000 --- a/tools/UpdatePaths/6656-no-more-open-turf-edits.txt +++ /dev/null @@ -1,1482 +0,0 @@ -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached1";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached1 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached12";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached12 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached13";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached13 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached14";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached14 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached15";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached15 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached16";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached16 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached17";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached17 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached18";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached18 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached19";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached19 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached2";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached2 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached20";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached20 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached3";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached3 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached4";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached4 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached6";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached6 -/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached9";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached9 -/turf/open/asphalt/cement{icon_state="cement1";dir=1;} : /turf/open/asphalt/cement/cement1/north -/turf/open/asphalt/cement{icon_state="cement1";} : /turf/open/asphalt/cement/cement1 -/turf/open/asphalt/cement{icon_state="cement12";} : /turf/open/asphalt/cement/cement12 -/turf/open/asphalt/cement{icon_state="cement13";} : /turf/open/asphalt/cement/cement13 -/turf/open/asphalt/cement{icon_state="cement14";} : /turf/open/asphalt/cement/cement14 -/turf/open/asphalt/cement{icon_state="cement15";} : /turf/open/asphalt/cement/cement15 -/turf/open/asphalt/cement{icon_state="cement2";} : /turf/open/asphalt/cement/cement2 -/turf/open/asphalt/cement{icon_state="cement3";} : /turf/open/asphalt/cement/cement3 -/turf/open/asphalt/cement{icon_state="cement4";} : /turf/open/asphalt/cement/cement4 -/turf/open/asphalt/cement{icon_state="cement7";} : /turf/open/asphalt/cement/cement7 -/turf/open/asphalt/cement{icon_state="cement9";} : /turf/open/asphalt/cement/cement9 -/turf/open/asphalt{icon_state="tile";} : /turf/open/asphalt/tile -/turf/open/desert/cave/cave_shore{dir=4;} : /turf/open/desert/cave/cave_shore/east -/turf/open/desert/cave/cave_shore{dir=5;} : /turf/open/desert/cave/cave_shore/northeast -/turf/open/desert/cave/cave_shore{dir=6;} : /turf/open/desert/cave/cave_shore/southeast -/turf/open/desert/desert_shore/desert_shore1{dir=1;} : /turf/open/desert/desert_shore/desert_shore1/north -/turf/open/desert/desert_shore/desert_shore1{dir=4;} : /turf/open/desert/desert_shore/desert_shore1/east -/turf/open/desert/desert_shore/desert_shore1{dir=8;} : /turf/open/desert/desert_shore/desert_shore1/west -/turf/open/desert/desert_shore/shore_corner1{dir=1;} : /turf/open/desert/desert_shore/shore_corner1/north -/turf/open/desert/desert_shore/shore_corner1{dir=8;} : /turf/open/desert/desert_shore/shore_corner1/west -/turf/open/desert/desert_shore/shore_corner2{dir=1;} : /turf/open/desert/desert_shore/shore_corner2/north -/turf/open/desert/desert_shore/shore_corner2{dir=4;} : /turf/open/desert/desert_shore/shore_corner2/east -/turf/open/desert/desert_shore/shore_corner2{dir=8;} : /turf/open/desert/desert_shore/shore_corner2/west -/turf/open/desert/desert_shore/shore_edge1{dir=1;} : /turf/open/desert/desert_shore/shore_edge1/north -/turf/open/desert/desert_shore/shore_edge1{dir=4;} : /turf/open/desert/desert_shore/shore_edge1/east -/turf/open/desert/desert_shore/shore_edge1{dir=8;} : /turf/open/desert/desert_shore/shore_edge1/west -/turf/open/desert/dirt{dir=10;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/southwest -/turf/open/desert/dirt{dir=1;icon_state="desert_transition_corner1";} : /turf/open/desert/dirt/desert_transition_corner1/north -/turf/open/desert/dirt{dir=1;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/north -/turf/open/desert/dirt{dir=4;icon_state="desert_transition_corner1";} : /turf/open/desert/dirt/desert_transition_corner1/east -/turf/open/desert/dirt{dir=4;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/east -/turf/open/desert/dirt{dir=5;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/northeast -/turf/open/desert/dirt{dir=6;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/southeast -/turf/open/desert/dirt{dir=8;icon_state="desert_transition_corner1";} : /turf/open/desert/dirt/desert_transition_corner1/west -/turf/open/desert/dirt{dir=8;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/west -/turf/open/desert/dirt{dir=9;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/northwest -/turf/open/desert/dirt{icon_state="desert_transition_corner1";} : /turf/open/desert/dirt/desert_transition_corner1 -/turf/open/desert/dirt{icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1 -/turf/open/desert/dirt{icon_state="dirt2";} : /turf/open/desert/dirt/dirt2 -/turf/open/desert/dirt{icon_state="rock1";} : /turf/open/desert/dirt/rock1 -/turf/open/desert/excavation/component1{dir=10;} : /turf/open/desert/excavation/component1/southwest -/turf/open/desert/excavation/component1{dir=1;} : /turf/open/desert/excavation/component1/north -/turf/open/desert/excavation/component1{dir=4;} : /turf/open/desert/excavation/component1/east -/turf/open/desert/excavation/component1{dir=5;} : /turf/open/desert/excavation/component1/northeast -/turf/open/desert/excavation/component1{dir=6;} : /turf/open/desert/excavation/component1/southeast -/turf/open/desert/excavation/component1{dir=8;} : /turf/open/desert/excavation/component1/west -/turf/open/desert/excavation/component2{dir=1;} : /turf/open/desert/excavation/component2/north -/turf/open/desert/excavation/component2{dir=4;} : /turf/open/desert/excavation/component2/east -/turf/open/desert/excavation/component2{dir=6;} : /turf/open/desert/excavation/component2/southeast -/turf/open/desert/excavation/component2{dir=8;} : /turf/open/desert/excavation/component2/west -/turf/open/desert/excavation/component3{dir=10;} : /turf/open/desert/excavation/component3/southwest -/turf/open/desert/excavation/component3{dir=1;} : /turf/open/desert/excavation/component3/north -/turf/open/desert/excavation/component3{dir=4;} : /turf/open/desert/excavation/component3/east -/turf/open/desert/excavation/component3{dir=5;} : /turf/open/desert/excavation/component3/northeast -/turf/open/desert/excavation/component3{dir=6;} : /turf/open/desert/excavation/component3/southeast -/turf/open/desert/excavation/component3{dir=8;} : /turf/open/desert/excavation/component3/west -/turf/open/desert/excavation/component4{dir=1;} : /turf/open/desert/excavation/component4/north -/turf/open/desert/excavation/component4{dir=4;} : /turf/open/desert/excavation/component4/east -/turf/open/desert/excavation/component4{dir=6;} : /turf/open/desert/excavation/component4/southeast -/turf/open/desert/excavation/component4{dir=8;} : /turf/open/desert/excavation/component4/west -/turf/open/desert/excavation/component5{dir=10;} : /turf/open/desert/excavation/component5/southwest -/turf/open/desert/excavation/component5{dir=1;} : /turf/open/desert/excavation/component5/north -/turf/open/desert/excavation/component5{dir=4;} : /turf/open/desert/excavation/component5/east -/turf/open/desert/excavation/component5{dir=5;} : /turf/open/desert/excavation/component5/northeast -/turf/open/desert/excavation/component5{dir=6;} : /turf/open/desert/excavation/component5/southeast -/turf/open/desert/excavation/component5{dir=8;} : /turf/open/desert/excavation/component5/west -/turf/open/desert/excavation/component6{dir=10;} : /turf/open/desert/excavation/component6/southwest -/turf/open/desert/excavation/component6{dir=1;} : /turf/open/desert/excavation/component6/north -/turf/open/desert/excavation/component6{dir=4;} : /turf/open/desert/excavation/component6/east -/turf/open/desert/excavation/component6{dir=5;} : /turf/open/desert/excavation/component6/northeast -/turf/open/desert/excavation/component6{dir=6;} : /turf/open/desert/excavation/component6/southeast -/turf/open/desert/excavation/component6{dir=8;} : /turf/open/desert/excavation/component6/west -/turf/open/desert/excavation/component7{dir=10;} : /turf/open/desert/excavation/component7/southwest -/turf/open/desert/excavation/component7{dir=1;} : /turf/open/desert/excavation/component7/north -/turf/open/desert/excavation/component7{dir=4;} : /turf/open/desert/excavation/component7/east -/turf/open/desert/excavation/component7{dir=5;} : /turf/open/desert/excavation/component7/northeast -/turf/open/desert/excavation/component7{dir=6;} : /turf/open/desert/excavation/component7/southeast -/turf/open/desert/excavation/component7{dir=8;} : /turf/open/desert/excavation/component7/west -/turf/open/desert/excavation/component8{dir=10;} : /turf/open/desert/excavation/component8/southwest -/turf/open/desert/excavation/component8{dir=1;} : /turf/open/desert/excavation/component8/north -/turf/open/desert/excavation/component8{dir=4;} : /turf/open/desert/excavation/component8/east -/turf/open/desert/excavation/component8{dir=5;} : /turf/open/desert/excavation/component8/northeast -/turf/open/desert/excavation/component8{dir=6;} : /turf/open/desert/excavation/component8/southeast -/turf/open/desert/excavation/component8{dir=8;} : /turf/open/desert/excavation/component8/west -/turf/open/desert/excavation/component8{dir=9;} : /turf/open/desert/excavation/component8/northwest -/turf/open/desert/excavation/component9{dir=10;} : /turf/open/desert/excavation/component9/southwest -/turf/open/desert/excavation/component9{dir=1;} : /turf/open/desert/excavation/component9/north -/turf/open/desert/excavation/component9{dir=4;} : /turf/open/desert/excavation/component9/east -/turf/open/desert/excavation/component9{dir=6;} : /turf/open/desert/excavation/component9/southeast -/turf/open/desert/excavation/component9{dir=8;} : /turf/open/desert/excavation/component9/west -/turf/open/desert/rock/deep/transition{dir=10;} : /turf/open/desert/rock/deep/transition/southwest -/turf/open/desert/rock/deep/transition{dir=1;} : /turf/open/desert/rock/deep/transition/north -/turf/open/desert/rock/deep/transition{dir=4;} : /turf/open/desert/rock/deep/transition/east -/turf/open/desert/rock/deep/transition{dir=5;} : /turf/open/desert/rock/deep/transition/northeast -/turf/open/desert/rock/deep/transition{dir=6;} : /turf/open/desert/rock/deep/transition/southeast -/turf/open/desert/rock/deep/transition{dir=8;} : /turf/open/desert/rock/deep/transition/west -/turf/open/desert/rock/deep/transition{dir=9;} : /turf/open/desert/rock/deep/transition/northwest -/turf/open/desert/rock/deep{icon_state="rock3";} : /turf/open/desert/rock/deep/rock3 -/turf/open/desert/rock/deep{icon_state="rock4";} : /turf/open/desert/rock/deep/rock4 -/turf/open/desert/rock/edge1{dir=4;} : /turf/open/desert/rock/edge1/east -/turf/open/floor/airless{dir=5;icon_state="asteroidfloor";} : /turf/open/floor/airless/asteroidfloor/northeast -/turf/open/floor/almayer/aicore/glowing/no_build{icon_state="ai_floor3";light_range=4;} : /turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range -/turf/open/floor/almayer/aicore/glowing/no_build{icon_state="ai_floor3";} : /turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3 -/turf/open/floor/almayer/aicore/no_build{dir=4;icon_state="ai_arrow";} : /turf/open/floor/almayer/aicore/no_build/ai_arrow/east -/turf/open/floor/almayer/aicore/no_build{dir=4;icon_state="ai_silver";} : /turf/open/floor/almayer/aicore/no_build/ai_silver/east -/turf/open/floor/almayer/aicore/no_build{dir=8;icon_state="ai_arrow";} : /turf/open/floor/almayer/aicore/no_build/ai_arrow/west -/turf/open/floor/almayer/aicore/no_build{dir=8;icon_state="ai_silver";} : /turf/open/floor/almayer/aicore/no_build/ai_silver/west -/turf/open/floor/almayer/aicore/no_build{icon_state="ai_arrow";} : /turf/open/floor/almayer/aicore/no_build/ai_arrow -/turf/open/floor/almayer/aicore/no_build{icon_state="ai_cargo";} : /turf/open/floor/almayer/aicore/no_build/ai_cargo -/turf/open/floor/almayer/aicore/no_build{icon_state="ai_floor2";} : /turf/open/floor/almayer/aicore/no_build/ai_floor2 -/turf/open/floor/almayer/aicore/no_build{icon_state="ai_plates";} : /turf/open/floor/almayer/aicore/no_build/ai_plates -/turf/open/floor/almayer/no_build{icon_state="ai_floors";} : /turf/open/floor/almayer/no_build/ai_floors -/turf/open/floor/almayer/no_build{icon_state="plating";} : /turf/open/floor/almayer/no_build/plating -/turf/open/floor/almayer/no_build{icon_state="test_floor4";} : /turf/open/floor/almayer/no_build/test_floor4 -/turf/open/floor/almayer/research/containment/corner_var1{dir=4;} : /turf/open/floor/almayer/research/containment/corner_var1/east -/turf/open/floor/almayer/research/containment/corner_var1{icon_state="containment_corner_variant_2";} : /turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2 -/turf/open/floor/almayer/research/containment/corner{dir=1;} : /turf/open/floor/almayer/research/containment/corner/north -/turf/open/floor/almayer/research/containment/corner{dir=4;} : /turf/open/floor/almayer/research/containment/corner/east -/turf/open/floor/almayer/research/containment/entrance{dir=8;} : /turf/open/floor/almayer/research/containment/entrance/west -/turf/open/floor/almayer/research/containment/floor2{dir=1;} : /turf/open/floor/almayer/research/containment/floor2/north -/turf/open/floor/almayer/research/containment/floor2{dir=8;} : /turf/open/floor/almayer/research/containment/floor2/west -/turf/open/floor/almayer/uscm/directional{dir=10;} : /turf/open/floor/almayer/uscm/directional/southwest -/turf/open/floor/almayer/uscm/directional{dir=1;} : /turf/open/floor/almayer/uscm/directional/north -/turf/open/floor/almayer/uscm/directional{dir=4;} : /turf/open/floor/almayer/uscm/directional/east -/turf/open/floor/almayer/uscm/directional{dir=5;} : /turf/open/floor/almayer/uscm/directional/northeast -/turf/open/floor/almayer/uscm/directional{dir=6;} : /turf/open/floor/almayer/uscm/directional/southeast -/turf/open/floor/almayer/uscm/directional{dir=8;icon_state="logo_c";} : /turf/open/floor/almayer/uscm/directional/logo_c/west -/turf/open/floor/almayer/uscm/directional{dir=8;} : /turf/open/floor/almayer/uscm/directional/west -/turf/open/floor/almayer/uscm/directional{dir=9;} : /turf/open/floor/almayer/uscm/directional/northwest -/turf/open/floor/almayer_hull{dir=10;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/southwest -/turf/open/floor/almayer_hull{dir=1;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/north -/turf/open/floor/almayer_hull{dir=4;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/east -/turf/open/floor/almayer_hull{dir=5;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/northeast -/turf/open/floor/almayer_hull{dir=6;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/southeast -/turf/open/floor/almayer_hull{dir=8;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/west -/turf/open/floor/almayer_hull{dir=9;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/northwest -/turf/open/floor/almayer_hull{icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir -/turf/open/floor/almayer{allow_construction=0;icon_state="plate";} : /turf/open/floor/almayer/no_build/plate -/turf/open/floor/almayer{allow_construction=0;} : /turf/open/floor/almayer/no_build -/turf/open/floor/almayer{desc="There's a hatch above it, presumably to allow pods to drop in.";icon_state="test_floor4";name="pod landing floor";} : /turf/open/floor/almayer/pod_landing_floor -/turf/open/floor/almayer{dir=10;icon_state="blue";} : /turf/open/floor/almayer/blue/southwest -/turf/open/floor/almayer{dir=10;icon_state="cargo";} : /turf/open/floor/almayer/cargo/southwest -/turf/open/floor/almayer{dir=10;icon_state="emerald";} : /turf/open/floor/almayer/emerald/southwest -/turf/open/floor/almayer{dir=10;icon_state="green";} : /turf/open/floor/almayer/green/southwest -/turf/open/floor/almayer{dir=10;icon_state="orange";} : /turf/open/floor/almayer/orange/southwest -/turf/open/floor/almayer{dir=10;icon_state="red";} : /turf/open/floor/almayer/red/southwest -/turf/open/floor/almayer{dir=10;icon_state="silver";} : /turf/open/floor/almayer/silver/southwest -/turf/open/floor/almayer{dir=10;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/southwest -/turf/open/floor/almayer{dir=1;icon_state="blue";} : /turf/open/floor/almayer/blue/north -/turf/open/floor/almayer{dir=1;icon_state="bluecorner";} : /turf/open/floor/almayer/bluecorner/north -/turf/open/floor/almayer{dir=1;icon_state="cargo_arrow";} : /turf/open/floor/almayer/cargo_arrow/north -/turf/open/floor/almayer{dir=1;icon_state="emerald";} : /turf/open/floor/almayer/emerald/north -/turf/open/floor/almayer{dir=1;icon_state="emeraldcorner";} : /turf/open/floor/almayer/emeraldcorner/north -/turf/open/floor/almayer{dir=1;icon_state="green";} : /turf/open/floor/almayer/green/north -/turf/open/floor/almayer{dir=1;icon_state="greencorner";} : /turf/open/floor/almayer/greencorner/north -/turf/open/floor/almayer{dir=1;icon_state="orange";} : /turf/open/floor/almayer/orange/north -/turf/open/floor/almayer{dir=1;icon_state="orangecorner";} : /turf/open/floor/almayer/orangecorner/north -/turf/open/floor/almayer{dir=1;icon_state="plating_striped";} : /turf/open/floor/almayer/plating_striped/north -/turf/open/floor/almayer{dir=1;icon_state="red";} : /turf/open/floor/almayer/red/north -/turf/open/floor/almayer{dir=1;icon_state="redcorner";} : /turf/open/floor/almayer/redcorner/north -/turf/open/floor/almayer{dir=1;icon_state="silver";} : /turf/open/floor/almayer/silver/north -/turf/open/floor/almayer{dir=1;icon_state="silvercorner";} : /turf/open/floor/almayer/silvercorner/north -/turf/open/floor/almayer{dir=1;icon_state="sterile_green_corner";} : /turf/open/floor/almayer/sterile_green_corner/north -/turf/open/floor/almayer{dir=1;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/north -/turf/open/floor/almayer{dir=1;icon_state="w-y0";} : /turf/open/floor/almayer/w_y0/north -/turf/open/floor/almayer{dir=1;icon_state="w-y1";} : /turf/open/floor/almayer/w_y1/north -/turf/open/floor/almayer{dir=1;icon_state="w-y2";} : /turf/open/floor/almayer/w_y2/north -/turf/open/floor/almayer{dir=2;icon_state="green";} : /turf/open/floor/almayer/green/south -/turf/open/floor/almayer{dir=4;icon_state="blue";} : /turf/open/floor/almayer/blue/east -/turf/open/floor/almayer{dir=4;icon_state="bluecorner";} : /turf/open/floor/almayer/bluecorner/east -/turf/open/floor/almayer{dir=4;icon_state="cargo_arrow";} : /turf/open/floor/almayer/cargo_arrow/east -/turf/open/floor/almayer{dir=4;icon_state="emerald";} : /turf/open/floor/almayer/emerald/east -/turf/open/floor/almayer{dir=4;icon_state="emeraldcorner";} : /turf/open/floor/almayer/emeraldcorner/east -/turf/open/floor/almayer{dir=4;icon_state="green";} : /turf/open/floor/almayer/green/east -/turf/open/floor/almayer{dir=4;icon_state="greencorner";} : /turf/open/floor/almayer/greencorner/east -/turf/open/floor/almayer{dir=4;icon_state="orange";} : /turf/open/floor/almayer/orange/east -/turf/open/floor/almayer{dir=4;icon_state="orangecorner";} : /turf/open/floor/almayer/orangecorner/east -/turf/open/floor/almayer{dir=4;icon_state="plating_striped";} : /turf/open/floor/almayer/plating_striped/east -/turf/open/floor/almayer{dir=4;icon_state="red";} : /turf/open/floor/almayer/red/east -/turf/open/floor/almayer{dir=4;icon_state="redcorner";} : /turf/open/floor/almayer/redcorner/east -/turf/open/floor/almayer{dir=4;icon_state="silver";} : /turf/open/floor/almayer/silver/east -/turf/open/floor/almayer{dir=4;icon_state="silvercorner";} : /turf/open/floor/almayer/silvercorner/east -/turf/open/floor/almayer{dir=4;icon_state="sterile_green_corner";} : /turf/open/floor/almayer/sterile_green_corner/east -/turf/open/floor/almayer{dir=4;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/east -/turf/open/floor/almayer{dir=5;icon_state="blue";} : /turf/open/floor/almayer/blue/northeast -/turf/open/floor/almayer{dir=5;icon_state="emerald";} : /turf/open/floor/almayer/emerald/northeast -/turf/open/floor/almayer{dir=5;icon_state="green";} : /turf/open/floor/almayer/green/northeast -/turf/open/floor/almayer{dir=5;icon_state="orange";} : /turf/open/floor/almayer/orange/northeast -/turf/open/floor/almayer{dir=5;icon_state="plating";} : /turf/open/floor/almayer/plating/northeast -/turf/open/floor/almayer{dir=5;icon_state="red";} : /turf/open/floor/almayer/red/northeast -/turf/open/floor/almayer{dir=5;icon_state="silver";} : /turf/open/floor/almayer/silver/northeast -/turf/open/floor/almayer{dir=5;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/northeast -/turf/open/floor/almayer{dir=6;icon_state="blue";} : /turf/open/floor/almayer/blue/southeast -/turf/open/floor/almayer{dir=6;icon_state="emerald";} : /turf/open/floor/almayer/emerald/southeast -/turf/open/floor/almayer{dir=6;icon_state="green";} : /turf/open/floor/almayer/green/southeast -/turf/open/floor/almayer{dir=6;icon_state="orange";} : /turf/open/floor/almayer/orange/southeast -/turf/open/floor/almayer{dir=6;icon_state="red";} : /turf/open/floor/almayer/red/southeast -/turf/open/floor/almayer{dir=6;icon_state="silver";} : /turf/open/floor/almayer/silver/southeast -/turf/open/floor/almayer{dir=6;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/southeast -/turf/open/floor/almayer{dir=8;icon_state="blue";} : /turf/open/floor/almayer/blue/west -/turf/open/floor/almayer{dir=8;icon_state="bluecorner";} : /turf/open/floor/almayer/bluecorner/west -/turf/open/floor/almayer{dir=8;icon_state="cargo_arrow";} : /turf/open/floor/almayer/cargo_arrow/west -/turf/open/floor/almayer{dir=8;icon_state="emerald";} : /turf/open/floor/almayer/emerald/west -/turf/open/floor/almayer{dir=8;icon_state="emeraldcorner";} : /turf/open/floor/almayer/emeraldcorner/west -/turf/open/floor/almayer{dir=8;icon_state="green";} : /turf/open/floor/almayer/green/west -/turf/open/floor/almayer{dir=8;icon_state="greencorner";} : /turf/open/floor/almayer/greencorner/west -/turf/open/floor/almayer{dir=8;icon_state="orange";} : /turf/open/floor/almayer/orange/west -/turf/open/floor/almayer{dir=8;icon_state="orangecorner";} : /turf/open/floor/almayer/orangecorner/west -/turf/open/floor/almayer{dir=8;icon_state="plating_striped";} : /turf/open/floor/almayer/plating_striped/west -/turf/open/floor/almayer{dir=8;icon_state="red";} : /turf/open/floor/almayer/red/west -/turf/open/floor/almayer{dir=8;icon_state="redcorner";} : /turf/open/floor/almayer/redcorner/west -/turf/open/floor/almayer{dir=8;icon_state="silver";} : /turf/open/floor/almayer/silver/west -/turf/open/floor/almayer{dir=8;icon_state="silvercorner";} : /turf/open/floor/almayer/silvercorner/west -/turf/open/floor/almayer{dir=8;icon_state="sterile_green_corner";} : /turf/open/floor/almayer/sterile_green_corner/west -/turf/open/floor/almayer{dir=8;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/west -/turf/open/floor/almayer{dir=9;icon_state="blue";} : /turf/open/floor/almayer/blue/northwest -/turf/open/floor/almayer{dir=9;icon_state="emerald";} : /turf/open/floor/almayer/emerald/northwest -/turf/open/floor/almayer{dir=9;icon_state="green";} : /turf/open/floor/almayer/green/northwest -/turf/open/floor/almayer{dir=9;icon_state="orange";} : /turf/open/floor/almayer/orange/northwest -/turf/open/floor/almayer{dir=9;icon_state="red";} : /turf/open/floor/almayer/red/northwest -/turf/open/floor/almayer{dir=9;icon_state="silver";} : /turf/open/floor/almayer/silver/northwest -/turf/open/floor/almayer{dir=9;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/northwest -/turf/open/floor/almayer{icon_state="ai_floors";} : /turf/open/floor/almayer/ai_floors -/turf/open/floor/almayer{icon_state="blue";} : /turf/open/floor/almayer/blue -/turf/open/floor/almayer{icon_state="bluecorner";} : /turf/open/floor/almayer/bluecorner -/turf/open/floor/almayer{icon_state="bluefull";} : /turf/open/floor/almayer/bluefull -/turf/open/floor/almayer{icon_state="cargo";} : /turf/open/floor/almayer/cargo -/turf/open/floor/almayer{icon_state="cargo_arrow";} : /turf/open/floor/almayer/cargo_arrow -/turf/open/floor/almayer{icon_state="dark_sterile";} : /turf/open/floor/almayer/dark_sterile -/turf/open/floor/almayer{icon_state="emerald";} : /turf/open/floor/almayer/emerald -/turf/open/floor/almayer{icon_state="emeraldcorner";} : /turf/open/floor/almayer/emeraldcorner -/turf/open/floor/almayer{icon_state="emeraldfull";} : /turf/open/floor/almayer/emeraldfull -/turf/open/floor/almayer{icon_state="floor";} : /turf/open/floor/almayer/floor -/turf/open/floor/almayer{icon_state="green";} : /turf/open/floor/almayer/green -/turf/open/floor/almayer{icon_state="greencorner";} : /turf/open/floor/almayer/greencorner -/turf/open/floor/almayer{icon_state="greenfull";} : /turf/open/floor/almayer/greenfull -/turf/open/floor/almayer{icon_state="mono";} : /turf/open/floor/almayer/mono -/turf/open/floor/almayer{icon_state="orange";} : /turf/open/floor/almayer/orange -/turf/open/floor/almayer{icon_state="orangecorner";} : /turf/open/floor/almayer/orangecorner -/turf/open/floor/almayer{icon_state="orangefull";} : /turf/open/floor/almayer/orangefull -/turf/open/floor/almayer{icon_state="plate";} : /turf/open/floor/almayer/plate -/turf/open/floor/almayer{icon_state="plating";} : /turf/open/floor/almayer/plating -/turf/open/floor/almayer{icon_state="plating_striped";} : /turf/open/floor/almayer/plating_striped -/turf/open/floor/almayer{icon_state="red";} : /turf/open/floor/almayer/red -/turf/open/floor/almayer{icon_state="redcorner";} : /turf/open/floor/almayer/redcorner -/turf/open/floor/almayer{icon_state="redfull";} : /turf/open/floor/almayer/redfull -/turf/open/floor/almayer{icon_state="silver";} : /turf/open/floor/almayer/silver -/turf/open/floor/almayer{icon_state="silvercorner";} : /turf/open/floor/almayer/silvercorner -/turf/open/floor/almayer{icon_state="silverfull";} : /turf/open/floor/almayer/silverfull -/turf/open/floor/almayer{icon_state="sterile";} : /turf/open/floor/almayer/sterile -/turf/open/floor/almayer{icon_state="sterile_green";} : /turf/open/floor/almayer/sterile_green -/turf/open/floor/almayer{icon_state="sterile_green_corner";} : /turf/open/floor/almayer/sterile_green_corner -/turf/open/floor/almayer{icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side -/turf/open/floor/almayer{icon_state="tcomms";} : /turf/open/floor/almayer/tcomms -/turf/open/floor/almayer{icon_state="test_floor4";} : /turf/open/floor/almayer/test_floor4 -/turf/open/floor/almayer{icon_state="test_floor5";} : /turf/open/floor/almayer/test_floor5 -/turf/open/floor/bluegrid{icon_state="bcircuitoff";} : /turf/open/floor/bluegrid/bcircuitoff -/turf/open/floor/bluegrid{icon_state="damaged3";} : /turf/open/floor/bluegrid/damaged3 -/turf/open/floor/bluegrid{icon_state="damaged4";} : /turf/open/floor/bluegrid/damaged4 -/turf/open/floor/bluegrid{icon_state="damaged5";} : /turf/open/floor/bluegrid/damaged5 -/turf/open/floor/carpet/edge{dir=10;} : /turf/open/floor/carpet/edge/southwest -/turf/open/floor/carpet/edge{dir=1;} : /turf/open/floor/carpet/edge/north -/turf/open/floor/carpet/edge{dir=4;} : /turf/open/floor/carpet/edge/east -/turf/open/floor/carpet/edge{dir=5;} : /turf/open/floor/carpet/edge/northeast -/turf/open/floor/carpet/edge{dir=6;} : /turf/open/floor/carpet/edge/southeast -/turf/open/floor/carpet/edge{dir=8;} : /turf/open/floor/carpet/edge/west -/turf/open/floor/carpet/edge{dir=9;} : /turf/open/floor/carpet/edge/northwest -/turf/open/floor/carpet{desc="Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft.";name="\improper carpet";} : /turf/open/floor/carpet -/turf/open/floor/carpet{icon_state="bcarpet01";} : /turf/open/floor/carpet/bcarpet01 -/turf/open/floor/carpet{icon_state="bcarpet02";} : /turf/open/floor/carpet/bcarpet02 -/turf/open/floor/carpet{icon_state="bcarpet03";} : /turf/open/floor/carpet/bcarpet03 -/turf/open/floor/carpet{icon_state="bcarpet07";} : /turf/open/floor/carpet/bcarpet07 -/turf/open/floor/carpet{icon_state="bcarpet08";} : /turf/open/floor/carpet/bcarpet08 -/turf/open/floor/carpet{icon_state="bcarpet09";} : /turf/open/floor/carpet/bcarpet09 -/turf/open/floor/carpet{name="\improper carpet";} : /turf/open/floor/carpet -/turf/open/floor/coagulation{icon_state="0,0";} : /turf/open/floor/coagulation/icon0_0 -/turf/open/floor/coagulation{icon_state="0,4";} : /turf/open/floor/coagulation/icon0_4 -/turf/open/floor/coagulation{icon_state="0,5";} : /turf/open/floor/coagulation/icon0_5 -/turf/open/floor/coagulation{icon_state="0,8";} : /turf/open/floor/coagulation/icon0_8 -/turf/open/floor/coagulation{icon_state="1,1";} : /turf/open/floor/coagulation/icon1_1 -/turf/open/floor/coagulation{icon_state="1,7";} : /turf/open/floor/coagulation/icon1_7 -/turf/open/floor/coagulation{icon_state="2,0";} : /turf/open/floor/coagulation/icon2_0 -/turf/open/floor/coagulation{icon_state="4,8";} : /turf/open/floor/coagulation/icon4_8 -/turf/open/floor/coagulation{icon_state="5,8";} : /turf/open/floor/coagulation/icon5_8 -/turf/open/floor/coagulation{icon_state="6,8";} : /turf/open/floor/coagulation/icon6_8 -/turf/open/floor/coagulation{icon_state="6,8-2";} : /turf/open/floor/coagulation/icon6_8_2 -/turf/open/floor/coagulation{icon_state="7,0";} : /turf/open/floor/coagulation/icon7_0 -/turf/open/floor/coagulation{icon_state="7,1";} : /turf/open/floor/coagulation/icon7_1 -/turf/open/floor/coagulation{icon_state="7,7";} : /turf/open/floor/coagulation/icon7_7 -/turf/open/floor/coagulation{icon_state="7,7-2";} : /turf/open/floor/coagulation/icon7_7_2 -/turf/open/floor/coagulation{icon_state="7,8";} : /turf/open/floor/coagulation/icon7_8 -/turf/open/floor/coagulation{icon_state="7,8-2";} : /turf/open/floor/coagulation/icon7_8_2 -/turf/open/floor/coagulation{icon_state="8,0";} : /turf/open/floor/coagulation/icon8_0 -/turf/open/floor/coagulation{icon_state="8,3";} : /turf/open/floor/coagulation/icon8_3 -/turf/open/floor/coagulation{icon_state="8,4";} : /turf/open/floor/coagulation/icon8_4 -/turf/open/floor/coagulation{icon_state="8,6";} : /turf/open/floor/coagulation/icon8_6 -/turf/open/floor/coagulation{icon_state="8,7";} : /turf/open/floor/coagulation/icon8_7 -/turf/open/floor/coagulation{icon_state="8,7-2";} : /turf/open/floor/coagulation/icon8_7_2 -/turf/open/floor/coagulation{icon_state="8,8";} : /turf/open/floor/coagulation/icon8_8 -/turf/open/floor/corsat{dir=10;icon_state="blue";} : /turf/open/floor/corsat/blue/southwest -/turf/open/floor/corsat{dir=10;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/southwest -/turf/open/floor/corsat{dir=10;icon_state="brown";} : /turf/open/floor/corsat/brown/southwest -/turf/open/floor/corsat{dir=10;icon_state="corsat_teleporter_static";} : /turf/open/floor/corsat/corsat_teleporter_static/southwest -/turf/open/floor/corsat{dir=10;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/southwest -/turf/open/floor/corsat{dir=10;icon_state="green";} : /turf/open/floor/corsat/green/southwest -/turf/open/floor/corsat{dir=10;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/southwest -/turf/open/floor/corsat{dir=10;icon_state="purple";} : /turf/open/floor/corsat/purple/southwest -/turf/open/floor/corsat{dir=10;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/southwest -/turf/open/floor/corsat{dir=10;icon_state="red";} : /turf/open/floor/corsat/red/southwest -/turf/open/floor/corsat{dir=10;icon_state="tcomms";} : /turf/open/floor/corsat/tcomms/southwest -/turf/open/floor/corsat{dir=10;icon_state="white";} : /turf/open/floor/corsat/white/southwest -/turf/open/floor/corsat{dir=10;icon_state="whitebluefull";} : /turf/open/floor/corsat/whitebluefull/southwest -/turf/open/floor/corsat{dir=10;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/southwest -/turf/open/floor/corsat{dir=10;icon_state="yellow";} : /turf/open/floor/corsat/yellow/southwest -/turf/open/floor/corsat{dir=1;icon_state="blue";} : /turf/open/floor/corsat/blue/north -/turf/open/floor/corsat{dir=1;icon_state="bluecorner";} : /turf/open/floor/corsat/bluecorner/north -/turf/open/floor/corsat{dir=1;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/north -/turf/open/floor/corsat{dir=1;icon_state="bluegreycorner";} : /turf/open/floor/corsat/bluegreycorner/north -/turf/open/floor/corsat{dir=1;icon_state="brown";} : /turf/open/floor/corsat/brown/north -/turf/open/floor/corsat{dir=1;icon_state="browncorner";} : /turf/open/floor/corsat/browncorner/north -/turf/open/floor/corsat{dir=1;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/north -/turf/open/floor/corsat{dir=1;icon_state="darkgreencorner";} : /turf/open/floor/corsat/darkgreencorner/north -/turf/open/floor/corsat{dir=1;icon_state="green";} : /turf/open/floor/corsat/green/north -/turf/open/floor/corsat{dir=1;icon_state="greencorner";} : /turf/open/floor/corsat/greencorner/north -/turf/open/floor/corsat{dir=1;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/north -/turf/open/floor/corsat{dir=1;icon_state="greenwhitecorner";} : /turf/open/floor/corsat/greenwhitecorner/north -/turf/open/floor/corsat{dir=1;icon_state="purple";} : /turf/open/floor/corsat/purple/north -/turf/open/floor/corsat{dir=1;icon_state="purplecorner";} : /turf/open/floor/corsat/purplecorner/north -/turf/open/floor/corsat{dir=1;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/north -/turf/open/floor/corsat{dir=1;icon_state="purplewhitecorner";} : /turf/open/floor/corsat/purplewhitecorner/north -/turf/open/floor/corsat{dir=1;icon_state="red";} : /turf/open/floor/corsat/red/north -/turf/open/floor/corsat{dir=1;icon_state="redcorner";} : /turf/open/floor/corsat/redcorner/north -/turf/open/floor/corsat{dir=1;icon_state="squareswood";} : /turf/open/floor/corsat/squareswood/north -/turf/open/floor/corsat{dir=1;icon_state="tan";} : /turf/open/floor/corsat/tan/north -/turf/open/floor/corsat{dir=1;icon_state="white";} : /turf/open/floor/corsat/white/north -/turf/open/floor/corsat{dir=1;icon_state="whitecorner";} : /turf/open/floor/corsat/whitecorner/north -/turf/open/floor/corsat{dir=1;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/north -/turf/open/floor/corsat{dir=1;icon_state="whitetancorner";} : /turf/open/floor/corsat/whitetancorner/north -/turf/open/floor/corsat{dir=1;icon_state="yellow";} : /turf/open/floor/corsat/yellow/north -/turf/open/floor/corsat{dir=1;icon_state="yellowcorner";} : /turf/open/floor/corsat/yellowcorner/north -/turf/open/floor/corsat{dir=4;icon_state="blue";} : /turf/open/floor/corsat/blue/east -/turf/open/floor/corsat{dir=4;icon_state="bluecorner";} : /turf/open/floor/corsat/bluecorner/east -/turf/open/floor/corsat{dir=4;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/east -/turf/open/floor/corsat{dir=4;icon_state="bluegreycorner";} : /turf/open/floor/corsat/bluegreycorner/east -/turf/open/floor/corsat{dir=4;icon_state="brown";} : /turf/open/floor/corsat/brown/east -/turf/open/floor/corsat{dir=4;icon_state="browncorner";} : /turf/open/floor/corsat/browncorner/east -/turf/open/floor/corsat{dir=4;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/east -/turf/open/floor/corsat{dir=4;icon_state="darkgreencorner";} : /turf/open/floor/corsat/darkgreencorner/east -/turf/open/floor/corsat{dir=4;icon_state="green";} : /turf/open/floor/corsat/green/east -/turf/open/floor/corsat{dir=4;icon_state="greencorner";} : /turf/open/floor/corsat/greencorner/east -/turf/open/floor/corsat{dir=4;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/east -/turf/open/floor/corsat{dir=4;icon_state="greenwhitecorner";} : /turf/open/floor/corsat/greenwhitecorner/east -/turf/open/floor/corsat{dir=4;icon_state="purple";} : /turf/open/floor/corsat/purple/east -/turf/open/floor/corsat{dir=4;icon_state="purplecorner";} : /turf/open/floor/corsat/purplecorner/east -/turf/open/floor/corsat{dir=4;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/east -/turf/open/floor/corsat{dir=4;icon_state="purplewhitecorner";} : /turf/open/floor/corsat/purplewhitecorner/east -/turf/open/floor/corsat{dir=4;icon_state="red";} : /turf/open/floor/corsat/red/east -/turf/open/floor/corsat{dir=4;icon_state="redcorner";} : /turf/open/floor/corsat/redcorner/east -/turf/open/floor/corsat{dir=4;icon_state="white";} : /turf/open/floor/corsat/white/east -/turf/open/floor/corsat{dir=4;icon_state="whitecorner";} : /turf/open/floor/corsat/whitecorner/east -/turf/open/floor/corsat{dir=4;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/east -/turf/open/floor/corsat{dir=4;icon_state="whitetancorner";} : /turf/open/floor/corsat/whitetancorner/east -/turf/open/floor/corsat{dir=4;icon_state="yellow";} : /turf/open/floor/corsat/yellow/east -/turf/open/floor/corsat{dir=4;icon_state="yellowcorner";} : /turf/open/floor/corsat/yellowcorner/east -/turf/open/floor/corsat{dir=5;icon_state="blue";} : /turf/open/floor/corsat/blue/northeast -/turf/open/floor/corsat{dir=5;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/northeast -/turf/open/floor/corsat{dir=5;icon_state="brown";} : /turf/open/floor/corsat/brown/northeast -/turf/open/floor/corsat{dir=5;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/northeast -/turf/open/floor/corsat{dir=5;icon_state="green";} : /turf/open/floor/corsat/green/northeast -/turf/open/floor/corsat{dir=5;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/northeast -/turf/open/floor/corsat{dir=5;icon_state="purple";} : /turf/open/floor/corsat/purple/northeast -/turf/open/floor/corsat{dir=5;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/northeast -/turf/open/floor/corsat{dir=5;icon_state="red";} : /turf/open/floor/corsat/red/northeast -/turf/open/floor/corsat{dir=5;icon_state="white";} : /turf/open/floor/corsat/white/northeast -/turf/open/floor/corsat{dir=5;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/northeast -/turf/open/floor/corsat{dir=5;icon_state="yellow";} : /turf/open/floor/corsat/yellow/northeast -/turf/open/floor/corsat{dir=6;icon_state="blue";} : /turf/open/floor/corsat/blue/southeast -/turf/open/floor/corsat{dir=6;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/southeast -/turf/open/floor/corsat{dir=6;icon_state="brown";} : /turf/open/floor/corsat/brown/southeast -/turf/open/floor/corsat{dir=6;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/southeast -/turf/open/floor/corsat{dir=6;icon_state="green";} : /turf/open/floor/corsat/green/southeast -/turf/open/floor/corsat{dir=6;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/southeast -/turf/open/floor/corsat{dir=6;icon_state="purple";} : /turf/open/floor/corsat/purple/southeast -/turf/open/floor/corsat{dir=6;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/southeast -/turf/open/floor/corsat{dir=6;icon_state="red";} : /turf/open/floor/corsat/red/southeast -/turf/open/floor/corsat{dir=6;icon_state="white";} : /turf/open/floor/corsat/white/southeast -/turf/open/floor/corsat{dir=6;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/southeast -/turf/open/floor/corsat{dir=6;icon_state="yellow";} : /turf/open/floor/corsat/yellow/southeast -/turf/open/floor/corsat{dir=8;icon_state="blue";} : /turf/open/floor/corsat/blue/west -/turf/open/floor/corsat{dir=8;icon_state="bluecorner";} : /turf/open/floor/corsat/bluecorner/west -/turf/open/floor/corsat{dir=8;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/west -/turf/open/floor/corsat{dir=8;icon_state="bluegreycorner";} : /turf/open/floor/corsat/bluegreycorner/west -/turf/open/floor/corsat{dir=8;icon_state="brown";} : /turf/open/floor/corsat/brown/west -/turf/open/floor/corsat{dir=8;icon_state="browncorner";} : /turf/open/floor/corsat/browncorner/west -/turf/open/floor/corsat{dir=8;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/west -/turf/open/floor/corsat{dir=8;icon_state="darkgreencorner";} : /turf/open/floor/corsat/darkgreencorner/west -/turf/open/floor/corsat{dir=8;icon_state="green";} : /turf/open/floor/corsat/green/west -/turf/open/floor/corsat{dir=8;icon_state="greencorner";} : /turf/open/floor/corsat/greencorner/west -/turf/open/floor/corsat{dir=8;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/west -/turf/open/floor/corsat{dir=8;icon_state="greenwhitecorner";} : /turf/open/floor/corsat/greenwhitecorner/west -/turf/open/floor/corsat{dir=8;icon_state="purple";} : /turf/open/floor/corsat/purple/west -/turf/open/floor/corsat{dir=8;icon_state="purplecorner";} : /turf/open/floor/corsat/purplecorner/west -/turf/open/floor/corsat{dir=8;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/west -/turf/open/floor/corsat{dir=8;icon_state="purplewhitecorner";} : /turf/open/floor/corsat/purplewhitecorner/west -/turf/open/floor/corsat{dir=8;icon_state="red";} : /turf/open/floor/corsat/red/west -/turf/open/floor/corsat{dir=8;icon_state="redcorner";} : /turf/open/floor/corsat/redcorner/west -/turf/open/floor/corsat{dir=8;icon_state="white";} : /turf/open/floor/corsat/white/west -/turf/open/floor/corsat{dir=8;icon_state="whitecorner";} : /turf/open/floor/corsat/whitecorner/west -/turf/open/floor/corsat{dir=8;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/west -/turf/open/floor/corsat{dir=8;icon_state="whitetancorner";} : /turf/open/floor/corsat/whitetancorner/west -/turf/open/floor/corsat{dir=8;icon_state="yellow";} : /turf/open/floor/corsat/yellow/west -/turf/open/floor/corsat{dir=8;icon_state="yellowcorner";} : /turf/open/floor/corsat/yellowcorner/west -/turf/open/floor/corsat{dir=9;icon_state="blue";} : /turf/open/floor/corsat/blue/northwest -/turf/open/floor/corsat{dir=9;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/northwest -/turf/open/floor/corsat{dir=9;icon_state="brown";} : /turf/open/floor/corsat/brown/northwest -/turf/open/floor/corsat{dir=9;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/northwest -/turf/open/floor/corsat{dir=9;icon_state="green";} : /turf/open/floor/corsat/green/northwest -/turf/open/floor/corsat{dir=9;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/northwest -/turf/open/floor/corsat{dir=9;icon_state="purple";} : /turf/open/floor/corsat/purple/northwest -/turf/open/floor/corsat{dir=9;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/northwest -/turf/open/floor/corsat{dir=9;icon_state="red";} : /turf/open/floor/corsat/red/northwest -/turf/open/floor/corsat{dir=9;icon_state="white";} : /turf/open/floor/corsat/white/northwest -/turf/open/floor/corsat{dir=9;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/northwest -/turf/open/floor/corsat{dir=9;icon_state="yellow";} : /turf/open/floor/corsat/yellow/northwest -/turf/open/floor/corsat{icon_state="arrow_east";} : /turf/open/floor/corsat/arrow_east -/turf/open/floor/corsat{icon_state="arrow_north";} : /turf/open/floor/corsat/arrow_north -/turf/open/floor/corsat{icon_state="arrow_south";} : /turf/open/floor/corsat/arrow_south -/turf/open/floor/corsat{icon_state="arrow_west";} : /turf/open/floor/corsat/arrow_west -/turf/open/floor/corsat{icon_state="blue";} : /turf/open/floor/corsat/blue -/turf/open/floor/corsat{icon_state="bluecorner";} : /turf/open/floor/corsat/bluecorner -/turf/open/floor/corsat{icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey -/turf/open/floor/corsat{icon_state="bluegreycorner";} : /turf/open/floor/corsat/bluegreycorner -/turf/open/floor/corsat{icon_state="brown";} : /turf/open/floor/corsat/brown -/turf/open/floor/corsat{icon_state="browncorner";} : /turf/open/floor/corsat/browncorner -/turf/open/floor/corsat{icon_state="cargo";} : /turf/open/floor/corsat/cargo -/turf/open/floor/corsat{icon_state="damaged1";} : /turf/open/floor/corsat/damaged1 -/turf/open/floor/corsat{icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen -/turf/open/floor/corsat{icon_state="darkgreencorner";} : /turf/open/floor/corsat/darkgreencorner -/turf/open/floor/corsat{icon_state="gamma";} : /turf/open/floor/corsat/gamma -/turf/open/floor/corsat{icon_state="green";} : /turf/open/floor/corsat/green -/turf/open/floor/corsat{icon_state="greencorner";} : /turf/open/floor/corsat/greencorner -/turf/open/floor/corsat{icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite -/turf/open/floor/corsat{icon_state="greenwhitecorner";} : /turf/open/floor/corsat/greenwhitecorner -/turf/open/floor/corsat{icon_state="lightplate";} : /turf/open/floor/corsat/lightplate -/turf/open/floor/corsat{icon_state="marked";} : /turf/open/floor/corsat/marked -/turf/open/floor/corsat{icon_state="officesquares";} : /turf/open/floor/corsat/officesquares -/turf/open/floor/corsat{icon_state="omega";} : /turf/open/floor/corsat/omega -/turf/open/floor/corsat{icon_state="plate";} : /turf/open/floor/corsat/plate -/turf/open/floor/corsat{icon_state="purple";} : /turf/open/floor/corsat/purple -/turf/open/floor/corsat{icon_state="purplecorner";} : /turf/open/floor/corsat/purplecorner -/turf/open/floor/corsat{icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite -/turf/open/floor/corsat{icon_state="purplewhitecorner";} : /turf/open/floor/corsat/purplewhitecorner -/turf/open/floor/corsat{icon_state="red";dir=10;} : /turf/open/floor/corsat/red/southwest -/turf/open/floor/corsat{icon_state="red";dir=1;} : /turf/open/floor/corsat/red/north -/turf/open/floor/corsat{icon_state="red";dir=4;} : /turf/open/floor/corsat/red/east -/turf/open/floor/corsat{icon_state="red";dir=5;} : /turf/open/floor/corsat/red/northeast -/turf/open/floor/corsat{icon_state="red";dir=6;} : /turf/open/floor/corsat/red/southeast -/turf/open/floor/corsat{icon_state="red";dir=8;} : /turf/open/floor/corsat/red/west -/turf/open/floor/corsat{icon_state="red";dir=9;} : /turf/open/floor/corsat/red/northwest -/turf/open/floor/corsat{icon_state="red";} : /turf/open/floor/corsat/red -/turf/open/floor/corsat{icon_state="redcorner";dir=1;} : /turf/open/floor/corsat/redcorner/north -/turf/open/floor/corsat{icon_state="redcorner";dir=4;} : /turf/open/floor/corsat/redcorner/east -/turf/open/floor/corsat{icon_state="redcorner";} : /turf/open/floor/corsat/redcorner -/turf/open/floor/corsat{icon_state="retrosquares";} : /turf/open/floor/corsat/retrosquares -/turf/open/floor/corsat{icon_state="retrosquareslight";} : /turf/open/floor/corsat/retrosquareslight -/turf/open/floor/corsat{icon_state="sigma";} : /turf/open/floor/corsat/sigma -/turf/open/floor/corsat{icon_state="spiralplate";} : /turf/open/floor/corsat/spiralplate -/turf/open/floor/corsat{icon_state="spiralwoodalt";} : /turf/open/floor/corsat/spiralwoodalt -/turf/open/floor/corsat{icon_state="squares";} : /turf/open/floor/corsat/squares -/turf/open/floor/corsat{icon_state="sterileplate";} : /turf/open/floor/corsat/sterileplate -/turf/open/floor/corsat{icon_state="theta";} : /turf/open/floor/corsat/theta -/turf/open/floor/corsat{icon_state="white";} : /turf/open/floor/corsat/white -/turf/open/floor/corsat{icon_state="whitecorner";} : /turf/open/floor/corsat/whitecorner -/turf/open/floor/corsat{icon_state="whitetan";} : /turf/open/floor/corsat/whitetan -/turf/open/floor/corsat{icon_state="whitetancorner";} : /turf/open/floor/corsat/whitetancorner -/turf/open/floor/corsat{icon_state="yellow";dir=1;} : /turf/open/floor/corsat/yellow/north -/turf/open/floor/corsat{icon_state="yellow";dir=4;} : /turf/open/floor/corsat/yellow/east -/turf/open/floor/corsat{icon_state="yellow";} : /turf/open/floor/corsat/yellow -/turf/open/floor/corsat{icon_state="yellowcorner";dir=4;} : /turf/open/floor/corsat/yellowcorner/east -/turf/open/floor/corsat{icon_state="yellowcorner";} : /turf/open/floor/corsat/yellowcorner -/turf/open/floor/engine{color="#AAAAAA";} : /turf/open/floor/engine/simulator_center -/turf/open/floor/filtrationside{dir=10;} : /turf/open/floor/filtrationside/southwest -/turf/open/floor/filtrationside{dir=1;} : /turf/open/floor/filtrationside/north -/turf/open/floor/filtrationside{dir=4;} : /turf/open/floor/filtrationside/east -/turf/open/floor/filtrationside{dir=5;} : /turf/open/floor/filtrationside/northeast -/turf/open/floor/filtrationside{dir=6;} : /turf/open/floor/filtrationside/southeast -/turf/open/floor/filtrationside{dir=8;} : /turf/open/floor/filtrationside/west -/turf/open/floor/filtrationside{dir=9;} : /turf/open/floor/filtrationside/northwest -/turf/open/floor/holofloor{dir=2;icon_state="cult";} : /turf/open/floor/holofloor/cult/south -/turf/open/floor/holofloor{icon_state="cult";} : /turf/open/floor/holofloor/cult -/turf/open/floor/icefloor{icon='icons/turf/shuttle.dmi';icon_state="floor6";} : /turf/open/floor/icefloor/shuttle_floor6 -/turf/open/floor/icefloor{icon='icons/turf/shuttle.dmi';icon_state="floor7";} : /turf/open/floor/icefloor/shuttle_floor7 -/turf/open/floor/icefloor{icon='icons/turf/shuttle.dmi';icon_state="vfloor";} : /turf/open/floor/icefloor/shuttle_vfloor -/turf/open/floor/icefloor{icon_state="ramptop";} : /turf/open/floor/icefloor/ramptop -/turf/open/floor/icefloor{icon_state="rockvault";} : /turf/open/floor/icefloor/rockvault -/turf/open/floor/kutjevo/colors/blue/edge{dir=4;} : /turf/open/floor/kutjevo/colors/blue/edge/east -/turf/open/floor/kutjevo/colors/blue/edge{dir=8;} : /turf/open/floor/kutjevo/colors/blue/edge/west -/turf/open/floor/kutjevo/colors/cyan/edge{dir=1;} : /turf/open/floor/kutjevo/colors/cyan/edge/north -/turf/open/floor/kutjevo/colors/cyan/edge{dir=4;} : /turf/open/floor/kutjevo/colors/cyan/edge/east -/turf/open/floor/kutjevo/colors/cyan/edge{dir=8;} : /turf/open/floor/kutjevo/colors/cyan/edge/west -/turf/open/floor/kutjevo/colors/cyan/inner_corner{dir=1;} : /turf/open/floor/kutjevo/colors/cyan/inner_corner/north -/turf/open/floor/kutjevo/colors/cyan/inner_corner{dir=4;} : /turf/open/floor/kutjevo/colors/cyan/inner_corner/east -/turf/open/floor/kutjevo/colors/cyan/inner_corner{dir=8;} : /turf/open/floor/kutjevo/colors/cyan/inner_corner/west -/turf/open/floor/kutjevo/colors/orange/edge{dir=10;} : /turf/open/floor/kutjevo/colors/orange/edge/southwest -/turf/open/floor/kutjevo/colors/orange/edge{dir=1;} : /turf/open/floor/kutjevo/colors/orange/edge/north -/turf/open/floor/kutjevo/colors/orange/edge{dir=4;} : /turf/open/floor/kutjevo/colors/orange/edge/east -/turf/open/floor/kutjevo/colors/orange/edge{dir=5;} : /turf/open/floor/kutjevo/colors/orange/edge/northeast -/turf/open/floor/kutjevo/colors/orange/edge{dir=6;} : /turf/open/floor/kutjevo/colors/orange/edge/southeast -/turf/open/floor/kutjevo/colors/orange/edge{dir=8;} : /turf/open/floor/kutjevo/colors/orange/edge/west -/turf/open/floor/kutjevo/colors/orange/edge{dir=9;} : /turf/open/floor/kutjevo/colors/orange/edge/northwest -/turf/open/floor/kutjevo/colors/orange/inner_corner{dir=1;} : /turf/open/floor/kutjevo/colors/orange/inner_corner/north -/turf/open/floor/kutjevo/colors/orange/inner_corner{dir=4;} : /turf/open/floor/kutjevo/colors/orange/inner_corner/east -/turf/open/floor/kutjevo/colors/orange/inner_corner{dir=8;} : /turf/open/floor/kutjevo/colors/orange/inner_corner/west -/turf/open/floor/kutjevo/colors/purple/edge{dir=1;} : /turf/open/floor/kutjevo/colors/purple/edge/north -/turf/open/floor/kutjevo/colors/purple/edge{dir=4;} : /turf/open/floor/kutjevo/colors/purple/edge/east -/turf/open/floor/kutjevo/colors/purple/edge{dir=5;} : /turf/open/floor/kutjevo/colors/purple/edge/northeast -/turf/open/floor/kutjevo/colors/purple/edge{dir=8;} : /turf/open/floor/kutjevo/colors/purple/edge/west -/turf/open/floor/kutjevo/colors/purple/inner_corner{dir=1;} : /turf/open/floor/kutjevo/colors/purple/inner_corner/north -/turf/open/floor/kutjevo/colors/purple/inner_corner{dir=4;} : /turf/open/floor/kutjevo/colors/purple/inner_corner/east -/turf/open/floor/kutjevo/colors/purple/inner_corner{dir=8;} : /turf/open/floor/kutjevo/colors/purple/inner_corner/west -/turf/open/floor/kutjevo/multi_tiles{dir=10;} : /turf/open/floor/kutjevo/multi_tiles/southwest -/turf/open/floor/kutjevo/multi_tiles{dir=1;} : /turf/open/floor/kutjevo/multi_tiles/north -/turf/open/floor/kutjevo/multi_tiles{dir=4;} : /turf/open/floor/kutjevo/multi_tiles/east -/turf/open/floor/kutjevo/multi_tiles{dir=6;} : /turf/open/floor/kutjevo/multi_tiles/southeast -/turf/open/floor/kutjevo/multi_tiles{dir=8;} : /turf/open/floor/kutjevo/multi_tiles/west -/turf/open/floor/kutjevo/tan/alt_edge{dir=10;} : /turf/open/floor/kutjevo/tan/alt_edge/southwest -/turf/open/floor/kutjevo/tan/alt_edge{dir=1;} : /turf/open/floor/kutjevo/tan/alt_edge/north -/turf/open/floor/kutjevo/tan/alt_edge{dir=4;} : /turf/open/floor/kutjevo/tan/alt_edge/east -/turf/open/floor/kutjevo/tan/alt_edge{dir=5;} : /turf/open/floor/kutjevo/tan/alt_edge/northeast -/turf/open/floor/kutjevo/tan/alt_edge{dir=6;} : /turf/open/floor/kutjevo/tan/alt_edge/southeast -/turf/open/floor/kutjevo/tan/alt_edge{dir=8;} : /turf/open/floor/kutjevo/tan/alt_edge/west -/turf/open/floor/kutjevo/tan/alt_edge{dir=9;} : /turf/open/floor/kutjevo/tan/alt_edge/northwest -/turf/open/floor/kutjevo/tan/alt_inner_edge{dir=1;} : /turf/open/floor/kutjevo/tan/alt_inner_edge/north -/turf/open/floor/kutjevo/tan/alt_inner_edge{dir=4;} : /turf/open/floor/kutjevo/tan/alt_inner_edge/east -/turf/open/floor/kutjevo/tan/alt_inner_edge{dir=8;} : /turf/open/floor/kutjevo/tan/alt_inner_edge/west -/turf/open/floor/kutjevo/tan/grey_edge{dir=10;} : /turf/open/floor/kutjevo/tan/grey_edge/southwest -/turf/open/floor/kutjevo/tan/grey_edge{dir=1;} : /turf/open/floor/kutjevo/tan/grey_edge/north -/turf/open/floor/kutjevo/tan/grey_edge{dir=4;} : /turf/open/floor/kutjevo/tan/grey_edge/east -/turf/open/floor/kutjevo/tan/grey_edge{dir=5;} : /turf/open/floor/kutjevo/tan/grey_edge/northeast -/turf/open/floor/kutjevo/tan/grey_edge{dir=6;} : /turf/open/floor/kutjevo/tan/grey_edge/southeast -/turf/open/floor/kutjevo/tan/grey_edge{dir=8;} : /turf/open/floor/kutjevo/tan/grey_edge/west -/turf/open/floor/kutjevo/tan/grey_edge{dir=9;} : /turf/open/floor/kutjevo/tan/grey_edge/northwest -/turf/open/floor/kutjevo/tan/grey_inner_edge{dir=1;} : /turf/open/floor/kutjevo/tan/grey_inner_edge/north -/turf/open/floor/kutjevo/tan/grey_inner_edge{dir=4;} : /turf/open/floor/kutjevo/tan/grey_inner_edge/east -/turf/open/floor/kutjevo/tan/grey_inner_edge{dir=8;} : /turf/open/floor/kutjevo/tan/grey_inner_edge/west -/turf/open/floor/kutjevo/tan/multi_tiles{dir=1;} : /turf/open/floor/kutjevo/tan/multi_tiles/north -/turf/open/floor/kutjevo/tan/multi_tiles{dir=4;} : /turf/open/floor/kutjevo/tan/multi_tiles/east -/turf/open/floor/kutjevo/tan/multi_tiles{dir=6;} : /turf/open/floor/kutjevo/tan/multi_tiles/southeast -/turf/open/floor/kutjevo/tan/multi_tiles{dir=8;} : /turf/open/floor/kutjevo/tan/multi_tiles/west -/turf/open/floor/mech_bay_recharge_floor{name="Shuttle Landing Lights";} : /turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights -/turf/open/floor/plating/almayer{allow_construction=0;} : /turf/open/floor/plating/almayer/no_build -/turf/open/floor/plating/icefloor{dir=10;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/southwest -/turf/open/floor/plating/icefloor{dir=1;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/north -/turf/open/floor/plating/icefloor{dir=4;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/east -/turf/open/floor/plating/icefloor{dir=5;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/northeast -/turf/open/floor/plating/icefloor{dir=6;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/southeast -/turf/open/floor/plating/icefloor{dir=8;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/west -/turf/open/floor/plating/icefloor{dir=9;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/northwest -/turf/open/floor/plating/icefloor{icon_state="asteroidplating";} : /turf/open/floor/plating/icefloor/asteroidplating -/turf/open/floor/plating/icefloor{icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate -/turf/open/floor/plating/kutjevo{icon_state="panelscorched";} : /turf/open/floor/plating/kutjevo/panelscorched -/turf/open/floor/plating/kutjevo{icon_state="platingdmg1";} : /turf/open/floor/plating/kutjevo/platingdmg1 -/turf/open/floor/plating/kutjevo{icon_state="platingdmg3";} : /turf/open/floor/plating/kutjevo/platingdmg3 -/turf/open/floor/plating{burnt=1;dir=8;icon_state="platingdmg3";} : /turf/open/floor/plating/burnt_platingdmg3/west -/turf/open/floor/plating{dir=10;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/southwest -/turf/open/floor/plating{dir=10;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/southwest -/turf/open/floor/plating{dir=1;icon_state="asteroidfloor";} : /turf/open/floor/plating/asteroidfloor/north -/turf/open/floor/plating{dir=1;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/north -/turf/open/floor/plating{dir=1;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/north -/turf/open/floor/plating{dir=1;icon_state="warnplatecorner";} : /turf/open/floor/plating/warnplatecorner/north -/turf/open/floor/plating{dir=4;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/east -/turf/open/floor/plating{dir=4;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/east -/turf/open/floor/plating{dir=5;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/northeast -/turf/open/floor/plating{dir=5;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/northeast -/turf/open/floor/plating{dir=6;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/southeast -/turf/open/floor/plating{dir=6;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/southeast -/turf/open/floor/plating{dir=8;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/west -/turf/open/floor/plating{dir=8;icon_state="platingdmg2";} : /turf/open/floor/plating/platingdmg2/west -/turf/open/floor/plating{dir=8;icon_state="platingdmg3";} : /turf/open/floor/plating/platingdmg3/west -/turf/open/floor/plating{dir=8;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/west -/turf/open/floor/plating{dir=9;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/northwest -/turf/open/floor/plating{dir=9;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/northwest -/turf/open/floor/plating{icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning -/turf/open/floor/plating{icon_state="panelscorched";} : /turf/open/floor/plating/panelscorched -/turf/open/floor/plating{icon_state="platebot";} : /turf/open/floor/plating/platebot -/turf/open/floor/plating{icon_state="platebotc";} : /turf/open/floor/plating/platebotc -/turf/open/floor/plating{icon_state="platingdmg1";} : /turf/open/floor/plating/platingdmg1 -/turf/open/floor/plating{icon_state="platingdmg2";} : /turf/open/floor/plating/platingdmg2 -/turf/open/floor/plating{icon_state="platingdmg3";} : /turf/open/floor/plating/platingdmg3 -/turf/open/floor/plating{icon_state="warnplate";} : /turf/open/floor/plating/warnplate -/turf/open/floor/plating{icon_state="wood";} : /turf/open/floor/plating/wood -/turf/open/floor/plating{icon_state="wood-broken2";} : /turf/open/floor/plating/wood_broken2 -/turf/open/floor/plating{icon_state="wood-broken3";} : /turf/open/floor/plating/wood_broken3 -/turf/open/floor/plating{icon_state="wood-broken4";} : /turf/open/floor/plating/wood_broken4 -/turf/open/floor/plating{icon_state="wood-broken5";} : /turf/open/floor/plating/wood_broken5 -/turf/open/floor/plating{icon_state="wood-broken6";} : /turf/open/floor/plating/wood_broken6 -/turf/open/floor/prison/chapel_carpet{dir=1;icon_state="doubleside";} : /turf/open/floor/prison/chapel_carpet/doubleside/north -/turf/open/floor/prison/chapel_carpet{icon_state="doubleside";} : /turf/open/floor/prison/chapel_carpet/doubleside -/turf/open/floor/prison{dir=10;icon_state="blue";} : /turf/open/floor/prison/blue/southwest -/turf/open/floor/prison{dir=10;icon_state="bright_clean";} : /turf/open/floor/prison/bright_clean/southwest -/turf/open/floor/prison{dir=10;icon_state="bright_clean2";} : /turf/open/floor/prison/bright_clean2/southwest -/turf/open/floor/prison{dir=10;icon_state="bright_clean_marked";} : /turf/open/floor/prison/bright_clean_marked/southwest -/turf/open/floor/prison{dir=10;icon_state="damaged1";} : /turf/open/floor/prison/damaged1/southwest -/turf/open/floor/prison{dir=10;icon_state="damaged2";} : /turf/open/floor/prison/damaged2/southwest -/turf/open/floor/prison{dir=10;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/southwest -/turf/open/floor/prison{dir=10;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/southwest -/turf/open/floor/prison{dir=10;icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2/southwest -/turf/open/floor/prison{dir=10;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/southwest -/turf/open/floor/prison{dir=10;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/southwest -/turf/open/floor/prison{dir=10;icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2/southwest -/turf/open/floor/prison{dir=10;icon_state="darkredfull2";} : /turf/open/floor/prison/darkredfull2/southwest -/turf/open/floor/prison{dir=10;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/southwest -/turf/open/floor/prison{dir=10;icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2/southwest -/turf/open/floor/prison{dir=10;icon_state="floor_marked";} : /turf/open/floor/prison/floor_marked/southwest -/turf/open/floor/prison{dir=10;icon_state="floor_plate";} : /turf/open/floor/prison/floor_plate/southwest -/turf/open/floor/prison{dir=10;icon_state="green";} : /turf/open/floor/prison/green/southwest -/turf/open/floor/prison{dir=10;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/southwest -/turf/open/floor/prison{dir=10;icon_state="kitchen";} : /turf/open/floor/prison/kitchen/southwest -/turf/open/floor/prison{dir=10;icon_state="red";} : /turf/open/floor/prison/red/southwest -/turf/open/floor/prison{dir=10;icon_state="sterile_white";} : /turf/open/floor/prison/sterile_white/southwest -/turf/open/floor/prison{dir=10;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/southwest -/turf/open/floor/prison{dir=10;icon_state="whitegreenfull";} : /turf/open/floor/prison/whitegreenfull/southwest -/turf/open/floor/prison{dir=10;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/southwest -/turf/open/floor/prison{dir=10;icon_state="whitered";} : /turf/open/floor/prison/whitered/southwest -/turf/open/floor/prison{dir=10;icon_state="yellow";} : /turf/open/floor/prison/yellow/southwest -/turf/open/floor/prison{dir=10;icon_state="yellowfull";} : /turf/open/floor/prison/yellowfull/southwest -/turf/open/floor/prison{dir=10;} : /turf/open/floor/prison/southwest -/turf/open/floor/prison{dir=1;icon_state="blue";} : /turf/open/floor/prison/blue/north -/turf/open/floor/prison{dir=1;icon_state="blue_plate";} : /turf/open/floor/prison/blue_plate/north -/turf/open/floor/prison{dir=1;icon_state="bluecorner";} : /turf/open/floor/prison/bluecorner/north -/turf/open/floor/prison{dir=1;icon_state="cell_stripe";} : /turf/open/floor/prison/cell_stripe/north -/turf/open/floor/prison{dir=1;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/north -/turf/open/floor/prison{dir=1;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/north -/turf/open/floor/prison{dir=1;icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2/north -/turf/open/floor/prison{dir=1;icon_state="darkbrowncorners3";} : /turf/open/floor/prison/darkbrowncorners3/north -/turf/open/floor/prison{dir=1;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/north -/turf/open/floor/prison{dir=1;icon_state="darkpurplecorners2";} : /turf/open/floor/prison/darkpurplecorners2/north -/turf/open/floor/prison{dir=1;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/north -/turf/open/floor/prison{dir=1;icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2/north -/turf/open/floor/prison{dir=1;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/north -/turf/open/floor/prison{dir=1;icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2/north -/turf/open/floor/prison{dir=1;icon_state="green";} : /turf/open/floor/prison/green/north -/turf/open/floor/prison{dir=1;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/north -/turf/open/floor/prison{dir=1;icon_state="greenbluecorner";} : /turf/open/floor/prison/greenbluecorner/north -/turf/open/floor/prison{dir=1;icon_state="greencorner";} : /turf/open/floor/prison/greencorner/north -/turf/open/floor/prison{dir=1;icon_state="rampbottom";} : /turf/open/floor/prison/rampbottom/north -/turf/open/floor/prison{dir=1;icon_state="red";} : /turf/open/floor/prison/red/north -/turf/open/floor/prison{dir=1;icon_state="redcorner";} : /turf/open/floor/prison/redcorner/north -/turf/open/floor/prison{dir=1;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/north -/turf/open/floor/prison{dir=1;icon_state="whitegreencorner";} : /turf/open/floor/prison/whitegreencorner/north -/turf/open/floor/prison{dir=1;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/north -/turf/open/floor/prison{dir=1;icon_state="whitepurplecorner";} : /turf/open/floor/prison/whitepurplecorner/north -/turf/open/floor/prison{dir=1;icon_state="whitered";} : /turf/open/floor/prison/whitered/north -/turf/open/floor/prison{dir=1;icon_state="yellow";} : /turf/open/floor/prison/yellow/north -/turf/open/floor/prison{dir=1;icon_state="yellowcorner";} : /turf/open/floor/prison/yellowcorner/north -/turf/open/floor/prison{dir=2;icon_state="sterile_white";} : /turf/open/floor/prison/sterile_white/south -/turf/open/floor/prison{dir=4;icon_state="blue";} : /turf/open/floor/prison/blue/east -/turf/open/floor/prison{dir=4;icon_state="blue_plate";} : /turf/open/floor/prison/blue_plate/east -/turf/open/floor/prison{dir=4;icon_state="bluecorner";} : /turf/open/floor/prison/bluecorner/east -/turf/open/floor/prison{dir=4;icon_state="cell_stripe";} : /turf/open/floor/prison/cell_stripe/east -/turf/open/floor/prison{dir=4;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/east -/turf/open/floor/prison{dir=4;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/east -/turf/open/floor/prison{dir=4;icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2/east -/turf/open/floor/prison{dir=4;icon_state="darkbrowncorners3";} : /turf/open/floor/prison/darkbrowncorners3/east -/turf/open/floor/prison{dir=4;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/east -/turf/open/floor/prison{dir=4;icon_state="darkpurplecorners2";} : /turf/open/floor/prison/darkpurplecorners2/east -/turf/open/floor/prison{dir=4;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/east -/turf/open/floor/prison{dir=4;icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2/east -/turf/open/floor/prison{dir=4;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/east -/turf/open/floor/prison{dir=4;icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2/east -/turf/open/floor/prison{dir=4;icon_state="darkyellowfull2";} : /turf/open/floor/prison/darkyellowfull2/east -/turf/open/floor/prison{dir=4;icon_state="green";} : /turf/open/floor/prison/green/east -/turf/open/floor/prison{dir=4;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/east -/turf/open/floor/prison{dir=4;icon_state="greenbluecorner";} : /turf/open/floor/prison/greenbluecorner/east -/turf/open/floor/prison{dir=4;icon_state="greencorner";} : /turf/open/floor/prison/greencorner/east -/turf/open/floor/prison{dir=4;icon_state="greenfull";} : /turf/open/floor/prison/greenfull/east -/turf/open/floor/prison{dir=4;icon_state="rampbottom";} : /turf/open/floor/prison/rampbottom/east -/turf/open/floor/prison{dir=4;icon_state="red";} : /turf/open/floor/prison/red/east -/turf/open/floor/prison{dir=4;icon_state="redcorner";} : /turf/open/floor/prison/redcorner/east -/turf/open/floor/prison{dir=4;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/east -/turf/open/floor/prison{dir=4;icon_state="whitegreencorner";} : /turf/open/floor/prison/whitegreencorner/east -/turf/open/floor/prison{dir=4;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/east -/turf/open/floor/prison{dir=4;icon_state="whitepurplecorner";} : /turf/open/floor/prison/whitepurplecorner/east -/turf/open/floor/prison{dir=4;icon_state="whitered";} : /turf/open/floor/prison/whitered/east -/turf/open/floor/prison{dir=4;icon_state="whiteredcorner";} : /turf/open/floor/prison/whiteredcorner/east -/turf/open/floor/prison{dir=4;icon_state="yellow";} : /turf/open/floor/prison/yellow/east -/turf/open/floor/prison{dir=4;icon_state="yellowcorner";} : /turf/open/floor/prison/yellowcorner/east -/turf/open/floor/prison{dir=5;icon_state="blue";} : /turf/open/floor/prison/blue/northeast -/turf/open/floor/prison{dir=5;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/northeast -/turf/open/floor/prison{dir=5;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/northeast -/turf/open/floor/prison{dir=5;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/northeast -/turf/open/floor/prison{dir=5;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/northeast -/turf/open/floor/prison{dir=5;icon_state="green";} : /turf/open/floor/prison/green/northeast -/turf/open/floor/prison{dir=5;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/northeast -/turf/open/floor/prison{dir=5;icon_state="red";} : /turf/open/floor/prison/red/northeast -/turf/open/floor/prison{dir=5;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/northeast -/turf/open/floor/prison{dir=5;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/northeast -/turf/open/floor/prison{dir=5;icon_state="whitered";} : /turf/open/floor/prison/whitered/northeast -/turf/open/floor/prison{dir=5;icon_state="yellow";} : /turf/open/floor/prison/yellow/northeast -/turf/open/floor/prison{dir=6;icon_state="blue";} : /turf/open/floor/prison/blue/southeast -/turf/open/floor/prison{dir=6;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/southeast -/turf/open/floor/prison{dir=6;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/southeast -/turf/open/floor/prison{dir=6;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/southeast -/turf/open/floor/prison{dir=6;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/southeast -/turf/open/floor/prison{dir=6;icon_state="green";} : /turf/open/floor/prison/green/southeast -/turf/open/floor/prison{dir=6;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/southeast -/turf/open/floor/prison{dir=6;icon_state="red";} : /turf/open/floor/prison/red/southeast -/turf/open/floor/prison{dir=6;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/southeast -/turf/open/floor/prison{dir=6;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/southeast -/turf/open/floor/prison{dir=6;icon_state="whitered";} : /turf/open/floor/prison/whitered/southeast -/turf/open/floor/prison{dir=6;icon_state="yellow";} : /turf/open/floor/prison/yellow/southeast -/turf/open/floor/prison{dir=8;icon_state="blue";} : /turf/open/floor/prison/blue/west -/turf/open/floor/prison{dir=8;icon_state="blue_plate";} : /turf/open/floor/prison/blue_plate/west -/turf/open/floor/prison{dir=8;icon_state="bluecorner";} : /turf/open/floor/prison/bluecorner/west -/turf/open/floor/prison{dir=8;icon_state="bluefull";} : /turf/open/floor/prison/bluefull/west -/turf/open/floor/prison{dir=8;icon_state="cell_stripe";} : /turf/open/floor/prison/cell_stripe/west -/turf/open/floor/prison{dir=8;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/west -/turf/open/floor/prison{dir=8;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/west -/turf/open/floor/prison{dir=8;icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2/west -/turf/open/floor/prison{dir=8;icon_state="darkbrowncorners3";} : /turf/open/floor/prison/darkbrowncorners3/west -/turf/open/floor/prison{dir=8;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/west -/turf/open/floor/prison{dir=8;icon_state="darkpurplecorners2";} : /turf/open/floor/prison/darkpurplecorners2/west -/turf/open/floor/prison{dir=8;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/west -/turf/open/floor/prison{dir=8;icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2/west -/turf/open/floor/prison{dir=8;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/west -/turf/open/floor/prison{dir=8;icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2/west -/turf/open/floor/prison{dir=8;icon_state="floor_marked";} : /turf/open/floor/prison/floor_marked/west -/turf/open/floor/prison{dir=8;icon_state="green";} : /turf/open/floor/prison/green/west -/turf/open/floor/prison{dir=8;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/west -/turf/open/floor/prison{dir=8;icon_state="greenbluecorner";} : /turf/open/floor/prison/greenbluecorner/west -/turf/open/floor/prison{dir=8;icon_state="greencorner";} : /turf/open/floor/prison/greencorner/west -/turf/open/floor/prison{dir=8;icon_state="rampbottom";} : /turf/open/floor/prison/rampbottom/west -/turf/open/floor/prison{dir=8;icon_state="red";} : /turf/open/floor/prison/red/west -/turf/open/floor/prison{dir=8;icon_state="redcorner";} : /turf/open/floor/prison/redcorner/west -/turf/open/floor/prison{dir=8;icon_state="sterile_white";} : /turf/open/floor/prison/sterile_white/west -/turf/open/floor/prison{dir=8;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/west -/turf/open/floor/prison{dir=8;icon_state="whitegreencorner";} : /turf/open/floor/prison/whitegreencorner/west -/turf/open/floor/prison{dir=8;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/west -/turf/open/floor/prison{dir=8;icon_state="whitepurplecorner";} : /turf/open/floor/prison/whitepurplecorner/west -/turf/open/floor/prison{dir=8;icon_state="whitered";} : /turf/open/floor/prison/whitered/west -/turf/open/floor/prison{dir=8;icon_state="whiteredcorner";} : /turf/open/floor/prison/whiteredcorner/west -/turf/open/floor/prison{dir=8;icon_state="yellow";} : /turf/open/floor/prison/yellow/west -/turf/open/floor/prison{dir=8;icon_state="yellowcorner";} : /turf/open/floor/prison/yellowcorner/west -/turf/open/floor/prison{dir=8;} : /turf/open/floor/prison/west -/turf/open/floor/prison{dir=9;icon_state="blue";} : /turf/open/floor/prison/blue/northwest -/turf/open/floor/prison{dir=9;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/northwest -/turf/open/floor/prison{dir=9;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/northwest -/turf/open/floor/prison{dir=9;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/northwest -/turf/open/floor/prison{dir=9;icon_state="darkpurplefull2";} : /turf/open/floor/prison/darkpurplefull2/northwest -/turf/open/floor/prison{dir=9;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/northwest -/turf/open/floor/prison{dir=9;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/northwest -/turf/open/floor/prison{dir=9;icon_state="green";} : /turf/open/floor/prison/green/northwest -/turf/open/floor/prison{dir=9;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/northwest -/turf/open/floor/prison{dir=9;icon_state="greenfull";} : /turf/open/floor/prison/greenfull/northwest -/turf/open/floor/prison{dir=9;icon_state="red";} : /turf/open/floor/prison/red/northwest -/turf/open/floor/prison{dir=9;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/northwest -/turf/open/floor/prison{dir=9;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/northwest -/turf/open/floor/prison{dir=9;icon_state="whitered";} : /turf/open/floor/prison/whitered/northwest -/turf/open/floor/prison{dir=9;icon_state="yellow";} : /turf/open/floor/prison/yellow/northwest -/turf/open/floor/prison{icon_state="blue";} : /turf/open/floor/prison/blue -/turf/open/floor/prison{icon_state="blue_plate";} : /turf/open/floor/prison/blue_plate -/turf/open/floor/prison{icon_state="bluecorner";} : /turf/open/floor/prison/bluecorner -/turf/open/floor/prison{icon_state="bluefull";} : /turf/open/floor/prison/bluefull -/turf/open/floor/prison{icon_state="bright_clean2";} : /turf/open/floor/prison/bright_clean2 -/turf/open/floor/prison{icon_state="bright_clean_marked";} : /turf/open/floor/prison/bright_clean_marked -/turf/open/floor/prison{icon_state="cell_stripe";} : /turf/open/floor/prison/cell_stripe -/turf/open/floor/prison{icon_state="damaged2";} : /turf/open/floor/prison/damaged2 -/turf/open/floor/prison{icon_state="damaged3";} : /turf/open/floor/prison/damaged3 -/turf/open/floor/prison{icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2 -/turf/open/floor/prison{icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3 -/turf/open/floor/prison{icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2 -/turf/open/floor/prison{icon_state="darkbrowncorners3";} : /turf/open/floor/prison/darkbrowncorners3 -/turf/open/floor/prison{icon_state="darkbrownfull2";} : /turf/open/floor/prison/darkbrownfull2 -/turf/open/floor/prison{icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2 -/turf/open/floor/prison{icon_state="darkpurplecorners2";} : /turf/open/floor/prison/darkpurplecorners2 -/turf/open/floor/prison{icon_state="darkpurplefull2";} : /turf/open/floor/prison/darkpurplefull2 -/turf/open/floor/prison{icon_state="darkred2";} : /turf/open/floor/prison/darkred2 -/turf/open/floor/prison{icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2 -/turf/open/floor/prison{icon_state="darkredfull2";} : /turf/open/floor/prison/darkredfull2 -/turf/open/floor/prison{icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2 -/turf/open/floor/prison{icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2 -/turf/open/floor/prison{icon_state="darkyellowfull2";} : /turf/open/floor/prison/darkyellowfull2 -/turf/open/floor/prison{icon_state="floor_marked";} : /turf/open/floor/prison/floor_marked -/turf/open/floor/prison{icon_state="floor_plate";} : /turf/open/floor/prison/floor_plate -/turf/open/floor/prison{icon_state="floorscorched1";} : /turf/open/floor/prison/floorscorched1 -/turf/open/floor/prison{icon_state="floorscorched2";} : /turf/open/floor/prison/floorscorched2 -/turf/open/floor/prison{icon_state="green";} : /turf/open/floor/prison/green -/turf/open/floor/prison{icon_state="greenblue";dir=10;} : /turf/open/floor/prison/greenblue/southwest -/turf/open/floor/prison{icon_state="greenblue";dir=1;} : /turf/open/floor/prison/greenblue/north -/turf/open/floor/prison{icon_state="greenblue";dir=4;} : /turf/open/floor/prison/greenblue/east -/turf/open/floor/prison{icon_state="greenblue";dir=5;} : /turf/open/floor/prison/greenblue/northeast -/turf/open/floor/prison{icon_state="greenblue";dir=6;} : /turf/open/floor/prison/greenblue/southeast -/turf/open/floor/prison{icon_state="greenblue";dir=8;} : /turf/open/floor/prison/greenblue/west -/turf/open/floor/prison{icon_state="greenblue";dir=9;} : /turf/open/floor/prison/greenblue/northwest -/turf/open/floor/prison{icon_state="greenblue";} : /turf/open/floor/prison/greenblue -/turf/open/floor/prison{icon_state="greenbluecorner";dir=4;} : /turf/open/floor/prison/greenbluecorner/east -/turf/open/floor/prison{icon_state="greenbluecorner";} : /turf/open/floor/prison/greenbluecorner -/turf/open/floor/prison{icon_state="greencorner";} : /turf/open/floor/prison/greencorner -/turf/open/floor/prison{icon_state="greenfull";} : /turf/open/floor/prison/greenfull -/turf/open/floor/prison{icon_state="kitchen";} : /turf/open/floor/prison/kitchen -/turf/open/floor/prison{icon_state="panelscorched";} : /turf/open/floor/prison/panelscorched -/turf/open/floor/prison{icon_state="platingdmg1";} : /turf/open/floor/prison/platingdmg1 -/turf/open/floor/prison{icon_state="platingdmg2";} : /turf/open/floor/prison/platingdmg2 -/turf/open/floor/prison{icon_state="platingdmg3";} : /turf/open/floor/prison/platingdmg3 -/turf/open/floor/prison{icon_state="rampbottom";} : /turf/open/floor/prison/rampbottom -/turf/open/floor/prison{icon_state="red";dir=10;} : /turf/open/floor/prison/red/southwest -/turf/open/floor/prison{icon_state="red";dir=1;} : /turf/open/floor/prison/red/north -/turf/open/floor/prison{icon_state="red";dir=4;} : /turf/open/floor/prison/red/east -/turf/open/floor/prison{icon_state="red";dir=5;} : /turf/open/floor/prison/red/northeast -/turf/open/floor/prison{icon_state="red";dir=6;} : /turf/open/floor/prison/red/southeast -/turf/open/floor/prison{icon_state="red";dir=8;} : /turf/open/floor/prison/red/west -/turf/open/floor/prison{icon_state="red";dir=9;} : /turf/open/floor/prison/red/northwest -/turf/open/floor/prison{icon_state="red";} : /turf/open/floor/prison/red -/turf/open/floor/prison{icon_state="redcorner";dir=1;} : /turf/open/floor/prison/redcorner/north -/turf/open/floor/prison{icon_state="redcorner";dir=4;} : /turf/open/floor/prison/redcorner/east -/turf/open/floor/prison{icon_state="redcorner";} : /turf/open/floor/prison/redcorner -/turf/open/floor/prison{icon_state="redfull";} : /turf/open/floor/prison/redfull -/turf/open/floor/prison{icon_state="sterile_white";} : /turf/open/floor/prison/sterile_white -/turf/open/floor/prison{icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen -/turf/open/floor/prison{icon_state="whitegreencorner";} : /turf/open/floor/prison/whitegreencorner -/turf/open/floor/prison{icon_state="whitegreenfull";} : /turf/open/floor/prison/whitegreenfull -/turf/open/floor/prison{icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple -/turf/open/floor/prison{icon_state="whitepurplecorner";} : /turf/open/floor/prison/whitepurplecorner -/turf/open/floor/prison{icon_state="whitepurplefull";} : /turf/open/floor/prison/whitepurplefull -/turf/open/floor/prison{icon_state="whitered";} : /turf/open/floor/prison/whitered -/turf/open/floor/prison{icon_state="yellow";} : /turf/open/floor/prison/yellow -/turf/open/floor/prison{icon_state="yellowcorner";} : /turf/open/floor/prison/yellowcorner -/turf/open/floor/prison{icon_state="yellowfull";} : /turf/open/floor/prison/yellowfull -/turf/open/floor/shiva{dir=10;icon_state="blue";} : /turf/open/floor/shiva/blue/southwest -/turf/open/floor/shiva{dir=10;icon_state="green";} : /turf/open/floor/shiva/green/southwest -/turf/open/floor/shiva{dir=10;icon_state="purple";} : /turf/open/floor/shiva/purple/southwest -/turf/open/floor/shiva{dir=10;icon_state="red";} : /turf/open/floor/shiva/red/southwest -/turf/open/floor/shiva{dir=10;icon_state="wred";} : /turf/open/floor/shiva/wred/southwest -/turf/open/floor/shiva{dir=10;icon_state="yellow";} : /turf/open/floor/shiva/yellow/southwest -/turf/open/floor/shiva{dir=1;icon_state="blue";} : /turf/open/floor/shiva/blue/north -/turf/open/floor/shiva{dir=1;icon_state="green";} : /turf/open/floor/shiva/green/north -/turf/open/floor/shiva{dir=1;icon_state="greencorners";} : /turf/open/floor/shiva/greencorners/north -/turf/open/floor/shiva{dir=1;icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles/north -/turf/open/floor/shiva{dir=1;icon_state="purple";} : /turf/open/floor/shiva/purple/north -/turf/open/floor/shiva{dir=1;icon_state="purplefull";} : /turf/open/floor/shiva/purplefull/north -/turf/open/floor/shiva{dir=1;icon_state="red";} : /turf/open/floor/shiva/red/north -/turf/open/floor/shiva{dir=1;icon_state="redcorners";} : /turf/open/floor/shiva/redcorners/north -/turf/open/floor/shiva{dir=1;icon_state="snow_mat";} : /turf/open/floor/shiva/snow_mat/north -/turf/open/floor/shiva{dir=1;icon_state="wred";} : /turf/open/floor/shiva/wred/north -/turf/open/floor/shiva{dir=1;icon_state="wredcorners";} : /turf/open/floor/shiva/wredcorners/north -/turf/open/floor/shiva{dir=1;icon_state="yellow";} : /turf/open/floor/shiva/yellow/north -/turf/open/floor/shiva{dir=1;icon_state="yellowcorners";} : /turf/open/floor/shiva/yellowcorners/north -/turf/open/floor/shiva{dir=1;} : /turf/open/floor/shiva/north -/turf/open/floor/shiva{dir=4;icon_state="blue";} : /turf/open/floor/shiva/blue/east -/turf/open/floor/shiva{dir=4;icon_state="green";} : /turf/open/floor/shiva/green/east -/turf/open/floor/shiva{dir=4;icon_state="greencorners";} : /turf/open/floor/shiva/greencorners/east -/turf/open/floor/shiva{dir=4;icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles/east -/turf/open/floor/shiva{dir=4;icon_state="purple";} : /turf/open/floor/shiva/purple/east -/turf/open/floor/shiva{dir=4;icon_state="purplefull";} : /turf/open/floor/shiva/purplefull/east -/turf/open/floor/shiva{dir=4;icon_state="red";} : /turf/open/floor/shiva/red/east -/turf/open/floor/shiva{dir=4;icon_state="redcorners";} : /turf/open/floor/shiva/redcorners/east -/turf/open/floor/shiva{dir=4;icon_state="snow_mat";} : /turf/open/floor/shiva/snow_mat/east -/turf/open/floor/shiva{dir=4;icon_state="wred";} : /turf/open/floor/shiva/wred/east -/turf/open/floor/shiva{dir=4;icon_state="wredcorners";} : /turf/open/floor/shiva/wredcorners/east -/turf/open/floor/shiva{dir=4;icon_state="yellow";} : /turf/open/floor/shiva/yellow/east -/turf/open/floor/shiva{dir=4;icon_state="yellowcorners";} : /turf/open/floor/shiva/yellowcorners/east -/turf/open/floor/shiva{dir=5;icon_state="blue";} : /turf/open/floor/shiva/blue/northeast -/turf/open/floor/shiva{dir=5;icon_state="green";} : /turf/open/floor/shiva/green/northeast -/turf/open/floor/shiva{dir=5;icon_state="purple";} : /turf/open/floor/shiva/purple/northeast -/turf/open/floor/shiva{dir=5;icon_state="red";} : /turf/open/floor/shiva/red/northeast -/turf/open/floor/shiva{dir=5;icon_state="wred";} : /turf/open/floor/shiva/wred/northeast -/turf/open/floor/shiva{dir=5;icon_state="yellow";} : /turf/open/floor/shiva/yellow/northeast -/turf/open/floor/shiva{dir=6;icon_state="blue";} : /turf/open/floor/shiva/blue/southeast -/turf/open/floor/shiva{dir=6;icon_state="green";} : /turf/open/floor/shiva/green/southeast -/turf/open/floor/shiva{dir=6;icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles/southeast -/turf/open/floor/shiva{dir=6;icon_state="purple";} : /turf/open/floor/shiva/purple/southeast -/turf/open/floor/shiva{dir=6;icon_state="red";} : /turf/open/floor/shiva/red/southeast -/turf/open/floor/shiva{dir=6;icon_state="wred";} : /turf/open/floor/shiva/wred/southeast -/turf/open/floor/shiva{dir=6;icon_state="yellow";} : /turf/open/floor/shiva/yellow/southeast -/turf/open/floor/shiva{dir=8;icon_state="blue";} : /turf/open/floor/shiva/blue/west -/turf/open/floor/shiva{dir=8;icon_state="bluecorners";} : /turf/open/floor/shiva/bluecorners/west -/turf/open/floor/shiva{dir=8;icon_state="bluefull";} : /turf/open/floor/shiva/bluefull/west -/turf/open/floor/shiva{dir=8;icon_state="green";} : /turf/open/floor/shiva/green/west -/turf/open/floor/shiva{dir=8;icon_state="greencorners";} : /turf/open/floor/shiva/greencorners/west -/turf/open/floor/shiva{dir=8;icon_state="greenfull";} : /turf/open/floor/shiva/greenfull/west -/turf/open/floor/shiva{dir=8;icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles/west -/turf/open/floor/shiva{dir=8;icon_state="purple";} : /turf/open/floor/shiva/purple/west -/turf/open/floor/shiva{dir=8;icon_state="purplecorners";} : /turf/open/floor/shiva/purplecorners/west -/turf/open/floor/shiva{dir=8;icon_state="purplefull";} : /turf/open/floor/shiva/purplefull/west -/turf/open/floor/shiva{dir=8;icon_state="red";} : /turf/open/floor/shiva/red/west -/turf/open/floor/shiva{dir=8;icon_state="redcorners";} : /turf/open/floor/shiva/redcorners/west -/turf/open/floor/shiva{dir=8;icon_state="redfull";} : /turf/open/floor/shiva/redfull/west -/turf/open/floor/shiva{dir=8;icon_state="snow_mat";} : /turf/open/floor/shiva/snow_mat/west -/turf/open/floor/shiva{dir=8;icon_state="wred";} : /turf/open/floor/shiva/wred/west -/turf/open/floor/shiva{dir=8;icon_state="wredcorners";} : /turf/open/floor/shiva/wredcorners/west -/turf/open/floor/shiva{dir=8;icon_state="yellow";} : /turf/open/floor/shiva/yellow/west -/turf/open/floor/shiva{dir=8;icon_state="yellowcorners";} : /turf/open/floor/shiva/yellowcorners/west -/turf/open/floor/shiva{dir=8;icon_state="yellowfull";} : /turf/open/floor/shiva/yellowfull/west -/turf/open/floor/shiva{dir=9;icon_state="blue";} : /turf/open/floor/shiva/blue/northwest -/turf/open/floor/shiva{dir=9;icon_state="green";} : /turf/open/floor/shiva/green/northwest -/turf/open/floor/shiva{dir=9;icon_state="purple";} : /turf/open/floor/shiva/purple/northwest -/turf/open/floor/shiva{dir=9;icon_state="red";} : /turf/open/floor/shiva/red/northwest -/turf/open/floor/shiva{dir=9;icon_state="wred";} : /turf/open/floor/shiva/wred/northwest -/turf/open/floor/shiva{dir=9;icon_state="yellow";} : /turf/open/floor/shiva/yellow/northwest -/turf/open/floor/shiva{icon_state="blue";} : /turf/open/floor/shiva/blue -/turf/open/floor/shiva{icon_state="bluecorners";} : /turf/open/floor/shiva/bluecorners -/turf/open/floor/shiva{icon_state="bluefull";} : /turf/open/floor/shiva/bluefull -/turf/open/floor/shiva{icon_state="floor3";} : /turf/open/floor/shiva/floor3 -/turf/open/floor/shiva{icon_state="green";} : /turf/open/floor/shiva/green -/turf/open/floor/shiva{icon_state="greencorners";} : /turf/open/floor/shiva/greencorners -/turf/open/floor/shiva{icon_state="greenfull";} : /turf/open/floor/shiva/greenfull -/turf/open/floor/shiva{icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles -/turf/open/floor/shiva{icon_state="purple";} : /turf/open/floor/shiva/purple -/turf/open/floor/shiva{icon_state="purplecorners";} : /turf/open/floor/shiva/purplecorners -/turf/open/floor/shiva{icon_state="purplefull";} : /turf/open/floor/shiva/purplefull -/turf/open/floor/shiva{icon_state="radiator_tile";} : /turf/open/floor/shiva/radiator_tile -/turf/open/floor/shiva{icon_state="radiator_tile2";} : /turf/open/floor/shiva/radiator_tile2 -/turf/open/floor/shiva{icon_state="red";} : /turf/open/floor/shiva/red -/turf/open/floor/shiva{icon_state="redcorners";} : /turf/open/floor/shiva/redcorners -/turf/open/floor/shiva{icon_state="redfull";} : /turf/open/floor/shiva/redfull -/turf/open/floor/shiva{icon_state="snow_mat";} : /turf/open/floor/shiva/snow_mat -/turf/open/floor/shiva{icon_state="wred";} : /turf/open/floor/shiva/wred -/turf/open/floor/shiva{icon_state="wredcorners";} : /turf/open/floor/shiva/wredcorners -/turf/open/floor/shiva{icon_state="wredfull";} : /turf/open/floor/shiva/wredfull -/turf/open/floor/shiva{icon_state="yellow";} : /turf/open/floor/shiva/yellow -/turf/open/floor/shiva{icon_state="yellowcorners";} : /turf/open/floor/shiva/yellowcorners -/turf/open/floor/shiva{icon_state="yellowfull";} : /turf/open/floor/shiva/yellowfull -/turf/open/floor/strata{color="#5e5d5d";dir=10;icon_state="multi_tiles";} : /turf/open/floor/strata/grey_multi_tiles/southwest -/turf/open/floor/strata{color="#5e5d5d";icon_state="multi_tiles";} : /turf/open/floor/strata/grey_multi_tiles -/turf/open/floor/strata{desc="Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means.";icon='icons/turf/floors/floors.dmi';icon_state="wood";} : /turf/open/floor/strata/faux_wood -/turf/open/floor/strata{desc="This metal floor has been painted to look like one made of wood. Unfortunately, wood and high pressure internal atmosphere don't mix well. Wood is a major fire hazard don't'cha know.";icon='icons/turf/floors/floors.dmi';icon_state="wood";} : /turf/open/floor/strata/faux_metal -/turf/open/floor/strata{dir=10;icon_state="multi_tiles";} : /turf/open/floor/strata/multi_tiles/southwest -/turf/open/floor/strata{dir=10;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/southwest -/turf/open/floor/strata{dir=1;icon_state="blue4";} : /turf/open/floor/strata/blue4/north -/turf/open/floor/strata{dir=1;icon_state="red3";} : /turf/open/floor/strata/red3/north -/turf/open/floor/strata{dir=1;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/north -/turf/open/floor/strata{dir=1;icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4/north -/turf/open/floor/strata{dir=2;icon_state="red3";} : /turf/open/floor/strata/red3/south -/turf/open/floor/strata{dir=2;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/south -/turf/open/floor/strata{dir=2;icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4/south -/turf/open/floor/strata{dir=4;icon_state="blue3";} : /turf/open/floor/strata/blue3/east -/turf/open/floor/strata{dir=4;icon_state="cyan1";} : /turf/open/floor/strata/cyan1/east -/turf/open/floor/strata{dir=4;icon_state="cyan2";} : /turf/open/floor/strata/cyan2/east -/turf/open/floor/strata{dir=4;icon_state="cyan3";} : /turf/open/floor/strata/cyan3/east -/turf/open/floor/strata{dir=4;icon_state="cyan4";} : /turf/open/floor/strata/cyan4/east -/turf/open/floor/strata{dir=4;icon_state="floor3";} : /turf/open/floor/strata/floor3/east -/turf/open/floor/strata{dir=4;icon_state="orange_edge";} : /turf/open/floor/strata/orange_edge/east -/turf/open/floor/strata{dir=4;icon_state="red3";} : /turf/open/floor/strata/red3/east -/turf/open/floor/strata{dir=4;icon_state="white_cyan1";} : /turf/open/floor/strata/white_cyan1/east -/turf/open/floor/strata{dir=4;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/east -/turf/open/floor/strata{dir=4;icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4/east -/turf/open/floor/strata{dir=5;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/northeast -/turf/open/floor/strata{dir=6;icon_state="multi_tiles";} : /turf/open/floor/strata/multi_tiles/southeast -/turf/open/floor/strata{dir=6;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/southeast -/turf/open/floor/strata{dir=8;icon_state="blue3";} : /turf/open/floor/strata/blue3/west -/turf/open/floor/strata{dir=8;icon_state="cyan3";} : /turf/open/floor/strata/cyan3/west -/turf/open/floor/strata{dir=8;icon_state="multi_tiles";} : /turf/open/floor/strata/multi_tiles/west -/turf/open/floor/strata{dir=8;icon_state="orange_edge";} : /turf/open/floor/strata/orange_edge/west -/turf/open/floor/strata{dir=8;icon_state="red3";} : /turf/open/floor/strata/red3/west -/turf/open/floor/strata{dir=8;icon_state="white_cyan2";} : /turf/open/floor/strata/white_cyan2/west -/turf/open/floor/strata{dir=8;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/west -/turf/open/floor/strata{dir=8;icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4/west -/turf/open/floor/strata{dir=9;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/northwest -/turf/open/floor/strata{icon_state="blue1";} : /turf/open/floor/strata/blue1 -/turf/open/floor/strata{icon_state="blue3";dir=1;} : /turf/open/floor/strata/blue3/north -/turf/open/floor/strata{icon_state="blue4";} : /turf/open/floor/strata/blue4 -/turf/open/floor/strata{icon_state="damaged3";} : /turf/open/floor/strata/damaged3 -/turf/open/floor/strata{icon_state="fake_wood";} : /turf/open/floor/strata/fake_wood -/turf/open/floor/strata{icon_state="floor2";} : /turf/open/floor/strata/floor2 -/turf/open/floor/strata{icon_state="floor3";} : /turf/open/floor/strata/floor3 -/turf/open/floor/strata{icon_state="floorscorched1";} : /turf/open/floor/strata/floorscorched1 -/turf/open/floor/strata{icon_state="floorscorched2";} : /turf/open/floor/strata/floorscorched2 -/turf/open/floor/strata{icon_state="green1";} : /turf/open/floor/strata/green1 -/turf/open/floor/strata{icon_state="green3";dir=1;} : /turf/open/floor/strata/green3/north -/turf/open/floor/strata{icon_state="green3";dir=4;} : /turf/open/floor/strata/green3/east -/turf/open/floor/strata{icon_state="green3";dir=5;} : /turf/open/floor/strata/green3/northeast -/turf/open/floor/strata{icon_state="green3";dir=8;} : /turf/open/floor/strata/green3/west -/turf/open/floor/strata{icon_state="green3";dir=9;} : /turf/open/floor/strata/green3/northwest -/turf/open/floor/strata{icon_state="green3";} : /turf/open/floor/strata/green3 -/turf/open/floor/strata{icon_state="green4";dir=1;} : /turf/open/floor/strata/green4/north -/turf/open/floor/strata{icon_state="green4";dir=4;} : /turf/open/floor/strata/green4/east -/turf/open/floor/strata{icon_state="green4";dir=8;} : /turf/open/floor/strata/green4/west -/turf/open/floor/strata{icon_state="green4";} : /turf/open/floor/strata/green4 -/turf/open/floor/strata{icon_state="multi_tiles";} : /turf/open/floor/strata/multi_tiles -/turf/open/floor/strata{icon_state="orange_cover";} : /turf/open/floor/strata/orange_cover -/turf/open/floor/strata{icon_state="orange_icorner";dir=1;} : /turf/open/floor/strata/orange_icorner/north -/turf/open/floor/strata{icon_state="orange_icorner";dir=8;} : /turf/open/floor/strata/orange_icorner/west -/turf/open/floor/strata{icon_state="orange_tile";} : /turf/open/floor/strata/orange_tile -/turf/open/floor/strata{icon_state="purp1";} : /turf/open/floor/strata/purp1 -/turf/open/floor/strata{icon_state="purp2";} : /turf/open/floor/strata/purp2 -/turf/open/floor/strata{icon_state="purp3";dir=4;} : /turf/open/floor/strata/purp3/east -/turf/open/floor/strata{icon_state="red1";} : /turf/open/floor/strata/red1 -/turf/open/floor/strata{icon_state="red2";} : /turf/open/floor/strata/red2 -/turf/open/floor/strata{icon_state="red3";} : /turf/open/floor/strata/red3 -/turf/open/floor/strata{icon_state="red4";dir=1;} : /turf/open/floor/strata/red4/north -/turf/open/floor/strata{icon_state="red4";dir=4;} : /turf/open/floor/strata/red4/east -/turf/open/floor/strata{icon_state="red4";dir=8;} : /turf/open/floor/strata/red4/west -/turf/open/floor/strata{icon_state="white_cyan1";} : /turf/open/floor/strata/white_cyan1 -/turf/open/floor/strata{icon_state="white_cyan2";} : /turf/open/floor/strata/white_cyan2 -/turf/open/floor/strata{icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3 -/turf/open/floor/strata{icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4 -/turf/open/floor/tdome{dir=1;icon_state="w-y0";} : /turf/open/floor/tdome/w_y0/north -/turf/open/floor/tdome{dir=1;icon_state="w-y1";} : /turf/open/floor/tdome/w_y1/north -/turf/open/floor/tdome{dir=1;icon_state="w-y2";} : /turf/open/floor/tdome/w_y2/north -/turf/open/floor/tdome{dir=5;} : /turf/open/floor/tdome/northeast -/turf/open/floor/tdome{icon_state="bluefull";} : /turf/open/floor/tdome/bluefull -/turf/open/floor/tdome{icon_state="redfull";} : /turf/open/floor/tdome/redfull -/turf/open/floor/tdome{icon_state="tcomms";} : /turf/open/floor/tdome/tcomms -/turf/open/floor/tdome{icon_state="test_floor4";} : /turf/open/floor/tdome/test_floor4 -/turf/open/floor/wood{icon_state="wood-broken";} : /turf/open/floor/wood/wood_broken -/turf/open/floor/wood{icon_state="wood-broken2";} : /turf/open/floor/wood/wood_broken2 -/turf/open/floor/wood{icon_state="wood-broken3";} : /turf/open/floor/wood/wood_broken3 -/turf/open/floor/wood{icon_state="wood-broken4";} : /turf/open/floor/wood/wood_broken4 -/turf/open/floor/wood{icon_state="wood-broken5";} : /turf/open/floor/wood/wood_broken5 -/turf/open/floor/wood{icon_state="wood-broken6";} : /turf/open/floor/wood/wood_broken6 -/turf/open/floor/wood{icon_state="wood-broken7";} : /turf/open/floor/wood/wood_broken7 -/turf/open/floor{color="#525151";icon_state="dark2";} : /turf/open/floor/grey_dark2 -/turf/open/floor{desc="A sophisticated device that captures and converts light from the system's star into energy for the station.";icon_state="solarpanel";name="solarpanel";} : /turf/open/floor/solarpanel -/turf/open/floor{dir=10;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/southwest -/turf/open/floor{dir=10;icon_state="darkblue2";} : /turf/open/floor/darkblue2/southwest -/turf/open/floor{dir=10;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/southwest -/turf/open/floor{dir=10;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/southwest -/turf/open/floor{dir=10;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/southwest -/turf/open/floor{dir=10;icon_state="darkred2";} : /turf/open/floor/darkred2/southwest -/turf/open/floor{dir=10;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/southwest -/turf/open/floor{dir=10;icon_state="podhatch";} : /turf/open/floor/podhatch/southwest -/turf/open/floor{dir=10;icon_state="purple";} : /turf/open/floor/purple/southwest -/turf/open/floor{dir=10;icon_state="red";} : /turf/open/floor/red/southwest -/turf/open/floor{dir=10;icon_state="warning";} : /turf/open/floor/warning/southwest -/turf/open/floor{dir=10;icon_state="warnwhite";} : /turf/open/floor/warnwhite/southwest -/turf/open/floor{dir=10;icon_state="whiteblue";} : /turf/open/floor/whiteblue/southwest -/turf/open/floor{dir=10;icon_state="whitegreen";} : /turf/open/floor/whitegreen/southwest -/turf/open/floor{dir=10;icon_state="whitepurple";} : /turf/open/floor/whitepurple/southwest -/turf/open/floor{dir=10;icon_state="whitered";} : /turf/open/floor/whitered/southwest -/turf/open/floor{dir=10;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/southwest -/turf/open/floor{dir=1;icon_state="asteroidfloor";} : /turf/open/floor/asteroidfloor/north -/turf/open/floor{dir=1;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/north -/turf/open/floor{dir=1;icon_state="bot";} : /turf/open/floor/bot/north -/turf/open/floor{dir=1;icon_state="chapel";} : /turf/open/floor/chapel/north -/turf/open/floor{dir=1;icon_state="darkblue2";} : /turf/open/floor/darkblue2/north -/turf/open/floor{dir=1;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/north -/turf/open/floor{dir=1;icon_state="darkbrowncorners2";} : /turf/open/floor/darkbrowncorners2/north -/turf/open/floor{dir=1;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/north -/turf/open/floor{dir=1;icon_state="darkgreencorners2";} : /turf/open/floor/darkgreencorners2/north -/turf/open/floor{dir=1;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/north -/turf/open/floor{dir=1;icon_state="darkpurplecorners2";} : /turf/open/floor/darkpurplecorners2/north -/turf/open/floor{dir=1;icon_state="darkred2";} : /turf/open/floor/darkred2/north -/turf/open/floor{dir=1;icon_state="darkredcorners2";} : /turf/open/floor/darkredcorners2/north -/turf/open/floor{dir=1;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/north -/turf/open/floor{dir=1;icon_state="darkyellowcorners2";} : /turf/open/floor/darkyellowcorners2/north -/turf/open/floor{dir=1;icon_state="elevatorshaft";} : /turf/open/floor/elevatorshaft/north -/turf/open/floor{dir=1;icon_state="green";} : /turf/open/floor/green/north -/turf/open/floor{dir=1;icon_state="loadingarea";} : /turf/open/floor/loadingarea/north -/turf/open/floor{dir=1;icon_state="podhatch";} : /turf/open/floor/podhatch/north -/turf/open/floor{dir=1;icon_state="podhatchfloor";} : /turf/open/floor/podhatchfloor/north -/turf/open/floor{dir=1;icon_state="purple";} : /turf/open/floor/purple/north -/turf/open/floor{dir=1;icon_state="rampbottom";} : /turf/open/floor/rampbottom/north -/turf/open/floor{dir=1;icon_state="red";} : /turf/open/floor/red/north -/turf/open/floor{dir=1;icon_state="redcorner";} : /turf/open/floor/redcorner/north -/turf/open/floor{dir=1;icon_state="vault";} : /turf/open/floor/vault2/north -/turf/open/floor{dir=1;icon_state="warning";} : /turf/open/floor/warning/north -/turf/open/floor{dir=1;icon_state="warningcorner";} : /turf/open/floor/warningcorner/north -/turf/open/floor{dir=1;icon_state="warnwhite";} : /turf/open/floor/warnwhite/north -/turf/open/floor{dir=1;icon_state="whiteblue";} : /turf/open/floor/whiteblue/north -/turf/open/floor{dir=1;icon_state="whitebluecorner";} : /turf/open/floor/whitebluecorner/north -/turf/open/floor{dir=1;icon_state="whitegreen";} : /turf/open/floor/whitegreen/north -/turf/open/floor{dir=1;icon_state="whitegreencorner";} : /turf/open/floor/whitegreencorner/north -/turf/open/floor{dir=1;icon_state="whitepurple";} : /turf/open/floor/whitepurple/north -/turf/open/floor{dir=1;icon_state="whitepurplecorner";} : /turf/open/floor/whitepurplecorner/north -/turf/open/floor{dir=1;icon_state="whitered";} : /turf/open/floor/whitered/north -/turf/open/floor{dir=1;icon_state="whiteredcorner";} : /turf/open/floor/whiteredcorner/north -/turf/open/floor{dir=1;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/north -/turf/open/floor{dir=1;icon_state="whiteyellowcorner";} : /turf/open/floor/whiteyellowcorner/north -/turf/open/floor{dir=4;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/east -/turf/open/floor{dir=4;icon_state="chapel";} : /turf/open/floor/chapel/east -/turf/open/floor{dir=4;icon_state="darkblue2";} : /turf/open/floor/darkblue2/east -/turf/open/floor{dir=4;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/east -/turf/open/floor{dir=4;icon_state="darkbrowncorners2";} : /turf/open/floor/darkbrowncorners2/east -/turf/open/floor{dir=4;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/east -/turf/open/floor{dir=4;icon_state="darkgreencorners2";} : /turf/open/floor/darkgreencorners2/east -/turf/open/floor{dir=4;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/east -/turf/open/floor{dir=4;icon_state="darkpurplecorners2";} : /turf/open/floor/darkpurplecorners2/east -/turf/open/floor{dir=4;icon_state="darkred2";} : /turf/open/floor/darkred2/east -/turf/open/floor{dir=4;icon_state="darkredcorners2";} : /turf/open/floor/darkredcorners2/east -/turf/open/floor{dir=4;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/east -/turf/open/floor{dir=4;icon_state="darkyellowcorners2";} : /turf/open/floor/darkyellowcorners2/east -/turf/open/floor{dir=4;icon_state="loadingarea";} : /turf/open/floor/loadingarea/east -/turf/open/floor{dir=4;icon_state="purple";} : /turf/open/floor/purple/east -/turf/open/floor{dir=4;icon_state="red";} : /turf/open/floor/red/east -/turf/open/floor{dir=4;icon_state="redcorner";} : /turf/open/floor/redcorner/east -/turf/open/floor{dir=4;icon_state="warning";} : /turf/open/floor/warning/east -/turf/open/floor{dir=4;icon_state="warningcorner";} : /turf/open/floor/warningcorner/east -/turf/open/floor{dir=4;icon_state="warnwhite";} : /turf/open/floor/warnwhite/east -/turf/open/floor{dir=4;icon_state="whiteblue";} : /turf/open/floor/whiteblue/east -/turf/open/floor{dir=4;icon_state="whitebluecorner";} : /turf/open/floor/whitebluecorner/east -/turf/open/floor{dir=4;icon_state="whitegreen";} : /turf/open/floor/whitegreen/east -/turf/open/floor{dir=4;icon_state="whitegreencorner";} : /turf/open/floor/whitegreencorner/east -/turf/open/floor{dir=4;icon_state="whitepurple";} : /turf/open/floor/whitepurple/east -/turf/open/floor{dir=4;icon_state="whitepurplecorner";} : /turf/open/floor/whitepurplecorner/east -/turf/open/floor{dir=4;icon_state="whitered";} : /turf/open/floor/whitered/east -/turf/open/floor{dir=4;icon_state="whiteredcorner";} : /turf/open/floor/whiteredcorner/east -/turf/open/floor{dir=4;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/east -/turf/open/floor{dir=4;icon_state="whiteyellowcorner";} : /turf/open/floor/whiteyellowcorner/east -/turf/open/floor{dir=4;icon_state="whiteyellowfull";} : /turf/open/floor/whiteyellowfull/east -/turf/open/floor{dir=5;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/northeast -/turf/open/floor{dir=5;icon_state="chapel";} : /turf/open/floor/chapel/northeast -/turf/open/floor{dir=5;icon_state="darkblue2";} : /turf/open/floor/darkblue2/northeast -/turf/open/floor{dir=5;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/northeast -/turf/open/floor{dir=5;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/northeast -/turf/open/floor{dir=5;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/northeast -/turf/open/floor{dir=5;icon_state="darkred2";} : /turf/open/floor/darkred2/northeast -/turf/open/floor{dir=5;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/northeast -/turf/open/floor{dir=5;icon_state="podhatch";} : /turf/open/floor/podhatch/northeast -/turf/open/floor{dir=5;icon_state="purple";} : /turf/open/floor/purple/northeast -/turf/open/floor{dir=5;icon_state="red";} : /turf/open/floor/red/northeast -/turf/open/floor{dir=5;icon_state="vault";} : /turf/open/floor/vault2/northeast -/turf/open/floor{dir=5;icon_state="warning";} : /turf/open/floor/warning/northeast -/turf/open/floor{dir=5;icon_state="warnwhite";} : /turf/open/floor/warnwhite/northeast -/turf/open/floor{dir=5;icon_state="whiteblue";} : /turf/open/floor/whiteblue/northeast -/turf/open/floor{dir=5;icon_state="whitebluefull";} : /turf/open/floor/whitebluefull/northeast -/turf/open/floor{dir=5;icon_state="whitegreen";} : /turf/open/floor/whitegreen/northeast -/turf/open/floor{dir=5;icon_state="whitegreen_v";} : /turf/open/floor/whitegreen_v/northeast -/turf/open/floor{dir=5;icon_state="whitegreenfull";} : /turf/open/floor/whitegreenfull/northeast -/turf/open/floor{dir=5;icon_state="whitepurple";} : /turf/open/floor/whitepurple/northeast -/turf/open/floor{dir=5;icon_state="whitered";} : /turf/open/floor/whitered/northeast -/turf/open/floor{dir=5;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/northeast -/turf/open/floor{dir=6;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/southeast -/turf/open/floor{dir=6;icon_state="darkblue2";} : /turf/open/floor/darkblue2/southeast -/turf/open/floor{dir=6;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/southeast -/turf/open/floor{dir=6;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/southeast -/turf/open/floor{dir=6;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/southeast -/turf/open/floor{dir=6;icon_state="darkred2";} : /turf/open/floor/darkred2/southeast -/turf/open/floor{dir=6;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/southeast -/turf/open/floor{dir=6;icon_state="podhatch";} : /turf/open/floor/podhatch/southeast -/turf/open/floor{dir=6;icon_state="purple";} : /turf/open/floor/purple/southeast -/turf/open/floor{dir=6;icon_state="red";} : /turf/open/floor/red/southeast -/turf/open/floor{dir=6;icon_state="warning";} : /turf/open/floor/warning/southeast -/turf/open/floor{dir=6;icon_state="warnwhite";} : /turf/open/floor/warnwhite/southeast -/turf/open/floor{dir=6;icon_state="whiteblue";} : /turf/open/floor/whiteblue/southeast -/turf/open/floor{dir=6;icon_state="whitegreen";} : /turf/open/floor/whitegreen/southeast -/turf/open/floor{dir=6;icon_state="whitepurple";} : /turf/open/floor/whitepurple/southeast -/turf/open/floor{dir=6;icon_state="whitered";} : /turf/open/floor/whitered/southeast -/turf/open/floor{dir=6;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/southeast -/turf/open/floor{dir=8;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/west -/turf/open/floor{dir=8;icon_state="barber";} : /turf/open/floor/barber/west -/turf/open/floor{dir=8;icon_state="carpet10-8";} : /turf/open/floor/carpet10_8/west -/turf/open/floor{dir=8;icon_state="carpet11-12";} : /turf/open/floor/carpet11_12/west -/turf/open/floor{dir=8;icon_state="carpet13-5";} : /turf/open/floor/carpet13_5/west -/turf/open/floor{dir=8;icon_state="carpet14-10";} : /turf/open/floor/carpet14_10/west -/turf/open/floor{dir=8;icon_state="carpet15-15";} : /turf/open/floor/carpet15_15/west -/turf/open/floor{dir=8;icon_state="carpet5-1";} : /turf/open/floor/carpet5_1/west -/turf/open/floor{dir=8;icon_state="carpet6-2";} : /turf/open/floor/carpet6_2/west -/turf/open/floor{dir=8;icon_state="carpet7-3";} : /turf/open/floor/carpet7_3/west -/turf/open/floor{dir=8;icon_state="carpet9-4";} : /turf/open/floor/carpet9_4/west -/turf/open/floor{dir=8;icon_state="chapel";} : /turf/open/floor/chapel/west -/turf/open/floor{dir=8;icon_state="damaged2";} : /turf/open/floor/damaged2/west -/turf/open/floor{dir=8;icon_state="damaged3";} : /turf/open/floor/damaged3/west -/turf/open/floor{dir=8;icon_state="damaged4";} : /turf/open/floor/damaged4/west -/turf/open/floor{dir=8;icon_state="damaged5";} : /turf/open/floor/damaged5/west -/turf/open/floor{dir=8;icon_state="darkblue2";} : /turf/open/floor/darkblue2/west -/turf/open/floor{dir=8;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/west -/turf/open/floor{dir=8;icon_state="darkbrowncorners2";} : /turf/open/floor/darkbrowncorners2/west -/turf/open/floor{dir=8;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/west -/turf/open/floor{dir=8;icon_state="darkgreencorners2";} : /turf/open/floor/darkgreencorners2/west -/turf/open/floor{dir=8;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/west -/turf/open/floor{dir=8;icon_state="darkpurplecorners2";} : /turf/open/floor/darkpurplecorners2/west -/turf/open/floor{dir=8;icon_state="darkred2";} : /turf/open/floor/darkred2/west -/turf/open/floor{dir=8;icon_state="darkredcorners2";} : /turf/open/floor/darkredcorners2/west -/turf/open/floor{dir=8;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/west -/turf/open/floor{dir=8;icon_state="darkyellowcorners2";} : /turf/open/floor/darkyellowcorners2/west -/turf/open/floor{dir=8;icon_state="loadingarea";} : /turf/open/floor/loadingarea/west -/turf/open/floor{dir=8;icon_state="purple";} : /turf/open/floor/purple/west -/turf/open/floor{dir=8;icon_state="purplecorner";} : /turf/open/floor/purplecorner/west -/turf/open/floor{dir=8;icon_state="red";} : /turf/open/floor/red/west -/turf/open/floor{dir=8;icon_state="redcorner";} : /turf/open/floor/redcorner/west -/turf/open/floor{dir=8;icon_state="vault";} : /turf/open/floor/vault2/west -/turf/open/floor{dir=8;icon_state="warning";} : /turf/open/floor/warning/west -/turf/open/floor{dir=8;icon_state="warningcorner";} : /turf/open/floor/warningcorner/west -/turf/open/floor{dir=8;icon_state="warnwhite";} : /turf/open/floor/warnwhite/west -/turf/open/floor{dir=8;icon_state="whiteblue";} : /turf/open/floor/whiteblue/west -/turf/open/floor{dir=8;icon_state="whitebluecorner";} : /turf/open/floor/whitebluecorner/west -/turf/open/floor{dir=8;icon_state="whitegreen";} : /turf/open/floor/whitegreen/west -/turf/open/floor{dir=8;icon_state="whitegreencorner";} : /turf/open/floor/whitegreencorner/west -/turf/open/floor{dir=8;icon_state="whitepurple";} : /turf/open/floor/whitepurple/west -/turf/open/floor{dir=8;icon_state="whitepurplecorner";} : /turf/open/floor/whitepurplecorner/west -/turf/open/floor{dir=8;icon_state="whitered";} : /turf/open/floor/whitered/west -/turf/open/floor{dir=8;icon_state="whiteredcorner";} : /turf/open/floor/whiteredcorner/west -/turf/open/floor{dir=8;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/west -/turf/open/floor{dir=8;icon_state="whiteyellowcorner";} : /turf/open/floor/whiteyellowcorner/west -/turf/open/floor{dir=9;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/northwest -/turf/open/floor{dir=9;icon_state="brown";} : /turf/open/floor/brown/northwest -/turf/open/floor{dir=9;icon_state="darkblue2";} : /turf/open/floor/darkblue2/northwest -/turf/open/floor{dir=9;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/northwest -/turf/open/floor{dir=9;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/northwest -/turf/open/floor{dir=9;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/northwest -/turf/open/floor{dir=9;icon_state="darkred2";} : /turf/open/floor/darkred2/northwest -/turf/open/floor{dir=9;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/northwest -/turf/open/floor{dir=9;icon_state="green";} : /turf/open/floor/green/northwest -/turf/open/floor{dir=9;icon_state="podhatch";} : /turf/open/floor/podhatch/northwest -/turf/open/floor{dir=9;icon_state="purple";} : /turf/open/floor/purple/northwest -/turf/open/floor{dir=9;icon_state="red";} : /turf/open/floor/red/northwest -/turf/open/floor{dir=9;icon_state="redfull";} : /turf/open/floor/redfull/northwest -/turf/open/floor{dir=9;icon_state="warning";} : /turf/open/floor/warning/northwest -/turf/open/floor{dir=9;icon_state="warnwhite";} : /turf/open/floor/warnwhite/northwest -/turf/open/floor{dir=9;icon_state="whiteblue";} : /turf/open/floor/whiteblue/northwest -/turf/open/floor{dir=9;icon_state="whitegreen";} : /turf/open/floor/whitegreen/northwest -/turf/open/floor{dir=9;icon_state="whitegreen_v";} : /turf/open/floor/whitegreen_v/northwest -/turf/open/floor{dir=9;icon_state="whitepurple";} : /turf/open/floor/whitepurple/northwest -/turf/open/floor{dir=9;icon_state="whitered";} : /turf/open/floor/whitered/northwest -/turf/open/floor{dir=9;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/northwest -/turf/open/floor{icon_state="asteroid";} : /turf/open/floor/asteroid -/turf/open/floor{icon_state="asteroidfloor";dir=1;} : /turf/open/floor/asteroidfloor/north -/turf/open/floor{icon_state="asteroidplating";} : /turf/open/floor/asteroidplating -/turf/open/floor{icon_state="asteroidwarning";dir=10;} : /turf/open/floor/asteroidwarning/southwest -/turf/open/floor{icon_state="asteroidwarning";dir=1;} : /turf/open/floor/asteroidwarning/north -/turf/open/floor{icon_state="asteroidwarning";dir=4;} : /turf/open/floor/asteroidwarning/east -/turf/open/floor{icon_state="asteroidwarning";dir=5;} : /turf/open/floor/asteroidwarning/northeast -/turf/open/floor{icon_state="asteroidwarning";dir=6;} : /turf/open/floor/asteroidwarning/southeast -/turf/open/floor{icon_state="asteroidwarning";dir=8;} : /turf/open/floor/asteroidwarning/west -/turf/open/floor{icon_state="asteroidwarning";dir=9;} : /turf/open/floor/asteroidwarning/northwest -/turf/open/floor{icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning -/turf/open/floor{icon_state="bar";} : /turf/open/floor/bar -/turf/open/floor{icon_state="bcircuit";} : /turf/open/floor/bcircuit -/turf/open/floor{icon_state="bluecorner";} : /turf/open/floor/bluecorner -/turf/open/floor{icon_state="blueyellowfull";} : /turf/open/floor/blueyellowfull -/turf/open/floor{icon_state="bot";} : /turf/open/floor/bot -/turf/open/floor{icon_state="cafeteria";} : /turf/open/floor/cafeteria -/turf/open/floor{icon_state="chapel";} : /turf/open/floor/chapel -/turf/open/floor{icon_state="cmo";} : /turf/open/floor/cmo -/turf/open/floor{icon_state="cult";} : /turf/open/floor/cult -/turf/open/floor{icon_state="damaged2";} : /turf/open/floor/damaged2 -/turf/open/floor{icon_state="damaged3";} : /turf/open/floor/damaged3 -/turf/open/floor{icon_state="damaged4";} : /turf/open/floor/damaged4 -/turf/open/floor{icon_state="damaged5";} : /turf/open/floor/damaged5 -/turf/open/floor{icon_state="dark";} : /turf/open/floor/dark -/turf/open/floor{icon_state="dark2";} : /turf/open/floor/dark2 -/turf/open/floor{icon_state="darkblue2";} : /turf/open/floor/darkblue2 -/turf/open/floor{icon_state="darkbluecorners2";} : /turf/open/floor/darkbluecorners2 -/turf/open/floor{icon_state="darkbrown2";} : /turf/open/floor/darkbrown2 -/turf/open/floor{icon_state="darkbrowncorners2";} : /turf/open/floor/darkbrowncorners2 -/turf/open/floor{icon_state="darkgreen2";} : /turf/open/floor/darkgreen2 -/turf/open/floor{icon_state="darkgreencorners2";} : /turf/open/floor/darkgreencorners2 -/turf/open/floor{icon_state="darkish";} : /turf/open/floor/darkish -/turf/open/floor{icon_state="darkpurple2";} : /turf/open/floor/darkpurple2 -/turf/open/floor{icon_state="darkpurplecorners2";} : /turf/open/floor/darkpurplecorners2 -/turf/open/floor{icon_state="darkred2";} : /turf/open/floor/darkred2 -/turf/open/floor{icon_state="darkredcorners2";} : /turf/open/floor/darkredcorners2 -/turf/open/floor{icon_state="darkyellow2";} : /turf/open/floor/darkyellow2 -/turf/open/floor{icon_state="darkyellowcorners2";} : /turf/open/floor/darkyellowcorners2 -/turf/open/floor{icon_state="delivery";} : /turf/open/floor/delivery -/turf/open/floor{icon_state="floor4";} : /turf/open/floor/floor4 -/turf/open/floor{icon_state="floorscorched1";} : /turf/open/floor/floorscorched1 -/turf/open/floor{icon_state="floorscorched2";} : /turf/open/floor/floorscorched2 -/turf/open/floor{icon_state="freezerfloor";} : /turf/open/floor/freezerfloor -/turf/open/floor{icon_state="grimy";} : /turf/open/floor/grimy -/turf/open/floor{icon_state="hydrofloor";} : /turf/open/floor/hydrofloor -/turf/open/floor{icon_state="loadingarea";} : /turf/open/floor/loadingarea -/turf/open/floor{icon_state="neutral";} : /turf/open/floor/neutral -/turf/open/floor{icon_state="panelscorched";} : /turf/open/floor/panelscorched -/turf/open/floor{icon_state="platebot";} : /turf/open/floor/platebot -/turf/open/floor{icon_state="platingdmg1";} : /turf/open/floor/platingdmg1 -/turf/open/floor{icon_state="platingdmg3";} : /turf/open/floor/platingdmg3 -/turf/open/floor{icon_state="podhatch";} : /turf/open/floor/podhatch -/turf/open/floor{icon_state="podhatchfloor";} : /turf/open/floor/podhatchfloor -/turf/open/floor{icon_state="purple";} : /turf/open/floor/purple -/turf/open/floor{icon_state="purplecorner";} : /turf/open/floor/purplecorner -/turf/open/floor{icon_state="rampbottom";} : /turf/open/floor/rampbottom -/turf/open/floor{icon_state="red";} : /turf/open/floor/red -/turf/open/floor{icon_state="redcorner";} : /turf/open/floor/redcorner -/turf/open/floor{icon_state="redyellowfull";} : /turf/open/floor/redyellowfull -/turf/open/floor{icon_state="vault";} : /turf/open/floor/vault2 -/turf/open/floor{icon_state="wall_thermite";} : /turf/open/floor/wall_thermite -/turf/open/floor{icon_state="warning";} : /turf/open/floor/warning -/turf/open/floor{icon_state="warnwhite";dir=1;} : /turf/open/floor/warnwhite/north -/turf/open/floor{icon_state="warnwhite";} : /turf/open/floor/warnwhite -/turf/open/floor{icon_state="white";} : /turf/open/floor/white -/turf/open/floor{icon_state="whiteblue";} : /turf/open/floor/whiteblue -/turf/open/floor{icon_state="whitebluecorner";} : /turf/open/floor/whitebluecorner -/turf/open/floor{icon_state="whitebluefull";} : /turf/open/floor/whitebluefull -/turf/open/floor{icon_state="whitegreen";} : /turf/open/floor/whitegreen -/turf/open/floor{icon_state="whitegreencorner";} : /turf/open/floor/whitegreencorner -/turf/open/floor{icon_state="whitegreenfull";} : /turf/open/floor/whitegreenfull -/turf/open/floor{icon_state="whitepurple";} : /turf/open/floor/whitepurple -/turf/open/floor{icon_state="whitepurplecorner";} : /turf/open/floor/whitepurplecorner -/turf/open/floor{icon_state="whitepurplefull";} : /turf/open/floor/whitepurplefull -/turf/open/floor{icon_state="whitered";} : /turf/open/floor/whitered -/turf/open/floor{icon_state="whiteredcorner";} : /turf/open/floor/whiteredcorner -/turf/open/floor{icon_state="whiteredfull";} : /turf/open/floor/whiteredfull -/turf/open/floor{icon_state="whiteyellow";} : /turf/open/floor/whiteyellow -/turf/open/floor{icon_state="whiteyellowcorner";} : /turf/open/floor/whiteyellowcorner -/turf/open/floor{icon_state="whiteyellowfull";} : /turf/open/floor/whiteyellowfull -/turf/open/floor{icon_state="wood";} : /turf/open/floor/wood -/turf/open/floor{icon_state="yellowfull";} : /turf/open/floor/yellowfull -/turf/open/gm/coast{dir=1;} : /turf/open/gm/coast/south -/turf/open/gm/coast{dir=4;icon_state="beachcorner";} : /turf/open/gm/coast/beachcorner/south_east -/turf/open/gm/coast{dir=8;icon_state="beachcorner2";} : /turf/open/gm/coast/beachcorner2/south_east -/turf/open/gm/coast{dir=8;} : /turf/open/gm/coast/east -/turf/open/gm/coast{dir=9;} : /turf/open/gm/coast/south_east -/turf/open/gm/dirtgrassborder/weedable{icon_state="grass1";} : /turf/open/gm/dirtgrassborder/weedable/grass1 -/turf/open/gm/dirtgrassborder2{dir=1;} : /turf/open/gm/dirtgrassborder2/north -/turf/open/gm/dirtgrassborder2{dir=4;} : /turf/open/gm/dirtgrassborder2/east -/turf/open/gm/dirtgrassborder2{dir=8;} : /turf/open/gm/dirtgrassborder2/west -/turf/open/gm/dirtgrassborder2{icon_state="wall2";} : /turf/open/gm/dirtgrassborder2/wall2 -/turf/open/gm/dirtgrassborder2{icon_state="wall3";} : /turf/open/gm/dirtgrassborder2/wall3 -/turf/open/gm/dirtgrassborder{dir=1;icon_state="grassdirt_corner";} : /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east -/turf/open/gm/dirtgrassborder{dir=1;icon_state="grassdirt_corner2";} : /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east -/turf/open/gm/dirtgrassborder{dir=4;icon_state="grassdirt_corner";} : /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east -/turf/open/gm/dirtgrassborder{dir=4;icon_state="grassdirt_corner2";} : /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east -/turf/open/gm/dirtgrassborder{dir=4;} : /turf/open/gm/dirtgrassborder/west -/turf/open/gm/dirtgrassborder{dir=8;} : /turf/open/gm/dirtgrassborder/east -/turf/open/gm/dirtgrassborder{icon_state="desert";} : /turf/open/gm/dirtgrassborder/desert -/turf/open/gm/dirtgrassborder{icon_state="desert0";} : /turf/open/gm/dirtgrassborder/desert0 -/turf/open/gm/dirtgrassborder{icon_state="desert1";} : /turf/open/gm/dirtgrassborder/desert1 -/turf/open/gm/dirtgrassborder{icon_state="desert2";} : /turf/open/gm/dirtgrassborder/desert2 -/turf/open/gm/dirtgrassborder{icon_state="desert3";} : /turf/open/gm/dirtgrassborder/desert3 -/turf/open/gm/dirtgrassborder{icon_state="desert_dug";} : /turf/open/gm/dirtgrassborder/desert_dug -/turf/open/gm/dirt{icon_state="desert0";} : /turf/open/gm/dirt/desert0 -/turf/open/gm/dirt{icon_state="desert1";} : /turf/open/gm/dirt/desert1 -/turf/open/gm/dirt{icon_state="desert2";} : /turf/open/gm/dirt/desert2 -/turf/open/gm/dirt{icon_state="desert3";} : /turf/open/gm/dirt/desert3 -/turf/open/gm/dirt{icon_state="desert_dug";} : /turf/open/gm/dirt/desert_dug -/turf/open/gm/grass{icon_state="grass2";} : /turf/open/gm/grass/grass2 -/turf/open/gm/river/desert/deep{base_river_slowdown=0;} : /turf/open/gm/river/desert/deep/no_slowdown -/turf/open/gm/river/desert/deep{icon='icons/turf/floors/desert_water_toxic.dmi';} : /turf/open/gm/river/desert/deep/toxic -/turf/open/gm/river/desert/shallow_corner{dir=1;} : /turf/open/gm/river/desert/shallow_corner/north -/turf/open/gm/river/desert/shallow_corner{dir=4;} : /turf/open/gm/river/desert/shallow_corner/east -/turf/open/gm/river/desert/shallow_corner{dir=8;} : /turf/open/gm/river/desert/shallow_corner/west -/turf/open/gm/river/desert/shallow_edge/covered{dir=1;} : /turf/open/gm/river/desert/shallow_edge/covered/north -/turf/open/gm/river/desert/shallow_edge/covered{dir=4;} : /turf/open/gm/river/desert/shallow_edge/covered/east -/turf/open/gm/river/desert/shallow_edge/covered{dir=5;} : /turf/open/gm/river/desert/shallow_edge/covered/northeast -/turf/open/gm/river/desert/shallow_edge/covered{dir=8;} : /turf/open/gm/river/desert/shallow_edge/covered/west -/turf/open/gm/river/desert/shallow_edge{dir=10;} : /turf/open/gm/river/desert/shallow_edge/southwest -/turf/open/gm/river/desert/shallow_edge{dir=1;} : /turf/open/gm/river/desert/shallow_edge/north -/turf/open/gm/river/desert/shallow_edge{dir=4;} : /turf/open/gm/river/desert/shallow_edge/east -/turf/open/gm/river/desert/shallow_edge{dir=5;} : /turf/open/gm/river/desert/shallow_edge/northeast -/turf/open/gm/river/desert/shallow_edge{dir=6;} : /turf/open/gm/river/desert/shallow_edge/southeast -/turf/open/gm/river/desert/shallow_edge{dir=8;} : /turf/open/gm/river/desert/shallow_edge/west -/turf/open/gm/river/desert/shallow_edge{dir=9;} : /turf/open/gm/river/desert/shallow_edge/northwest -/turf/open/gm/river/desert/shallow{icon='icons/turf/floors/desert_water_toxic.dmi';} : /turf/open/gm/river/desert/shallow/toxic -/turf/open/gm/river/desert/shallow{name="pool";} : /turf/open/gm/river/desert/shallow/pool -/turf/open/gm/river/ocean{name="deep ocean";default_name="deep ocean";} : /turf/open/gm/river/ocean/deep_ocean -/turf/open/gm/river{color="#990000";name="pool";} : /turf/open/gm/river/darkred_pool -/turf/open/gm/river{color="#990000";} : /turf/open/gm/river/darkred -/turf/open/gm/river{color="#995555";name="pool";} : /turf/open/gm/river/red_pool -/turf/open/gm/river{color="#995555";} : /turf/open/gm/river/red -/turf/open/gm/river{name="pool";} : /turf/open/gm/river/pool -/turf/open/gm/river{name="shallow ocean";default_name="shallow ocean";} : /turf/open/gm/river/shallow_ocean_shallow_ocean -/turf/open/jungle/impenetrable{icon_state="grass_clear";} : /turf/open/jungle/impenetrable/grass_clear -/turf/open/jungle{bushes_spawn=0;icon_state="grass_impenetrable";} : /turf/open/jungle/impenetrable -/turf/open/mars_cave{icon_state="mars_cave_10";} : /turf/open/mars_cave/mars_cave_10 -/turf/open/mars_cave{icon_state="mars_cave_11";} : /turf/open/mars_cave/mars_cave_11 -/turf/open/mars_cave{icon_state="mars_cave_12";} : /turf/open/mars_cave/mars_cave_12 -/turf/open/mars_cave{icon_state="mars_cave_13";} : /turf/open/mars_cave/mars_cave_13 -/turf/open/mars_cave{icon_state="mars_cave_14";} : /turf/open/mars_cave/mars_cave_14 -/turf/open/mars_cave{icon_state="mars_cave_15";} : /turf/open/mars_cave/mars_cave_15 -/turf/open/mars_cave{icon_state="mars_cave_16";} : /turf/open/mars_cave/mars_cave_16 -/turf/open/mars_cave{icon_state="mars_cave_17";} : /turf/open/mars_cave/mars_cave_17 -/turf/open/mars_cave{icon_state="mars_cave_18";} : /turf/open/mars_cave/mars_cave_18 -/turf/open/mars_cave{icon_state="mars_cave_19";} : /turf/open/mars_cave/mars_cave_19 -/turf/open/mars_cave{icon_state="mars_cave_2";} : /turf/open/mars_cave/mars_cave_2 -/turf/open/mars_cave{icon_state="mars_cave_20";} : /turf/open/mars_cave/mars_cave_20 -/turf/open/mars_cave{icon_state="mars_cave_22";} : /turf/open/mars_cave/mars_cave_22 -/turf/open/mars_cave{icon_state="mars_cave_23";} : /turf/open/mars_cave/mars_cave_23 -/turf/open/mars_cave{icon_state="mars_cave_3";} : /turf/open/mars_cave/mars_cave_3 -/turf/open/mars_cave{icon_state="mars_cave_4";} : /turf/open/mars_cave/mars_cave_4 -/turf/open/mars_cave{icon_state="mars_cave_5";} : /turf/open/mars_cave/mars_cave_5 -/turf/open/mars_cave{icon_state="mars_cave_6";} : /turf/open/mars_cave/mars_cave_6 -/turf/open/mars_cave{icon_state="mars_cave_7";} : /turf/open/mars_cave/mars_cave_7 -/turf/open/mars_cave{icon_state="mars_cave_8";} : /turf/open/mars_cave/mars_cave_8 -/turf/open/mars_cave{icon_state="mars_cave_9";} : /turf/open/mars_cave/mars_cave_9 -/turf/open/mars_cave{icon_state="mars_dirt_4";} : /turf/open/mars_cave/mars_dirt_4 -/turf/open/mars_cave{icon_state="mars_dirt_5";} : /turf/open/mars_cave/mars_dirt_5 -/turf/open/mars_cave{icon_state="mars_dirt_6";} : /turf/open/mars_cave/mars_dirt_6 -/turf/open/mars_cave{icon_state="mars_dirt_7";} : /turf/open/mars_cave/mars_dirt_7 -/turf/open/mars_dirt{icon_state="mars_cave_10";} : /turf/open/mars_dirt/mars_cave_10 -/turf/open/mars_dirt{icon_state="mars_cave_11";} : /turf/open/mars_dirt/mars_cave_11 -/turf/open/mars_dirt{icon_state="mars_cave_3";} : /turf/open/mars_dirt/mars_cave_3 -/turf/open/mars_dirt{icon_state="mars_cave_6";} : /turf/open/mars_dirt/mars_cave_6 -/turf/open/mars_dirt{icon_state="mars_cave_7";} : /turf/open/mars_dirt/mars_cave_7 -/turf/open/mars_dirt{icon_state="mars_cave_8";} : /turf/open/mars_dirt/mars_cave_8 -/turf/open/mars{icon_state="mars_cave_10";} : /turf/open/mars/mars_cave_10 -/turf/open/mars{icon_state="mars_dirt_10";} : /turf/open/mars/mars_dirt_10 -/turf/open/mars{icon_state="mars_dirt_11";} : /turf/open/mars/mars_dirt_11 -/turf/open/mars{icon_state="mars_dirt_12";} : /turf/open/mars/mars_dirt_12 -/turf/open/mars{icon_state="mars_dirt_13";} : /turf/open/mars/mars_dirt_13 -/turf/open/mars{icon_state="mars_dirt_14";} : /turf/open/mars/mars_dirt_14 -/turf/open/mars{icon_state="mars_dirt_3";} : /turf/open/mars/mars_dirt_3 -/turf/open/mars{icon_state="mars_dirt_5";} : /turf/open/mars/mars_dirt_5 -/turf/open/mars{icon_state="mars_dirt_6";} : /turf/open/mars/mars_dirt_6 -/turf/open/mars{icon_state="mars_dirt_8";} : /turf/open/mars/mars_dirt_8 -/turf/open/mars{icon_state="mars_dirt_9";} : /turf/open/mars/mars_dirt_9 -/turf/open/organic/grass{desc="It'll get in your shoes no matter what you do.";name="astroturf";} : /turf/open/organic/grass/astroturf -/turf/open/organic/grass{name="astroturf";} : /turf/open/organic/grass/astroturf -/turf/open/shuttle/dropship{icon_state="floor8";} : /turf/open/shuttle/dropship/light_grey_single_wide_left_to_right -/turf/open/shuttle/dropship{icon_state="rasputin10";supports_surgery=1;} : /turf/open/shuttle/dropship/can_surgery/light_grey_top -/turf/open/shuttle/dropship{icon_state="rasputin10";} : /turf/open/shuttle/dropship/light_grey_top -/turf/open/shuttle/dropship{icon_state="rasputin12";supports_surgery=1;} : /turf/open/shuttle/dropship/can_surgery/dark_grey_bottom -/turf/open/shuttle/dropship{icon_state="rasputin12";} : /turf/open/shuttle/dropship/dark_grey_bottom -/turf/open/shuttle/dropship{icon_state="rasputin13";} : /turf/open/shuttle/dropship/light_grey_middle -/turf/open/shuttle/dropship{icon_state="rasputin15";} : /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down -/turf/open/shuttle/dropship{icon_state="rasputin3";} : /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down -/turf/open/shuttle/dropship{icon_state="rasputin4";} : /turf/open/shuttle/dropship/light_grey_bottom_left -/turf/open/shuttle/dropship{icon_state="rasputin5";} : /turf/open/shuttle/dropship/light_grey_left_to_right -/turf/open/shuttle/dropship{icon_state="rasputin6";} : /turf/open/shuttle/dropship/light_grey_top_left -/turf/open/shuttle/dropship{icon_state="rasputin7";} : /turf/open/shuttle/dropship/light_grey_top_right -/turf/open/shuttle/dropship{icon_state="rasputin8";} : /turf/open/shuttle/dropship/light_grey_bottom_right -/turf/open/shuttle/escapepod{icon_state="floor0";dir=1;} : /turf/open/shuttle/escapepod/floor0/north -/turf/open/shuttle/escapepod{icon_state="floor0";dir=8;} : /turf/open/shuttle/escapepod/floor0/west -/turf/open/shuttle/escapepod{icon_state="floor0";} : /turf/open/shuttle/escapepod/floor0 -/turf/open/shuttle/escapepod{icon_state="floor1";dir=4;} : /turf/open/shuttle/escapepod/floor1/east -/turf/open/shuttle/escapepod{icon_state="floor1";} : /turf/open/shuttle/escapepod/floor1 -/turf/open/shuttle/escapepod{icon_state="floor11";} : /turf/open/shuttle/escapepod/floor11 -/turf/open/shuttle/escapepod{icon_state="floor12";} : /turf/open/shuttle/escapepod/floor12 -/turf/open/shuttle/escapepod{icon_state="floor2";} : /turf/open/shuttle/escapepod/floor2 -/turf/open/shuttle/escapepod{icon_state="floor4";} : /turf/open/shuttle/escapepod/floor4 -/turf/open/shuttle/escapepod{icon_state="floor5";} : /turf/open/shuttle/escapepod/floor5 -/turf/open/shuttle/escapepod{icon_state="floor7";} : /turf/open/shuttle/escapepod/floor7 -/turf/open/shuttle/escapepod{icon_state="floor8";} : /turf/open/shuttle/escapepod/floor8 -/turf/open/shuttle/escapepod{icon_state="floor9";} : /turf/open/shuttle/escapepod/floor9 -/turf/open/shuttle/escapepod{dir=1;} : /turf/open/shuttle/escapepod/north -/turf/open/shuttle/escapepod{dir=4;} : /turf/open/shuttle/escapepod/east -/turf/open/shuttle/escapepod{dir=8;} : /turf/open/shuttle/escapepod/west -/turf/open/shuttle/lifeboat{dir=1;icon_state="plating_striped";} : /turf/open/shuttle/lifeboat/plating_striped/north -/turf/open/shuttle/lifeboat{icon_state="plate";} : /turf/open/shuttle/lifeboat/plate -/turf/open/shuttle/lifeboat{icon_state="plating_striped";} : /turf/open/shuttle/lifeboat/plating_striped -/turf/open/shuttle/lifeboat{icon_state="test_floor4";} : /turf/open/shuttle/lifeboat/test_floor4 -/turf/open/shuttle/vehicle{icon_state="dark_sterile";} : /turf/open/shuttle/vehicle/dark_sterile -/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_11";} : /turf/open/shuttle/vehicle/dark_sterile_green_11 -/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_12";} : /turf/open/shuttle/vehicle/dark_sterile_green_12 -/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_13";} : /turf/open/shuttle/vehicle/dark_sterile_green_13 -/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_14";} : /turf/open/shuttle/vehicle/dark_sterile_green_14 -/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_5";} : /turf/open/shuttle/vehicle/dark_sterile_green_5 -/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_6";} : /turf/open/shuttle/vehicle/dark_sterile_green_6 -/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_7";} : /turf/open/shuttle/vehicle/dark_sterile_green_7 -/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_8";} : /turf/open/shuttle/vehicle/dark_sterile_green_8 -/turf/open/shuttle/vehicle{icon_state="floor_0_1_15";} : /turf/open/shuttle/vehicle/floor_0_1_15 -/turf/open/shuttle/vehicle{icon_state="floor_1_1";} : /turf/open/shuttle/vehicle/floor_1_1 -/turf/open/shuttle/vehicle{icon_state="floor_1_10";} : /turf/open/shuttle/vehicle/floor_1_10 -/turf/open/shuttle/vehicle{icon_state="floor_1_11";} : /turf/open/shuttle/vehicle/floor_1_11 -/turf/open/shuttle/vehicle{icon_state="floor_1_12";} : /turf/open/shuttle/vehicle/floor_1_12 -/turf/open/shuttle/vehicle{icon_state="floor_1_13";} : /turf/open/shuttle/vehicle/floor_1_13 -/turf/open/shuttle/vehicle{icon_state="floor_1_14";} : /turf/open/shuttle/vehicle/floor_1_14 -/turf/open/shuttle/vehicle{icon_state="floor_1_1_3";} : /turf/open/shuttle/vehicle/floor_1_1_3 -/turf/open/shuttle/vehicle{icon_state="floor_1_2";} : /turf/open/shuttle/vehicle/floor_1_2 -/turf/open/shuttle/vehicle{icon_state="floor_1_3_3";} : /turf/open/shuttle/vehicle/floor_1_3_3 -/turf/open/shuttle/vehicle{icon_state="floor_1_5";} : /turf/open/shuttle/vehicle/floor_1_5 -/turf/open/shuttle/vehicle{icon_state="floor_1_6";} : /turf/open/shuttle/vehicle/floor_1_6 -/turf/open/shuttle/vehicle{icon_state="floor_1_7";} : /turf/open/shuttle/vehicle/floor_1_7 -/turf/open/shuttle/vehicle{icon_state="floor_1_8";} : /turf/open/shuttle/vehicle/floor_1_8 -/turf/open/shuttle/vehicle{icon_state="floor_1_9";} : /turf/open/shuttle/vehicle/floor_1_9 -/turf/open/shuttle/vehicle{icon_state="floor_3";} : /turf/open/shuttle/vehicle/floor_3 -/turf/open/shuttle/vehicle{icon_state="floor_3_10_1";} : /turf/open/shuttle/vehicle/floor_3_10_1 -/turf/open/shuttle/vehicle{icon_state="floor_3_11";} : /turf/open/shuttle/vehicle/floor_3_11 -/turf/open/shuttle/vehicle{icon_state="floor_3_12";} : /turf/open/shuttle/vehicle/floor_3_12 -/turf/open/shuttle/vehicle{icon_state="floor_3_13";} : /turf/open/shuttle/vehicle/floor_3_13 -/turf/open/shuttle/vehicle{icon_state="floor_3_1_1";} : /turf/open/shuttle/vehicle/floor_3_1_1 -/turf/open/shuttle/vehicle{icon_state="floor_3_3";} : /turf/open/shuttle/vehicle/floor_3_3 -/turf/open/shuttle/vehicle{icon_state="floor_3_4";} : /turf/open/shuttle/vehicle/floor_3_4 -/turf/open/shuttle/vehicle{icon_state="floor_3_5";} : /turf/open/shuttle/vehicle/floor_3_5 -/turf/open/shuttle/vehicle{icon_state="floor_3_6";} : /turf/open/shuttle/vehicle/floor_3_6 -/turf/open/shuttle/vehicle{icon_state="floor_3_7";} : /turf/open/shuttle/vehicle/floor_3_7 -/turf/open/shuttle/vehicle{icon_state="floor_3_7_1";} : /turf/open/shuttle/vehicle/floor_3_7_1 -/turf/open/shuttle/vehicle{icon_state="floor_3_8";} : /turf/open/shuttle/vehicle/floor_3_8 -/turf/open/shuttle/vehicle{icon_state="floor_3_8_1";} : /turf/open/shuttle/vehicle/floor_3_8_1 -/turf/open/shuttle/vehicle{icon_state="floor_3_9";} : /turf/open/shuttle/vehicle/floor_3_9 -/turf/open/shuttle/vehicle{icon_state="floor_3_9_1";} : /turf/open/shuttle/vehicle/floor_3_9_1 -/turf/open/shuttle{icon_state="floor4";} : /turf/open/shuttle/bright_red -/turf/open/shuttle{icon_state="floor6";} : /turf/open/shuttle/red -/turf/open/shuttle{icon_state="floor7";} : /turf/open/shuttle/black - -/turf/open/shuttle/dropship/can_surgery/dark_grey : /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom : /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down \ No newline at end of file diff --git a/tools/UpdatePaths/Scripts/7096-platforms-paths.txt b/tools/UpdatePaths/Scripts/7096-platforms-paths.txt new file mode 100644 index 000000000000..acd08a84494b --- /dev/null +++ b/tools/UpdatePaths/Scripts/7096-platforms-paths.txt @@ -0,0 +1,293 @@ +/obj/structure/platform{dir=1;icon_state="platform_deco"} : /obj/structure/platform_decoration/metal/almayer/north{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform{dir=4;icon_state="platform_deco"} : /obj/structure/platform_decoration/metal/almayer/east{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform{dir=8;icon_state="platform_deco"} : /obj/structure/platform_decoration/metal/almayer/west{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform{icon_state="platform_deco"} : /obj/structure/platform_decoration/metal/almayer{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} + +/obj/structure/platform{dir=1} : /obj/structure/platform/metal/almayer/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform{dir=4} : /obj/structure/platform/metal/almayer/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform{dir=8} : /obj/structure/platform/metal/almayer/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform : /obj/structure/platform/metal/almayer{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration{dir=1} : /obj/structure/platform_decoration/metal/almayer/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration{dir=4} : /obj/structure/platform_decoration/metal/almayer/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration{dir=5} : /obj/structure/platform_decoration/metal/almayer/northeast{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration{dir=6} : /obj/structure/platform_decoration/metal/almayer/southeast{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration{dir=8} : /obj/structure/platform_decoration/metal/almayer/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration{dir=9} : /obj/structure/platform_decoration/metal/almayer/northwest{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration{dir=10} : /obj/structure/platform_decoration/metal/almayer/southwest{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration : /obj/structure/platform_decoration/metal/almayer{@OLD;dir=@SKIP;layer=@SKIP} + + + +/obj/structure/platform/kutjevo{dir=1;icon_state="kutjevo_platform_deco"} : /obj/structure/platform_decoration/metal/kutjevo/north{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/kutjevo{dir=4;icon_state="kutjevo_platform_deco"} : /obj/structure/platform_decoration/metal/kutjevo/east{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/kutjevo{dir=8;icon_state="kutjevo_platform_deco"} : /obj/structure/platform_decoration/metal/kutjevo/west{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/kutjevo{icon_state="kutjevo_platform_deco"} : /obj/structure/platform_decoration/metal/kutjevo{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} + +/obj/structure/platform/kutjevo{dir=1} : /obj/structure/platform/metal/kutjevo/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/kutjevo{dir=4} : /obj/structure/platform/metal/kutjevo/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/kutjevo{dir=8} : /obj/structure/platform/metal/kutjevo/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/kutjevo : /obj/structure/platform/metal/kutjevo{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform/kutjevo/smooth{dir=1;icon_state="kutjevo_platform_sm_deco"} : /obj/structure/platform_decoration/metal/kutjevo_smooth/north{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/kutjevo/smooth{dir=4;icon_state="kutjevo_platform_sm_deco"} : /obj/structure/platform_decoration/metal/kutjevo_smooth/east{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/kutjevo/smooth{dir=8;icon_state="kutjevo_platform_sm_deco"} : /obj/structure/platform_decoration/metal/kutjevo_smooth/west{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/kutjevo/smooth{icon_state="kutjevo_platform_sm_deco"} : /obj/structure/platform_decoration/metal/kutjevo_smooth{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} + +/obj/structure/platform/kutjevo/smooth{dir=1} : /obj/structure/platform/metal/kutjevo_smooth/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/kutjevo/smooth{dir=4} : /obj/structure/platform/metal/kutjevo_smooth/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/kutjevo/smooth{dir=8} : /obj/structure/platform/metal/kutjevo_smooth/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/kutjevo/smooth : /obj/structure/platform/metal/kutjevo_smooth{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform/kutjevo/rock{dir=1;icon_state="kutjevo_rock_deco"} : /obj/structure/platform_decoration/stone/kutjevo/north{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/kutjevo/rock{dir=4;icon_state="kutjevo_rock_deco"} : /obj/structure/platform_decoration/stone/kutjevo/east{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/kutjevo/rock{dir=8;icon_state="kutjevo_rock_deco"} : /obj/structure/platform_decoration/stone/kutjevo/west{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/kutjevo/rock{icon_state="kutjevo_rock_deco"} : /obj/structure/platform_decoration/stone/kutjevo{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} + +/obj/structure/platform/kutjevo/rock{dir=1} : /obj/structure/platform/stone/kutjevo/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/kutjevo/rock{dir=4} : /obj/structure/platform/stone/kutjevo/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/kutjevo/rock{dir=8} : /obj/structure/platform/stone/kutjevo/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/kutjevo/rock : /obj/structure/platform/stone/kutjevo{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform/kutjevo/smooth/stair_plate : /obj/structure/platform/metal/kutjevo_smooth/stair_plate{@OLD;layer=@SKIP} + +/obj/structure/platform_decoration/kutjevo{dir=1} : /obj/structure/platform_decoration/metal/kutjevo/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/kutjevo{dir=4} : /obj/structure/platform_decoration/metal/kutjevo/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/kutjevo{dir=8} : /obj/structure/platform_decoration/metal/kutjevo/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/kutjevo : /obj/structure/platform_decoration/metal/kutjevo{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/kutjevo/smooth{dir=1} : /obj/structure/platform_decoration/metal/kutjevo_smooth/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/kutjevo/smooth{dir=4} : /obj/structure/platform_decoration/metal/kutjevo_smooth/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/kutjevo/smooth{dir=8} : /obj/structure/platform_decoration/metal/kutjevo_smooth/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/kutjevo/smooth : /obj/structure/platform_decoration/metal/kutjevo_smooth{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/kutjevo/rock{dir=1} : /obj/structure/platform_decoration/stone/kutjevo/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/kutjevo/rock{dir=4} : /obj/structure/platform_decoration/stone/kutjevo/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/kutjevo/rock{dir=8} : /obj/structure/platform_decoration/stone/kutjevo/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/kutjevo/rock : /obj/structure/platform_decoration/stone/kutjevo{@OLD;dir=@SKIP;layer=@SKIP} + + + +/obj/structure/platform/shiva{dir=1;icon_state="platform_deco"} : /obj/structure/platform_decoration/metal/almayer/north{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/shiva{dir=4;icon_state="platform_deco"} : /obj/structure/platform_decoration/metal/almayer/east{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/shiva{dir=8;icon_state="platform_deco"} : /obj/structure/platform_decoration/metal/almayer/west{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/shiva{icon_state="platform_deco"} : /obj/structure/platform_decoration/metal/almayer{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} + +/obj/structure/platform/shiva{dir=1} : /obj/structure/platform/metal/almayer/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/shiva{dir=4} : /obj/structure/platform/metal/almayer/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/shiva{dir=8} : /obj/structure/platform/metal/almayer/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/shiva : /obj/structure/platform/metal/almayer{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform/shiva/catwalk{dir=1;icon_state="shiva_deco"} : /obj/structure/platform_decoration/metal/shiva/north{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/shiva/catwalk{dir=4;icon_state="shiva_deco"} : /obj/structure/platform_decoration/metal/shiva/east{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/shiva/catwalk{dir=8;icon_state="shiva_deco"} : /obj/structure/platform_decoration_decoration/metal/shiva/west{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/shiva/catwalk{icon_state="shiva_deco"} : /obj/structure/platform_decoration/metal/shiva{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} + +/obj/structure/platform/shiva/catwalk{dir=1} : /obj/structure/platform/metal/shiva/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/shiva/catwalk{dir=4} : /obj/structure/platform/metal/shiva/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/shiva/catwalk{dir=8} : /obj/structure/platform/metal/shiva/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/shiva/catwalk : /obj/structure/platform/metal/shiva{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/shiva{dir=1} : /obj/structure/platform_decoration/metal/almayer/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/shiva{dir=4} : /obj/structure/platform_decoration/metal/almayer/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/shiva{dir=8} : /obj/structure/platform_decoration/metal/almayer/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/shiva : /obj/structure/platform_decoration/metal/almayer{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/shiva/catwalk{dir=1} : /obj/structure/platform_decoration/metal/shiva/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/shiva/catwalk{dir=4} : /obj/structure/platform_decoration/metal/shiva/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/shiva/catwalk{dir=8} : /obj/structure/platform_decoration/metal/shiva/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/shiva/catwalk : /obj/structure/platform_decoration/metal/shiva{@OLD;dir=@SKIP;layer=@SKIP} + + +/obj/structure/platform/strata{dir=1;icon_state="strata_platform_deco"} : /obj/structure/platform_decoration/stone/strata/north{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/strata{dir=4;icon_state="strata_platform_deco"} : /obj/structure/platform_decoration/stone/strata/east{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/strata{dir=8;icon_state="strata_platform_deco"} : /obj/structure/platform_decoration/stone/strata/west{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/strata{icon_state="strata_platform_deco"} : /obj/structure/platform_decoration/stone/strata{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} + +/obj/structure/platform/strata{dir=1} : /obj/structure/platform/stone/strata/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/strata{dir=4} : /obj/structure/platform/stone/strata/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/strata{dir=8} : /obj/structure/platform/stone/strata/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/strata : /obj/structure/platform/stone/strata{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform/strata/metal{dir=1;icon_state="strata_metalplatform_deco"} : /obj/structure/platform_decoration/metal/strata/north{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/strata/metal{dir=4;icon_state="strata_metalplatform_deco"} : /obj/structure/platform_decoration/metal/strata/east{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/strata/metal{dir=8;icon_state="strata_metalplatform_deco"} : /obj/structure/platform_decoration/metal/strata/west{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/strata/metal{icon_state="strata_metalplatform_deco"} : /obj/structure/platform_decoration/metal/strata{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} + +/obj/structure/platform/strata/metal{dir=1} : /obj/structure/platform/metal/strata/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/strata/metal{dir=4} : /obj/structure/platform/metal/strata/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/strata/metal{dir=8} : /obj/structure/platform/metal/strata/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/strata/metal : /obj/structure/platform/metal/strata{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/strata{dir=1} : /obj/structure/platform_decoration/stone/strata/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/strata{dir=4} : /obj/structure/platform_decoration/stone/strata/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/strata{dir=8} : /obj/structure/platform_decoration/stone/strata/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/strata : /obj/structure/platform_decoration/stone/strata{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/strata/metal{dir=1} : /obj/structure/platform_decoration/metal/strata/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/strata/metal{dir=4} : /obj/structure/platform_decoration/metal/strata/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/strata/metal{dir=8} : /obj/structure/platform_decoration/metal/strata/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/strata/metal : /obj/structure/platform_decoration/metal/strata{@OLD;dir=@SKIP;layer=@SKIP} + + +/obj/structure/platform/mineral{dir=1;icon_state="stone_deco"} : /obj/structure/platform_decoration/stone/mineral/north{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/mineral{dir=4;icon_state="stone_deco"} : /obj/structure/platform_decoration/stone/mineral/east{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/mineral{dir=8;icon_state="stone_deco"} : /obj/structure/platform_decoration/stone/mineral/west{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/mineral{icon_state="stone_deco"} : /obj/structure/platform_decoration/stone/mineral{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} + +/obj/structure/platform/mineral{dir=1} : /obj/structure/platform/stone/mineral/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/mineral{dir=4} : /obj/structure/platform/stone/mineral/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/mineral{dir=8} : /obj/structure/platform/stone/mineral/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/mineral : /obj/structure/platform/stone/mineral{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/mineral{dir=1} : /obj/structure/platform_decoration/stone/mineral/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/mineral{dir=4} : /obj/structure/platform_decoration/stone/mineral/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/mineral{dir=8} : /obj/structure/platform_decoration/stone/mineral/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/mineral : /obj/structure/platform_decoration/stone/mineral{@OLD;dir=@SKIP;layer=@SKIP} + + +/obj/structure/platform/mineral/sandstone{dir=1;icon_state="sandstone_deco"} : /obj/structure/platform_decoration/stone/sandstone/north{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/mineral/sandstone{dir=4;icon_state="sandstone_deco"} : /obj/structure/platform_decoration/stone/sandstone/east{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/mineral/sandstone{dir=8;icon_state="sandstone_deco"} : /obj/structure/platform_decoration/stone/sandstone/west{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/mineral/sandstone{icon_state="sandstone_deco"} : /obj/structure/platform_decoration/stone/sandstone{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} + +/obj/structure/platform/mineral/sandstone{dir=1} : /obj/structure/platform/stone/sandstone/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/mineral/sandstone{dir=4} : /obj/structure/platform/stone/sandstone/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/mineral/sandstone{dir=8} : /obj/structure/platform/stone/sandstone/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/mineral/sandstone : /obj/structure/platform/stone/sandstone{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform/mineral/sandstone/runed{dir=1;icon_state="stone_deco"} : /obj/structure/platform_decoration/stone/runed_sandstone/north{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/mineral/sandstone/runed{dir=4;icon_state="stone_deco"} : /obj/structure/platform_decoration/stone/runed_sandstone/east{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/mineral/sandstone/runed{dir=8;icon_state="stone_deco"} : /obj/structure/platform_decoration/stone/runed_sandstone/west{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/mineral/sandstone/runed{icon_state="stone_deco"} : /obj/structure/platform_decoration/stone/runed_sandstone{@OLD;dir=@SKIP;layer=@SKIP;icon_state=@SKIP} + +/obj/structure/platform/mineral/sandstone/runed{dir=1} : /obj/structure/platform/stone/runed_sandstone/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/mineral/sandstone/runed{dir=4} : /obj/structure/platform/stone/runed_sandstone/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/mineral/sandstone/runed{dir=8} : /obj/structure/platform/stone/runed_sandstone/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/mineral/sandstone/runed : /obj/structure/platform/stone/runed_sandstone{@OLD;dir=@SKIP;layer=@SKIP} + + + +/obj/structure/platform_decoration/mineral/sandstone{dir=1} : /obj/structure/platform_decoration/stone/sandstone/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/mineral/sandstone{dir=4} : /obj/structure/platform_decoration/stone/sandstone/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/mineral/sandstone{dir=8} : /obj/structure/platform_decoration/stone/sandstone/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/mineral/sandstone : /obj/structure/platform_decoration/stone/sandstone{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/mineral/sandstone/runed{dir=1} : /obj/structure/platform_decoration/stone/runed_sandstone/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/mineral/sandstone/runed{dir=4} : /obj/structure/platform_decoration/stone/runed_sandstone/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/mineral/sandstone/runed{dir=8} : /obj/structure/platform_decoration/stone/runed_sandstone/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/mineral/sandstone/runed : /obj/structure/platform_decoration/stone/runed_sandstone{@OLD;dir=@SKIP;layer=@SKIP} + + + +/obj/structure/platform/stair_cut{icon_state="kutjevo_platform_sm_stair_alt"} : /obj/structure/platform/metal/stair_cut/kutjevo_smooth_right{@OLD;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/stair_cut/alt{icon_state="kutjevo_platform_sm_stair_alt"} : /obj/structure/platform/metal/stair_cut/kutjevo_smooth_right{@OLD;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/stair_cut{icon_state="kutjevo_platform_sm_stair"} : /obj/structure/platform/metal/stair_cut/kutjevo_smooth_left{@OLD;layer=@SKIP;icon_state=@SKIP} + +/obj/structure/platform/stair_cut{icon_state="platform_stair_alt"} : /obj/structure/platform/metal/stair_cut/platform_right{@OLD;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/stair_cut/alt{icon_state="platform_stair_alt"} : /obj/structure/platform/metal/stair_cut/platform_right{@OLD;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/stair_cut{icon_state="platform_stair"} : /obj/structure/platform/metal/stair_cut/platform_left{@OLD;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/stair_cut : /obj/structure/platform/metal/stair_cut/platform_left{@OLD;layer=@SKIP;icon_state=@SKIP} +/obj/structure/platform/stair_cut/alt : /obj/structure/platform/metal/stair_cut/platform_right{@OLD;layer=@SKIP;icon_state=@SKIP} + + + +/obj/structure/platform/hybrisa/engineer{dir=1} : /obj/structure/platform/metal/hybrisa/engineer/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/engineer{dir=4} : /obj/structure/platform/metal/hybrisa/engineer/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/engineer{dir=8} : /obj/structure/platform/metal/hybrisa/engineer/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/engineer : /obj/structure/platform/metal/hybrisa/engineer{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/hybrisa/engineer_corner{dir=1} : /obj/structure/platform_decoration/metal/hybrisa/engineer_corner/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/engineer_corner{dir=4} : /obj/structure/platform_decoration/metal/hybrisa/engineer_corner/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/engineer_corner{dir=8} : /obj/structure/platform_decoration/metal/hybrisa/engineer_corner/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/engineer_corner : /obj/structure/platform_decoration/metal/hybrisa/engineer_corner{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/hybrisa/engineer_cornerbits{dir=1} : /obj/structure/platform_decoration/metal/hybrisa/engineer_cornerbits/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/engineer_cornerbits{dir=4} : /obj/structure/platform_decoration/metal/hybrisa/engineer_cornerbits/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/engineer_cornerbits{dir=8} : /obj/structure/platform_decoration/metal/hybrisa/engineer_cornerbits/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/engineer_cornerbits : /obj/structure/platform_decoration/metal/hybrisa/engineer_cornerbits{@OLD;dir=@SKIP;layer=@SKIP} + + +/obj/structure/platform/hybrisa/rockdark{dir=1} : /obj/structure/platform/stone/hybrisa/rockdark/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/rockdark{dir=4} : /obj/structure/platform/stone/hybrisa/rockdark/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/rockdark{dir=8} : /obj/structure/platform/stone/hybrisa/rockdark/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/rockdark : /obj/structure/platform/stone/hybrisa/rockdark{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/hybrisa/rockdark{dir=1} : /obj/structure/platform_decoration/stone/hybrisa/rockdark/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/rockdark{dir=4} : /obj/structure/platform_decoration/stone/hybrisa/rockdark/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/rockdark{dir=8} : /obj/structure/platform_decoration/stone/hybrisa/rockdark/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/rockdark : /obj/structure/platform_decoration/stone/hybrisa/rockdark{@OLD;dir=@SKIP;layer=@SKIP} + + +/obj/structure/platform/hybrisa/metalplatform1{dir=1} : /obj/structure/platform/metal/hybrisa/metalplatform1/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform1{dir=4} : /obj/structure/platform/metal/hybrisa/metalplatform1/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform1{dir=8} : /obj/structure/platform/metal/hybrisa/metalplatform1/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform1 : /obj/structure/platform/metal/hybrisa/metalplatform1{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/hybrisa/metalplatformdeco1{dir=1} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco1{dir=4} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco1{dir=8} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco1 : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1{@OLD;dir=@SKIP;layer=@SKIP} + + +/obj/structure/platform/hybrisa/metalplatform2{dir=1} : /obj/structure/platform/metal/hybrisa/metalplatform2/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform2{dir=4} : /obj/structure/platform/metal/hybrisa/metalplatform2/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform2{dir=8} : /obj/structure/platform/metal/hybrisa/metalplatform2/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform2 : /obj/structure/platform/metal/hybrisa/metalplatform2{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/hybrisa/metalplatformdeco2{dir=1} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco2/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco2{dir=4} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco2/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco2{dir=8} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco2/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco2 : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco2{@OLD;dir=@SKIP;layer=@SKIP} + + +/obj/structure/platform/hybrisa/metalplatform3{dir=1} : /obj/structure/platform/metal/hybrisa/metalplatform3/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform3{dir=4} : /obj/structure/platform/metal/hybrisa/metalplatform3/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform3{dir=8} : /obj/structure/platform/metal/hybrisa/metalplatform3/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform3 : /obj/structure/platform/metal/hybrisa/metalplatform3{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/hybrisa/metalplatformdeco3{dir=1} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco3{dir=4} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco3{dir=8} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco3 : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3{@OLD;dir=@SKIP;layer=@SKIP} + + +/obj/structure/platform/hybrisa/metalplatform4{dir=1} : /obj/structure/platform/metal/hybrisa/metalplatform4/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform4{dir=4} : /obj/structure/platform/metal/hybrisa/metalplatform4/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform4{dir=8} : /obj/structure/platform/metal/hybrisa/metalplatform4/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform4 : /obj/structure/platform/metal/hybrisa/metalplatform4{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/hybrisa/metalplatformdeco4{dir=1} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco4{dir=4} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco4{dir=8} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco4 : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4{@OLD;dir=@SKIP;layer=@SKIP} + + +/obj/structure/platform/hybrisa/metalplatform5{dir=1} : /obj/structure/platform/metal/hybrisa/metalplatform5/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform5{dir=4} : /obj/structure/platform/metal/hybrisa/metalplatform5/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform5{dir=8} : /obj/structure/platform/metal/hybrisa/metalplatform5/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform5 : /obj/structure/platform/metal/hybrisa/metalplatform5{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/hybrisa/metalplatformdeco5{dir=1} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco5{dir=4} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco5{dir=8} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco5 : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5{@OLD;dir=@SKIP;layer=@SKIP} + + +/obj/structure/platform/hybrisa/metalplatform6{dir=1} : /obj/structure/platform/metal/hybrisa/metalplatform6/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform6{dir=4} : /obj/structure/platform/metal/hybrisa/metalplatform6/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform6{dir=8} : /obj/structure/platform/metal/hybrisa/metalplatform6/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatform6 : /obj/structure/platform/metal/hybrisa/metalplatform6{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform_decoration/hybrisa/metalplatformdeco6{dir=1} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/north{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco6{dir=4} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/east{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco6{dir=8} : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/west{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform_decoration/hybrisa/metalplatformdeco6 : /obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6{@OLD;dir=@SKIP;layer=@SKIP} + +/obj/structure/platform/hybrisa/metalplatformstair1{dir=1} : /obj/structure/platform/metal/stair_cut/hybrisa_metal_left{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatformstair2{dir=1} : /obj/structure/platform/metal/stair_cut/hybrisa_metal_right{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatformstair1 : /obj/structure/platform/metal/stair_cut/hybrisa_metal_left{@OLD;dir=@SKIP;layer=@SKIP} +/obj/structure/platform/hybrisa/metalplatformstair2 : /obj/structure/platform/metal/stair_cut/hybrisa_metal_right{@OLD;dir=@SKIP;layer=@SKIP} + + +