From df2fc68b511dc75fc1701292752520e0cbe6307e Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Sun, 17 May 2020 17:49:51 -0400 Subject: [PATCH 1/4] Adds holoposter ads --- code/game/machinery/holoposter.dm | 108 ++++++++++++++++++ .../security levels/security levels.dm | 5 + icons/obj/holoposter_vr.dmi | Bin 0 -> 6025 bytes vorestation.dme | 1 + 4 files changed, 114 insertions(+) create mode 100644 code/game/machinery/holoposter.dm create mode 100644 icons/obj/holoposter_vr.dmi diff --git a/code/game/machinery/holoposter.dm b/code/game/machinery/holoposter.dm new file mode 100644 index 00000000000..030edf16c29 --- /dev/null +++ b/code/game/machinery/holoposter.dm @@ -0,0 +1,108 @@ +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/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" + 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(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 0000000000000000000000000000000000000000..e05c77b3096e45568f4abdd28531f84666b20576 GIT binary patch literal 6025 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 M=$L4iYC44f51b)TtpET3 literal 0 HcmV?d00001 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" From 6ac7a8d98d85ef6cfe3a604de44f74d4c670bb54 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Sun, 17 May 2020 18:09:49 -0400 Subject: [PATCH 2/4] Add holoposters to maps --- maps/tether/tether-01-surface1.dmm | 921 ++++++++--------- maps/tether/tether-02-surface2.dmm | 1463 ++++++++++++++-------------- maps/tether/tether-03-surface3.dmm | 170 ++-- maps/tether/tether-04-transit.dmm | 45 +- maps/tether/tether-05-station1.dmm | 942 +++++++++--------- maps/tether/tether-06-station2.dmm | 1202 ++++++++++++----------- maps/tether/tether-07-station3.dmm | 88 +- 7 files changed, 2495 insertions(+), 2336 deletions(-) diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index c7212fcb833..b1217a89c15 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) @@ -6423,8 +6423,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 +6482,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 +6929,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 +7063,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 +7073,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 +7254,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 +7714,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 +7735,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 +7914,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 +9358,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 +9555,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 +9566,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 +9892,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 +10509,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 +11036,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 +11083,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 +11367,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 +11377,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 +12367,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 +12522,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 +12655,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 +12686,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 +12861,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 +13271,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 +14545,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 +14610,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 +14721,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{ @@ -16090,8 +16090,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 +16156,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 +16437,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 +16602,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 +16859,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 +16938,8 @@ dir = 8 }, /obj/structure/sink{ - icon_state = "sink"; dir = 8; + icon_state = "sink"; pixel_x = -12; pixel_y = 2 }, @@ -17182,8 +17182,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 +17528,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 +17625,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 @@ -19369,8 +19369,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 +19702,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 +19847,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 +19864,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 +19877,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 +20500,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 +20516,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 +20532,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 +20548,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 +20562,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 +20575,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 +20603,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 +20625,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 +20641,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 +20654,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 +20716,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 +20739,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 +21100,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 +21162,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 +21520,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 +21567,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 +21994,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 +22055,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 +22184,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 +22223,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 +22565,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 +22610,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 +22883,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 +22896,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 +22941,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 +23266,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 +23287,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 +23300,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 +23323,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 +23343,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 +23467,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 +23482,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 +23505,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 +23532,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 +23550,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 +23741,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 +23755,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 +23783,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 +24002,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 +24410,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 +24423,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 +24441,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 +24468,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 +24653,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 +24664,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 +24675,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 +24836,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 +24865,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 +24887,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 +24903,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 +24916,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 +24935,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 +24948,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 +24961,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 +24974,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 +24985,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 +25243,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 +25474,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 +25490,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 +25550,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 +25566,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 +25579,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 +25624,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 +25669,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 +25804,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 +25993,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 +26080,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 +26099,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 +26296,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 +26476,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 +26569,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 +26606,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 +26634,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 +26648,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 +26662,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 +26780,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 +26792,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 +26810,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 +26864,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 +26880,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 +26896,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 +26967,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 +26978,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 +27166,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 +27326,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 +27337,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 +27378,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 +27614,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 +27648,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 +27804,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 +27982,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 +28098,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 +28135,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 +28161,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 +28175,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 +28212,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 +28235,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 +28244,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 +28302,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 +28344,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 +28478,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 +28509,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 +28571,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 +28603,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 +28637,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 +28771,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 +28938,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 +29032,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 +29742,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 +29760,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 +29788,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 +29805,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 +30205,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 +30304,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 +30899,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 +30911,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 +30928,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 +30952,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 +30973,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 +30983,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 +31001,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 +31012,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 +31035,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 +31076,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 +31124,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 +31144,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 +31213,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 +31345,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 +31354,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 +31367,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 +31425,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 +31447,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 +31463,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 +31473,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 +31483,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 +31512,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 +31554,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; @@ -31575,16 +31568,20 @@ }, /turf/simulated/floor/tiled/techmaint, /area/looking_glass/lg_1) +"fbx" = ( +/obj/machinery/holoposter, +/turf/simulated/wall, +/area/crew_quarters/visitor_laundry) "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 +31607,14 @@ /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) "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 +31623,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,10 +31636,14 @@ /obj/random/drinkbottle, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) +"lrA" = ( +/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) "mdP" = ( @@ -31667,6 +31668,10 @@ /obj/random/trash_pile, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) +"omD" = ( +/obj/machinery/holoposter, +/turf/simulated/wall, +/area/crew_quarters/visitor_dining) "orF" = ( /obj/machinery/light/small{ dir = 4; @@ -31679,8 +31684,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 +31696,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 @@ -31706,14 +31711,14 @@ /area/tether/surfacebase/public_garden_one) "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; @@ -39741,7 +39746,7 @@ abT abT abT abT -ahl +lrA ahL anP adu @@ -40362,7 +40367,7 @@ aPP aQr aQT aRy -aRR +aRv aSz aTf aOR @@ -46444,7 +46449,7 @@ aBk agM aCO aCO -aCO +omD aEI aFw aCO @@ -46476,7 +46481,7 @@ aUm aUm aUq aUr -aUm +fbx aWn aWn aVn diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm index 9a83b80e742..128afa365a3 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) @@ -29411,6 +29411,15 @@ /obj/random/cutout, /turf/simulated/floor, /area/maintenance/lower/south) +"kTB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/holoposter{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "nTp" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -43546,7 +43555,7 @@ ajI asB afG anu -afM +kTB afM aiE apP diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index 45cb69b7820..3eac327cc20 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,25 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) +"cEj" = ( +/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) "cMs" = ( /obj/machinery/power/smes/buildable{ charge = 500000 @@ -32225,6 +32187,24 @@ }, /turf/simulated/floor/tiled/steel_dirty, /area/shuttle/tourbus/general) +"mUH" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/holoposter{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"mUK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/holoposter{ + pixel_x = 30 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) "noN" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, @@ -32258,6 +32238,42 @@ }, /turf/simulated/floor/tiled/steel_dirty, /area/shuttle/tourbus/general) +"nCI" = ( +/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) +"nVf" = ( +/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) "nXl" = ( /obj/machinery/door/airlock/glass{ req_one_access = list(19,43,67) @@ -32270,6 +32286,25 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/shuttle/tourbus/cockpit) +"odB" = ( +/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{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) "onV" = ( /obj/effect/shuttle_landmark{ base_area = /area/tether/surfacebase/shuttle_pad; @@ -32299,6 +32334,13 @@ /obj/machinery/atmospherics/unary/engine, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) +"oQJ" = ( +/obj/machinery/holoposter{ + pixel_x = -30; + pixel_y = 30 + }, +/turf/simulated/floor/grass, +/area/tether/surfacebase/public_garden_three) "qem" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -37432,7 +37474,7 @@ aac aCZ aDc aiq -aDe +oQJ aDe aDe aDe @@ -38196,7 +38238,7 @@ aCc aIp aIW aCc -aCc +mUH aBV aCc aCc @@ -40849,7 +40891,7 @@ aTW aTW aTW agw -acl +nCI ajG aWN akY @@ -42447,7 +42489,7 @@ atU ayt ayV atU -aCn +cEj azC aCV azE @@ -43589,7 +43631,7 @@ aXg axg aHa aHR -awf +nVf ats aKb aKU @@ -46545,7 +46587,7 @@ aZS aZZ anL axb -avi +odB avk axQ aiX @@ -48556,7 +48598,7 @@ asX asX aFD asX -aGH +mUK 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..d33dfef299a 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 @@ -22355,8 +22326,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 +22529,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 +23043,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) @@ -23426,8 +23397,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) @@ -23441,6 +23412,26 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/gravity_gen) +"hYm" = ( +/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) "hZW" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, @@ -23462,8 +23453,8 @@ 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 +23492,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 +23523,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; @@ -23669,8 +23660,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 +23679,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) @@ -23752,6 +23743,20 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) +"nNA" = ( +/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) "obA" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 8 @@ -23789,8 +23794,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 +23863,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 +23888,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 +23917,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 +24007,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 +24064,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 +24081,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) @@ -24123,6 +24128,25 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) +"sBM" = ( +/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{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "sTb" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; @@ -24165,6 +24189,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) +"tJg" = ( +/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{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "tKI" = ( /obj/machinery/access_button{ command = "cycle_exterior"; @@ -24209,8 +24248,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, @@ -24249,6 +24288,15 @@ }, /turf/space, /area/space) +"vxt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/docks) "vxw" = ( /obj/structure/cable{ d1 = 2; @@ -24374,8 +24422,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 +31670,7 @@ bQa aws aCz aDf -aBZ +vxt awu aaa aaa @@ -32890,7 +32938,7 @@ afC ahb acp bdW -atD +tJg awZ aDc aDe @@ -33905,7 +33953,7 @@ aBk aBu ayf ayT -azp +nNA azx azx azx @@ -35303,7 +35351,7 @@ amu amv acy acm -alO +hYm acQ aBG aix @@ -37280,7 +37328,7 @@ aDZ amN aqk asi -asi +sBM aCw amN aCw diff --git a/maps/tether/tether-06-station2.dmm b/maps/tether/tether-06-station2.dmm index 562b659963f..4749d9dac1d 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) @@ -20679,6 +20679,23 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/station/public_meeting_room) +"Gh" = ( +/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) "Go" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, @@ -20992,8 +21009,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 +21031,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 +21078,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 +21321,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 +21575,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 +21642,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 +21745,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 +21888,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) @@ -22175,6 +22192,25 @@ "TY" = ( /turf/simulated/wall/r_wall, /area/security/riot_control) +"Ud" = ( +/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) "Uf" = ( /obj/structure/railing{ dir = 8 @@ -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 +Ud KI qH rp @@ -35102,7 +35138,7 @@ Bt kp nb nR -pQ +Gh DL ac ac diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm index cf0ebeb2e75..7351e03afd2 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 @@ -32383,6 +32351,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) +"hYK" = ( +/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) "ibu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -32492,6 +32468,31 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/securiship/engines) +"kqC" = ( +/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) "kqS" = ( /obj/structure/cable/green{ dir = 1; @@ -32677,6 +32678,13 @@ }, /turf/simulated/wall/rshull, /area/shuttle/securiship/engines) +"osh" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/machinery/holoposter{ + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/hallway/station/upper) "owU" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -33134,6 +33142,14 @@ /obj/machinery/atmospherics/binary/pump/fuel, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/securiship/engines) +"vyg" = ( +/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) "vFD" = ( /obj/structure/catwalk, /obj/random/cutout, @@ -39382,7 +39398,7 @@ aDb aDG aEC aFq -aGg +hYK aDa aab aab @@ -39666,7 +39682,7 @@ aDb aDI aEC aFq -aGi +vyg aDa aab aab @@ -42213,7 +42229,7 @@ avO awu awX asp -ajm +kqC azv aAq aAw @@ -44054,7 +44070,7 @@ aiV aiV asq awL -ava +osh avQ awy axb From 94a035ecba0c8f45e2f2e60aefeeb89ae86e2fcd Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Sun, 17 May 2020 18:42:55 -0400 Subject: [PATCH 3/4] Holomap dirs, spread more around --- maps/tether/tether-01-surface1.dmm | 177 ++++++++++++----------- maps/tether/tether-02-surface2.dmm | 24 ++- maps/tether/tether-03-surface3.dmm | 225 ++++++++++++++++------------- maps/tether/tether-05-station1.dmm | 166 ++++++++++----------- maps/tether/tether-06-station2.dmm | 76 +++++----- maps/tether/tether-07-station3.dmm | 105 +++++++------- 6 files changed, 409 insertions(+), 364 deletions(-) diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index b1217a89c15..334fb706e2a 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -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{ @@ -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 @@ -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, @@ -31568,10 +31500,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/looking_glass/lg_1) -"fbx" = ( -/obj/machinery/holoposter, -/turf/simulated/wall, -/area/crew_quarters/visitor_laundry) "fcT" = ( /turf/simulated/floor/looking_glass{ dir = 8; @@ -31611,6 +31539,28 @@ 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{ dir = 5; @@ -31636,7 +31586,7 @@ /obj/random/drinkbottle, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) -"lrA" = ( +"lxU" = ( /obj/machinery/holoposter, /turf/simulated/wall, /area/hallway/lower/first_west) @@ -31646,6 +31596,24 @@ 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"; @@ -31668,10 +31636,6 @@ /obj/random/trash_pile, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) -"omD" = ( -/obj/machinery/holoposter, -/turf/simulated/wall, -/area/crew_quarters/visitor_dining) "orF" = ( /obj/machinery/light/small{ dir = 4; @@ -31709,6 +31673,18 @@ }, /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{ dir = 6; @@ -31735,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 @@ -37748,7 +37757,7 @@ aah aah ajS ajS -alb +lWT alm ajS ajS @@ -39746,7 +39755,7 @@ abT abT abT abT -lrA +lxU ahL anP adu @@ -44031,7 +44040,7 @@ axm ayh ayQ azZ -aAT +hmx aBR aCD aDl @@ -46019,7 +46028,7 @@ axt awN azd aAk -aBh +vNW agM aDt aFt @@ -46449,7 +46458,7 @@ aBk agM aCO aCO -omD +aCO aEI aFw aCO @@ -46481,7 +46490,7 @@ aUm aUm aUq aUr -fbx +xnn aWn aWn aVn @@ -46594,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 128afa365a3..4970bb3b657 100644 --- a/maps/tether/tether-02-surface2.dmm +++ b/maps/tether/tether-02-surface2.dmm @@ -29407,19 +29407,20 @@ /obj/structure/disposalpipe/segment, /turf/simulated/open, /area/maintenance/lower/bar) -"kaa" = ( -/obj/random/cutout, -/turf/simulated/floor, -/area/maintenance/lower/south) -"kTB" = ( +"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, +/area/maintenance/lower/south) "nTp" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -29433,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 @@ -43535,7 +43545,7 @@ aXo adY afu afM -afM +uoL aqG agz agH @@ -43555,7 +43565,7 @@ ajI asB afG anu -kTB +jnL afM aiE apP diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index 3eac327cc20..6f9ecbff4b2 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -31818,25 +31818,20 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"cEj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/mauve/border{ +"cmQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/obj/structure/bed/chair, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 + dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /obj/machinery/holoposter{ - pixel_y = 30 + pixel_y = -30 }, /turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) +/area/hallway/lower/third_south) "cMs" = ( /obj/machinery/power/smes/buildable{ charge = 500000 @@ -31898,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; @@ -32042,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, @@ -32187,24 +32221,6 @@ }, /turf/simulated/floor/tiled/steel_dirty, /area/shuttle/tourbus/general) -"mUH" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/holoposter{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"mUK" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/holoposter{ - pixel_x = 30 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) "noN" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/blue/border, @@ -32238,42 +32254,6 @@ }, /turf/simulated/floor/tiled/steel_dirty, /area/shuttle/tourbus/general) -"nCI" = ( -/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) -"nVf" = ( -/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) "nXl" = ( /obj/machinery/door/airlock/glass{ req_one_access = list(19,43,67) @@ -32286,25 +32266,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/shuttle/tourbus/cockpit) -"odB" = ( -/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{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) "onV" = ( /obj/effect/shuttle_landmark{ base_area = /area/tether/surfacebase/shuttle_pad; @@ -32334,13 +32295,6 @@ /obj/machinery/atmospherics/unary/engine, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"oQJ" = ( -/obj/machinery/holoposter{ - pixel_x = -30; - pixel_y = 30 - }, -/turf/simulated/floor/grass, -/area/tether/surfacebase/public_garden_three) "qem" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -32471,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; @@ -32555,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; @@ -32621,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 @@ -32639,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 @@ -32705,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, @@ -37474,7 +37497,7 @@ aac aCZ aDc aiq -oQJ +sXa aDe aDe aDe @@ -38238,7 +38261,7 @@ aCc aIp aIW aCc -mUH +hJt aBV aCc aCc @@ -40759,7 +40782,7 @@ amU anB aoa aot -aoa +gLg amv apM aiK @@ -40891,7 +40914,7 @@ aTW aTW aTW agw -nCI +dMP ajG aWN akY @@ -42489,7 +42512,7 @@ atU ayt ayV atU -cEj +xdM azC aCV azE @@ -43631,7 +43654,7 @@ aXg axg aHa aHR -nVf +cmQ ats aKb aKU @@ -45582,7 +45605,7 @@ ajX akn alk aZt -alk +vtN ayx aZn aYq @@ -46587,7 +46610,7 @@ aZS aZZ anL axb -odB +viF avk axQ aiX @@ -48598,7 +48621,7 @@ asX asX aFD asX -mUK +uxo aHB aIn aIT diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm index d33dfef299a..e44e48a3a26 100644 --- a/maps/tether/tether-05-station1.dmm +++ b/maps/tether/tether-05-station1.dmm @@ -21623,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 @@ -23161,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{ @@ -23274,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; @@ -23412,26 +23461,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/gravity_gen) -"hYm" = ( -/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) "hZW" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, @@ -23448,6 +23477,22 @@ }, /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 @@ -23602,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 @@ -23743,20 +23802,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"nNA" = ( -/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) "obA" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 8 @@ -24128,25 +24173,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"sBM" = ( -/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{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) "sTb" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; @@ -24189,21 +24215,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) -"tJg" = ( -/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{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) "tKI" = ( /obj/machinery/access_button{ command = "cycle_exterior"; @@ -24288,15 +24299,6 @@ }, /turf/space, /area/space) -"vxt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/holoposter{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/docks) "vxw" = ( /obj/structure/cable{ d1 = 2; @@ -31670,7 +31672,7 @@ bQa aws aCz aDf -vxt +bjb awu aaa aaa @@ -32938,7 +32940,7 @@ afC ahb acp bdW -tJg +ijz awZ aDc aDe @@ -33953,7 +33955,7 @@ aBk aBu ayf ayT -nNA +kWQ azx azx azx @@ -35351,7 +35353,7 @@ amu amv acy acm -hYm +fcr acQ aBG aix @@ -37328,7 +37330,7 @@ aDZ amN aqk asi -sBM +dnP aCw amN aCw diff --git a/maps/tether/tether-06-station2.dmm b/maps/tether/tether-06-station2.dmm index 4749d9dac1d..03bbab7db18 100644 --- a/maps/tether/tether-06-station2.dmm +++ b/maps/tether/tether-06-station2.dmm @@ -20679,23 +20679,6 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/station/public_meeting_room) -"Gh" = ( -/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) "Go" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, @@ -22101,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, @@ -22192,25 +22194,6 @@ "TY" = ( /turf/simulated/wall/r_wall, /area/security/riot_control) -"Ud" = ( -/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) "Uf" = ( /obj/structure/railing{ dir = 8 @@ -22399,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 @@ -31168,7 +31168,7 @@ qx pL qt rj -Ud +Tc KI qH rp @@ -35138,7 +35138,7 @@ Bt kp nb nR -Gh +Vk DL ac ac diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm index 7351e03afd2..3370e6cbf9f 100644 --- a/maps/tether/tether-07-station3.dmm +++ b/maps/tether/tether-07-station3.dmm @@ -32156,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; @@ -32240,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{ @@ -32351,14 +32384,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"hYK" = ( -/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) "ibu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -32468,31 +32493,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/securiship/engines) -"kqC" = ( -/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) "kqS" = ( /obj/structure/cable/green{ dir = 1; @@ -32589,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 @@ -32678,13 +32686,6 @@ }, /turf/simulated/wall/rshull, /area/shuttle/securiship/engines) -"osh" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/machinery/holoposter{ - pixel_x = 30 - }, -/turf/simulated/floor/wood, -/area/hallway/station/upper) "owU" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -33114,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; @@ -33142,14 +33151,6 @@ /obj/machinery/atmospherics/binary/pump/fuel, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/securiship/engines) -"vyg" = ( -/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) "vFD" = ( /obj/structure/catwalk, /obj/random/cutout, @@ -39398,7 +39399,7 @@ aDb aDG aEC aFq -hYK +uSa aDa aab aab @@ -39682,7 +39683,7 @@ aDb aDI aEC aFq -vyg +mPW aDa aab aab @@ -42229,7 +42230,7 @@ avO awu awX asp -kqC +gBy azv aAq aAw @@ -44070,7 +44071,7 @@ aiV aiV asq awL -osh +fuV avQ awy axb From e2d276d5cb29ba56c0d58711b1c218052da60b8f Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Sun, 17 May 2020 18:43:26 -0400 Subject: [PATCH 4/4] Add dirs, fixup alert state --- code/game/machinery/holoposter.dm | 8 ++++++++ icons/obj/holoposter_vr.dmi | Bin 6025 -> 20477 bytes 2 files changed, 8 insertions(+) diff --git a/code/game/machinery/holoposter.dm b/code/game/machinery/holoposter.dm index 030edf16c29..b894c0313b8 100644 --- a/code/game/machinery/holoposter.dm +++ b/code/game/machinery/holoposter.dm @@ -11,6 +11,7 @@ GLOBAL_LIST_EMPTY(holoposters) 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."), @@ -56,6 +57,11 @@ GLOBAL_LIST_EMPTY(holoposters) 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] @@ -64,6 +70,8 @@ GLOBAL_LIST_EMPTY(holoposters) 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 diff --git a/icons/obj/holoposter_vr.dmi b/icons/obj/holoposter_vr.dmi index e05c77b3096e45568f4abdd28531f84666b20576..c28e3f906b0e22f4973647d816fbb4551858b2f0 100644 GIT binary patch literal 20477 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 M=$L4iYC44f51b)TtpET3