diff --git a/code/game/machinery/holoposter.dm b/code/game/machinery/holoposter.dm new file mode 100644 index 00000000000..b894c0313b8 --- /dev/null +++ b/code/game/machinery/holoposter.dm @@ -0,0 +1,116 @@ +GLOBAL_LIST_EMPTY(holoposters) +/obj/machinery/holoposter + name = "Holographic Poster" + desc = "A wall-mounted holographic projector displaying advertisements by all manner of factions. How much do they pay to advertise here?" + icon = 'icons/obj/holoposter_vr.dmi' + icon_state = "off" + anchored = 1 + use_power = 1 + idle_power_usage = 80 + power_channel = ENVIRON + var/icon_forced = FALSE + var/examine_addon = "It appears to be powered off." + var/mytimer + var/alerting = FALSE + + var/list/postertypes = list( + "hephaestus" = list(LIGHT_COLOR_CYAN, "Hephaestus Aeronautics, a subsidiary of Hephaestus Industries. Known to make the best - if pricy - atmospheric to orbit shuttles and gliders for the consumer market."), + "aether" = list(LIGHT_COLOR_CYAN, "Aether Atmospherics, one of the lesser-known TSCs. They're ubiquitious in the Periphery - the very air you're breathing was probably sold and delivered by them."), + "moreau" = list(LIGHT_COLOR_ORANGE, "Children of Moreau. The hologram is a call to action by the local Moreau sect. 'Terraform, Prosper, and Be Sustainable, children!'"), + "cybersun" = list(LIGHT_COLOR_GREEN, "Cybersun Industries. A complex diagram without labels, showing the inner workings of a backup implant sold by Cybersun. 'The highest quality, for an affordable price!' says the tagline."), + "veymed" = list(LIGHT_COLOR_GREEN, "Vey-Med. This is an advertisement for a local clinic a few systems away. The tagline reads 'The mark of a truly civilized civilization is rewriting what evolution could not'."), + "grayson" = list(LIGHT_COLOR_ORANGE, "Grayson Manufactories Ltd. An advertisement for a sale from Grayson, including up to 50% off on lathe parts. Truly, a delight for DIY tinkerers out there."), + "ares" = list(LIGHT_COLOR_PINK, "Friends of Ares. Who managed to slip this poster into the rotation? A local charity set up by the Ares Confederation to help workers unionize or found their own colonies. 'Donate today!'"), + "moebius" = list(LIGHT_COLOR_PURPLE, "Moebius. One of the few companies worth merit beyond their local bubble staffed completely by synthetics. 'For synths, by synths.'") + ) + +/obj/machinery/holoposter/Initialize() + . = ..() + set_rand_sprite() + GLOB.holoposters += src + mytimer = addtimer(CALLBACK(src, .proc/set_rand_sprite), 30 MINUTES + rand(0, 5 MINUTES), TIMER_STOPPABLE | TIMER_LOOP) + +/obj/machinery/holoposter/Destroy() + GLOB.holoposters -= src + return ..() + +/obj/machinery/holoposter/process() + return PROCESS_KILL + +/obj/machinery/holoposter/examine(mob/user, infix, suffix) + . = ..() + . += examine_addon + +/obj/machinery/holoposter/update_icon() + if(stat & NOPOWER) + icon_state = "off" + examine_addon = "It appears to be powered off." + set_light(0) + return + var/new_color = LIGHT_COLOR_HALOGEN + if(stat & BROKEN) + icon_state = "glitch" + examine_addon = "It appears to be malfunctioning." + new_color = "#6A6C71" + else + if((z in using_map.station_levels) && global.security_level) // 0 is fine, everything higher is alert levels + icon_state = "attention" + examine_addon = "It warns you to remain calm and contact your supervisor as soon as possible." + new_color = "#AA7039" + alerting = TRUE + else if(alerting && !global.security_level) // coming out of alert + alerting = FALSE + set_rand_sprite() + return + else if(icon_state in postertypes) + var/list/settings = postertypes[icon_state] + new_color = settings[1] + examine_addon = settings[2] + + set_light(l_range = 2, l_power = 2, l_color = new_color) + +/obj/machinery/holoposter/proc/set_rand_sprite() + if(alerting) + return + if(icon_forced && mytimer) + deltimer(mytimer) + return + icon_state = pick(postertypes) + update_icon() + +/obj/machinery/holoposter/attackby(obj/item/W, mob/user) + src.add_fingerprint(user) + if(stat & (NOPOWER)) + return + if (W.is_multitool()) + playsound(user.loc, 'sound/items/penclick.ogg', 60, 1) + icon_state = input("Available Posters", "Holographic Poster") as null|anything in postertypes + "random" + if(!Adjacent(user)) + return + if(icon_state == "random") + stat &= ~BROKEN + icon_forced = FALSE + if(!mytimer) + mytimer = addtimer(CALLBACK(src, .proc/set_rand_sprite), 30 MINUTES + rand(0, 5 MINUTES), TIMER_STOPPABLE | TIMER_LOOP) + set_rand_sprite() + return + icon_forced = TRUE + if(mytimer) + deltimer(mytimer) + stat &= ~BROKEN + update_icon() + return + +/obj/machinery/holoposter/attack_ai(mob/user as mob) + return attack_hand(user) + +/obj/machinery/holoposter/power_change() + var/wasUnpowered = stat & NOPOWER + ..() + if(wasUnpowered != (stat & NOPOWER)) + update_icon() + +/obj/machinery/holoposter/emp_act() + stat |= BROKEN + update_icon() + diff --git a/code/modules/security levels/security levels.dm b/code/modules/security levels/security levels.dm index 4929b62bd68..26619446fb3 100644 --- a/code/modules/security levels/security levels.dm +++ b/code/modules/security levels/security levels.dm @@ -75,6 +75,11 @@ for(var/obj/machinery/status_display/FA in machines) if(FA.z in using_map.contact_levels) FA.on_alert_changed(newlevel) + //VOREStation Add + for(var/hp in GLOB.holoposters) + var/obj/machinery/holoposter/HP = hp + HP.update_icon() + //VOREStation Add End if(level >= SEC_LEVEL_RED) atc.reroute_traffic(yes = 1) // Tell them fuck off we're busy. diff --git a/icons/obj/holoposter_vr.dmi b/icons/obj/holoposter_vr.dmi new file mode 100644 index 00000000000..c28e3f906b0 Binary files /dev/null and b/icons/obj/holoposter_vr.dmi differ diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index c7212fcb833..334fb706e2a 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -30,8 +30,8 @@ /area/tether/surfacebase/outside/outside1) "aai" = ( /obj/machinery/camera/network/outside{ - icon_state = "camera"; - dir = 1 + dir = 1; + icon_state = "camera" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/mining_main/external) @@ -54,8 +54,8 @@ pixel_y = -28 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/mining_main/external) @@ -461,8 +461,8 @@ dir = 10 }, /obj/machinery/camera/network/cargo{ - icon_state = "camera"; - dir = 8 + dir = 8; + icon_state = "camera" }, /obj/structure/closet/hydrant{ pixel_x = 32 @@ -999,8 +999,8 @@ "abz" = ( /obj/structure/table/woodentable, /obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 1 + dir = 1; + icon_state = "tube-construct-stage1" }, /obj/item/glass_jar, /turf/simulated/floor/wood, @@ -1138,8 +1138,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /turf/simulated/floor/plating, /area/construction/vacant_mining_ops) @@ -1502,8 +1502,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/vending/loadout/clothing, /turf/simulated/floor/tiled, @@ -1540,8 +1540,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/vending/loadout, /turf/simulated/floor/tiled, @@ -1566,8 +1566,8 @@ dir = 1 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/cargo) @@ -2054,8 +2054,8 @@ /area/tether/surfacebase/cargo) "adn" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 + dir = 8; + icon_state = "warning" }, /obj/machinery/computer/area_atmos/tag{ dir = 4; @@ -2446,8 +2446,8 @@ dir = 8 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/cargo/office) @@ -3264,8 +3264,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, /obj/machinery/computer/supplycomp{ - icon_state = "computer"; - dir = 1 + dir = 1; + icon_state = "computer" }, /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/brown/bordercorner2, @@ -3434,8 +3434,8 @@ dir = 9 }, /obj/machinery/camera/network/cargo{ - icon_state = "camera"; - dir = 8 + dir = 8; + icon_state = "camera" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -3602,8 +3602,8 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/cargo) @@ -3845,8 +3845,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/vending/loadout/overwear, /turf/simulated/floor/tiled, @@ -3856,15 +3856,15 @@ dir = 4 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/machinery/camera/network/civilian{ dir = 9 }, /obj/machinery/vending/coffee{ - icon_state = "coffee"; - dir = 8 + dir = 8; + icon_state = "coffee" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -4432,8 +4432,8 @@ dir = 8 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled/white, /area/rnd/chemistry_lab) @@ -5479,8 +5479,8 @@ "ajH" = ( /obj/structure/cable/heavyduty, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, @@ -5819,8 +5819,8 @@ /area/maintenance/lower/public_garden_maintenence) "akH" = ( /obj/machinery/camera/network/outside{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/holodeck_control) @@ -5971,21 +5971,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_one) -"alb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) "alc" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -6423,8 +6408,8 @@ dir = 8 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 @@ -6482,8 +6467,8 @@ icon_state = "16-0" }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/random/junk, /turf/simulated/floor/tiled/techfloor, @@ -6929,8 +6914,8 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/random/junk, /obj/random/junk, @@ -7063,8 +7048,8 @@ "anq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 + dir = 8; + icon_state = "warning" }, /obj/random/junk, /obj/random/junk, @@ -7073,8 +7058,8 @@ "anr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/random/trash_pile, /turf/simulated/floor/plating, @@ -7254,8 +7239,8 @@ /area/tether/surfacebase/cargo/office) "anI" = ( /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/machinery/power/apc{ dir = 1; @@ -7714,8 +7699,8 @@ dir = 1 }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 9 + dir = 9; + icon_state = "warning" }, /obj/machinery/door/window/southleft, /obj/item/clothing/mask/gas, @@ -7735,8 +7720,8 @@ dir = 1 }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 5 + dir = 5; + icon_state = "warning" }, /obj/machinery/door/window/southright, /obj/item/clothing/mask/gas, @@ -7914,8 +7899,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_one) @@ -9358,8 +9343,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/vending/loadout/accessory, /turf/simulated/floor/tiled, @@ -9555,8 +9540,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/vending/loadout/gadget, /turf/simulated/floor/tiled, @@ -9566,8 +9551,8 @@ /obj/item/bodybag/cryobag, /obj/item/weapon/tool/crowbar, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -9892,8 +9877,8 @@ dir = 9 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) @@ -10509,8 +10494,8 @@ /area/tether/surfacebase/surface_one_hall) "atl" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /turf/simulated/floor/water/pool, /area/tether/surfacebase/surface_one_hall) @@ -11036,8 +11021,8 @@ dir = 6 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/hallway/lower/first_west) @@ -11083,17 +11068,17 @@ name_tag = "Civ West Subgrid" }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /turf/simulated/floor/plating, /area/maintenance/substation/civ_west) "aum" = ( /obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Civ West"; charge = 0; output_attempt = 0; - outputting = 0; - RCon_tag = "Substation - Civ West" + outputting = 0 }, /obj/structure/cable/green{ icon_state = "0-8" @@ -11367,8 +11352,8 @@ }, /obj/effect/floor_decal/rust, /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 4 + dir = 4; + icon_state = "warningcorner" }, /obj/machinery/camera/network/engineering{ dir = 4 @@ -11377,8 +11362,8 @@ /area/maintenance/substation/civ_west) "auI" = ( /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/machinery/power/terminal{ dir = 1 @@ -12367,8 +12352,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/red/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, @@ -12522,8 +12507,8 @@ dir = 1 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/tiled/monotile, /area/hallway/lower/first_west) @@ -12655,8 +12640,8 @@ pixel_x = -30 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/xenoflora) @@ -12686,8 +12671,8 @@ icon_state = "16-0" }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /obj/structure/disposalpipe/up, /obj/effect/floor_decal/industrial/outline/yellow, @@ -12861,8 +12846,8 @@ /area/security/checkpoint) "awR" = ( /obj/machinery/vending/snack{ - icon_state = "snack"; - dir = 4 + dir = 4; + icon_state = "snack" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/tram) @@ -13271,8 +13256,8 @@ /area/tether/surfacebase/tram) "axz" = ( /obj/machinery/vending/cola{ - icon_state = "Soda_Machine"; - dir = 4 + dir = 4; + icon_state = "Soda_Machine" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/tram) @@ -14545,16 +14530,16 @@ /area/tether/surfacebase/tram) "azn" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/effect/landmark/tram, /turf/simulated/floor/tiled, /area/tether/surfacebase/tram) "azo" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/status_display{ pixel_y = 30 @@ -14610,8 +14595,8 @@ icon_state = "1-2" }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/rnd/hallway) @@ -14721,8 +14706,8 @@ /area/rnd/xenobiology/xenoflora) "azD" = ( /obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 6 + dir = 6; + icon_state = "intact" }, /obj/machinery/meter, /obj/effect/floor_decal/borderfloor{ @@ -15536,25 +15521,6 @@ /obj/random/contraband, /turf/simulated/floor/plating, /area/tether/surfacebase/surface_one_hall) -"aAT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) "aAU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15777,32 +15743,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) -"aBh" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) "aBi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -16090,8 +16030,8 @@ /area/rnd/hallway) "aBy" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -16156,8 +16096,8 @@ "aBF" = ( /obj/machinery/biogenerator, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -16437,8 +16377,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 + dir = 2; + icon_state = "pipe-j2" }, /turf/simulated/floor/tiled, /area/rnd/hallway) @@ -16602,8 +16542,8 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 5 @@ -16859,8 +16799,8 @@ /area/crew_quarters/visitor_dining) "aCT" = ( /obj/machinery/vending/fitness{ - icon_state = "fitness"; - dir = 4 + dir = 4; + icon_state = "fitness" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/tram) @@ -16938,8 +16878,8 @@ dir = 8 }, /obj/structure/sink{ - icon_state = "sink"; dir = 8; + icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -17182,8 +17122,8 @@ /area/crew_quarters/visitor_dining) "aDw" = ( /obj/machinery/vending/coffee{ - icon_state = "coffee"; - dir = 4 + dir = 4; + icon_state = "coffee" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/tram) @@ -17528,8 +17468,8 @@ /area/rnd/hallway) "aEe" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -17625,8 +17565,8 @@ /area/rnd/xenobiology/xenoflora) "aEl" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -18650,14 +18590,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) -"aFQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) "aFR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19369,8 +19301,8 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, @@ -19702,8 +19634,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/plating, /area/maintenance/lower/research) @@ -19847,16 +19779,16 @@ /obj/effect/floor_decal/rust, /obj/random/trash_pile, /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /turf/simulated/floor/plating, /area/maintenance/lower/research) "aHx" = ( /obj/effect/floor_decal/rust, /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, @@ -19864,8 +19796,8 @@ /area/maintenance/lower/research) "aHy" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /obj/structure/table/rack, /obj/item/clothing/suit/fire/firefighter, @@ -19877,8 +19809,8 @@ /area/maintenance/lower/research) "aHz" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /obj/structure/railing{ dir = 4 @@ -20500,8 +20432,8 @@ name_tag = "Atmospherics Subgrid" }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -20516,8 +20448,8 @@ icon_state = "0-4" }, /obj/machinery/power/smes/buildable{ - charge = 2e+006; - RCon_tag = "Substation - Atmospherics" + RCon_tag = "Substation - Atmospherics"; + charge = 2e+006 }, /turf/simulated/floor/plating, /area/maintenance/substation/surface_atmos) @@ -20532,8 +20464,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /obj/machinery/space_heater, /turf/simulated/floor/tiled/techmaint, @@ -20548,8 +20480,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/tiled/techmaint, @@ -20562,8 +20494,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/tiled/techmaint, @@ -20575,15 +20507,15 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner2" }, /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/tiled/techmaint, @@ -20603,15 +20535,15 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 4 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner2" }, /obj/machinery/camera/network/engineering, /obj/machinery/portable_atmospherics/powered/pump/filled, @@ -20625,8 +20557,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled/techmaint, @@ -20641,8 +20573,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled/techmaint, @@ -20654,8 +20586,8 @@ dir = 5 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 5 + dir = 5; + icon_state = "bordercolor" }, /obj/fiftyspawner/steel, /turf/simulated/floor/tiled/techmaint, @@ -20716,8 +20648,8 @@ }, /obj/effect/floor_decal/industrial/warning/corner, /obj/effect/floor_decal/steeldecal/steel_decals_central6{ - icon_state = "steel_decals_central6"; - dir = 4 + dir = 4; + icon_state = "steel_decals_central6" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) @@ -20739,8 +20671,8 @@ dir = 4 }, /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 + dir = 8; + icon_state = "warningcorner" }, /obj/structure/disposalpipe/segment{ dir = 4; @@ -21100,8 +21032,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/machinery/space_heater, /turf/simulated/floor/tiled/techmaint, @@ -21162,8 +21094,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/item/taperoll/atmos, /obj/item/stack/cable_coil/random_belt, @@ -21520,8 +21452,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/machinery/space_heater, /turf/simulated/floor/tiled/techmaint, @@ -21567,8 +21499,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/item/weapon/storage/box/lights/mixed, /turf/simulated/floor/tiled/techmaint, @@ -21994,8 +21926,8 @@ /area/rnd/external) "aLo" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 + dir = 8; + icon_state = "warning" }, /obj/effect/floor_decal/steeldecal/steel_decals3{ dir = 6 @@ -22055,8 +21987,8 @@ /area/rnd/external) "aLr" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/effect/floor_decal/steeldecal/steel_decals3{ dir = 4 @@ -22184,8 +22116,8 @@ icon_state = "4-8" }, /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /obj/machinery/atmospherics/binary/pump/on{ name = "Ports to Waste" @@ -22223,8 +22155,8 @@ name = "Air to Ports" }, /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -22565,8 +22497,8 @@ /area/engineering/atmos) "aMo" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ - icon_state = "map"; - dir = 1 + dir = 1; + icon_state = "map" }, /obj/machinery/meter, /turf/simulated/floor/tiled, @@ -22610,8 +22542,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -22883,8 +22815,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 5 + dir = 5; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -22896,8 +22828,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner" }, /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -22941,15 +22873,15 @@ /area/engineering/atmos) "aNd" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 10 + dir = 10; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -23266,8 +23198,8 @@ /area/engineering/atmos/gas_storage) "aNC" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, @@ -23287,8 +23219,8 @@ /area/engineering/atmos) "aNF" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -23300,8 +23232,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -23323,8 +23255,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -23343,8 +23275,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -23467,8 +23399,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /obj/structure/cable/cyan{ d1 = 1; @@ -23482,8 +23414,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -23505,8 +23437,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -23532,8 +23464,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -23550,8 +23482,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -23741,8 +23673,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -23755,8 +23687,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -23783,8 +23715,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24002,8 +23934,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24410,8 +24342,8 @@ /area/engineering/atmos) "aPx" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ - icon_state = "map"; - dir = 4 + dir = 4; + icon_state = "map" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24423,8 +24355,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24441,22 +24373,22 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/engineering/atmos) "aPB" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 5 + dir = 5; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor{ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24468,8 +24400,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24653,8 +24585,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24664,8 +24596,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24675,8 +24607,8 @@ /area/engineering/atmos) "aQa" = ( /obj/machinery/atmospherics/pipe/tank/oxygen{ - icon_state = "o2_map"; - dir = 1 + dir = 1; + icon_state = "o2_map" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -24836,8 +24768,8 @@ /area/crew_quarters/sleep/Dorm_4) "aQo" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/engineering/atmos/processing) @@ -24865,8 +24797,8 @@ /area/engineering/atmos/processing) "aQt" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ - icon_state = "intact"; - dir = 10 + dir = 10; + icon_state = "intact" }, /obj/machinery/light{ dir = 4 @@ -24887,8 +24819,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24903,8 +24835,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24916,8 +24848,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24935,8 +24867,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24948,8 +24880,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24961,8 +24893,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24974,8 +24906,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -24985,8 +24917,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -25243,8 +25175,8 @@ /area/engineering/atmos) "aRf" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ - icon_state = "map"; - dir = 4 + dir = 4; + icon_state = "map" }, /obj/machinery/meter, /turf/simulated/floor/tiled, @@ -25474,8 +25406,8 @@ /area/engineering/atmos/processing) "aRv" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 5 + dir = 5; + icon_state = "intact" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/processing) @@ -25490,15 +25422,15 @@ /area/engineering/atmos/processing) "aRy" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ - icon_state = "map"; - dir = 4 + dir = 4; + icon_state = "map" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/processing) "aRz" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple{ - icon_state = "map"; - dir = 8 + dir = 8; + icon_state = "map" }, /obj/machinery/meter, /turf/simulated/floor/tiled, @@ -25550,8 +25482,8 @@ /area/engineering/atmos) "aRG" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ - icon_state = "map"; - dir = 1 + dir = 1; + icon_state = "map" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -25566,8 +25498,8 @@ /area/engineering/atmos) "aRI" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ - icon_state = "map"; - dir = 4 + dir = 4; + icon_state = "map" }, /obj/machinery/meter, /turf/simulated/floor/tiled, @@ -25579,8 +25511,8 @@ /area/engineering/atmos) "aRK" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 5 + dir = 5; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -25624,8 +25556,8 @@ icon_state = "1-2" }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -25669,13 +25601,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos/processing) -"aRR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) "aRS" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/visible/green{ @@ -25811,15 +25736,15 @@ /area/engineering/atmos) "aSg" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ - icon_state = "intact"; - dir = 9 + dir = 9; + icon_state = "intact" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) "aSh" = ( /obj/machinery/atmospherics/pipe/tank/nitrogen{ - icon_state = "n2_map"; - dir = 1 + dir = 1; + icon_state = "n2_map" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -26000,8 +25925,8 @@ /area/engineering/atmos/processing) "aSB" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ - icon_state = "intact"; - dir = 10 + dir = 10; + icon_state = "intact" }, /obj/structure/cable/cyan{ d1 = 1; @@ -26087,8 +26012,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/red/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -26106,8 +26031,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -26303,8 +26228,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/black/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -26483,8 +26408,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/vending/loadout/loadout_misc, /turf/simulated/floor/tiled, @@ -26576,8 +26501,8 @@ /area/crew_quarters/sleep/Dorm_2) "aTJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ - icon_state = "intact"; - dir = 6 + dir = 6; + icon_state = "intact" }, /obj/machinery/door/firedoor, /obj/structure/grille, @@ -26613,8 +26538,8 @@ /area/engineering/atmos/processing) "aTL" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ - icon_state = "map"; - dir = 4 + dir = 4; + icon_state = "map" }, /obj/machinery/door/firedoor, /obj/structure/grille, @@ -26641,8 +26566,8 @@ /area/engineering/atmos/processing) "aTN" = ( /obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - icon_state = "co2_map"; - dir = 4 + dir = 4; + icon_state = "co2_map" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -26655,8 +26580,8 @@ /area/engineering/atmos) "aTP" = ( /obj/machinery/atmospherics/pipe/tank/phoron{ - icon_state = "phoron_map"; - dir = 4 + dir = 4; + icon_state = "phoron_map" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -26669,8 +26594,8 @@ /area/engineering/atmos) "aTR" = ( /obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - icon_state = "n2o_map"; - dir = 4 + dir = 4; + icon_state = "n2o_map" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) @@ -26787,8 +26712,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /obj/structure/undies_wardrobe, /obj/machinery/camera/network/civilian, @@ -26799,8 +26724,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/blue/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/structure/table/standard, /obj/machinery/light{ @@ -26817,8 +26742,8 @@ dir = 5 }, /obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 5 + dir = 5; + icon_state = "bordercolor" }, /obj/structure/table/standard, /obj/item/device/communicator, @@ -26871,8 +26796,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /obj/structure/closet/emcloset, /obj/machinery/light{ @@ -26887,8 +26812,8 @@ dir = 5 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 5 + dir = 5; + icon_state = "bordercolor" }, /obj/machinery/light{ dir = 4; @@ -26903,15 +26828,15 @@ dir = 8 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 10 }, /obj/effect/floor_decal/corner/grey/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 10 + dir = 10; + icon_state = "bordercolorcorner2" }, /obj/structure/extinguisher_cabinet{ dir = 4; @@ -26974,8 +26899,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 8 @@ -26985,8 +26910,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/grey/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner2" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -27173,8 +27098,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/machinery/light_switch{ dir = 8; @@ -27333,8 +27258,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/grey/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -27344,8 +27269,8 @@ dir = 5 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 5 + dir = 5; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -27385,8 +27310,8 @@ /area/engineering/atmos/processing) "aVl" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple{ - icon_state = "map"; - dir = 4 + dir = 4; + icon_state = "map" }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/cyan{ @@ -27621,8 +27546,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -27655,8 +27580,8 @@ /area/engineering/atmos/processing) "aVG" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ - icon_state = "intact"; - dir = 9 + dir = 9; + icon_state = "intact" }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -27811,8 +27736,8 @@ dir = 6 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 6 + dir = 6; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -27989,12 +27914,12 @@ dir = 8 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/machinery/vending/loadout/costume{ - icon_state = "theater"; - dir = 4 + dir = 4; + icon_state = "theater" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -28105,8 +28030,8 @@ dir = 10 }, /obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 10 + dir = 10; + icon_state = "bordercolor" }, /obj/structure/closet/secure_closet/personal, /obj/item/clothing/under/bathrobe, @@ -28142,8 +28067,8 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 10 + dir = 10; + icon_state = "bordercolor" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -28168,12 +28093,12 @@ dir = 8 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/machinery/vending/fitness{ - icon_state = "fitness"; - dir = 4 + dir = 4; + icon_state = "fitness" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -28182,12 +28107,12 @@ dir = 4 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/machinery/vending/cola{ - icon_state = "Soda_Machine"; - dir = 8 + dir = 8; + icon_state = "Soda_Machine" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -28219,8 +28144,8 @@ "aWT" = ( /obj/structure/table/bench/padded, /obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 4 + dir = 4; + icon_state = "tube-construct-stage1" }, /turf/simulated/floor/wood, /area/vacant/vacant_bar) @@ -28242,8 +28167,8 @@ dir = 10 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 10 + dir = 10; + icon_state = "bordercolor" }, /obj/machinery/light{ dir = 8; @@ -28251,8 +28176,8 @@ pixel_y = 0 }, /obj/machinery/vending/cigarette{ - icon_state = "cigs"; - dir = 4 + dir = 4; + icon_state = "cigs" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -28309,8 +28234,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/grey/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 9 + dir = 9; + icon_state = "bordercolorcorner2" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -28351,8 +28276,8 @@ dir = 6 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 6 + dir = 6; + icon_state = "bordercolor" }, /obj/structure/closet/crate, /obj/machinery/alarm{ @@ -28485,8 +28410,8 @@ dir = 4 }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/cable/green{ d1 = 4; @@ -28516,8 +28441,8 @@ /area/maintenance/lower/atmos) "aXq" = ( /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 + dir = 4; + icon_state = "pipe-j1" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -28578,8 +28503,8 @@ /area/maintenance/lower/atmos) "aXt" = ( /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 + dir = 4; + icon_state = "pipe-j1" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -28610,8 +28535,8 @@ dir = 4 }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/cable/green{ d1 = 4; @@ -28644,8 +28569,8 @@ icon_state = "pipe-j2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -28778,8 +28703,8 @@ "aXH" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -28945,8 +28870,8 @@ dir = 8 }, /obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 4 + dir = 4; + icon_state = "tube-construct-stage1" }, /turf/simulated/floor/wood, /area/vacant/vacant_bar) @@ -29039,8 +28964,8 @@ /area/maintenance/lower/atmos) "aYo" = ( /obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 8 + dir = 8; + icon_state = "tube-construct-stage1" }, /turf/simulated/floor/wood, /area/vacant/vacant_bar) @@ -29749,8 +29674,8 @@ /area/vacant/vacant_bar) "aZI" = ( /obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 1 + dir = 1; + icon_state = "tube-construct-stage1" }, /turf/simulated/floor/wood, /area/vacant/vacant_bar) @@ -29767,8 +29692,8 @@ "aZL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 1 + dir = 1; + icon_state = "tube-construct-stage1" }, /obj/structure/table, /turf/simulated/floor/plating, @@ -29795,8 +29720,8 @@ "aZP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 1 + dir = 1; + icon_state = "tube-construct-stage1" }, /obj/structure/table, /turf/simulated/floor/wood, @@ -29812,8 +29737,8 @@ "aZS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 1 + dir = 1; + icon_state = "tube-construct-stage1" }, /obj/random/junk, /turf/simulated/floor/wood, @@ -30212,8 +30137,8 @@ /area/maintenance/lower/mining_eva) "bbf" = ( /obj/machinery/computer/supplycomp/control{ - icon_state = "computer"; - dir = 8 + dir = 8; + icon_state = "computer" }, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -30311,8 +30236,8 @@ icon_state = "0-4" }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 + dir = 8; + icon_state = "warning" }, /obj/effect/floor_decal/steeldecal/steel_decals3, /obj/effect/floor_decal/steeldecal/steel_decals3{ @@ -30906,8 +30831,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -30918,15 +30843,15 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 }, /obj/effect/floor_decal/corner/grey/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -30935,8 +30860,8 @@ /area/crew_quarters/visitor_laundry) "bcF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -30959,15 +30884,15 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 4 }, /obj/effect/floor_decal/corner/grey/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -30980,8 +30905,8 @@ dir = 5 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 5 + dir = 5; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -30990,8 +30915,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/machinery/alarm{ dir = 4; @@ -31008,8 +30933,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -31019,8 +30944,8 @@ dir = 10 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 10 + dir = 10; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) @@ -31042,8 +30967,8 @@ dir = 6 }, /obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 6 + dir = 6; + icon_state = "bordercolor" }, /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, @@ -31083,8 +31008,8 @@ /area/crew_quarters/visitor_laundry) "bcU" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; @@ -31131,8 +31056,8 @@ /area/maintenance/lower/public_garden_maintenence) "bcZ" = ( /obj/machinery/computer/HolodeckControl{ - icon_state = "computer"; - dir = 4 + dir = 4; + icon_state = "computer" }, /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -31151,8 +31076,8 @@ icon_state = "0-4" }, /obj/effect/floor_decal/techfloor/orange/corner{ - icon_state = "techfloororange_corners"; - dir = 8 + dir = 8; + icon_state = "techfloororange_corners" }, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) @@ -31220,15 +31145,15 @@ dir = 9 }, /obj/effect/floor_decal/techfloor/hole{ - icon_state = "techfloor_hole_left"; - dir = 4 + dir = 4; + icon_state = "techfloor_hole_left" }, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) "bdi" = ( /obj/effect/floor_decal/techfloor/orange/corner{ - icon_state = "techfloororange_corners"; - dir = 1 + dir = 1; + icon_state = "techfloororange_corners" }, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) @@ -31352,8 +31277,8 @@ dir = 10 }, /obj/effect/floor_decal/techfloor/hole/right{ - icon_state = "techfloor_hole_right"; - dir = 4 + dir = 4; + icon_state = "techfloor_hole_right" }, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) @@ -31361,8 +31286,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/techfloor/orange/corner{ - icon_state = "techfloororange_corners"; - dir = 8 + dir = 8; + icon_state = "techfloororange_corners" }, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) @@ -31374,8 +31299,8 @@ pixel_x = 28 }, /obj/effect/floor_decal/techfloor/orange/corner{ - icon_state = "techfloororange_corners"; - dir = 1 + dir = 1; + icon_state = "techfloororange_corners" }, /turf/simulated/floor/tiled/techmaint, /area/holodeck_control) @@ -31432,8 +31357,8 @@ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -31454,8 +31379,8 @@ pixel_y = 26 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -31470,8 +31395,8 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -31480,8 +31405,8 @@ /area/tether/surfacebase/public_garden_one) "bdF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -31490,16 +31415,16 @@ /area/tether/surfacebase/public_garden_one) "bdG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_one) "bdH" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_one) @@ -31519,8 +31444,8 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_one) @@ -31561,8 +31486,8 @@ lg_id = "one" }, /obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 9 + dir = 9; + icon_state = "spline_plain" }, /obj/structure/cable/green{ d2 = 2; @@ -31577,14 +31502,14 @@ /area/looking_glass/lg_1) "fcT" = ( /turf/simulated/floor/looking_glass{ - icon_state = "origin_arrow"; - dir = 8 + dir = 8; + icon_state = "origin_arrow" }, /area/looking_glass/lg_1) "ffD" = ( /turf/simulated/floor/looking_glass{ - icon_state = "origin_arrow"; - dir = 10 + dir = 10; + icon_state = "origin_arrow" }, /area/looking_glass/lg_1) "fYi" = ( @@ -31610,14 +31535,36 @@ /area/maintenance/lower/vacant_site) "gZN" = ( /turf/simulated/floor/looking_glass{ - icon_state = "origin_arrow"; - dir = 9 + dir = 9; + icon_state = "origin_arrow" }, /area/looking_glass/lg_1) +"hmx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/machinery/holoposter{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) "hAe" = ( /turf/simulated/floor/looking_glass{ - icon_state = "origin_arrow"; - dir = 5 + dir = 5; + icon_state = "origin_arrow" }, /area/looking_glass/lg_1) "hFG" = ( @@ -31626,8 +31573,8 @@ /area/looking_glass/lg_1) "iue" = ( /turf/simulated/floor/looking_glass{ - icon_state = "origin_arrow"; - dir = 1 + dir = 1; + icon_state = "origin_arrow" }, /area/looking_glass/lg_1) "lry" = ( @@ -31639,12 +31586,34 @@ /obj/random/drinkbottle, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) +"lxU" = ( +/obj/machinery/holoposter, +/turf/simulated/wall, +/area/hallway/lower/first_west) "lNp" = ( /turf/simulated/floor/looking_glass/optional{ - icon_state = "origin_optional_arrow"; - dir = 4 + dir = 4; + icon_state = "origin_optional_arrow" }, /area/looking_glass/lg_1) +"lWT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) "mdP" = ( /obj/machinery/door/airlock{ id_tag = "lg_1"; @@ -31679,8 +31648,8 @@ /area/tether/surfacebase/public_garden_one) "oRz" = ( /turf/simulated/floor/looking_glass{ - icon_state = "origin_arrow"; - dir = 4 + dir = 4; + icon_state = "origin_arrow" }, /area/looking_glass/lg_1) "rIU" = ( @@ -31691,8 +31660,8 @@ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -31704,16 +31673,28 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_one) +"sya" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) "sIO" = ( /turf/simulated/floor/looking_glass{ - icon_state = "origin_arrow"; - dir = 6 + dir = 6; + icon_state = "origin_arrow" }, /area/looking_glass/lg_1) "tRJ" = ( /obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 10 + dir = 10; + icon_state = "spline_plain" }, /obj/machinery/button/remote/airlock{ dir = 8; @@ -31730,6 +31711,39 @@ }, /turf/simulated/floor/tiled/techmaint, /area/looking_glass/lg_1) +"vNW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"xnn" = ( +/obj/machinery/holoposter, +/turf/simulated/wall, +/area/crew_quarters/visitor_laundry) "xOH" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -37743,7 +37757,7 @@ aah aah ajS ajS -alb +lWT alm ajS ajS @@ -39741,7 +39755,7 @@ abT abT abT abT -ahl +lxU ahL anP adu @@ -40362,7 +40376,7 @@ aPP aQr aQT aRy -aRR +aRv aSz aTf aOR @@ -44026,7 +44040,7 @@ axm ayh ayQ azZ -aAT +hmx aBR aCD aDl @@ -46014,7 +46028,7 @@ axt awN azd aAk -aBh +vNW agM aDt aFt @@ -46476,7 +46490,7 @@ aUm aUm aUq aUr -aUm +xnn aWn aWn aVn @@ -46589,7 +46603,7 @@ aDu aDX aEJ aFx -aFQ +sya aGx aHl aDu diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm index 9a83b80e742..4970bb3b657 100644 --- a/maps/tether/tether-02-surface2.dmm +++ b/maps/tether/tether-02-surface2.dmm @@ -150,8 +150,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /obj/structure/table/standard, /obj/item/weapon/reagent_containers/spray/cleaner{ @@ -224,8 +224,8 @@ dir = 5 }, /obj/effect/floor_decal/corner/white/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 5 + dir = 5; + icon_state = "bordercolorcorner2" }, /obj/structure/table/standard, /obj/item/stack/nanopaste, @@ -254,8 +254,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloorwhite/corner2{ dir = 10 @@ -364,10 +364,10 @@ icon_state = "0-2" }, /obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - MedSec"; charge = 0; output_attempt = 0; - outputting = 0; - RCon_tag = "Substation - MedSec" + outputting = 0 }, /turf/simulated/floor, /area/maintenance/substation/medsec) @@ -772,8 +772,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /obj/structure/cable/green{ d1 = 2; @@ -1000,8 +1000,8 @@ /area/maintenance/lower/north) "acd" = ( /obj/machinery/computer/prisoner{ - icon_state = "computer"; - dir = 4 + dir = 4; + icon_state = "computer" }, /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -1127,8 +1127,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/alarm{ pixel_y = 22 @@ -2072,8 +2072,8 @@ dir = 5 }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/table/standard, /obj/random/soap, @@ -2369,12 +2369,12 @@ /area/tether/surfacebase/surface_two_hall) "afd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2656,8 +2656,8 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "1-2"; - dir = 1 + dir = 1; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3435,8 +3435,8 @@ "ahh" = ( /obj/machinery/suit_cycler/medical, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/paramed) @@ -3572,8 +3572,8 @@ dir = 4 }, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) @@ -3611,8 +3611,8 @@ /area/maintenance/lower/bar) "ahC" = ( /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) @@ -3663,8 +3663,8 @@ dir = 1 }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -3793,8 +3793,8 @@ dir = 10 }, /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) @@ -3959,8 +3959,8 @@ /obj/structure/lattice, /obj/machinery/door/firedoor/glass, /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /turf/simulated/open, /area/maintenance/lower/bar) @@ -3984,8 +3984,8 @@ icon_state = "pipe-c" }, /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 1 + dir = 1; + icon_state = "techfloororange_edges" }, /obj/structure/cable/green{ d1 = 4; @@ -4004,8 +4004,8 @@ dir = 6 }, /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) @@ -4026,8 +4026,8 @@ /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /obj/structure/disposalpipe/up{ dir = 8 @@ -4041,8 +4041,8 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - icon_state = "up-scrubbers"; - dir = 8 + dir = 8; + icon_state = "up-scrubbers" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) @@ -4122,8 +4122,8 @@ /area/tether/surfacebase/surface_two_hall) "aiA" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, @@ -4141,8 +4141,8 @@ /area/teleporter) "aiD" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/structure/cable{ icon_state = "4-8" @@ -4250,8 +4250,8 @@ icon_state = "1-8" }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/structure/disposalpipe/segment, /obj/structure/railing{ @@ -4270,8 +4270,8 @@ "aiS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 + dir = 8; + icon_state = "warning" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -4437,8 +4437,8 @@ /area/maintenance/lower/rnd) "aji" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ @@ -4674,8 +4674,8 @@ dir = 1 }, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 5 + dir = 5; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) @@ -4872,8 +4872,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/lime/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) @@ -4891,8 +4891,8 @@ /area/tether/surfacebase/public_garden_two) "akg" = ( /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 5 + dir = 5; + icon_state = "camera" }, /obj/machinery/vending/hydronutrients/brig{ dir = 4 @@ -4932,8 +4932,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/lime/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) @@ -5053,8 +5053,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/lime/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner" }, /obj/structure/cable/green{ d1 = 1; @@ -5171,8 +5171,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/lime/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner" }, /obj/structure/cable/green{ d1 = 4; @@ -5524,8 +5524,8 @@ /area/tether/surfacebase/fish_farm) "alm" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /turf/simulated/wall, /area/tether/surfacebase/fish_farm) @@ -5578,8 +5578,8 @@ name = "Medical Doctor" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /obj/effect/floor_decal/borderfloorwhite{ dir = 10 @@ -5658,8 +5658,8 @@ /area/tether/surfacebase/north_staires_two) "aly" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, @@ -5677,8 +5677,8 @@ "alB" = ( /obj/structure/railing, /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) @@ -5794,8 +5794,8 @@ /area/maintenance/lower/bar) "alM" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/structure/cable{ icon_state = "4-8" @@ -5816,8 +5816,8 @@ pixel_y = -28 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -5865,8 +5865,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, @@ -5907,15 +5907,15 @@ /area/tether/surfacebase/fish_farm) "alT" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) "alU" = ( /obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 8 + dir = 8; + icon_state = "spline_plain" }, /turf/simulated/floor/beach/sand/desert, /area/tether/surfacebase/fish_farm) @@ -6158,8 +6158,8 @@ /area/maintenance/lower/rnd) "amo" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /obj/structure/railing{ dir = 8 @@ -6168,19 +6168,19 @@ /area/tether/surfacebase/fish_farm) "amp" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) "amq" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) @@ -6334,8 +6334,8 @@ /area/tether/surfacebase/fish_farm) "amE" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /turf/simulated/floor/beach/sand/desert, /area/tether/surfacebase/fish_farm) @@ -6346,8 +6346,8 @@ "amG" = ( /obj/machinery/door/airlock/maintenance/common, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, @@ -6414,8 +6414,8 @@ pixel_y = 22 }, /obj/effect/floor_decal/techfloor{ - icon_state = "techfloororange_edges"; - dir = 8 + dir = 8; + icon_state = "techfloororange_edges" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) @@ -6483,8 +6483,8 @@ "amW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/danger{ - icon_state = "danger"; - dir = 8 + dir = 8; + icon_state = "danger" }, /obj/structure/sign/warning/caution{ pixel_y = 32 @@ -6655,8 +6655,8 @@ /area/maintenance/asmaint2) "ano" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) @@ -6875,8 +6875,8 @@ /area/rnd/rdoffice) "anP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -6905,8 +6905,8 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -6915,8 +6915,8 @@ /area/rnd/rdoffice) "anR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7020,8 +7020,8 @@ "aoe" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor/tiled/dark, /area/teleporter) @@ -7419,17 +7419,17 @@ dir = 4 }, /obj/machinery/camera/network/research{ - icon_state = "camera"; - dir = 8 + dir = 8; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) "aoQ" = ( /obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Research"; charge = 0; output_attempt = 0; - outputting = 0; - RCon_tag = "Substation - Research" + outputting = 0 }, /obj/structure/cable/green, /obj/structure/cable/green{ @@ -7573,8 +7573,8 @@ /area/tether/surfacebase/surface_two_hall) "apg" = ( /obj/structure/cable/green{ - icon_state = "4-8"; - dir = 1 + dir = 1; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -7587,8 +7587,8 @@ "aph" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/item/device/radio/intercom{ dir = 1; @@ -8004,8 +8004,8 @@ "apS" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "1-2"; - dir = 1 + dir = 1; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8054,8 +8054,8 @@ /area/maintenance/substation/command) "apY" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /turf/simulated/floor/tiled, /area/teleporter) @@ -8257,8 +8257,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 9 + dir = 9; + icon_state = "bordercolorcorner2" }, /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, @@ -8275,8 +8275,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 9 + dir = 9; + icon_state = "bordercolorcorner2" }, /obj/effect/floor_decal/corner/yellow/bordercorner2, /turf/simulated/floor/tiled/techmaint, @@ -8696,8 +8696,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) @@ -8928,16 +8928,16 @@ /area/tether/surfacebase/emergency_storage/atmos) "arH" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/red/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/powered/scrubber, @@ -8945,36 +8945,36 @@ /area/engineering/lower/lobby) "arI" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/red/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/structure/bed/chair, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) "arJ" = ( /obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 1 + dir = 1; + icon_state = "corner_white" }, /obj/structure/bed/chair, /obj/machinery/light{ dir = 1 }, /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 6 + dir = 6; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/red/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 6 + dir = 6; + icon_state = "bordercolor_shifted" }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) @@ -8994,8 +8994,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -9004,12 +9004,12 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner2" }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner2" }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) @@ -9032,15 +9032,15 @@ dir = 5 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 5 + dir = 5; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 4 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner2" }, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -9151,8 +9151,8 @@ req_one_access = list(17) }, /obj/structure/cable/green{ - icon_state = "1-2"; - dir = 1 + dir = 1; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9180,8 +9180,8 @@ "asf" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "1-2"; - dir = 1 + dir = 1; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9488,8 +9488,8 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /obj/structure/cable/green{ d1 = 1; @@ -9587,8 +9587,8 @@ /area/tether/surfacebase/surface_two_hall) "asC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 5 + dir = 5; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) @@ -9603,15 +9603,15 @@ /area/engineering/lower/lobby) "asF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) "asG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 10 + dir = 10; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -9625,15 +9625,15 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 5 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 5 + dir = 5; + icon_state = "bordercolorcorner2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -9688,8 +9688,8 @@ /area/tether/surfacebase/east_stairs_two) "asO" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -10062,8 +10062,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /turf/simulated/floor/tiled/dark, /area/bridge_hallway) @@ -10093,8 +10093,8 @@ dir = 8 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/machinery/firealarm{ dir = 8; @@ -10153,8 +10153,8 @@ /area/rnd/breakroom) "atE" = ( /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 + dir = 2; + icon_state = "pipe-j2" }, /obj/structure/cable/green{ d1 = 1; @@ -10248,8 +10248,8 @@ /area/tether/surfacebase/emergency_storage/atmos) "atO" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -10272,15 +10272,15 @@ /area/engineering/lower/lobby) "atQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - icon_state = "map"; - dir = 1 + dir = 1; + icon_state = "map" }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) "atR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - icon_state = "map"; - dir = 1 + dir = 1; + icon_state = "map" }, /obj/machinery/meter, /turf/simulated/floor/tiled, @@ -10320,15 +10320,15 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 6 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 6 + dir = 6; + icon_state = "bordercolorcorner2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -10337,8 +10337,8 @@ /area/engineering/lower/lobby) "atX" = ( /obj/machinery/computer/station_alert{ - icon_state = "computer"; - dir = 4 + dir = 4; + icon_state = "computer" }, /turf/simulated/floor/tiled/dark, /area/engineering/lower/breakroom) @@ -10557,8 +10557,8 @@ /obj/effect/floor_decal/borderfloor/shifted, /obj/effect/floor_decal/corner/white/border/shifted, /obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 10 + dir = 10; + icon_state = "corner_white" }, /obj/structure/flora/pottedplant/subterranean, /turf/simulated/floor/tiled, @@ -10567,8 +10567,8 @@ /obj/effect/floor_decal/borderfloor/shifted, /obj/effect/floor_decal/corner/blue/border/shifted, /obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 10 + dir = 10; + icon_state = "corner_white" }, /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -10580,8 +10580,8 @@ /obj/effect/floor_decal/borderfloor/shifted, /obj/effect/floor_decal/corner/white/border/shifted, /obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 10 + dir = 10; + icon_state = "corner_white" }, /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -10593,8 +10593,8 @@ /obj/effect/floor_decal/borderfloor/shifted, /obj/effect/floor_decal/corner/white/border/shifted, /obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 10 + dir = 10; + icon_state = "corner_white" }, /obj/structure/bed/chair{ dir = 1 @@ -10606,20 +10606,20 @@ /area/engineering/lower/lobby) "auB" = ( /obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 8 + dir = 8; + icon_state = "corner_white" }, /obj/structure/bed/chair{ dir = 1 }, /obj/machinery/light, /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 5 + dir = 5; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/blue/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 5 + dir = 5; + icon_state = "bordercolor_shifted" }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) @@ -10646,8 +10646,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 9 + dir = 9; + icon_state = "bordercolorcorner2" }, /obj/effect/floor_decal/corner/yellow/bordercorner2, /turf/simulated/floor/tiled, @@ -10670,8 +10670,8 @@ dir = 6 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 6 + dir = 6; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/yellow/bordercorner2, @@ -10876,8 +10876,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /obj/structure/table/rack{ dir = 8; @@ -10903,8 +10903,8 @@ dir = 5 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 5 + dir = 5; + icon_state = "bordercolor" }, /obj/structure/table/standard, /obj/item/weapon/storage/briefcase/inflatable{ @@ -10959,15 +10959,15 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner2" }, /obj/structure/table/standard, /obj/item/taperoll/atmos, @@ -11041,8 +11041,8 @@ dir = 5 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/machinery/power/apc{ dir = 1; @@ -11190,8 +11190,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/structure/table/rack{ dir = 8; @@ -11217,8 +11217,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/structure/table/standard, /obj/item/device/suit_cooling_unit, @@ -11236,8 +11236,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /obj/structure/closet/secure_closet/atmos_personal, /obj/machinery/camera/network/engineering, @@ -11250,8 +11250,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/structure/closet/secure_closet/atmos_personal, /obj/machinery/alarm{ @@ -11267,8 +11267,8 @@ }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/structure/closet/secure_closet/atmos_personal, /obj/machinery/firealarm{ @@ -11299,8 +11299,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/vending/engivend, /turf/simulated/floor/tiled, @@ -11313,8 +11313,8 @@ dir = 5 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 5 + dir = 5; + icon_state = "bordercolor" }, /obj/machinery/vending/tool, /turf/simulated/floor/tiled, @@ -11350,8 +11350,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -11360,12 +11360,12 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner2" }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner2" }, /turf/simulated/floor/tiled/monotile, /area/engineering/atmos) @@ -11432,8 +11432,8 @@ /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -11465,8 +11465,8 @@ "avR" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 6 + dir = 6; + icon_state = "intact" }, /obj/machinery/light/small{ dir = 1 @@ -11757,15 +11757,15 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/machinery/suit_cycler/engineering{ name = "Atmospherics suit cycler" }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) @@ -11786,15 +11786,15 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 5 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 5 + dir = 5; + icon_state = "bordercolorcorner2" }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) @@ -11803,8 +11803,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 10; @@ -11812,8 +11812,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 10 + dir = 10; + icon_state = "bordercolorcorner2" }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) @@ -11840,15 +11840,15 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 5 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 5 + dir = 5; + icon_state = "bordercolorcorner2" }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) @@ -11922,8 +11922,8 @@ /area/maintenance/engineering/pumpstation) "awH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/red{ - icon_state = "map"; - dir = 8 + dir = 8; + icon_state = "map" }, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) @@ -12132,8 +12132,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/super; @@ -12440,8 +12440,8 @@ "axx" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden/red{ - icon_state = "map"; - dir = 8 + dir = 8; + icon_state = "map" }, /obj/machinery/meter, /turf/simulated/floor/plating, @@ -12605,8 +12605,8 @@ dir = 6 }, /obj/machinery/camera/network/research{ - icon_state = "camera"; - dir = 8 + dir = 8; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) @@ -12631,15 +12631,15 @@ dir = 10 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 10 + dir = 10; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 9 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 9 + dir = 9; + icon_state = "bordercolorcorner2" }, /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/camera/network/engineering{ @@ -12663,16 +12663,16 @@ dir = 6 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 6 + dir = 6; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 6 }, /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 6 + dir = 6; + icon_state = "bordercolorcorner2" }, /obj/effect/floor_decal/corner/yellow/bordercorner2, /obj/machinery/recharge_station, @@ -12683,15 +12683,15 @@ dir = 10 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 10 + dir = 10; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 8 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner2" }, /obj/structure/closet/secure_closet/engineering_electrical, /turf/simulated/floor/tiled, @@ -12729,15 +12729,15 @@ dir = 6 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 6 + dir = 6; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 6 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 6 + dir = 6; + icon_state = "bordercolorcorner2" }, /obj/structure/table/standard, /obj/item/clothing/gloves/black, @@ -12773,8 +12773,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 9 + dir = 9; + icon_state = "bordercolorcorner2" }, /obj/effect/floor_decal/corner/yellow/bordercorner2, /turf/simulated/floor/tiled/monotile, @@ -12846,26 +12846,26 @@ "ayh" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden/red{ - icon_state = "map"; - dir = 8 + dir = 8; + icon_state = "map" }, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) "ayi" = ( /obj/effect/floor_decal/corner/purple{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/structure/mopbucket, /obj/item/weapon/mop, /obj/item/weapon/reagent_containers/glass/bucket, /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/purple/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/machinery/camera/network/civilian, /turf/simulated/floor/tiled, @@ -12875,16 +12875,16 @@ pixel_y = 32 }, /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/purple/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/purple{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/structure/mopbucket, /obj/item/weapon/mop, @@ -12903,16 +12903,16 @@ pixel_y = 24 }, /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/purple/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/purple{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/structure/mopbucket, /obj/item/weapon/mop, @@ -12921,16 +12921,16 @@ /area/janitor) "ayl" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/purple/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/purple{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/structure/janitorialcart, /obj/structure/sink/kitchen{ @@ -12941,16 +12941,16 @@ "aym" = ( /obj/structure/janitorialcart, /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/purple/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/purple{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/alarm{ pixel_y = 22 @@ -12963,16 +12963,16 @@ "ayn" = ( /obj/structure/janitorialcart, /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/purple/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/purple{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /turf/simulated/floor/tiled, /area/janitor) @@ -13489,8 +13489,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled, @@ -13505,8 +13505,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/alarm{ pixel_y = 22 @@ -13531,15 +13531,15 @@ dir = 6 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner2" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -13577,15 +13577,15 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 4 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner2" }, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -13607,8 +13607,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/firealarm{ dir = 2; @@ -13639,8 +13639,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -13667,8 +13667,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -13687,8 +13687,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -13713,15 +13713,15 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner2" }, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -13778,8 +13778,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -13788,12 +13788,12 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner2" }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner2" }, /obj/structure/cable/cyan{ d1 = 4; @@ -13839,15 +13839,15 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 4 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner2" }, /obj/structure/cable/cyan{ d1 = 4; @@ -13872,8 +13872,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/structure/cable/cyan{ d1 = 4; @@ -13898,12 +13898,12 @@ dir = 1 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - icon_state = "map"; - dir = 1 + dir = 1; + icon_state = "map" }, /obj/structure/cable/cyan{ d1 = 4; @@ -13925,8 +13925,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4; @@ -13949,8 +13949,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4; @@ -13979,8 +13979,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4; @@ -14009,8 +14009,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 9; @@ -14036,8 +14036,8 @@ dir = 10 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, @@ -14047,8 +14047,8 @@ dir = 5 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 5 + dir = 5; + icon_state = "bordercolor" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -14256,8 +14256,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 10 + dir = 10; + icon_state = "bordercolor" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -14321,8 +14321,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 9 + dir = 9; + icon_state = "bordercolorcorner2" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -14355,8 +14355,8 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 6 + dir = 6; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -14367,8 +14367,8 @@ /area/engineering/atmos) "aAo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -14383,8 +14383,8 @@ /area/engineering/atmos) "aAp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -14401,8 +14401,8 @@ /area/engineering/atmos) "aAq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -14410,8 +14410,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 9 + dir = 9; + icon_state = "bordercolorcorner2" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -14425,8 +14425,8 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14463,8 +14463,8 @@ pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -14476,8 +14476,8 @@ /obj/effect/floor_decal/corner/yellow/border, /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -14491,8 +14491,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/yellow/border, /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -14503,19 +14503,19 @@ dir = 9 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 9 + dir = 9; + icon_state = "bordercolorcorner2" }, /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/atmos) "aAx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -14525,8 +14525,8 @@ /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/yellow/bordercorner2, /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -14538,8 +14538,8 @@ /obj/effect/floor_decal/corner/yellow/border, /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -14563,8 +14563,8 @@ }, /obj/effect/floor_decal/corner/yellow/border, /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 9 + dir = 9; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -14576,8 +14576,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 6 + dir = 6; + icon_state = "bordercolor" }, /obj/machinery/camera/network/engineering{ dir = 1 @@ -14611,8 +14611,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 10 + dir = 10; + icon_state = "bordercolorcorner2" }, /turf/simulated/floor/tiled, /area/janitor) @@ -14781,8 +14781,8 @@ /area/engineering/drone_fabrication) "aAW" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /turf/simulated/open, /area/engineering/atmos) @@ -15079,8 +15079,8 @@ dir = 1 }, /obj/machinery/shower{ - icon_state = "shower"; - dir = 1 + dir = 1; + icon_state = "shower" }, /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 10 @@ -15153,8 +15153,8 @@ pixel_y = 28 }, /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 + dir = 8; + icon_state = "warningcorner" }, /obj/machinery/light/small{ dir = 4 @@ -15201,16 +15201,16 @@ /area/rnd/breakroom) "aBG" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/structure/table/steel, /obj/machinery/alarm{ @@ -15248,15 +15248,15 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 4 }, /obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner2" }, /obj/machinery/computer/power_monitor, /turf/simulated/floor/tiled, @@ -15275,8 +15275,8 @@ dir = 5 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 5 + dir = 5; + icon_state = "bordercolor" }, /obj/machinery/computer/rcon, /obj/machinery/light{ @@ -15321,8 +15321,8 @@ /area/maintenance/lower/south) "aBP" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) @@ -15330,8 +15330,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 + dir = 1; + icon_state = "warningcorner" }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) @@ -15361,8 +15361,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/purple/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner2" }, /obj/structure/closet/jcloset, /obj/item/weapon/soap/nanotrasen, @@ -15404,8 +15404,8 @@ dir = 5 }, /obj/machinery/computer/drone_control{ - icon_state = "computer"; - dir = 4 + dir = 4; + icon_state = "computer" }, /obj/machinery/firealarm{ dir = 8; @@ -15430,8 +15430,8 @@ /area/engineering/drone_fabrication) "aCa" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 + dir = 8; + icon_state = "warning" }, /obj/effect/floor_decal/rust, /obj/structure/disposalpipe/segment, @@ -15454,12 +15454,12 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/machinery/computer/atmoscontrol{ - icon_state = "computer"; - dir = 4 + dir = 4; + icon_state = "computer" }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) @@ -15486,8 +15486,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/regular, @@ -15648,8 +15648,8 @@ /area/engineering/drone_fabrication) "aCA" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 + dir = 8; + icon_state = "warning" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, @@ -15662,8 +15662,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/machinery/computer/area_atmos/tag{ dir = 4; @@ -15702,8 +15702,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/structure/table/standard, /obj/item/weapon/paper_bin{ @@ -15910,8 +15910,8 @@ pixel_y = 0 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/drone_fabrication) @@ -15920,8 +15920,8 @@ dir = 10 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 10 + dir = 10; + icon_state = "bordercolor" }, /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, @@ -15931,8 +15931,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) @@ -15960,8 +15960,8 @@ dir = 6 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 6 + dir = 6; + icon_state = "bordercolor" }, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -16057,8 +16057,8 @@ /area/maintenance/asmaint2) "aDp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -16115,8 +16115,8 @@ dir = 10 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 10 + dir = 10; + icon_state = "bordercolor" }, /obj/machinery/computer/station_alert{ dir = 1 @@ -16138,8 +16138,8 @@ dir = 6 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 6 + dir = 6; + icon_state = "bordercolor" }, /obj/machinery/computer/security/engineering{ dir = 1 @@ -16229,8 +16229,8 @@ dir = 6 }, /obj/machinery/computer/drone_control{ - icon_state = "computer"; - dir = 4 + dir = 4; + icon_state = "computer" }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) @@ -16302,8 +16302,8 @@ /area/maintenance/lower/atmos) "aDU" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/cryopod/robot, /turf/simulated/floor/plating, @@ -16318,8 +16318,8 @@ /area/engineering/atmos/storage) "aDW" = ( /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 + dir = 1; + icon_state = "warningcorner" }, /obj/machinery/light/small{ dir = 4 @@ -16552,8 +16552,8 @@ /area/maintenance/lower/atmos) "aEA" = ( /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/railing, /obj/effect/floor_decal/rust, @@ -16698,8 +16698,8 @@ "aER" = ( /obj/structure/railing, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/open, /area/engineering/atmos) @@ -16877,8 +16877,8 @@ /area/maintenance/lower/atmos) "aFr" = ( /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/mirror{ dir = 4; @@ -16927,8 +16927,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/atmos) @@ -17044,8 +17044,8 @@ dir = 1 }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/railing, /obj/effect/floor_decal/rust, @@ -17328,8 +17328,8 @@ dir = 8 }, /obj/structure/plushie/carp{ - icon_state = "carpplushie"; - dir = 4 + dir = 4; + icon_state = "carpplushie" }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) @@ -17623,8 +17623,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /obj/machinery/light{ dir = 1 @@ -17641,8 +17641,8 @@ /area/engineering/atmos/monitoring) "aGT" = ( /obj/structure/plushie/drone{ - icon_state = "droneplushie"; - dir = 1 + dir = 1; + icon_state = "droneplushie" }, /turf/simulated/floor/wood, /area/maintenance/lower/atmos) @@ -17687,8 +17687,8 @@ /area/maintenance/lower/atmos) "aGY" = ( /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -17907,8 +17907,8 @@ /area/rnd/outpost/xenobiology/outpost_slimepens) "aHz" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /obj/machinery/camera/network/engineering{ dir = 4 @@ -18083,8 +18083,8 @@ /area/rnd/outpost/xenobiology/outpost_slimepens) "aHU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) @@ -18167,9 +18167,9 @@ emagged = 0; mat_efficiency = 0.9; name = "Legitimate Prosthetics Fabricator"; + req_access = list(); res_max_amount = 150000; - speed = 0.2; - req_access = list() + speed = 0.2 }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) @@ -18226,10 +18226,10 @@ /area/maintenance/substation/tcomms) "aIn" = ( /obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Telecomms"; charge = 100000; output_attempt = 0; - outputting = 0; - RCon_tag = "Substation - Telecomms" + outputting = 0 }, /obj/structure/cable/green{ icon_state = "0-4" @@ -19248,8 +19248,8 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, @@ -19261,8 +19261,8 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -19281,8 +19281,8 @@ icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -19535,8 +19535,8 @@ dir = 1 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/tcomsat{ @@ -20006,8 +20006,8 @@ /area/maintenance/lower/atmos) "aLx" = ( /obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 8 + dir = 8; + icon_state = "tube-construct-stage1" }, /obj/structure/closet/secure_closet/personal, /turf/simulated/floor/wood, @@ -20028,8 +20028,8 @@ /obj/item/weapon/reagent_containers/food/drinks/bottle/limejuice, /obj/item/weapon/reagent_containers/food/drinks/bottle/lemonjuice, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) @@ -20399,8 +20399,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/glass/hidden{ - icon_state = "door_open"; - dir = 2 + dir = 2; + icon_state = "door_open" }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) @@ -20484,8 +20484,8 @@ /area/rnd/outpost/xenobiology/outpost_slimepens) "aMn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -20847,8 +20847,8 @@ pixel_y = 0 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -21010,8 +21010,8 @@ /area/maintenance/lower/atmos) "aNo" = ( /obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 4 + dir = 4; + icon_state = "tube-construct-stage1" }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -21092,8 +21092,8 @@ "aNy" = ( /obj/structure/stairs/north, /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /obj/structure/railing{ dir = 8 @@ -21280,8 +21280,8 @@ "aNS" = ( /obj/structure/stairs/north, /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /obj/structure/window/basic{ dir = 1 @@ -21319,12 +21319,12 @@ "aNV" = ( /obj/structure/stairs/north, /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /obj/structure/window/basic{ dir = 1 @@ -21413,9 +21413,9 @@ external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; - use_power = 1; pressure_checks = 0; - pressure_checks_default = 0 + pressure_checks_default = 0; + use_power = 1 }, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -21442,10 +21442,10 @@ initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; - use_power = 1; pressure_checks = 2; pressure_checks_default = 2; - pump_direction = 0 + pump_direction = 0; + use_power = 1 }, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -21545,8 +21545,8 @@ /area/bridge_hallway) "aOp" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/computer/cryopod/robot{ pixel_y = -32 @@ -21611,8 +21611,8 @@ /area/tether/surfacebase/medical/surgery) "aOw" = ( /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/bridge_hallway) @@ -21725,15 +21725,15 @@ /obj/machinery/shieldwallgen, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/teleporter) "aOM" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) @@ -21741,8 +21741,8 @@ /obj/structure/table/woodentable, /obj/item/weapon/storage/box/cups, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -21809,8 +21809,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/machinery/computer/atmos_alert{ - icon_state = "computer"; - dir = 1 + dir = 1; + icon_state = "computer" }, /obj/machinery/camera/network/engineering{ dir = 1 @@ -21826,8 +21826,8 @@ /area/engineering/atmos) "aOY" = ( /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /obj/machinery/camera/network/engineering{ dir = 8 @@ -21927,8 +21927,8 @@ req_access = list(55) }, /obj/machinery/camera/network/research{ - icon_state = "camera"; - dir = 8 + dir = 8; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) @@ -21946,8 +21946,8 @@ dir = 9 }, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) @@ -21967,8 +21967,8 @@ dir = 6 }, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 + dir = 8; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) @@ -21980,15 +21980,15 @@ name = "Evidence Closet" }, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 + dir = 8; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/evidence) "aPh" = ( /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/security/lowerhallway) @@ -22002,15 +22002,15 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) @@ -22058,23 +22058,23 @@ dir = 10 }, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) "aPm" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/table/steel, @@ -22090,8 +22090,8 @@ pixel_y = 26 }, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 + dir = 8; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/solitary) @@ -22111,8 +22111,8 @@ pixel_x = -30 }, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) @@ -22141,8 +22141,8 @@ dir = 8 }, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) @@ -22150,8 +22150,8 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) @@ -22185,8 +22185,8 @@ dir = 8 }, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) @@ -22204,8 +22204,8 @@ dir = 1 }, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) @@ -22784,8 +22784,8 @@ icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -23632,8 +23632,8 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -23860,8 +23860,8 @@ /area/tether/surfacebase/medical/lowerhall) "aRR" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/camera/network/tether{ dir = 4 @@ -24016,8 +24016,8 @@ icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -24640,8 +24640,8 @@ "aTe" = ( /obj/structure/catwalk, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor/plating, /area/maintenance/lower/mining) @@ -24989,16 +24989,16 @@ /area/tether/surfacebase/security/lowerhallway) "aTI" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/cryopod{ @@ -25011,20 +25011,20 @@ /area/tether/surfacebase/security/solitary) "aTJ" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/bed/padded, /turf/simulated/floor/tiled, @@ -25076,8 +25076,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/red/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) @@ -25252,15 +25252,15 @@ /area/tether/surfacebase/security/solitary) "aUa" = ( /obj/machinery/camera/network/outside{ - icon_state = "camera"; - dir = 5 + dir = 5; + icon_state = "camera" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside2) "aUb" = ( /obj/machinery/camera/network/outside{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside2) @@ -25269,16 +25269,16 @@ /area/tether/surfacebase/security/gasstorage) "aUd" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/closet/secure_closet/brig{ @@ -25375,8 +25375,8 @@ /area/tether/surfacebase/security/brig) "aUj" = ( /obj/machinery/camera/network/outside{ - icon_state = "camera"; - dir = 5 + dir = 5; + icon_state = "camera" }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside2) @@ -25412,8 +25412,8 @@ /area/tether/surfacebase/security/gasstorage) "aUo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 10 + dir = 10; + icon_state = "intact" }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) @@ -25496,8 +25496,8 @@ dir = 4 }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/cable/green{ icon_state = "4-8" @@ -25534,15 +25534,15 @@ /area/tether/surfacebase/security/evidence) "aUz" = ( /obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - icon_state = "n2o_map"; - dir = 4 + dir = 4; + icon_state = "n2o_map" }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) "aUA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/green{ - icon_state = "map"; - dir = 1 + dir = 1; + icon_state = "map" }, /obj/machinery/meter, /turf/simulated/floor, @@ -25577,13 +25577,13 @@ req_access = list(1) }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -25605,8 +25605,8 @@ /area/maintenance/lower/rnd) "aUF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/firealarm{ dir = 1; @@ -25614,8 +25614,8 @@ pixel_y = -24 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -25709,8 +25709,8 @@ /area/rnd/outpost/xenobiology/outpost_slimepens) "aUL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 9 + dir = 9; + icon_state = "intact" }, /obj/machinery/firealarm{ dir = 1; @@ -25721,8 +25721,8 @@ /area/tether/surfacebase/security/gasstorage) "aUM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/light_switch{ dir = 1; @@ -25730,8 +25730,8 @@ pixel_y = -28 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -25764,12 +25764,12 @@ /area/tether/surfacebase/security/brig) "aUP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 10 + dir = 10; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -25821,16 +25821,16 @@ /area/maintenance/substation/medsec) "aUV" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/alarm{ pixel_y = 22 @@ -25841,20 +25841,20 @@ /area/tether/surfacebase/security/brig) "aUW" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/bed/padded, /obj/item/weapon/bedsheet, @@ -25908,8 +25908,8 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -25930,8 +25930,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /obj/structure/cable/green{ icon_state = "2-8" @@ -26130,8 +26130,8 @@ req_access = list(2) }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/door/blast/regular{ density = 0; @@ -26199,16 +26199,16 @@ /area/tether/surfacebase/security/brig) "aVp" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/closet/secure_closet/brig{ @@ -26218,12 +26218,12 @@ /area/tether/surfacebase/security/brig) "aVq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -26292,8 +26292,8 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/structure/cable/green{ d1 = 1; @@ -26341,8 +26341,8 @@ /area/tether/surfacebase/security/brig) "aVz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 5 + dir = 5; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -26516,15 +26516,15 @@ "aVK" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/pipe/manifold/hidden/green{ - icon_state = "map"; - dir = 8 + dir = 8; + icon_state = "map" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) "aVL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 10 + dir = 10; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -26655,8 +26655,8 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -26674,8 +26674,8 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/dark, @@ -26774,8 +26774,8 @@ /area/tether/surfacebase/security/brig) "aWf" = ( /obj/machinery/atmospherics/unary/outlet_injector{ - icon_state = "map_injector"; - dir = 1 + dir = 1; + icon_state = "map_injector" }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, @@ -27062,16 +27062,16 @@ /area/tether/surfacebase/security/lowerhallway) "aWx" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/closet/secure_closet/brig{ @@ -27081,8 +27081,8 @@ /area/tether/surfacebase/security/brig) "aWy" = ( /obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - icon_state = "n2o_map"; - dir = 4 + dir = 4; + icon_state = "n2o_map" }, /obj/machinery/light/small{ dir = 8; @@ -27289,8 +27289,8 @@ /area/rnd/outpost/xenobiology/outpost_slimepens) "aWO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 9 + dir = 9; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -27388,8 +27388,8 @@ pixel_x = 26 }, /obj/structure/cable/green{ - icon_state = "1-2"; - dir = 1 + dir = 1; + icon_state = "1-2" }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -27452,8 +27452,8 @@ /area/bridge/meeting_room) "aXe" = ( /obj/structure/bed/chair/comfy/blue{ - icon_state = "comfychair_preview"; - dir = 4 + dir = 4; + icon_state = "comfychair_preview" }, /obj/effect/landmark/start{ name = "Command Secretary" @@ -27480,8 +27480,8 @@ /area/bridge/meeting_room) "aXh" = ( /obj/structure/bed/chair/comfy/blue{ - icon_state = "comfychair_preview"; - dir = 8 + dir = 8; + icon_state = "comfychair_preview" }, /turf/simulated/floor/carpet/sblucarpet, /area/bridge/meeting_room) @@ -27515,8 +27515,8 @@ /area/bridge_hallway) "aXm" = ( /obj/structure/bed/chair/comfy/blue{ - icon_state = "comfychair_preview"; - dir = 4 + dir = 4; + icon_state = "comfychair_preview" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -27538,8 +27538,8 @@ "aXo" = ( /obj/effect/floor_decal/rust, /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) @@ -27569,10 +27569,10 @@ }, /obj/structure/cable, /obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Command"; charge = 0; output_attempt = 0; - outputting = 0; - RCon_tag = "Substation - Command" + outputting = 0 }, /turf/simulated/floor/plating, /area/maintenance/substation/command) @@ -27622,8 +27622,8 @@ /area/chapel/main) "aXz" = ( /obj/structure/bed/chair/comfy/blue{ - icon_state = "comfychair_preview"; - dir = 8 + dir = 8; + icon_state = "comfychair_preview" }, /obj/effect/landmark/start{ name = "Command Secretary" @@ -27718,8 +27718,8 @@ "aXG" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "1-2"; - dir = 1 + dir = 1; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -27826,8 +27826,8 @@ "aXW" = ( /obj/machinery/photocopier, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -27853,8 +27853,8 @@ "aYa" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "1-2"; - dir = 1 + dir = 1; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -28021,8 +28021,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /turf/simulated/floor/tiled/dark, /area/chapel/main) @@ -28081,8 +28081,8 @@ icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /turf/simulated/floor/tiled/dark, /area/bridge_hallway) @@ -28384,8 +28384,8 @@ icon_state = "4-8" }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor/plating, /area/maintenance/commandmaint) @@ -28815,12 +28815,12 @@ /area/chapel/main) "aZT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/dark, /area/chapel/main) @@ -29407,6 +29407,16 @@ /obj/structure/disposalpipe/segment, /turf/simulated/open, /area/maintenance/lower/bar) +"jnL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/holoposter{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "kaa" = ( /obj/random/cutout, /turf/simulated/floor, @@ -29424,6 +29434,15 @@ /obj/structure/catwalk, /turf/simulated/open, /area/maintenance/lower/bar) +"uoL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/holoposter{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) (1,1,1) = {" aaa @@ -43526,7 +43545,7 @@ aXo adY afu afM -afM +uoL aqG agz agH @@ -43546,7 +43565,7 @@ ajI asB afG anu -afM +jnL afM aiE apP diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index 45cb69b7820..6f9ecbff4b2 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -1147,25 +1147,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"acl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) "acm" = ( /obj/structure/sink{ dir = 4; @@ -12647,22 +12628,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"avi" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) "avj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17371,22 +17336,6 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"aCn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/structure/bed/chair, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) "aCo" = ( /obj/structure/table/gamblingtable, /obj/item/weapon/deck/cards, @@ -20099,12 +20048,6 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"aGH" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) "aGI" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -31875,6 +31818,20 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) +"cmQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) "cMs" = ( /obj/machinery/power/smes/buildable{ charge = 500000 @@ -31936,6 +31893,28 @@ }, /turf/simulated/floor/tiled/steel_dirty, /area/shuttle/tourbus/general) +"dMP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) "esm" = ( /obj/structure/bed/chair/bay/chair{ dir = 8; @@ -32080,6 +32059,23 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) +"gLg" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/holoposter{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"hJt" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/holoposter{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) "ieb" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, @@ -32429,6 +32425,13 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) +"sXa" = ( +/obj/machinery/holoposter{ + pixel_x = -30; + pixel_y = 30 + }, +/turf/simulated/floor/grass, +/area/tether/surfacebase/public_garden_three) "tdA" = ( /obj/structure/bed/chair/bay/chair{ dir = 4; @@ -32513,6 +32516,16 @@ /obj/structure/cable, /turf/simulated/floor/tiled/steel_dirty, /area/shuttle/tourbus/general) +"uxo" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/holoposter{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) "uxT" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8; @@ -32579,6 +32592,26 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/tourbus/engines) +"viF" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) "voF" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -32597,6 +32630,19 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) +"vtN" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) "wiX" = ( /obj/machinery/camera/network/civilian{ dir = 9 @@ -32663,6 +32709,25 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/tourbus/cockpit) +"xdM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/structure/bed/chair, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) "xoe" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/white, @@ -37432,7 +37497,7 @@ aac aCZ aDc aiq -aDe +sXa aDe aDe aDe @@ -38196,7 +38261,7 @@ aCc aIp aIW aCc -aCc +hJt aBV aCc aCc @@ -40717,7 +40782,7 @@ amU anB aoa aot -aoa +gLg amv apM aiK @@ -40849,7 +40914,7 @@ aTW aTW aTW agw -acl +dMP ajG aWN akY @@ -42447,7 +42512,7 @@ atU ayt ayV atU -aCn +xdM azC aCV azE @@ -43589,7 +43654,7 @@ aXg axg aHa aHR -awf +cmQ ats aKb aKU @@ -45540,7 +45605,7 @@ ajX akn alk aZt -alk +vtN ayx aZn aYq @@ -46545,7 +46610,7 @@ aZS aZZ anL axb -avi +viF avk axQ aiX @@ -48556,7 +48621,7 @@ asX asX aFD asX -aGH +uxo aHB aIn aIT diff --git a/maps/tether/tether-04-transit.dmm b/maps/tether/tether-04-transit.dmm index ccbf25da46e..484985d7472 100644 --- a/maps/tether/tether-04-transit.dmm +++ b/maps/tether/tether-04-transit.dmm @@ -104,8 +104,8 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/structure/cable{ d1 = 1; @@ -117,8 +117,8 @@ /area/maintenance/tether_midpoint) "k" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/structure/flora/pottedplant/unusual, /turf/simulated/floor/wood, @@ -150,16 +150,10 @@ /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/tether/midpoint) -"o" = ( -/obj/machinery/vending/coffee{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/midpoint) "p" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/structure/flora/pottedplant/unusual, /obj/structure/cable, @@ -188,8 +182,8 @@ icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /obj/machinery/atmospherics/pipe/manifold/visible/supply{ dir = 4 @@ -419,8 +413,8 @@ dir = 5 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled/dark, /area/tether/midpoint) @@ -441,12 +435,12 @@ "V" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled/dark, /area/tether/midpoint) @@ -457,6 +451,15 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/midpoint) +"X" = ( +/obj/machinery/vending/coffee{ + dir = 1 + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/midpoint) "Y" = ( /obj/structure/cable{ d1 = 4; @@ -10357,7 +10360,7 @@ r r W S -o +X y u u diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm index d96198e3c30..e44e48a3a26 100644 --- a/maps/tether/tether-05-station1.dmm +++ b/maps/tether/tether-05-station1.dmm @@ -23,12 +23,12 @@ /area/engineering/hallway) "aae" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 + dir = 4; + icon_state = "intact-supply" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/extinguisher_cabinet{ dir = 1; @@ -184,11 +184,11 @@ /area/engineering/engine_smes) "aas" = ( /obj/machinery/power/smes/buildable{ + RCon_tag = "Engine - Core"; charge = 2e+006; input_attempt = 1; input_level = 100000; - output_level = 200000; - RCon_tag = "Engine - Core" + output_level = 200000 }, /obj/structure/cable/cyan{ d2 = 2; @@ -218,8 +218,8 @@ dir = 6 }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor/tiled/dark, /area/tether/station/burial) @@ -270,8 +270,8 @@ /area/engineering/engine_smes) "aaA" = ( /obj/machinery/power/terminal{ - icon_state = "term"; - dir = 8 + dir = 8; + icon_state = "term" }, /obj/structure/cable/yellow{ d2 = 2; @@ -300,8 +300,8 @@ icon_state = "0-8" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor, /area/engineering/engine_smes) @@ -349,16 +349,16 @@ /area/engineering/engine_smes) "aaG" = ( /obj/machinery/power/smes/buildable{ + RCon_tag = "Power - Main"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 500000; - output_level = 1e+006; - RCon_tag = "Power - Main" + output_level = 1e+006 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor, /area/engineering/engine_smes) @@ -553,8 +553,8 @@ /area/maintenance/station/eng_lower) "aaZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /obj/structure/cable/green{ icon_state = "1-2" @@ -709,8 +709,8 @@ /area/maintenance/station/eng_lower) "abp" = ( /obj/machinery/mass_driver{ - icon_state = "mass_driver"; dir = 4; + icon_state = "mass_driver"; id = "chapelgun" }, /obj/machinery/door/window{ @@ -1473,8 +1473,8 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/structure/disposalpipe/broken{ - icon_state = "pipe-b"; - dir = 4 + dir = 4; + icon_state = "pipe-b" }, /turf/simulated/floor, /area/vacant/vacant_restaurant_lower) @@ -1489,10 +1489,10 @@ /area/hallway/station/atrium) "acO" = ( /obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Engineering"; charge = 0; output_attempt = 0; - outputting = 0; - RCon_tag = "Substation - Engineering" + outputting = 0 }, /obj/structure/cable/green{ d2 = 4; @@ -1550,8 +1550,8 @@ dir = 9 }, /obj/effect/floor_decal/industrial/danger{ - icon_state = "danger"; - dir = 9 + dir = 9; + icon_state = "danger" }, /obj/machinery/status_display{ pixel_y = 32 @@ -1790,8 +1790,8 @@ dir = 8 }, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/bridge/secondary) @@ -1961,12 +1961,12 @@ /area/hallway/station/atrium) "adF" = ( /obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 + dir = 1; + icon_state = "term" }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor, /area/maintenance/substation/engineering) @@ -2056,8 +2056,8 @@ dir = 8 }, /obj/effect/floor_decal/industrial/danger{ - icon_state = "danger"; - dir = 8 + dir = 8; + icon_state = "danger" }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) @@ -2215,8 +2215,8 @@ /area/bridge/secondary) "aee" = ( /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 + dir = 4; + icon_state = "pipe-j2" }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) @@ -2304,8 +2304,8 @@ /area/engineering/workshop) "aeo" = ( /obj/machinery/computer/station_alert/all{ - icon_state = "computer"; - dir = 4 + dir = 4; + icon_state = "computer" }, /obj/machinery/ai_status_display{ pixel_x = -32 @@ -2335,8 +2335,8 @@ /area/crew_quarters/sleep/cryo) "aer" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -2394,8 +2394,8 @@ dir = 8 }, /obj/effect/floor_decal/industrial/danger{ - icon_state = "danger"; - dir = 8 + dir = 8; + icon_state = "danger" }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) @@ -2469,8 +2469,8 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ - icon_state = "steel_decals_central5"; - dir = 8 + dir = 8; + icon_state = "steel_decals_central5" }, /turf/simulated/floor/tiled/monotile, /area/engineering/engine_monitoring) @@ -2697,8 +2697,8 @@ dir = 8 }, /obj/effect/floor_decal/industrial/danger{ - icon_state = "danger"; - dir = 8 + dir = 8; + icon_state = "danger" }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) @@ -2883,8 +2883,8 @@ dir = 10 }, /obj/effect/floor_decal/industrial/danger{ - icon_state = "danger"; - dir = 10 + dir = 10; + icon_state = "danger" }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) @@ -3093,8 +3093,8 @@ /area/engineering/storage) "aft" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3126,8 +3126,8 @@ /area/engineering/hallway) "afu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -3198,8 +3198,8 @@ /area/hallway/station/atrium) "afB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -3220,8 +3220,8 @@ "afD" = ( /obj/structure/table/reinforced, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) @@ -3247,8 +3247,8 @@ /area/hallway/station/atrium) "afG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -3494,8 +3494,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 @@ -3740,8 +3740,8 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/bridge/secondary) @@ -3949,8 +3949,8 @@ /area/bridge/secondary) "agF" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 9 + dir = 9; + icon_state = "warning" }, /obj/machinery/light/small{ dir = 1 @@ -3997,8 +3997,8 @@ /area/engineering/break_room) "agI" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 5 + dir = 5; + icon_state = "warning" }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; @@ -4029,8 +4029,8 @@ dir = 4 }, /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 9 + dir = 9; + icon_state = "steel_grid" }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) @@ -4497,8 +4497,8 @@ /area/hallway/station/atrium) "ahs" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 + dir = 8; + icon_state = "warning" }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) @@ -4537,8 +4537,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 4; @@ -4565,8 +4565,8 @@ /area/gateway) "ahy" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8; @@ -4588,8 +4588,8 @@ /area/gateway) "ahB" = ( /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 9 + dir = 9; + icon_state = "steel_grid" }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; @@ -4867,10 +4867,10 @@ /area/engineering/engine_monitoring) "aia" = ( /obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Secondary Command"; charge = 0; output_attempt = 0; - outputting = 0; - RCon_tag = "Substation - Secondary Command" + outputting = 0 }, /obj/structure/cable/green, /obj/structure/cable/green{ @@ -5047,8 +5047,8 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -5199,8 +5199,8 @@ req_access = list(10) }, /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 9 + dir = 9; + icon_state = "steel_grid" }, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/portables_connector{ @@ -5481,8 +5481,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -5524,8 +5524,8 @@ /area/gateway/prep_room) "ajj" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -5555,8 +5555,8 @@ /area/hallway/station/atrium) "ajl" = ( /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 + dir = 1; + icon_state = "warningcorner" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -5779,8 +5779,8 @@ /area/engineering/storage) "ajH" = ( /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 + dir = 8; + icon_state = "warningcorner" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5823,8 +5823,8 @@ /area/hallway/station/atrium) "ajL" = ( /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 4 + dir = 4; + icon_state = "warningcorner" }, /turf/simulated/floor/tiled, /area/gateway/prep_room) @@ -5835,12 +5835,12 @@ /area/gateway/prep_room) "ajN" = ( /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 + dir = 1; + icon_state = "warningcorner" }, /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 + dir = 8; + icon_state = "warningcorner" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5886,19 +5886,19 @@ "ajV" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /turf/simulated/floor/tiled, /area/gateway/prep_room) "ajW" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 + dir = 8; + icon_state = "warningcorner" }, /turf/simulated/floor/tiled, /area/gateway/prep_room) @@ -5933,8 +5933,8 @@ req_access = null }, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) @@ -6203,8 +6203,8 @@ "akA" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/light{ dir = 8; @@ -6215,8 +6215,8 @@ "akB" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 + dir = 1; + icon_state = "warningcorner" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6275,12 +6275,12 @@ dir = 1 }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/gateway) @@ -6296,8 +6296,8 @@ }, /obj/machinery/light, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /turf/simulated/floor/tiled/dark, /area/gateway) @@ -6564,8 +6564,8 @@ "ale" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /turf/simulated/floor/tiled/dark, /area/gateway) @@ -6617,8 +6617,8 @@ icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 4 + dir = 4; + icon_state = "warningcorner" }, /turf/simulated/floor/tiled, /area/gateway/prep_room) @@ -6673,8 +6673,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /turf/simulated/floor/tiled, /area/bridge/secondary) @@ -6880,12 +6880,12 @@ "alL" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 9 + dir = 9; + icon_state = "steel_grid" }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 + dir = 8; + icon_state = "warning" }, /obj/effect/floor_decal/corner/yellow/bordercorner, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6909,8 +6909,8 @@ /area/engineering/hallway) "alM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -6937,23 +6937,6 @@ "alN" = ( /turf/simulated/wall/r_wall, /area/maintenance/abandonedlibrary) -"alO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) "alP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7034,8 +7017,8 @@ "alW" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/steeldecal/steel_decals_central6{ - icon_state = "steel_decals_central6"; - dir = 8 + dir = 8; + icon_state = "steel_decals_central6" }, /obj/machinery/alarm{ pixel_y = 22 @@ -7166,8 +7149,8 @@ /area/bridge/secondary) "amf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -7319,8 +7302,8 @@ dir = 1 }, /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /turf/simulated/floor/water/pool, /area/hallway/station/atrium) @@ -7357,8 +7340,8 @@ "amw" = ( /obj/structure/railing, /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /turf/simulated/floor/water/pool, /area/hallway/station/atrium) @@ -7765,8 +7748,8 @@ icon_state = "cobweb2" }, /obj/machinery/light_construct{ - icon_state = "tube-construct-stage1"; - dir = 1 + dir = 1; + icon_state = "tube-construct-stage1" }, /turf/simulated/floor/plating, /area/maintenance/abandonedlibrary) @@ -8205,8 +8188,8 @@ "anX" = ( /obj/structure/bookcase, /obj/machinery/light_construct/small{ - icon_state = "bulb-construct-stage1"; - dir = 8 + dir = 8; + icon_state = "bulb-construct-stage1" }, /obj/effect/decal/cleanable/cobweb{ icon_state = "cobweb2" @@ -8308,15 +8291,15 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled, /area/engineering/atmos/backup) "aok" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 + dir = 4; + icon_state = "intact-supply" }, /obj/machinery/light{ dir = 1 @@ -8328,8 +8311,8 @@ /area/engineering/atmos/backup) "aol" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 + dir = 4; + icon_state = "intact-supply" }, /obj/structure/cable/green{ d1 = 1; @@ -8337,8 +8320,8 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled, /area/engineering/atmos/backup) @@ -8358,8 +8341,8 @@ /area/bridge/secondary) "aon" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 + dir = 4; + icon_state = "intact-supply" }, /obj/item/device/radio/intercom{ dir = 1; @@ -8367,8 +8350,8 @@ req_access = list() }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled, /area/engineering/atmos/backup) @@ -8828,8 +8811,8 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8857,12 +8840,12 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -8880,8 +8863,8 @@ /area/engineering/atmos/backup) "apv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -8913,8 +8896,8 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8933,8 +8916,8 @@ /area/engineering/hallway) "apx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -9001,8 +8984,8 @@ /area/maintenance/abandonedlibrary) "apB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -9090,8 +9073,8 @@ /area/maintenance/abandonedlibrary) "apI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -9103,8 +9086,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 @@ -9121,8 +9104,8 @@ /area/engineering/hallway) "apJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -9139,8 +9122,8 @@ /area/engineering/hallway) "apK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -9182,8 +9165,8 @@ /area/engineering/hallway) "apM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 10 + dir = 10; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -9323,16 +9306,16 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /turf/simulated/floor, /area/engineering/atmos/backup) "aqf" = ( /obj/machinery/pipedispenser/disposal, /obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 10 + dir = 10; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/atmos/backup) @@ -9358,8 +9341,8 @@ /area/tether/station/visitorhallway) "aqh" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 6 + dir = 6; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/atmos/backup) @@ -9367,16 +9350,16 @@ /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/engineering/atmos/backup) "aqj" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/power/apc{ dir = 2; @@ -9407,15 +9390,15 @@ dir = 10 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "aql" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -9442,8 +9425,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled, /area/engineering/engineering_airlock) @@ -9500,8 +9483,8 @@ /area/maintenance/abandonedlibraryconference) "aqq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 8 @@ -9652,8 +9635,8 @@ /area/maintenance/abandonedlibraryconference) "aqD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -9673,8 +9656,8 @@ /area/engineering/hallway) "aqE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -9692,8 +9675,8 @@ /area/engineering/hallway) "aqF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -9753,8 +9736,8 @@ /area/engineering/workshop) "aqO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 10 + dir = 10; + icon_state = "intact" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -9768,8 +9751,8 @@ /area/maintenance/abandonedlibraryconference) "aqQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -9927,8 +9910,8 @@ }, /obj/structure/reagent_dispensers/watertank, /obj/structure/railing{ - icon_state = "railing0"; - dir = 1 + dir = 1; + icon_state = "railing0" }, /turf/simulated/floor, /area/maintenance/station/eng_lower) @@ -9962,8 +9945,8 @@ dir = 8 }, /obj/machinery/light_construct/small{ - icon_state = "bulb-construct-stage1"; - dir = 4 + dir = 4; + icon_state = "bulb-construct-stage1" }, /obj/effect/decal/cleanable/cobweb{ icon_state = "cobweb2" @@ -10113,16 +10096,16 @@ /area/engineering/workshop) "ary" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/backup) "arz" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 5 + dir = 5; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/atmos/backup) @@ -10136,8 +10119,8 @@ /area/maintenance/station/eng_lower) "arB" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ - icon_state = "map"; - dir = 4 + dir = 4; + icon_state = "map" }, /obj/machinery/meter, /turf/simulated/floor/tiled, @@ -10235,12 +10218,12 @@ /area/engineering/break_room) "arO" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 10 + dir = 10; + icon_state = "intact-supply" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 10 + dir = 10; + icon_state = "intact-scrubbers" }, /obj/machinery/camera/network/engineering{ dir = 8 @@ -10273,8 +10256,8 @@ /area/maintenance/abandonedlibraryconference) "arT" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/red{ - icon_state = "map"; - dir = 4 + dir = 4; + icon_state = "map" }, /turf/simulated/floor/tiled, /area/engineering/hallway) @@ -10478,8 +10461,8 @@ dir = 4 }, /obj/structure/bed/chair/comfy/beige{ - icon_state = "comfychair_preview"; - dir = 4 + dir = 4; + icon_state = "comfychair_preview" }, /obj/effect/landmark/start{ name = "Station Engineer" @@ -10503,8 +10486,8 @@ icon_state = "4-8" }, /obj/structure/bed/chair/comfy/beige{ - icon_state = "comfychair_preview"; - dir = 8 + dir = 8; + icon_state = "comfychair_preview" }, /obj/effect/landmark/start{ name = "Atmospheric Technician" @@ -10814,8 +10797,8 @@ name_tag = "Secondary Command Subgrid" }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /turf/simulated/floor, /area/maintenance/substation/spacecommand) @@ -10831,8 +10814,8 @@ }, /obj/random/junk, /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 + dir = 1; + icon_state = "warningcorner" }, /obj/structure/cable/green{ d1 = 2; @@ -11165,8 +11148,8 @@ /area/maintenance/station/spacecommandmaint) "atA" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /turf/simulated/floor/tiled, /area/engineering/workshop) @@ -11213,18 +11196,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"atD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) "atE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -11289,8 +11260,8 @@ /area/engineering/foyer) "atI" = ( /obj/structure/bed/chair/comfy/beige{ - icon_state = "comfychair_preview"; - dir = 4 + dir = 4; + icon_state = "comfychair_preview" }, /obj/effect/landmark/start{ name = "Station Engineer" @@ -11299,8 +11270,8 @@ /area/engineering/break_room) "atJ" = ( /obj/structure/bed/chair/comfy/beige{ - icon_state = "comfychair_preview"; - dir = 8 + dir = 8; + icon_state = "comfychair_preview" }, /obj/effect/landmark/start{ name = "Atmospheric Technician" @@ -11523,8 +11494,8 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -11598,8 +11569,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/door/blast/regular{ closed_layer = 10; @@ -11616,8 +11587,8 @@ /area/bridge/secondary/hallway) "auq" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -11761,8 +11732,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -11816,15 +11787,15 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/blue/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) "auG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -11848,15 +11819,15 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/blue/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) "auH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -11886,15 +11857,15 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/blue/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) "auI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -11913,8 +11884,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/blue/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) @@ -11966,8 +11937,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/blue/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/bridge/secondary/hallway) @@ -11985,8 +11956,8 @@ /area/tether/station/visitorhallway/office) "auM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -12005,8 +11976,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/blue/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -12342,15 +12313,15 @@ dir = 8 }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /turf/simulated/floor/tiled, /area/engineering/workshop) "avr" = ( /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, @@ -12414,8 +12385,8 @@ /area/bridge/secondary/hallway) "avw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/red{ - icon_state = "map"; - dir = 4 + dir = 4; + icon_state = "map" }, /obj/machinery/meter, /turf/simulated/floor/tiled, @@ -12525,8 +12496,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/bed/chair/comfy/beige{ - icon_state = "comfychair_preview"; - dir = 1 + dir = 1; + icon_state = "comfychair_preview" }, /obj/effect/landmark/start{ name = "Station Engineer" @@ -12545,8 +12516,8 @@ /area/tether/station/visitorhallway) "avI" = ( /obj/structure/bed/chair/comfy/beige{ - icon_state = "comfychair_preview"; - dir = 1 + dir = 1; + icon_state = "comfychair_preview" }, /obj/effect/landmark/start{ name = "Station Engineer" @@ -12957,8 +12928,8 @@ /area/tether/station/visitorhallway) "awk" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 5 + dir = 5; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/atmos/backup) @@ -13103,8 +13074,8 @@ /area/bridge/secondary/hallway) "awA" = ( /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -13141,8 +13112,8 @@ /area/bridge/secondary/teleporter) "awD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 9 + dir = 9; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/hallway) @@ -13377,8 +13348,8 @@ /area/engineering/break_room) "awU" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -13387,8 +13358,8 @@ dir = 10 }, /obj/machinery/vending/fitness{ - icon_state = "fitness"; - dir = 4 + dir = 4; + icon_state = "fitness" }, /turf/simulated/floor/tiled, /area/tether/station/visitorhallway/office) @@ -13420,8 +13391,8 @@ /area/bridge/secondary/teleporter) "awX" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/machinery/power/apc{ dir = 1; @@ -13561,8 +13532,8 @@ "axk" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled/dark, /area/bridge/secondary/teleporter) @@ -13574,15 +13545,15 @@ "axm" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /turf/simulated/floor/tiled, /area/bridge/secondary/teleporter) "axn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -13637,8 +13608,8 @@ pixel_y = 5 }, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -13710,8 +13681,8 @@ /area/storage/tools) "axA" = ( /obj/machinery/atmospherics/pipe/tank/oxygen{ - icon_state = "o2_map"; - dir = 1 + dir = 1; + icon_state = "o2_map" }, /obj/machinery/light, /turf/simulated/floor/tiled, @@ -13781,8 +13752,8 @@ /area/engineering/atmos/backup) "axH" = ( /obj/machinery/atmospherics/pipe/tank/nitrogen{ - icon_state = "n2_map"; - dir = 1 + dir = 1; + icon_state = "n2_map" }, /turf/simulated/floor/tiled, /area/engineering/atmos/backup) @@ -13822,8 +13793,8 @@ dir = 8 }, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -13882,8 +13853,8 @@ /area/tether/station/stairs_one) "axS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /obj/structure/cable/green{ d1 = 1; @@ -13903,8 +13874,8 @@ /area/crew_quarters/sleep/spacedorm1) "axU" = ( /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 4 + dir = 4; + icon_state = "warningcorner" }, /turf/simulated/floor/tiled, /area/engineering/workshop) @@ -13913,8 +13884,8 @@ phorontanks = 0 }, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -13943,8 +13914,8 @@ /area/crew_quarters/sleep/spacedorm2) "axY" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, @@ -14062,8 +14033,8 @@ icon_state = "2-8" }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/spacedorm3) @@ -14099,8 +14070,8 @@ /area/bridge/secondary/teleporter) "aym" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /turf/simulated/floor/tiled, /area/bridge/secondary/teleporter) @@ -14114,8 +14085,8 @@ icon_state = "2-4" }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/spacedorm4) @@ -14347,8 +14318,8 @@ /obj/structure/table/woodentable, /obj/item/weapon/storage/box/cups, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -14486,12 +14457,12 @@ icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -14712,8 +14683,8 @@ /area/tether/station/visitorhallway) "aza" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /turf/simulated/floor/tiled, /area/bridge/secondary/teleporter) @@ -14767,8 +14738,8 @@ /area/bridge/secondary) "aze" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ - icon_state = "steel_decals_central5"; - dir = 4 + dir = 4; + icon_state = "steel_decals_central5" }, /turf/simulated/floor/tiled/monotile, /area/engineering/workshop) @@ -15021,8 +14992,8 @@ dir = 8 }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /turf/simulated/floor/tiled/dark, /area/bridge/secondary/teleporter) @@ -15188,8 +15159,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled, /area/tether/station/stairs_one) @@ -15460,8 +15431,8 @@ icon_state = "pipe-c" }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor, /area/maintenance/station/spacecommandmaint) @@ -15479,8 +15450,8 @@ /area/bridge/meeting_room) "aAp" = ( /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor, /area/maintenance/station/spacecommandmaint) @@ -15491,8 +15462,8 @@ /area/hallway/station/docks) "aAr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -15512,8 +15483,8 @@ /area/bridge/meeting_room) "aAu" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/bridge/secondary/teleporter) @@ -15709,8 +15680,8 @@ "aAJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /obj/structure/cable/green{ d1 = 1; @@ -16168,8 +16139,8 @@ /area/engineering/hallway) "aBB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 9 + dir = 9; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -16568,8 +16539,8 @@ "aCo" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) @@ -16879,8 +16850,8 @@ /area/engineering/workshop) "aCR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - icon_state = "map"; - dir = 4 + dir = 4; + icon_state = "map" }, /turf/simulated/floor/tiled, /area/engineering/hallway) @@ -16983,8 +16954,8 @@ /obj/item/weapon/storage/box/lights/mixed, /obj/item/weapon/storage/box/lights/mixed, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 5; + icon_state = "intact-supply" }, /turf/simulated/floor/tiled, /area/tether/station/stairs_one) @@ -17356,8 +17327,8 @@ /area/bridge/meeting_room) "aDz" = ( /obj/structure/bed/chair/comfy/blue{ - icon_state = "comfychair_preview"; - dir = 4 + dir = 4; + icon_state = "comfychair_preview" }, /turf/simulated/floor/carpet/purcarpet, /area/bridge/meeting_room) @@ -17415,8 +17386,8 @@ /area/tether/station/dock_one) "aDI" = ( /obj/structure/bed/chair/comfy/blue{ - icon_state = "comfychair_preview"; - dir = 8 + dir = 8; + icon_state = "comfychair_preview" }, /turf/simulated/floor/carpet/purcarpet, /area/bridge/meeting_room) @@ -17757,8 +17728,8 @@ /area/tether/station/dock_one) "aEp" = ( /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 4 + dir = 4; + icon_state = "warningcorner" }, /turf/simulated/floor/tiled, /area/tether/station/dock_one) @@ -17852,8 +17823,8 @@ /area/engineering/foyer) "aEv" = ( /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/wood, /area/bridge/meeting_room) @@ -17866,8 +17837,8 @@ /area/bridge/meeting_room) "aEx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - icon_state = "map"; - dir = 4 + dir = 4; + icon_state = "map" }, /obj/machinery/meter, /turf/simulated/floor/tiled, @@ -18156,10 +18127,10 @@ /area/maintenance/substation/civilian) "aEX" = ( /obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Civilian"; charge = 0; output_attempt = 0; - outputting = 0; - RCon_tag = "Substation - Civilian" + outputting = 0 }, /obj/structure/cable/green{ d2 = 2; @@ -18588,8 +18559,8 @@ /area/engineering/workshop) "aIi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - icon_state = "intact"; - dir = 9 + dir = 9; + icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/hallway) @@ -18643,8 +18614,8 @@ pixel_y = 28 }, /obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 + d2 = 2; + icon_state = "0-2" }, /turf/simulated/floor, /area/maintenance/station/eng_lower) @@ -18764,12 +18735,12 @@ dir = 4 }, /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 9 + dir = 9; + icon_state = "steel_grid" }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 + dir = 8; + icon_state = "warning" }, /obj/effect/floor_decal/corner/yellow/bordercorner{ dir = 4 @@ -19521,8 +19492,8 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 4 + dir = 4; + icon_state = "warningcorner" }, /obj/machinery/power/apc{ dir = 2; @@ -20003,8 +19974,8 @@ pixel_y = 0 }, /obj/machinery/computer/station_alert/all{ - icon_state = "computer"; - dir = 4 + dir = 4; + icon_state = "computer" }, /obj/structure/window/reinforced{ dir = 1 @@ -20401,8 +20372,8 @@ /area/crew_quarters/heads/chief) "aVH" = ( /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 + dir = 8; + icon_state = "warningcorner" }, /obj/structure/disposalpipe/segment{ dir = 8; @@ -20440,16 +20411,16 @@ /area/engineering/engineering_monitoring) "aVP" = ( /obj/machinery/computer/power_monitor{ - icon_state = "computer"; - dir = 1 + dir = 1; + icon_state = "computer" }, /obj/machinery/light, /turf/simulated/floor/tiled, /area/engineering/engineering_monitoring) "aVW" = ( /obj/machinery/computer/rcon{ - icon_state = "computer"; - dir = 1 + dir = 1; + icon_state = "computer" }, /obj/machinery/requests_console/preset/engineering{ pixel_y = -30 @@ -20819,8 +20790,8 @@ /area/hallway/station/atrium) "baQ" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/effect/floor_decal/techfloor{ dir = 4 @@ -21652,6 +21623,15 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/storage/tools) +"bjb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/docks) "bkp" = ( /obj/machinery/vending/assist{ dir = 4 @@ -22355,8 +22335,8 @@ /area/tether/station/dock_two) "bKo" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -22558,8 +22538,8 @@ /area/tether/station/dock_two) "bPO" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) @@ -23072,8 +23052,8 @@ }, /obj/structure/closet/radiation, /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 1 + dir = 1; + icon_state = "steel_grid" }, /turf/simulated/floor/tiled, /area/engineering/gravity_lobby) @@ -23190,6 +23170,26 @@ }, /turf/simulated/floor/plating, /area/tether/station/dock_one) +"dnP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/holoposter{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "dnX" = ( /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -23303,6 +23303,26 @@ }, /turf/simulated/floor/tiled, /area/engineering/gravity_lobby) +"fcr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "fgA" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -23426,8 +23446,8 @@ dir = 10 }, /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 4 + dir = 4; + icon_state = "steel_grid" }, /turf/simulated/floor/tiled, /area/engineering/gravity_gen) @@ -23457,13 +23477,29 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/gravity_gen) +"ijz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/machinery/holoposter{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "inf" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -23501,8 +23537,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner" }, /obj/structure/cable{ d1 = 1; @@ -23532,8 +23568,8 @@ /area/engineering/gravity_lobby) "jOe" = ( /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 9 + dir = 9; + icon_state = "steel_grid" }, /obj/structure/cable{ d1 = 1; @@ -23611,6 +23647,20 @@ /obj/effect/map_helper/airlock/sensor/chamber_sensor, /turf/simulated/floor/tiled/dark, /area/tether/station/dock_one) +"kWQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "kXK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -23669,8 +23719,8 @@ }, /obj/structure/closet/emcloset, /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 1 + dir = 1; + icon_state = "steel_grid" }, /turf/simulated/floor/tiled, /area/engineering/gravity_lobby) @@ -23688,12 +23738,12 @@ dir = 4 }, /obj/effect/floor_decal/industrial/danger{ - icon_state = "danger"; - dir = 4 + dir = 4; + icon_state = "danger" }, /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 9 + dir = 9; + icon_state = "steel_grid" }, /turf/simulated/floor/tiled, /area/engineering/gravity_gen) @@ -23789,8 +23839,8 @@ }, /obj/structure/closet/radiation, /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 8 + dir = 8; + icon_state = "steel_grid" }, /turf/simulated/floor/tiled, /area/engineering/gravity_lobby) @@ -23858,8 +23908,8 @@ /area/engineering/gravity_gen) "pny" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) @@ -23883,8 +23933,8 @@ dir = 6 }, /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 6 + dir = 6; + icon_state = "steel_grid" }, /obj/structure/cable{ d1 = 4; @@ -23912,8 +23962,8 @@ }, /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 8 + dir = 8; + icon_state = "steel_grid" }, /turf/simulated/floor/tiled, /area/engineering/gravity_lobby) @@ -24002,8 +24052,8 @@ pixel_x = -28 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /turf/simulated/floor/tiled, /area/engineering/gravity_lobby) @@ -24059,12 +24109,12 @@ dir = 4 }, /obj/effect/floor_decal/industrial/danger{ - icon_state = "danger"; - dir = 4 + dir = 4; + icon_state = "danger" }, /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 9 + dir = 9; + icon_state = "steel_grid" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -24076,8 +24126,8 @@ /area/engineering/gravity_gen) "scB" = ( /obj/machinery/computer/shuttle_control/tether_backup{ - icon_state = "computer"; - dir = 8 + dir = 8; + icon_state = "computer" }, /turf/simulated/floor/tiled, /area/tether/station/dock_one) @@ -24209,8 +24259,8 @@ dir = 10 }, /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 4 + dir = 4; + icon_state = "steel_grid" }, /obj/item/device/geiger, /obj/structure/table/standard, @@ -24374,8 +24424,8 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) @@ -31622,7 +31672,7 @@ bQa aws aCz aDf -aBZ +bjb awu aaa aaa @@ -32890,7 +32940,7 @@ afC ahb acp bdW -atD +ijz awZ aDc aDe @@ -33905,7 +33955,7 @@ aBk aBu ayf ayT -azp +kWQ azx azx azx @@ -35303,7 +35353,7 @@ amu amv acy acm -alO +fcr acQ aBG aix @@ -37280,7 +37330,7 @@ aDZ amN aqk asi -asi +dnP aCw amN aCw diff --git a/maps/tether/tether-06-station2.dmm b/maps/tether/tether-06-station2.dmm index 562b659963f..03bbab7db18 100644 --- a/maps/tether/tether-06-station2.dmm +++ b/maps/tether/tether-06-station2.dmm @@ -108,16 +108,16 @@ /area/security/brig/visitation) "ao" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 4 + dir = 4; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/red/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 4 + dir = 4; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 6 + dir = 6; + icon_state = "corner_white" }, /obj/structure/table/reinforced, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -133,16 +133,16 @@ /area/security/brig/visitation) "ap" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 4 + dir = 4; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/red/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 4 + dir = 4; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 6 + dir = 6; + icon_state = "corner_white" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -170,8 +170,8 @@ /obj/structure/bed/chair, /obj/effect/floor_decal/borderfloor/corner, /obj/machinery/atmospherics/pipe/manifold/hidden/green{ - icon_state = "map"; - dir = 1 + dir = 1; + icon_state = "map" }, /obj/effect/floor_decal/corner/lightorange/bordercorner, /turf/simulated/floor/tiled, @@ -192,12 +192,12 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/corner/lightorange/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/security/brig) @@ -256,8 +256,8 @@ dir = 1 }, /obj/structure/holohoop{ - icon_state = "hoop"; - dir = 4 + dir = 4; + icon_state = "hoop" }, /turf/simulated/floor/tiled/monotile, /area/security/brig) @@ -273,8 +273,8 @@ /area/security/brig) "aC" = ( /obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/monotile, @@ -285,8 +285,8 @@ }, /obj/effect/floor_decal/corner/white/border, /obj/structure/holohoop{ - icon_state = "hoop"; - dir = 8 + dir = 8; + icon_state = "hoop" }, /turf/simulated/floor/tiled/monotile, /area/security/brig) @@ -378,8 +378,8 @@ dir = 10 }, /obj/effect/floor_decal/borderfloorblack/corner2{ - icon_state = "borderfloorcorner2_black"; - dir = 8 + dir = 8; + icon_state = "borderfloorcorner2_black" }, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -516,16 +516,16 @@ /area/security/security_cell_hallway) "aY" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/structure/table/steel, /obj/machinery/alarm{ @@ -560,8 +560,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/lightorange/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled/steel_dirty, /area/security/brig) @@ -574,8 +574,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/lightorange/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled/steel_dirty, /area/security/brig) @@ -618,8 +618,8 @@ req_access = list(1,2) }, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 5 + dir = 5; + icon_state = "camera" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, @@ -713,8 +713,8 @@ "bm" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 8 + dir = 8; + icon_state = "spline_plain" }, /obj/structure/railing{ dir = 8 @@ -724,8 +724,8 @@ /area/security/brig) "bn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 5 + dir = 5; + icon_state = "intact" }, /obj/machinery/power/apc{ dir = 8; @@ -752,8 +752,8 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 10 + dir = 10; + icon_state = "intact" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -848,8 +848,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/green, /obj/effect/floor_decal/corner/lightorange/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/security/brig) @@ -864,8 +864,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/lightorange/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled/steel_dirty, /area/security/brig) @@ -883,12 +883,12 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/effect/floor_decal/corner/lightorange/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 8 + dir = 8; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/security/brig) @@ -907,8 +907,8 @@ /area/maintenance/station/exploration) "bz" = ( /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor, /area/maintenance/station/exploration) @@ -930,8 +930,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/lightorange/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled/steel_dirty, /area/security/brig) @@ -963,8 +963,8 @@ dir = 8 }, /obj/effect/floor_decal/corner/lightorange/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/security/brig) @@ -979,8 +979,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/green, /obj/effect/floor_decal/corner/lightorange/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner" }, /obj/structure/bed/chair{ dir = 1 @@ -1005,8 +1005,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/lightorange/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/security/brig) @@ -1059,8 +1059,8 @@ req_access = list(1,2) }, /obj/structure/sink{ - icon_state = "sink"; dir = 8; + icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -1151,8 +1151,8 @@ /area/security/security_cell_hallway) "bN" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/structure/cable/green{ d1 = 4; @@ -1271,8 +1271,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /obj/machinery/camera/network/exploration, /turf/simulated/floor/tiled, @@ -1286,8 +1286,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 10 @@ -1326,20 +1326,20 @@ /area/tether/exploration/crew) "bY" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/bed/padded, /turf/simulated/floor/tiled, @@ -1365,20 +1365,20 @@ /area/security/brig) "ca" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/bed/padded, /obj/item/weapon/bedsheet, @@ -1398,20 +1398,20 @@ /area/security/brig) "cc" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/bed/padded, /obj/item/weapon/bedsheet, @@ -1461,8 +1461,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -1612,8 +1612,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/structure/cable/green{ d1 = 4; @@ -1639,8 +1639,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/structure/cable/green{ d1 = 4; @@ -1676,16 +1676,16 @@ /area/security/security_cell_hallway) "cw" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/cryopod{ @@ -1756,8 +1756,8 @@ dir = 4 }, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/security/security_cell_hallway) @@ -1787,8 +1787,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -1810,8 +1810,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -1831,16 +1831,16 @@ /area/tether/exploration/crew) "cG" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 8 + dir = 8; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/red/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 8 + dir = 8; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 9 + dir = 9; + icon_state = "corner_white" }, /obj/structure/table/reinforced, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -1856,8 +1856,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -1913,16 +1913,16 @@ /area/maintenance/station/sec_lower) "cM" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/closet/secure_closet/brig{ @@ -1977,8 +1977,8 @@ icon_state = "4-8" }, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/security/brig) @@ -2190,8 +2190,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -2239,8 +2239,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -2257,16 +2257,16 @@ /area/security/brig/visitation) "dk" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 4 + dir = 4; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/red/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 4 + dir = 4; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 6 + dir = 6; + icon_state = "corner_white" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -2281,12 +2281,12 @@ /area/security/brig/visitation) "dl" = ( /obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 9 + dir = 9; + icon_state = "corner_white" }, /obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 6 + dir = 6; + icon_state = "corner_white" }, /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ @@ -2325,16 +2325,16 @@ /area/security/brig) "do" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 8 + dir = 8; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/red/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 8 + dir = 8; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 9 + dir = 9; + icon_state = "corner_white" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -2360,16 +2360,16 @@ /area/security/brig) "dq" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/closet/secure_closet/brig{ @@ -2404,16 +2404,16 @@ /area/security/security_cell_hallway) "dt" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 8 + dir = 8; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/red/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 8 + dir = 8; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 9 + dir = 9; + icon_state = "corner_white" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -2425,8 +2425,8 @@ dir = 8 }, /obj/effect/floor_decal/borderfloorblack/corner2{ - icon_state = "borderfloorcorner2_black"; - dir = 10 + dir = 10; + icon_state = "borderfloorcorner2_black" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -2456,16 +2456,16 @@ /area/security/recstorage) "dw" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/closet/secure_closet/brig{ @@ -2477,8 +2477,8 @@ /obj/effect/floor_decal/borderfloor/shifted, /obj/effect/floor_decal/corner/red/border/shifted, /obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 10 + dir = 10; + icon_state = "corner_white" }, /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 @@ -2604,8 +2604,8 @@ /obj/effect/floor_decal/borderfloor/shifted, /obj/effect/floor_decal/corner/red/border/shifted, /obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 10 + dir = 10; + icon_state = "corner_white" }, /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 @@ -2639,16 +2639,16 @@ /area/security/brig) "dO" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/closet/secure_closet/brig{ @@ -2816,8 +2816,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 10 @@ -2991,8 +2991,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals9, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /turf/simulated/floor/tiled, /area/security/brig/visitation) @@ -3103,8 +3103,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, @@ -3149,8 +3149,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -3236,8 +3236,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 5 @@ -3266,8 +3266,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 10; @@ -3318,8 +3318,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -3331,8 +3331,8 @@ dir = 4 }, /obj/machinery/camera/network/exploration{ - icon_state = "camera"; - dir = 5 + dir = 5; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/tether/exploration/staircase) @@ -3412,16 +3412,16 @@ /area/tether/exploration/staircase) "eS" = ( /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 + dir = 1; + icon_state = "warningcorner" }, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/structure/sign/deathsposal{ pixel_x = -32 @@ -3545,8 +3545,8 @@ /obj/structure/table/steel, /obj/item/toy/stickhorse, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 + dir = 8; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/security/recstorage) @@ -3729,8 +3729,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 5 @@ -3753,8 +3753,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 10; @@ -3810,8 +3810,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 5 @@ -3878,8 +3878,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /turf/simulated/floor/tiled, /area/hallway/station/starboard) @@ -3935,8 +3935,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -3993,8 +3993,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4132,8 +4132,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 6 @@ -4160,8 +4160,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 8 @@ -4176,8 +4176,8 @@ dir = 5 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) @@ -4230,8 +4230,8 @@ dir = 10 }, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/simulated/floor/bluegrid, /area/ai_upload) @@ -4346,8 +4346,8 @@ dir = 1 }, /obj/effect/floor_decal/corner/yellow/bordercorner{ - icon_state = "bordercolorcorner"; - dir = 1 + dir = 1; + icon_state = "bordercolorcorner" }, /turf/simulated/floor/tiled, /area/engineering/locker_room) @@ -4398,8 +4398,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -4411,8 +4411,8 @@ /obj/item/weapon/paper_bin, /obj/item/device/taperecorder, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/tether/exploration/crew) @@ -4456,8 +4456,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -4466,8 +4466,8 @@ dir = 10 }, /obj/structure/bed/chair/comfy/beige{ - icon_state = "comfychair_preview"; - dir = 8 + dir = 8; + icon_state = "comfychair_preview" }, /turf/simulated/floor/tiled, /area/tether/exploration/crew) @@ -4484,8 +4484,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -4503,8 +4503,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 6 @@ -4531,8 +4531,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 8 @@ -4564,8 +4564,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /turf/simulated/floor/tiled, /area/tether/exploration/staircase) @@ -4747,12 +4747,12 @@ dir = 8 }, /obj/structure/bed/chair/comfy/beige{ - icon_state = "comfychair_preview"; - dir = 1 + dir = 1; + icon_state = "comfychair_preview" }, /obj/machinery/camera/network/exploration{ - icon_state = "camera"; - dir = 1 + dir = 1; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/tether/exploration/crew) @@ -4785,8 +4785,8 @@ dir = 8 }, /obj/structure/bed/chair/comfy/beige{ - icon_state = "comfychair_preview"; - dir = 1 + dir = 1; + icon_state = "comfychair_preview" }, /turf/simulated/floor/tiled, /area/tether/exploration/crew) @@ -4807,8 +4807,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -4839,8 +4839,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -5235,8 +5235,8 @@ pixel_y = 0 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/structure/table/reinforced, /obj/random/maintenance/clean, @@ -5246,8 +5246,8 @@ /area/engineering/locker_room) "hM" = ( /obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 4 + dir = 4; + icon_state = "steel_grid" }, /turf/simulated/floor/tiled, /area/engineering/locker_room) @@ -5265,8 +5265,8 @@ "hP" = ( /obj/structure/railing, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/open, /area/engineering/locker_room) @@ -5280,8 +5280,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -5295,8 +5295,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -5513,8 +5513,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) @@ -5531,8 +5531,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -5551,8 +5551,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -5643,8 +5643,8 @@ icon_state = "4-8" }, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/dark, /area/security/interrogation) @@ -5667,8 +5667,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 4; @@ -5715,8 +5715,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -5732,8 +5732,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -5764,8 +5764,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -5826,8 +5826,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 @@ -5842,8 +5842,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -5870,8 +5870,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -5901,8 +5901,8 @@ }, /obj/structure/flora/pottedplant/crystal, /obj/machinery/camera/network/exploration{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) @@ -6090,8 +6090,8 @@ dir = 4 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/bluegrid, /area/ai_upload) @@ -6102,8 +6102,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -6115,8 +6115,8 @@ dir = 4 }, /obj/machinery/camera/network/exploration{ - icon_state = "camera"; - dir = 5 + dir = 5; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) @@ -6227,8 +6227,8 @@ dir = 1 }, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 + dir = 4; + icon_state = "pipe-j2" }, /turf/simulated/floor/tiled, /area/engineering/foyer_mezzenine) @@ -6446,8 +6446,8 @@ dir = 4 }, /obj/machinery/camera/network/exploration{ - icon_state = "camera"; - dir = 1 + dir = 1; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) @@ -6506,8 +6506,8 @@ /area/tether/exploration/crew) "ju" = ( /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/structure/railing, /turf/simulated/floor, @@ -6931,8 +6931,8 @@ /area/ai_upload) "kb" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /turf/simulated/floor/bluegrid, /area/ai_upload) @@ -6943,8 +6943,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6975,8 +6975,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -6988,8 +6988,8 @@ dir = 4 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) @@ -7057,8 +7057,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -7142,8 +7142,8 @@ }, /obj/effect/floor_decal/techfloor/hole/right, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) @@ -7229,8 +7229,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /obj/item/weapon/tank/oxygen, /obj/item/device/suit_cooling_unit, @@ -7250,8 +7250,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -7301,10 +7301,10 @@ /area/hallway/station/starboard) "kH" = ( /obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Exploration"; charge = 0; output_attempt = 0; - outputting = 0; - RCon_tag = "Substation - Exploration" + outputting = 0 }, /obj/structure/cable{ d2 = 2; @@ -7398,8 +7398,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -7437,8 +7437,8 @@ dir = 9 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/engineering/foyer_mezzenine) @@ -7571,8 +7571,8 @@ /area/hallway/station/starboard) "lc" = ( /obj/machinery/power/terminal{ - icon_state = "term"; - dir = 8 + dir = 8; + icon_state = "term" }, /obj/structure/cable{ d2 = 2; @@ -7748,8 +7748,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 4; @@ -7773,16 +7773,16 @@ /area/tether/exploration/equipment) "lp" = ( /obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 + dir = 1; + icon_state = "borderfloor_shifted" }, /obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 + dir = 1; + icon_state = "bordercolor_shifted" }, /obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 + dir = 5; + icon_state = "corner_white" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/table/steel, @@ -8010,8 +8010,8 @@ dir = 9 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 9 + dir = 9; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 1 @@ -8057,8 +8057,8 @@ /area/tether/exploration/hallway) "lM" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -8085,8 +8085,8 @@ pixel_y = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 + dir = 1; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 4; @@ -8194,8 +8194,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -8266,8 +8266,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -8295,8 +8295,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -8594,8 +8594,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -9212,8 +9212,8 @@ /area/hallway/station/starboard) "nm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled, /area/engineering/foyer_mezzenine) @@ -9742,8 +9742,8 @@ dir = 1 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/open, /area/engineering/foyer_mezzenine) @@ -9790,8 +9790,8 @@ dir = 10 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -9992,8 +9992,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -10640,8 +10640,8 @@ /area/ai_monitored/storage/eva) "pC" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/structure/cable/green{ d1 = 4; @@ -10889,8 +10889,8 @@ /area/medical/morgue) "pW" = ( /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/effect/floor_decal/techfloor{ dir = 9 @@ -10937,8 +10937,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -10984,8 +10984,8 @@ /area/ai_monitored/storage/eva) "qh" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) @@ -11188,8 +11188,8 @@ pixel_y = 28 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -11325,8 +11325,8 @@ /area/hallway/station/starboard) "qD" = ( /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -11415,8 +11415,8 @@ "qK" = ( /obj/structure/flora/pottedplant/fern, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/wood, /area/medical/psych) @@ -11547,8 +11547,8 @@ /area/ai_monitored/storage/eva) "qU" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/structure/table/rack, /obj/item/device/suit_cooling_unit, @@ -11588,8 +11588,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -11602,8 +11602,8 @@ department = "Pathfinder's Office" }, /obj/machinery/camera/network/exploration{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/tether/exploration/pathfinder_office) @@ -11618,8 +11618,8 @@ /area/ai_server_room) "rb" = ( /obj/structure/disposalpipe/broken{ - icon_state = "pipe-b"; - dir = 4 + dir = 4; + icon_state = "pipe-b" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -11730,8 +11730,8 @@ pixel_y = 0 }, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 + dir = 4; + icon_state = "pipe-j2" }, /obj/structure/cable/green{ d1 = 1; @@ -11915,8 +11915,8 @@ dir = 4 }, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) @@ -12036,8 +12036,8 @@ dir = 4 }, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) @@ -12249,8 +12249,8 @@ /area/hallway/station/port) "rZ" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/structure/table/reinforced, /obj/fiftyspawner/rglass, @@ -12338,8 +12338,8 @@ scrub_id = "sec_riot_control" }, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 5 + dir = 5; + icon_state = "camera" }, /turf/simulated/floor/plating, /area/security/brig) @@ -12363,8 +12363,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -12424,8 +12424,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/techfloor/corner{ dir = 4 @@ -12441,8 +12441,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -12457,8 +12457,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -12585,8 +12585,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/techfloor/corner{ dir = 1 @@ -12651,8 +12651,8 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) @@ -12736,8 +12736,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -12773,8 +12773,8 @@ /area/medical/morgue) "sP" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/structure/table/reinforced, /obj/item/weapon/storage/toolbox/electrical{ @@ -13297,8 +13297,8 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/carpet/blue, /area/medical/psych) @@ -13307,8 +13307,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/carpet/blue, /area/medical/psych) @@ -13318,8 +13318,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/carpet/blue, /area/medical/psych) @@ -13333,8 +13333,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/carpet/blue, /area/medical/psych) @@ -13354,8 +13354,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/wood, /area/medical/psych) @@ -13369,8 +13369,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 6 @@ -13396,8 +13396,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) @@ -13485,8 +13485,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/techfloor, /obj/structure/disposalpipe/segment{ @@ -13582,8 +13582,8 @@ /area/ai_monitored/storage/eva) "uh" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -13682,8 +13682,8 @@ /area/medical/resleeving) "us" = ( /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -13846,15 +13846,15 @@ "uG" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) "uH" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/structure/cable/green{ d1 = 4; @@ -14152,8 +14152,8 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/resleeving) @@ -14163,8 +14163,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/resleeving) @@ -14176,8 +14176,8 @@ /area/ai_monitored/storage/eva) "vj" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/structure/table/reinforced, /obj/item/weapon/storage/toolbox/mechanical{ @@ -14192,8 +14192,8 @@ /area/ai_monitored/storage/eva) "vk" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled, @@ -14213,8 +14213,8 @@ /area/vacant/vacant_restaurant_upper) "vn" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -14223,8 +14223,8 @@ /area/tether/station/stairs_two) "vo" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -14239,8 +14239,8 @@ dir = 1 }, /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -14255,8 +14255,8 @@ /area/tether/station/stairs_two) "vq" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -14268,8 +14268,8 @@ /area/tether/station/stairs_two) "vr" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 + dir = 1; + icon_state = "warning" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -14294,8 +14294,8 @@ }, /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 + dir = 1; + icon_state = "warningcorner" }, /turf/simulated/floor/tiled/monofloor{ dir = 1 @@ -14332,8 +14332,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/resleeving) @@ -14342,8 +14342,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -14364,8 +14364,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/resleeving) @@ -14374,8 +14374,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/techfloor{ dir = 10 @@ -14387,8 +14387,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/dark, @@ -14698,8 +14698,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -14723,8 +14723,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/resleeving) @@ -14738,8 +14738,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 1 @@ -14920,8 +14920,8 @@ /obj/structure/table/woodentable, /obj/item/weapon/clipboard, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/carpet/blue, /area/medical/psych) @@ -15314,8 +15314,8 @@ pixel_y = 0 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/techfloor, /obj/effect/landmark{ @@ -15380,8 +15380,8 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) @@ -15529,8 +15529,8 @@ dir = 4 }, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/medical/biostorage) @@ -15766,8 +15766,8 @@ dir = 8 }, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) @@ -15932,8 +15932,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/biostorage) @@ -15947,8 +15947,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 1 @@ -15996,8 +15996,8 @@ dir = 4 }, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) @@ -16008,8 +16008,8 @@ dir = 10 }, /obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 10 + dir = 10; + icon_state = "bordercolor" }, /obj/effect/floor_decal/borderfloorwhite/corner2{ dir = 9 @@ -16077,8 +16077,8 @@ dir = 5 }, /obj/effect/floor_decal/corner/white/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 5 + dir = 5; + icon_state = "bordercolorcorner2" }, /turf/simulated/floor/tiled/white, /area/medical/surgery) @@ -16237,8 +16237,8 @@ /area/medical/surgery2) "yt" = ( /obj/machinery/light{ - icon_state = "tube1"; - dir = 4 + dir = 4; + icon_state = "tube1" }, /obj/effect/landmark{ name = "JoinLateCyborg" @@ -16312,8 +16312,8 @@ dir = 10 }, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/tether/exploration/equipment) @@ -16453,8 +16453,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/surgery) @@ -16495,8 +16495,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/surgery2) @@ -16632,8 +16632,8 @@ dir = 6 }, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/medical/surgery) @@ -16653,8 +16653,8 @@ dir = 8 }, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/medical/surgery2) @@ -16812,8 +16812,8 @@ dir = 10 }, /obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 10 + dir = 10; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled/white, /area/medical/surgery) @@ -16879,8 +16879,8 @@ dir = 10 }, /obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 10 + dir = 10; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled/white, /area/medical/surgery2) @@ -16975,8 +16975,8 @@ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 @@ -16999,8 +16999,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/patient_a) @@ -17018,8 +17018,8 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) @@ -17268,8 +17268,8 @@ icon_state = "0-4" }, /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /obj/random/junk, /obj/structure/table/rack{ @@ -17350,8 +17350,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) @@ -17374,8 +17374,8 @@ "AD" = ( /obj/structure/railing, /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 4; + icon_state = "railing0" }, /obj/random/trash_pile, /turf/simulated/floor, @@ -17616,8 +17616,8 @@ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 @@ -17640,8 +17640,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/patient_b) @@ -17682,8 +17682,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) @@ -17699,8 +17699,8 @@ icon_state = "2-4" }, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 + dir = 4; + icon_state = "pipe-j1" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -17724,8 +17724,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) @@ -17749,12 +17749,12 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + dir = 4; + icon_state = "map-scrubbers" }, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 + dir = 4; + icon_state = "pipe-j2" }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) @@ -18044,8 +18044,8 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) @@ -18298,8 +18298,8 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 5; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 9 @@ -18411,16 +18411,16 @@ pixel_y = 6 }, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor/tiled/white, /area/medical/recoveryrestroom) "Cg" = ( /obj/machinery/recharge_station, /obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 + dir = 1; + icon_state = "bulb1" }, /turf/simulated/floor/tiled/techfloor, /area/medical/recoveryrestroom) @@ -18452,8 +18452,8 @@ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 @@ -18476,8 +18476,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) @@ -18745,8 +18745,8 @@ dir = 6 }, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) @@ -18903,8 +18903,8 @@ dir = 8 }, /obj/machinery/camera/network/medbay{ - icon_state = "camera"; - dir = 4 + dir = 4; + icon_state = "camera" }, /turf/simulated/floor/tiled/white, /area/medical/ward) @@ -19078,8 +19078,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/ward) @@ -19155,8 +19155,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -19175,8 +19175,8 @@ pixel_x = 32 }, /obj/machinery/camera/network/command{ - icon_state = "camera"; - dir = 9 + dir = 9; + icon_state = "camera" }, /turf/simulated/floor/tiled/techfloor, /area/ai_upload_foyer) @@ -19638,8 +19638,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/ward) @@ -19663,8 +19663,8 @@ pixel_x = 0 }, /obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 8 + dir = 8; + icon_state = "bordercolor" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -19725,8 +19725,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 6 @@ -19797,8 +19797,8 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 10 + dir = 10; + icon_state = "intact" }, /obj/structure/cable/green{ d1 = 2; @@ -20022,8 +20022,8 @@ }, /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/security/brig) @@ -20070,8 +20070,8 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 5 + dir = 5; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/security/brig/visitation) @@ -20115,8 +20115,8 @@ /area/medical/ward) "ET" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 + dir = 4; + icon_state = "intact-scrubbers" }, /turf/simulated/floor/tiled/white, /area/medical/ward) @@ -20201,8 +20201,8 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 5 + dir = 5; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/security/brig/visitation) @@ -20218,8 +20218,8 @@ /area/medical/ward) "Fb" = ( /obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 10 + dir = 10; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/security/brig/visitation) @@ -20281,8 +20281,8 @@ dir = 4 }, /obj/effect/floor_decal/corner/white/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 4 + dir = 4; + icon_state = "bordercolorcorner2" }, /obj/machinery/status_display{ density = 0; @@ -20555,8 +20555,8 @@ dir = 8 }, /obj/machinery/camera/network/exploration{ - icon_state = "camera"; - dir = 1 + dir = 1; + icon_state = "camera" }, /turf/simulated/floor/tiled, /area/tether/exploration/equipment) @@ -20992,8 +20992,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 + dir = 4; + icon_state = "intact" }, /obj/structure/cable/green{ d1 = 4; @@ -21014,8 +21014,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 + dir = 2; + icon_state = "pipe-j2" }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) @@ -21061,8 +21061,8 @@ pixel_x = -28 }, /obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 + d2 = 4; + icon_state = "0-4" }, /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack{ @@ -21304,8 +21304,8 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 5 + dir = 5; + icon_state = "intact" }, /obj/structure/cable/green{ d1 = 4; @@ -21558,8 +21558,8 @@ /area/hallway/station/starboard) "Pm" = ( /obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 + dir = 4; + icon_state = "warning" }, /obj/machinery/recharge_station, /turf/simulated/floor/tiled, @@ -21625,8 +21625,8 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /obj/machinery/light_switch{ dir = 4; @@ -21728,8 +21728,8 @@ "Qy" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light{ - icon_state = "tube1"; - dir = 8 + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/security/brig) @@ -21871,8 +21871,8 @@ /area/maintenance/station/sec_lower) "Rg" = ( /obj/effect/floor_decal/corner/white/border{ - icon_state = "bordercolor"; - dir = 4 + dir = 4; + icon_state = "bordercolor" }, /turf/simulated/floor/tiled/monotile, /area/security/brig) @@ -22084,6 +22084,25 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/station/sec_lower) +"Tc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/port) "Tj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet, @@ -22363,6 +22382,23 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/sec_lower) +"Vk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) "Vm" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -22396,8 +22432,8 @@ dir = 4 }, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 + dir = 4; + icon_state = "pipe-j1" }, /turf/simulated/floor/tiled, /area/hallway/station/port) @@ -22571,8 +22607,8 @@ /area/maintenance/station/sec_lower) "Xp" = ( /obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - icon_state = "n2o_map"; - dir = 1 + dir = 1; + icon_state = "n2o_map" }, /turf/simulated/floor, /area/security/riot_control) @@ -31132,7 +31168,7 @@ qx pL qt rj -rV +Tc KI qH rp @@ -35102,7 +35138,7 @@ Bt kp nb nR -pQ +Vk DL ac ac diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm index cf0ebeb2e75..3370e6cbf9f 100644 --- a/maps/tether/tether-07-station3.dmm +++ b/maps/tether/tether-07-station3.dmm @@ -5610,28 +5610,6 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"ajm" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/upper) "ajn" = ( /obj/machinery/newscaster/security_unit{ pixel_y = 32 @@ -20434,11 +20412,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"aGg" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/effect/floor_decal/techfloor/hole, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) "aGh" = ( /obj/effect/floor_decal/techfloor/orange, /obj/machinery/camera/network/tether{ @@ -20446,11 +20419,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) -"aGi" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/effect/floor_decal/techfloor/hole/right, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter/departing) "aGj" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 6 @@ -32188,6 +32156,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) +"fuV" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/machinery/holoposter{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/hallway/station/upper) "fxI" = ( /obj/item/device/radio/intercom{ dir = 4; @@ -32272,6 +32248,31 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/securiship/general) +"gBy" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) "gJa" = ( /obj/machinery/door/airlock/multi_tile/metal/mait, /obj/structure/cable/cyan{ @@ -32588,6 +32589,14 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) +"mPW" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/effect/floor_decal/techfloor/hole/right, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) "ngb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -33106,6 +33115,14 @@ /obj/effect/catwalk_plated/dark, /turf/simulated/floor, /area/security/armory/blue) +"uSa" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/effect/floor_decal/techfloor/hole, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter/departing) "vbE" = ( /obj/structure/cable/green{ d1 = 1; @@ -39382,7 +39399,7 @@ aDb aDG aEC aFq -aGg +uSa aDa aab aab @@ -39666,7 +39683,7 @@ aDb aDI aEC aFq -aGi +mPW aDa aab aab @@ -42213,7 +42230,7 @@ avO awu awX asp -ajm +gBy azv aAq aAw @@ -44054,7 +44071,7 @@ aiV aiV asq awL -ava +fuV avQ awy axb diff --git a/vorestation.dme b/vorestation.dme index 95d30d450f7..3dcff270138 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -778,6 +778,7 @@ #include "code\game\machinery\floorlayer.dm" #include "code\game\machinery\frame.dm" #include "code\game\machinery\hologram.dm" +#include "code\game\machinery\holoposter.dm" #include "code\game\machinery\holosign.dm" #include "code\game\machinery\igniter.dm" #include "code\game\machinery\iv_drip.dm"